Skip to content

Commit 7052a23

Browse files
authored
fix(step): color variant specificity (#3117)
Hotfix to increase color specificity when a single circular step has an independenat color but the whole step group also got a colors definition
1 parent 2ee930b commit 7052a23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/definitions/elements/step.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@
882882
background: @color;
883883
}
884884
}
885-
.ui.ui.@{variation}.circular.steps .step, .ui.ui.circular.steps .step.@{variation} {
885+
.ui.ui.@{variation}.circular.steps .step, .ui.ui.ui.circular.steps .step.@{variation} {
886886
&.active::before {
887887
border-color: @color;
888888
}
@@ -894,7 +894,7 @@
894894
border-color: @color;
895895
}
896896
}
897-
.ui.ui.@{variation}.circular.steps:not(.vertical) .step, .ui.ui.circular.steps:not(.vertical) .step.@{variation} {
897+
.ui.ui.@{variation}.circular.steps:not(.vertical) .step, .ui.ui.ui.circular.steps:not(.vertical) .step.@{variation} {
898898
&.completed {
899899
background: @color;
900900
}

0 commit comments

Comments
 (0)