]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-5669 The green color should not be used to identify symbols in the component...
authorStas Vilchik <vilchiks@gmail.com>
Mon, 6 Oct 2014 09:54:31 +0000 (11:54 +0200)
committerStas Vilchik <vilchiks@gmail.com>
Mon, 6 Oct 2014 10:49:58 +0000 (12:49 +0200)
server/sonar-web/src/main/less/component-viewer-source-colorizer.less

index f80ebe3fd83f0650290ed92f4410b8dfddbba874..e11e0e1c402770017d43518149a8dcbe2746dc26 100644 (file)
@@ -1,4 +1,5 @@
 @import (reference) 'variables';
+@import (reference) 'mixins';
 
 .component-viewer-source {
 
   }
 
   .sym {
-    color: darken(saturate(@green, 10%), 15%);
+    @symColor: darken(saturate(@green, 10%), 15%);
+    border-bottom: 1px dotted @symColor;
+    .trans(color);
+
+    &:hover,
+    &.highlighted { color: @symColor; }
   }
 
 }