@@ -4,13 +4,14 @@ $progress-color-dark: $panel-bg !default;
4
4
$progress-color : $panel-bg !default ;
5
5
$progress-color-light : $panel-bg !default ;
6
6
$progress-color-grey-light : $body-bg !default ;
7
+ $progress-color-shadow : $panel-border !default ;
7
8
$progress-color-grey : $iconContainerBackground !default ;
8
9
$progress-color-grey-dark : $iconContainerBackground !default ;
9
10
10
11
// Sizing
11
12
$marker-size : 60px !default ;
12
13
$marker-size-half : ($marker-size / 2 );
13
- $path-height : 4 px !default ;
14
+ $path-height : 2 px !default ;
14
15
$path-position : $marker-size-half - ($path-height / 2 );
15
16
16
17
@@ -62,9 +63,16 @@ $path-position: $marker-size-half - ($path-height / 2);
62
63
right : - $marker-size-half ;
63
64
width : 100% ;
64
65
height : $path-height ;
66
+ border-top : 2px solid $progress-color-grey-light ;
67
+ border-bottom : $progress-color-shadow ;
65
68
background : $progress-color-grey-light ;
66
69
}
67
70
71
+ & :first-child {
72
+ & ::after {
73
+ left : 50% ;
74
+ }
75
+ }
68
76
& :last-child {
69
77
& ::after {
70
78
right : 50% ;
@@ -105,10 +113,12 @@ $path-position: $marker-size-half - ($path-height / 2);
105
113
}
106
114
.progress-text {
107
115
text-decoration : line-through ;
116
+ & :hover {
117
+ color : $text-color-weak ;
118
+ }
108
119
}
109
-
110
120
& ::after {
111
- background : $progress-color-grey ;
121
+ background : $progress-color-grey-light ;
112
122
}
113
123
}
114
124
}
@@ -136,13 +146,20 @@ $path-position: $marker-size-half - ($path-height / 2);
136
146
color : $text-color-weak ;
137
147
font-size : 35px ;
138
148
vertical-align : sub ;
149
+ & :hover {
150
+ color : $link-hover-color ;
151
+ }
139
152
}
140
153
141
154
// Progress text
142
155
.progress-text {
143
156
display : block ;
144
157
overflow : hidden ;
145
158
text-overflow : ellipsis ;
159
+ color : $text-muted ;
160
+ & :hover {
161
+ color : $link-hover-color ;
162
+ }
146
163
}
147
164
148
165
.progress-marker {
@@ -151,6 +168,3 @@ $path-position: $marker-size-half - ($path-height / 2);
151
168
font-size : 35px ;
152
169
vertical-align : sub ;
153
170
}
154
-
155
-
156
-
0 commit comments