From 883acf6dc9b27ad7744c8181f68b76f2182a2d8c Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Tue, 21 Mar 2023 11:04:25 +0100 Subject: [PATCH] dark-mode: make shadow black Better have a barely visible shadow than a backlight. Signed-off-by: Wolfgang Bumiller --- src/proxmox-dark/scss/extjs/_presentation.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proxmox-dark/scss/extjs/_presentation.scss b/src/proxmox-dark/scss/extjs/_presentation.scss index 236dbe9..6e463da 100644 --- a/src/proxmox-dark/scss/extjs/_presentation.scss +++ b/src/proxmox-dark/scss/extjs/_presentation.scss @@ -10,5 +10,5 @@ .x-css-shadow { // the additional styling from the pve css overwrites the setting on // the element with "!important", that's why we need it here. - box-shadow: $background-darkest 0 0 5px !important; + box-shadow: black 0 0 10px !important; }