From: Stas Vilchik Date: Tue, 9 Jan 2018 09:35:39 +0000 (+0100) Subject: SONAR-10132 Issue box does not fit on the screen on the Measures page X-Git-Tag: 7.0-RC1~41 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4ce8eea9aef0854d57e6a0644b363cbed524b5bd;p=sonarqube.git SONAR-10132 Issue box does not fit on the screen on the Measures page --- diff --git a/server/sonar-web/src/main/js/apps/component-measures/style.css b/server/sonar-web/src/main/js/apps/component-measures/style.css index db2fc279029..03a26265a8b 100644 --- a/server/sonar-web/src/main/js/apps/component-measures/style.css +++ b/server/sonar-web/src/main/js/apps/component-measures/style.css @@ -120,6 +120,18 @@ margin-right: 0; } +.measure-details-viewer .issue-list { + /* no math, just a good guess */ + min-width: 600px; + width: 800px; +} + +@media (max-width: 1320px) { + .measure-details-viewer .issue-list { + width: calc(60vw - 80px); + } +} + .measure-view-select { width: 50px; }