From 17cf1808512f9a7ad5237c454e8617c87dea955d Mon Sep 17 00:00:00 2001 From: Travis Lane Date: Thu, 26 Dec 2024 20:13:14 -0500 Subject: [PATCH 1/2] fix: made padding the same on top, left, and bottom of episodes --- Theme/ElegantFin-theme-nightly.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Theme/ElegantFin-theme-nightly.css b/Theme/ElegantFin-theme-nightly.css index 719ed07..fb5c501 100644 --- a/Theme/ElegantFin-theme-nightly.css +++ b/Theme/ElegantFin-theme-nightly.css @@ -913,6 +913,10 @@ div[data-role=controlgroup] a.ui-btn-active { padding: 0.25em 0.25em 0.25em 1.5em !important; } +[dir="ltr"] .listItem:not(.actionSheetMenuItem)[data-type="Episode"] { + padding: .5em 0.25em 0.5em 0.5em !important; +} + .actionSheetContent { padding: .4em !important; } @@ -1244,4 +1248,4 @@ ul.MuiList-root.MuiMenu-list.MuiList-dense>div:first-child { #scenesContent .cardScalable:hover { border-color: var(--dimTextColor) !important; -} \ No newline at end of file +} From 02dae718809c5edf56f52b37143082abe0541f3d Mon Sep 17 00:00:00 2001 From: Travis Lane Date: Thu, 26 Dec 2024 20:46:02 -0500 Subject: [PATCH 2/2] 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; +}