]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-5007 Fix display of long profile names in bulk dropdown
authorJean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com>
Tue, 3 Jun 2014 16:12:47 +0000 (18:12 +0200)
committerJean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com>
Tue, 3 Jun 2014 16:12:47 +0000 (18:12 +0200)
sonar-server/src/main/less/coding-rules.less

index d1e6c06339d2d9a5798e8595102248d0607a6f60..6dc0347d69b38e482291ef911da669d585f99c2e 100644 (file)
 
 .coding-rules-bulk-change-dropdown-link {
   display: block;
+  max-width: 190px;
   height: 30px;
   line-height: 30px;
   padding: 0 @navigatorPadding;
   font-size: @smallFontSize;
+  overflow: hidden;
+  text-overflow: ellipsis;
+  white-space: nowrap;
   .trans;
 
   &:hover { background-color: @navigatorBarBackground; }
 
-  strong { font-weight: bold; }
+  strong {
+    font-weight: bold;
+  }
 }