From 79725294d9de05453ef86a68f0526a914c89b47a Mon Sep 17 00:00:00 2001 From: Stefan Sterz Date: Wed, 22 Mar 2023 12:07:58 +0100 Subject: [PATCH] dark-mode: fix highlighting of active elements in drop down menus e.g.,: the filter menu item in the backup job creation window Signed-off-by: Stefan Sterz --- src/proxmox-dark/scss/extjs/_menu.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/proxmox-dark/scss/extjs/_menu.scss b/src/proxmox-dark/scss/extjs/_menu.scss index 74be901..2983f60 100644 --- a/src/proxmox-dark/scss/extjs/_menu.scss +++ b/src/proxmox-dark/scss/extjs/_menu.scss @@ -19,7 +19,8 @@ } // When hovering over a menu item - &.x-menu-item-focus { + &.x-menu-item-focus, + &.x-menu-item-active { @include selection; } }