-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathprogress.css
More file actions
120 lines (112 loc) · 2.33 KB
/
Copy pathprogress.css
File metadata and controls
120 lines (112 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
@charset "UTF-8";
@import "./common/var.css";
@component-namespace el {
@b progress {
position: relative;
line-height: 1;
@e text {
font-size:14px;
color:var(--color-extra-light-black);
display: inline-block;
vertical-align: middle;
margin-left: 10px;
line-height: 1;
i {
vertical-align: middle;
display: block;
}
}
@m circle {
display: inline-block;
.el-progress__text {
position: absolute;
top: 50%;
left: 0;
width: 100%;
text-align: center;
margin: 0;
transform: translate(0, -50%);
i {
vertical-align: middle;
display: inline-block;
}
}
}
@m without-text {
.el-progress__text {
display: none;
}
.el-progress-bar {
padding-right: 0;
margin-right: 0;
display: block;
}
}
@m text-inside {
.el-progress-bar {
padding-right: 0;
margin-right: 0;
}
}
@when success {
.el-progress-bar__inner {
background-color: var(--color-success);
}
.el-progress__text {
color: var(--color-success);
}
}
@when exception {
.el-progress-bar__inner {
background-color: var(--color-danger);
}
.el-progress__text {
color: var(--color-danger);
}
}
}
@b progress-bar {
padding-right: 50px;
display: inline-block;
vertical-align: middle;
width: 100%;
margin-right: -55px;
box-sizing: border-box;
@e outer {
height: 6px;
border-radius: 100px;
background-color: var(--color-light-gray);
overflow: hidden;
position: relative;
vertical-align: middle;
}
@e inner {
position: absolute;
left: 0;
top: 0;
height: 100%;
border-radius: 2px 0 0 2px;
background-color: var(--color-primary);
text-align: right;
border-radius: 100px;
line-height: 1;
white-space: nowrap;
@utils-vertical-center;
}
@e innerText {
display: inline-block;
vertical-align: middle;
color: var(--color-white);
font-size: 12px;
margin: 0 5px;
}
}
}
@keyframes progress {
0% {
background-position: 0 0;
}
100% {
background-position: 32px 0;
}
}