From 928df9ff32eb091614d2604414493a67bb5c17ee Mon Sep 17 00:00:00 2001 From: Stefan Sterz Date: Fri, 10 Mar 2023 14:08:32 +0100 Subject: [PATCH] dark-theme: fix summary row background previously an "!important" was missing from the `background-color` property. this meant that the background color wasn't properly overridden. the "!important" is necessary as it is also used in the light theme. Signed-off-by: Stefan Sterz --- src/proxmox-dark/scss/extjs/_grid.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/proxmox-dark/scss/extjs/_grid.scss b/src/proxmox-dark/scss/extjs/_grid.scss index 77872b0..3719fdc 100644 --- a/src/proxmox-dark/scss/extjs/_grid.scss +++ b/src/proxmox-dark/scss/extjs/_grid.scss @@ -96,8 +96,10 @@ .x-grid-cell, .x-grid-rowwrap, .x-grid-cell-rowbody { + // the "!important" is needed here, because crisp also sets this + // as important + background-color: $background-darker !important; border-color: $border-color-alt; - background-color: $background-darker; } }