]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-8150 Change the color of strings when displaying a source code
authorStas Vilchik <stas.vilchik@sonarsource.com>
Tue, 17 Oct 2017 11:39:46 +0000 (13:39 +0200)
committerStas Vilchik <stas.vilchik@sonarsource.com>
Thu, 19 Oct 2017 07:06:13 +0000 (09:06 +0200)
server/sonar-web/src/main/less/sonar-colorizer.less

index 760aec2845346ef7d05c250350f880c7d817cdc1..09dddc8b4a8c6022fad11dec61d296218fdebba7 100644 (file)
@@ -26,7 +26,7 @@
 }
 /* constants */
 .code .c {
-  color: #660E80;
+  color: #660e80;
   font-style: normal;
   font-weight: bold;
 }
@@ -52,7 +52,7 @@
 }
 /* string */
 .code .s {
-  color: saturate(@red, 0%);
+  color: #277b31;
   font-weight: normal;
 }
 /* keyword light*/
 }
 
 @keyframes highlightedFadeIn {
-  from { background-color: transparent; }
-  to { background-color: #b3d4ff; }
+  from {
+    background-color: transparent;
+  }
+  to {
+    background-color: #b3d4ff;
+  }
 }