mirror of
https://git.proxmox.com/git/proxmox-widget-toolkit
synced 2025-08-05 15:01:53 +00:00
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 <s.sterz@proxmox.com>
This commit is contained in:
parent
b2471e89d0
commit
928df9ff32
@ -96,8 +96,10 @@
|
|||||||
.x-grid-cell,
|
.x-grid-cell,
|
||||||
.x-grid-rowwrap,
|
.x-grid-rowwrap,
|
||||||
.x-grid-cell-rowbody {
|
.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;
|
border-color: $border-color-alt;
|
||||||
background-color: $background-darker;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user