diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2016-07-14 14:45:25 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2016-07-14 14:45:25 +0200 |
commit | 5025dd99bfcf1233844199e978e4fea8117b4fde (patch) | |
tree | ae8256997f325294ab4bf23fd7cba12a5e8f3621 /server/sonar-web/src/main/js/apps/component-measures | |
parent | 0f850d7f5d8c384f5de4d3c4e5cd594214fc50ba (diff) | |
download | sonarqube-5025dd99bfcf1233844199e978e4fea8117b4fde.tar.gz sonarqube-5025dd99bfcf1233844199e978e4fea8117b4fde.zip |
SONAR-7754 Custom measures with long values are cut
Diffstat (limited to 'server/sonar-web/src/main/js/apps/component-measures')
-rw-r--r-- | server/sonar-web/src/main/js/apps/component-measures/styles.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/component-measures/styles.css b/server/sonar-web/src/main/js/apps/component-measures/styles.css index 092f62a8fba..4c695a7a343 100644 --- a/server/sonar-web/src/main/js/apps/component-measures/styles.css +++ b/server/sonar-web/src/main/js/apps/component-measures/styles.css @@ -102,9 +102,12 @@ } .domain-measures .domain-measures-value { - width: 80px; + min-width: 80px; color: #444; text-align: right; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } .domain-measures .domain-measures-leak { |