diff options
author | Wouter Admiraal <wouter.admiraal@sonarsource.com> | 2020-10-08 15:17:47 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-10-15 20:07:59 +0000 |
commit | 262440dfb5e3801d6a8658eb9237d9a69ac0f70d (patch) | |
tree | 624e1a4cc95eee275fbd9d366bfba33a337d9f23 /server/sonar-web/src | |
parent | 8d61d7655bf8fc5df7b8d3afcc9f351da73cc6dd (diff) | |
download | sonarqube-262440dfb5e3801d6a8658eb9237d9a69ac0f70d.tar.gz sonarqube-262440dfb5e3801d6a8658eb9237d9a69ac0f70d.zip |
SONAR-13943 Hotspots filter dropdowns truncated for anonymous users
Diffstat (limited to 'server/sonar-web/src')
-rw-r--r-- | server/sonar-web/src/main/js/app/theme.js | 1 | ||||
-rw-r--r-- | server/sonar-web/src/main/js/apps/security-hotspots/styles.css | 2 |
2 files changed, 2 insertions, 1 deletions
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; } |