From 4ce8eea9aef0854d57e6a0644b363cbed524b5bd Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Tue, 9 Jan 2018 10:35:39 +0100 Subject: [PATCH] SONAR-10132 Issue box does not fit on the screen on the Measures page --- .../src/main/js/apps/component-measures/style.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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; } -- 2.39.5