From 262440dfb5e3801d6a8658eb9237d9a69ac0f70d Mon Sep 17 00:00:00 2001 From: Wouter Admiraal Date: Thu, 8 Oct 2020 15:17:47 +0200 Subject: [PATCH] SONAR-13943 Hotspots filter dropdowns truncated for anonymous users --- server/sonar-web/src/main/js/app/theme.js | 1 + server/sonar-web/src/main/js/apps/security-hotspots/styles.css | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/server/sonar-web/src/main/js/app/theme.js b/server/sonar-web/src/main/js/app/theme.js index b9f551711ae..f888c8c5709 100644 --- a/server/sonar-web/src/main/js/app/theme.js +++ b/server/sonar-web/src/main/js/app/theme.js @@ -192,6 +192,7 @@ module.exports = { // ui elements pageMainZIndex: '50', pageSideZIndex: '51', + pageHeaderZIndex: '55', globalBannerZIndex: '60', diff --git a/server/sonar-web/src/main/js/apps/security-hotspots/styles.css b/server/sonar-web/src/main/js/apps/security-hotspots/styles.css index 16139eb1655..011cec31b3f 100644 --- a/server/sonar-web/src/main/js/apps/security-hotspots/styles.css +++ b/server/sonar-web/src/main/js/apps/security-hotspots/styles.css @@ -24,7 +24,7 @@ #security_hotspots .filter-bar { position: fixed; background-color: var(--barBackgroundColor); - z-index: var(--pageSideZIndex); + z-index: var(--pageHeaderZIndex); left: 0; right: 0; } -- 2.39.5