From: Stas Vilchik Date: Tue, 17 Oct 2017 11:39:46 +0000 (+0200) Subject: SONAR-8150 Change the color of strings when displaying a source code X-Git-Tag: 6.7-RC1~190 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=41d9a2b483a2ea667d1ca96ce98029dc75b1ed63;p=sonarqube.git SONAR-8150 Change the color of strings when displaying a source code --- diff --git a/server/sonar-web/src/main/less/sonar-colorizer.less b/server/sonar-web/src/main/less/sonar-colorizer.less index 760aec28453..09dddc8b4a8 100644 --- a/server/sonar-web/src/main/less/sonar-colorizer.less +++ b/server/sonar-web/src/main/less/sonar-colorizer.less @@ -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*/ @@ -75,6 +75,10 @@ } @keyframes highlightedFadeIn { - from { background-color: transparent; } - to { background-color: #b3d4ff; } + from { + background-color: transparent; + } + to { + background-color: #b3d4ff; + } }