fix for dark indeterminate progress bar (firefox)

This commit is contained in:
Jörn-Michael Miehe 2023-09-15 23:49:38 +00:00
parent 6611b228c1
commit bf2fa124e7

View file

@ -46,4 +46,19 @@ $card-background-color-dark: $background-dark;
@include prefers-scheme(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;
// }
}