This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
2021-08-23 10:26:02 +02:00

41 lines
813 B
SCSS

@mixin wizard-variant($color) {
&.sw-theme-default > ul.step-anchor {
> li.active > a {
color: $color !important;
&:after {
background: $color;
}
}
> li.done > a {
color: lighten($color, 15) !important;
&:after {
background: lighten($color, 15) !important;
}
}
}
&.sw-theme-arrows > ul.step-anchor {
> li.active > a {
border-color: $color !important;
background: $color !important;
&:after {
border-left-color: $color !important;
}
}
> li.done > a {
border-color: lighten($color, 15) !important;
background: lighten($color, 15) !important;
&:after {
border-left-color: lighten($color, 15) !important;
}
}
}
}