From e8b405f770b7b440a0502345dd31a932e8452ffc Mon Sep 17 00:00:00 2001 From: Stefan Sterz Date: Fri, 10 Mar 2023 14:08:36 +0100 Subject: [PATCH] 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 --- src/proxmox-dark/scss/extjs/_panel.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/proxmox-dark/scss/extjs/_panel.scss b/src/proxmox-dark/scss/extjs/_panel.scss index 5344c8f..217d3f8 100644 --- a/src/proxmox-dark/scss/extjs/_panel.scss +++ b/src/proxmox-dark/scss/extjs/_panel.scss @@ -23,3 +23,9 @@ border-color: $border-color-alt; 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; +}