From cfb1205574c7089d50edb7105dad58307378107e Mon Sep 17 00:00:00 2001 From: Thanh Le Date: Mon, 9 Oct 2023 06:34:03 -0400 Subject: [PATCH] Update NavSidebar.scss to use z-index from _variables.scss Previously, NavSidebar used a magic number for z-index. This commit changed this z-index to use $z-index-above-base from _variables.scss. Fixes #6633 where contextmenu--visible (part of ConversationPanel) is hidden behind NavSidebar. --- stylesheets/components/NavSidebar.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stylesheets/components/NavSidebar.scss b/stylesheets/components/NavSidebar.scss index 1b2a010d3e..986be2b1fb 100644 --- a/stylesheets/components/NavSidebar.scss +++ b/stylesheets/components/NavSidebar.scss @@ -3,7 +3,7 @@ .NavSidebar { position: relative; - z-index: 10; + z-index: $z-index-above-base; height: 100%; display: flex; flex-direction: column;