From b7d5a08b65987885a90d871df5122dd569c9cad0 Mon Sep 17 00:00:00 2001 From: mxgic1337_ <60188749+mxgic1337@users.noreply.github.com> Date: Tue, 4 Mar 2025 09:23:39 +0100 Subject: [PATCH] fix: incorrect spinner & video player timer color (#3) * fix: incorrect spinner/loading color * fix: incorrect video player time text color --- themes/theme.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/themes/theme.css b/themes/theme.css index 9cb49ca..ec0e648 100644 --- a/themes/theme.css +++ b/themes/theme.css @@ -283,6 +283,10 @@ legend { background-color: var(--second-background); } +.osdTextContainer, .osdTimeText { + color: var(--main-text); +} + /* this has to be background, not background-color for some reason */ div[role=presentation].jstree-wholerow-clicked { background: var(--hover-background) !important; @@ -294,3 +298,7 @@ div[role=presentation].jstree-wholerow-clicked { color: var(--main-text) !important; background-color: var(--hover-background) !important; } + +.mdl-spinner__layer { + border-color: var(--main-color); +}