diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2014-07-11 12:08:23 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2014-07-11 12:08:35 +0200 |
commit | aef3934e4a886cae37f83636c4d6e5304db395e8 (patch) | |
tree | f99b4a5b7324bc89ace8ef2c43ce616f3beb865b /server/sonar-server/src | |
parent | d124e6d51a410e9debc2c9d05a61f671d2928685 (diff) | |
download | sonarqube-aef3934e4a886cae37f83636c4d6e5304db395e8.tar.gz sonarqube-aef3934e4a886cae37f83636c4d6e5304db395e8.zip |
SONAR-5450 Update css rating
Diffstat (limited to 'server/sonar-server/src')
-rw-r--r-- | server/sonar-server/src/main/less/ui.less | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/server/sonar-server/src/main/less/ui.less b/server/sonar-server/src/main/less/ui.less index cc627fa577c..eeb002fdde4 100644 --- a/server/sonar-server/src/main/less/ui.less +++ b/server/sonar-server/src/main/less/ui.less @@ -312,3 +312,33 @@ input[type=button] { .markdown { a { .underlined-link; } } + + +/* + * Display SQALE Rating (also used by the SQALE plugin) + */ + +.rating { + padding: 2px 5px; + color: #fff; +} + +.rating-A { + background-color: #00AA00; +} + +.rating-B { + background-color: #80CC00; +} + +.rating-C { + background-color: #FFEE00; +} + +.rating-D { + background-color: #F77700; +} + +.rating-E { + background-color: #EE0000; +} |