File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 183
183
// these mixins exist in order to alias selector assignment in the case
184
184
// where state cannot be applied to the individual path step
185
185
@mixin is-won () {
186
- background : var ( --slds-g-color-success-base-50 , #{ $color-background-path-won } ) ;
186
+ background : $color-background-path-won ;
187
187
188
188
& :before ,
189
189
& :after ,
190
190
& :hover ,
191
191
& :hover :before ,
192
192
& :hover :after {
193
- background : var ( --slds-g-color-success-base-50 , #{ $color-background-path-won } ) ;
193
+ background : $color-background-path-won ;
194
194
}
195
195
}
196
196
197
197
@mixin is-lost () {
198
- background : var ( --slds-g-color-error-base-50 , #{ $color-background-path-lost } ) ;
198
+ background : $color-background-path-lost ;
199
199
200
200
& :before ,
201
201
& :after ,
202
202
& :hover ,
203
203
& :hover :before ,
204
204
& :hover :after {
205
- background : var ( --slds-g-color-error-base-50 , #{ $color-background-path-lost } ) ;
205
+ background : $color-background-path-lost ;
206
206
}
207
207
}
208
208
252
252
* @restrict .slds-path__item
253
253
*/
254
254
.slds-is-complete {
255
- background : var ( --slds-g-color-success-base-60 , #{ $color-background-path-complete } ) ;
255
+ background : $color-background-path-complete ;
256
256
257
257
& :before ,
258
258
& :after {
259
- background : var ( --slds-g-color-success-base-60 , #{ $color-background-path-complete } ) ;
259
+ background : $color-background-path-complete ;
260
260
}
261
261
262
262
.slds-path__stage {
272
272
}
273
273
274
274
& :hover {
275
- background : var ( --slds-g-color-success-base-50 , #{ $color-background-path-complete-hover } ) ;
275
+ background : $color-background-path-complete-hover ;
276
276
277
277
& :before ,
278
278
& :after {
279
- background : var ( --slds-g-color-success-base-50 , #{ $color-background-path-complete-hover } ) ;
279
+ background : $color-background-path-complete-hover ;
280
280
}
281
281
282
282
.slds-path__stage {
You can’t perform that action at this time.
0 commit comments