From bf2fa124e76d8c284d088643cf5adbe4343d80af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= Date: Fri, 15 Sep 2023 23:49:38 +0000 Subject: [PATCH] fix for dark indeterminate progress bar (firefox) --- ui/src/main.scss | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/ui/src/main.scss b/ui/src/main.scss index 88bcbed..2a856ec 100644 --- a/ui/src/main.scss +++ b/ui/src/main.scss @@ -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; + // } } \ No newline at end of file