diff options
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 */ |