feat: metadata manager styling

This commit is contained in:
Adam Perkowski
2025-03-01 18:54:07 +01:00
parent 5248512ce5
commit ae9cd31f00
+19 -6
View File
@@ -18,8 +18,9 @@
background-color: var(--dimmer-text); background-color: var(--dimmer-text);
} }
.mdl-slider::-webkit-slider-thumb, .mdl-slider::-webkit-slider-thumb {background-color: var(--main-color);}
.mdl-slider::-moz-range-thumb, .mdl-slider::-moz-range-thumb {background-color: var(--main-color);}
.mdl-slider-background-lower { .mdl-slider-background-lower {
background-color: var(--main-color); background-color: var(--main-color);
} }
@@ -183,6 +184,7 @@ html {
.inputLabelFocused, .inputLabelFocused,
.selectLabelFocused, .selectLabelFocused,
.textareaLabelFocused, .textareaLabelFocused,
.button-link,
.button-flat:focus, .button-flat:focus,
.button-flat:hover, .button-flat:hover,
.itemAction:focus, .itemAction:focus,
@@ -244,6 +246,8 @@ html {
} }
.buttonActive, .buttonActive,
.button-accent-flat,
.metadataSidebarIcon,
.layout-tv .paper-icon-button-light.show-focus:focus { .layout-tv .paper-icon-button-light.show-focus:focus {
color: var(--main-color) !important; color: var(--main-color) !important;
} }
@@ -267,6 +271,7 @@ html {
.selectLabel, .selectLabel,
.sidebarHeader, .sidebarHeader,
.listItem, .listItem,
.listItemBodyText,
.MuiMenuItem-root, .MuiMenuItem-root,
.dashboardGeneralForm, .dashboardGeneralForm,
.dashboardSections, .dashboardSections,
@@ -282,10 +287,6 @@ legend {
color: var(--dimmer-text) !important; color: var(--dimmer-text) !important;
} }
.listItemBodyText {
color: var(--main-text);
}
.listItem-border { .listItem-border {
border-color: var(--hover-background) !important; border-color: var(--hover-background) !important;
} }
@@ -295,3 +296,15 @@ legend {
.sessionNowPlayingInfo { .sessionNowPlayingInfo {
color: var(--main-background); color: var(--main-background);
} }
/* this has to be background, not background-color for some reason */
div[role=presentation].jstree-wholerow-clicked {
background: var(--hover-background) !important;
}
.jstree-hovered,
.jstree-clicked,
.jstree-wholerow-hovered {
color: var(--main-text) !important;
background-color: var(--hover-background) !important;
}