@liuzengwei/element-ui 2.15.5-xn.49 → 2.15.5-xn.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/element-ui.common.js +1 -1
- package/lib/index.js +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/timeline-item.css +1 -1
- package/package.json +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/timeline-item.css +1 -1
- package/packages/theme-chalk/src/common/var.scss +3 -3
- package/packages/theme-chalk/src/timeline-item.scss +5 -4
- package/src/index.js +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
.el-timeline-item{position:relative;padding-bottom:20px}.el-timeline-item__wrapper{position:relative;padding-left:
|
|
1
|
+
.el-timeline-item__node,.el-timeline-item__node--primary{background-color:#4885F8}.el-timeline-item{position:relative;padding-bottom:20px}.el-timeline-item__wrapper{position:relative;padding-left:25px;top:-3px}.el-timeline-item__tail{position:absolute;left:2.5px;height:100%;border-left:1px solid #4885F8}.el-timeline-item__icon{color:#FFF;font-size:13px}.el-timeline-item__node{position:absolute;border-radius:50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-shadow:0 0 0 2px #FFF;box-shadow:0 0 0 2px #FFF}.el-timeline-item__node--normal{left:-1px;width:8px;height:8px}.el-timeline-item__node--large{left:-3px;width:12px;height:12px}.el-timeline-item__node--success{background-color:#1EBD44}.el-timeline-item__node--warning{background-color:#FF7D00}.el-timeline-item__node--danger{background-color:#F53F3F}.el-timeline-item__node--info{background-color:#909399}.el-timeline-item__dot{position:absolute;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.el-timeline-item__content{color:#303133}.el-timeline-item__timestamp{color:#909399;line-height:1;font-size:13px}.el-timeline-item__timestamp.is-top{margin-bottom:8px;padding-top:4px}.el-timeline-item__timestamp.is-bottom{margin-top:8px}
|
|
@@ -948,9 +948,9 @@ $--main-padding: 20px !default;
|
|
|
948
948
|
|
|
949
949
|
/* Timeline
|
|
950
950
|
--------------------------*/
|
|
951
|
-
$--timeline-node-size-normal:
|
|
952
|
-
$--timeline-node-size-large:
|
|
953
|
-
$--timeline-node-color: $--
|
|
951
|
+
$--timeline-node-size-normal: 8px !default;
|
|
952
|
+
$--timeline-node-size-large: 12px !default;
|
|
953
|
+
$--timeline-node-color: $--color-primary !default;
|
|
954
954
|
|
|
955
955
|
/* Backtop
|
|
956
956
|
--------------------------*/
|
|
@@ -7,15 +7,15 @@
|
|
|
7
7
|
|
|
8
8
|
@include e(wrapper) {
|
|
9
9
|
position: relative;
|
|
10
|
-
padding-left:
|
|
10
|
+
padding-left: 25px;
|
|
11
11
|
top: -3px;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
@include e(tail) {
|
|
15
15
|
position: absolute;
|
|
16
|
-
left:
|
|
16
|
+
left: 2.5px;
|
|
17
17
|
height: 100%;
|
|
18
|
-
border-left:
|
|
18
|
+
border-left: 1px solid $--timeline-node-color;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
@include e(icon) {
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
display: flex;
|
|
31
31
|
justify-content: center;
|
|
32
32
|
align-items: center;
|
|
33
|
+
box-shadow: 0 0 0 2px $--color-white;
|
|
33
34
|
|
|
34
35
|
@include m(normal) {
|
|
35
36
|
left: -1px;
|
|
@@ -37,7 +38,7 @@
|
|
|
37
38
|
height: $--timeline-node-size-normal;
|
|
38
39
|
}
|
|
39
40
|
@include m(large) {
|
|
40
|
-
left: -
|
|
41
|
+
left: -3px;
|
|
41
42
|
width: $--timeline-node-size-large;
|
|
42
43
|
height: $--timeline-node-size-large;
|
|
43
44
|
}
|