dark-theme: visually remove the border around the pve resource tree

by setting the color of the border of the resource tree to the panel
background color, it doesn't appear visually anymore while keeping
alignments in place.

Signed-off-by: Stefan Sterz <s.sterz@proxmox.com>
This commit is contained in:
Stefan Sterz 2023-03-10 14:08:36 +01:00 committed by Thomas Lamprecht
parent 0cdf266659
commit e8b405f770

View File

@ -23,3 +23,9 @@
border-color: $border-color-alt; border-color: $border-color-alt;
color: $text-color; color: $text-color;
} }
// override the border around the pve-resource-tree specifically to be
// more consistent with crisp, while keep allignments "correct"
div[id^="pveResourceTree-"][id$="-body"] {
border-color: $background-darker;
}