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 <s.st...@proxmox.com> --- 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; } } -- 2.30.2 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel