From c120875a37a9c15c47a2b3aa7388d3f75a69ac6c Mon Sep 17 00:00:00 2001 From: mxgic1337_ <60188749+mxgic1337@users.noreply.github.com> Date: Tue, 27 May 2025 12:05:35 +0200 Subject: [PATCH] fix: incorrect dashboard logo background color (#26) --- themes/theme.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/themes/theme.css b/themes/theme.css index 18c44e5..69461f8 100644 --- a/themes/theme.css +++ b/themes/theme.css @@ -29,7 +29,8 @@ .mdl-slider-background-flex, .formDialogHeader:not(.formDialogHeader-clear), .formDialogFooter:not(.formDialogFooter-clear), -.cardBox:not(.visualCardBox) .cardPadder { +.cardBox:not(.visualCardBox) .cardPadder, +.MuiListItemButton-root:hover { background-color: var(--hover-background); } @@ -275,6 +276,8 @@ legend { } .fieldDescription, +.MuiListItemText-secondary, +.MuiListSubheader-root, .secondary { color: var(--dimmer-text) !important; } @@ -340,3 +343,7 @@ div[role=presentation].jstree-wholerow-clicked { .selectionCommandsPanel .itemSelectionCount { color: var(--main-background) !important; } + +.MuiListItemButton-root img { + background-color: transparent; +}