fix for dark indeterminate progress bar (firefox)
This commit is contained in:
parent
6611b228c1
commit
bf2fa124e7
1 changed files with 15 additions and 0 deletions
|
@ -46,4 +46,19 @@ $card-background-color-dark: $background-dark;
|
||||||
@include prefers-scheme(dark) {
|
@include prefers-scheme(dark) {
|
||||||
background-color: $body-background-dark;
|
background-color: $body-background-dark;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.progress {
|
||||||
|
// &::-webkit-progress-bar {
|
||||||
|
// background-color: transparent !important;
|
||||||
|
// }
|
||||||
|
// &::-webkit-progress-value {
|
||||||
|
// background-color: transparent !important;
|
||||||
|
// }
|
||||||
|
&::-moz-progress-bar {
|
||||||
|
background-color: transparent !important;
|
||||||
|
}
|
||||||
|
// &::-ms-fill {
|
||||||
|
// background-color: transparent !important;
|
||||||
|
// }
|
||||||
}
|
}
|
Loading…
Reference in a new issue