From 436b0ee48a73c53b0ab820dfbb921af0ff39d41c Mon Sep 17 00:00:00 2001 From: Leon Sorokin Date: Mon, 25 Sep 2023 11:58:03 -0500 Subject: [PATCH] Dashboard: Set z-index of active panel to 999 (#75382) --- public/sass/components/_dashboard_grid.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/sass/components/_dashboard_grid.scss b/public/sass/components/_dashboard_grid.scss index 30f6415ee12..8058944e5f5 100644 --- a/public/sass/components/_dashboard_grid.scss +++ b/public/sass/components/_dashboard_grid.scss @@ -90,7 +90,8 @@ &:hover, &:active, &:focus { - z-index: 100 !important; + // above other panels, but below lowest pre-defined index in zIndex.ts + z-index: 999 !important; } }