25 lines
497 B
CSS
25 lines
497 B
CSS
|
:root {
|
||
|
--progress-background-color: var(--secondary-color);
|
||
|
}
|
||
|
|
||
|
/* Progress */
|
||
|
.uk-progress {
|
||
|
height: 16px;
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
|
||
|
/*firefox*/
|
||
|
.uk-progress::-moz-progress-bar {
|
||
|
background: var(--progress-background-color) none !important;
|
||
|
}
|
||
|
|
||
|
/*chrome*/
|
||
|
.uk-progress::-webkit-progress-value {
|
||
|
background: var(--progress-background-color) none !important;
|
||
|
}
|
||
|
|
||
|
/*internet explore & edge*/
|
||
|
.uk-progress::-ms-fill {
|
||
|
background: var(--progress-background-color) none !important;
|
||
|
}
|