From 02dae718809c5edf56f52b37143082abe0541f3d Mon Sep 17 00:00:00 2001 From: Travis Lane Date: Thu, 26 Dec 2024 20:46:02 -0500 Subject: [PATCH] fix: address progress bar styling, #16 --- Theme/ElegantFin-theme-nightly.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Theme/ElegantFin-theme-nightly.css b/Theme/ElegantFin-theme-nightly.css index fb5c501..25f81cf 100644 --- a/Theme/ElegantFin-theme-nightly.css +++ b/Theme/ElegantFin-theme-nightly.css @@ -1249,3 +1249,19 @@ ul.MuiList-root.MuiMenu-list.MuiList-dense>div:first-child { #scenesContent .cardScalable:hover { border-color: var(--dimTextColor) !important; } + +progress::-moz-progress-bar, +progress::-webkit-progress-value { + background: var(--btnSubmitBorderColor) !important; + border-radius: var(--smallRadius) inherit var(--smallRadius) 0; +} + +progress { + background: var(--hoverGradient) !important; + border: solid var(--lighterBorderColor) var(--borderWidth) !important; + border-radius: var(--smallRadius); +} + +progress + span { + color: var(--btnSubmitBorderColor) !important; +}