fix: incorrect spinner & video player timer color (#3)

* fix: incorrect spinner/loading color

* fix: incorrect video player time text color
This commit is contained in:
mxgic1337_
2025-03-04 09:23:39 +01:00
committed by GitHub
parent e56da53c57
commit b7d5a08b65
+8
View File
@@ -283,6 +283,10 @@ legend {
background-color: var(--second-background); background-color: var(--second-background);
} }
.osdTextContainer, .osdTimeText {
color: var(--main-text);
}
/* this has to be background, not background-color for some reason */ /* this has to be background, not background-color for some reason */
div[role=presentation].jstree-wholerow-clicked { div[role=presentation].jstree-wholerow-clicked {
background: var(--hover-background) !important; background: var(--hover-background) !important;
@@ -294,3 +298,7 @@ div[role=presentation].jstree-wholerow-clicked {
color: var(--main-text) !important; color: var(--main-text) !important;
background-color: var(--hover-background) !important; background-color: var(--hover-background) !important;
} }
.mdl-spinner__layer {
border-color: var(--main-color);
}