fix: incorrect dashboard logo background color (#26)

This commit is contained in:
mxgic1337_
2025-05-27 12:05:35 +02:00
committed by GitHub
parent c222ffcbd5
commit c120875a37
+8 -1
View File
@@ -29,7 +29,8 @@
.mdl-slider-background-flex, .mdl-slider-background-flex,
.formDialogHeader:not(.formDialogHeader-clear), .formDialogHeader:not(.formDialogHeader-clear),
.formDialogFooter:not(.formDialogFooter-clear), .formDialogFooter:not(.formDialogFooter-clear),
.cardBox:not(.visualCardBox) .cardPadder { .cardBox:not(.visualCardBox) .cardPadder,
.MuiListItemButton-root:hover {
background-color: var(--hover-background); background-color: var(--hover-background);
} }
@@ -275,6 +276,8 @@ legend {
} }
.fieldDescription, .fieldDescription,
.MuiListItemText-secondary,
.MuiListSubheader-root,
.secondary { .secondary {
color: var(--dimmer-text) !important; color: var(--dimmer-text) !important;
} }
@@ -340,3 +343,7 @@ div[role=presentation].jstree-wholerow-clicked {
.selectionCommandsPanel .itemSelectionCount { .selectionCommandsPanel .itemSelectionCount {
color: var(--main-background) !important; color: var(--main-background) !important;
} }
.MuiListItemButton-root img {
background-color: transparent;
}