diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2013-12-30 11:12:18 +0600 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2013-12-30 11:12:18 +0600 |
commit | 2383f1a0206cc3af22c0a0c0494cc66053f64e47 (patch) | |
tree | 353baa63bb999383237526e4d213ac107953b531 /sonar-server/src/main/webapp/stylesheets/variables.less | |
parent | 193260715b52e175f6875a4e0056cebdd5d30fa3 (diff) | |
download | sonarqube-2383f1a0206cc3af22c0a0c0494cc66053f64e47.tar.gz sonarqube-2383f1a0206cc3af22c0a0c0494cc66053f64e47.zip |
SONAR-4853 New design of the Issues page
Diffstat (limited to 'sonar-server/src/main/webapp/stylesheets/variables.less')
-rw-r--r-- | sonar-server/src/main/webapp/stylesheets/variables.less | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sonar-server/src/main/webapp/stylesheets/variables.less b/sonar-server/src/main/webapp/stylesheets/variables.less index c9aca6c5d94..b57b91b5fbd 100644 --- a/sonar-server/src/main/webapp/stylesheets/variables.less +++ b/sonar-server/src/main/webapp/stylesheets/variables.less @@ -15,13 +15,41 @@ @white: #ffffff; @grey: #efefef; @darkGrey: #cdcdcd; + @blue: #4b9fd5; +@red: #d4333f; +@green: #85bb43; +@yellow: #fede06; @highlighted: @blue; /* + * Icons + */ + +@iconFontSize: 14px; + +@severityBlockerColor: @red; +@severityCriticalColor: @red; +@severityMajorColor: @red; +@severityMinorColor: @green; +@severityInfoColor: @green; + +@statusOpenColor: @green; +@statusConfirmedColor: @red; +@statusReopenedColor: @green; +@statusResolvedColor: @blue; +@statusClosedColor: @baseFontColor; + +@resolutionFixedColor: @baseFontColor; +@resolutionFalsePositiveColor: @baseFontColor; +@resolutionRemovedColor: @baseFontColor; + + + +/* * Transitions */ |