diff options
author | Philippe Perrin <philippe.perrin@sonarsource.com> | 2020-01-08 17:50:57 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2020-01-13 20:46:37 +0100 |
commit | 2ae0375d564ead7932a0dcbc6dfa4db85eb6c58c (patch) | |
tree | ea5d33d9ac56ff2323318e26c4f62ff105bb2a3a /server/sonar-web/src | |
parent | b501b1b4a27b26f4dbbca99995980edb6449c2c1 (diff) | |
download | sonarqube-2ae0375d564ead7932a0dcbc6dfa4db85eb6c58c.tar.gz sonarqube-2ae0375d564ead7932a0dcbc6dfa4db85eb6c58c.zip |
SONAR-12717 Reduce the with of the hotspot list
Diffstat (limited to 'server/sonar-web/src')
-rw-r--r-- | server/sonar-web/src/main/js/apps/securityHotspots/styles.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/apps/securityHotspots/styles.css b/server/sonar-web/src/main/js/apps/securityHotspots/styles.css index 5ccfef0260e..9a327c158d7 100644 --- a/server/sonar-web/src/main/js/apps/securityHotspots/styles.css +++ b/server/sonar-web/src/main/js/apps/securityHotspots/styles.css @@ -40,14 +40,14 @@ } #security_hotspots .sidebar { - flex: 1 0 30%; + flex: 0 0 300px; border-right: 1px solid var(--barBorderColor); height: 100%; overflow-y: auto; } #security_hotspots .main { - flex: 1 0 70%; + flex: 1 1 auto; overflow-y: auto; background-color: white; } |