diff options
author | Stas Vilchik <stas.vilchik@sonarsource.com> | 2017-09-28 17:48:23 +0200 |
---|---|---|
committer | Stas Vilchik <stas.vilchik@sonarsource.com> | 2017-09-29 17:01:04 +0200 |
commit | a18125a3c82fdecdba5134f565ec30b9055f1186 (patch) | |
tree | 5c4aea724b56b590080c2e891b56ad07d30f9d96 /server/sonar-web/src/main/less/components | |
parent | 7634638e4cd2ae864e3edeb628bc1348bac682d6 (diff) | |
download | sonarqube-a18125a3c82fdecdba5134f565ec30b9055f1186.tar.gz sonarqube-a18125a3c82fdecdba5134f565ec30b9055f1186.zip |
SONAR-9389 Better highlight uncovered code in leak period
Diffstat (limited to 'server/sonar-web/src/main/less/components')
-rw-r--r-- | server/sonar-web/src/main/less/components/source.less | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/server/sonar-web/src/main/less/components/source.less b/server/sonar-web/src/main/less/components/source.less index c9a952d2a16..99a7a91cc08 100644 --- a/server/sonar-web/src/main/less/components/source.less +++ b/server/sonar-web/src/main/less/components/source.less @@ -48,7 +48,6 @@ .source-line-coverage, .source-line-duplications, .source-line-duplications-extra, - .source-line-filtered-container, .source-line-scm { border-color: darken(@barBackgroundColor, 4%); background-color: darken(@barBackgroundColor, 4%); @@ -66,26 +65,25 @@ .source-line-coverage, .source-line-duplications, .source-line-duplications-extra, - .source-line-filtered-container, .source-line-scm { - border-color: #fdf190 !important; - background-color: #fdf190; + border-color: #c4dfec !important; + background-color: #c4dfec; } .source-line-code { - background-color: #fff8c2; + background-color: #d9edf7; } } -.source-line-shadowed { +.source-line-filtered { .source-line-code { - background-color: #f9f9f9; + background-color: #fbf3d5 !important; } -} -.source-line-filtered { - .source-line-filtered-container { - background-color: @blue !important; + &.source-line-filtered-dark { + .source-line-code { + background-color: #f9ebb7 !important; + } } } @@ -199,10 +197,6 @@ } } -.source-line-filtered-container { - background-color: @barBackgroundColor; -} - .source-line-scm { padding: 0 5px; background-color: @barBackgroundColor; |