add disabled css in stepper

This commit is contained in:
argirok 2022-04-19 16:34:35 +03:00
parent f22f1ae285
commit 02cbefbb6f
1 changed files with 6 additions and 2 deletions

View File

@ -13,8 +13,8 @@
--step-default-background-hover: var(--primary-color);
--step-default-color-hover: var(--light-color);
/*--step-disabled-text: var(--uk-te);*/
/*--step-disabled-background --step-disabled-color*/
--step-disabled-text: var(--disable-color);
--step-disabled-background: var(--muted-color);
}
.stepper-line {
@ -31,6 +31,10 @@
background-color:var(--step-active-background);
color:var(--step-active-color);
}
.stepper button.disabled {
background-color: var(--step-disabled-background);
color: var(--step-disabled-text);
}
.stepper .stepper-text.active{
color:var(--step-active-text);
}