]> source.dussan.org Git - sonarqube.git/commitdiff
Change the selection background color
authorStas Vilchik <vilchiks@gmail.com>
Wed, 9 Apr 2014 09:38:50 +0000 (15:38 +0600)
committerStas Vilchik <vilchiks@gmail.com>
Wed, 9 Apr 2014 09:38:59 +0000 (15:38 +0600)
sonar-server/src/main/less/style.less
sonar-server/src/main/less/variables.less

index eb88b5c0ed77cf542409eb30fdb041f206f03796..8708ca485aaa89cd7e625c43964a206ea4c5d9a7 100644 (file)
@@ -378,8 +378,7 @@ h1 img, .h1 img, h2 img, .h2 img, h3 img, .h3 img, h4 img, .h4 img {
 }
 
 .odd.selected, .even.selected, .odd.selected a, .even.selected a, .even.selected span, .odd.selected span {
-  background-color: #4b9fd5;
-  color: #fff;
+  background-color: @lightBlue;
 }
 
 table.data > thead > tr > th {
@@ -1253,7 +1252,7 @@ div.autocomplete ul li img {
 }
 
 div.autocomplete ul li.selected {
-  background-color: #ededed;
+  background-color: @lightBlue;
 }
 
 div.autocomplete strong {
@@ -2258,7 +2257,7 @@ table.nowrap td.small, td.nowrap.small, th.nowrap.small {
 }
 
 .dropdown-menu li:hover {
-  background-color: #ededed !important;
+  background-color: @lightBlue !important;
 }
 
 .dropdown-menu a {
index bcec0d5612387692965c6f8b4b7b8c1716f3e275..f9e3671e84ce10fc6313e776337ee9297fcd33ad 100644 (file)
@@ -19,6 +19,7 @@
 @darkGrey: #cdcdcd;
 
 @blue: #4b9fd5;
+@lightBlue: #cae3f2;
 @red: #d4333f;
 @green: #85bb43;
 @yellow: #fede06;
@@ -28,6 +29,7 @@
 @darkBlue: darken(@blue, 20%);
 
 @highlighted: @blue;
+@highlightedBackground: @lightBlue;
 @contextBackground: lighten(@purple, 40%);
 @contextBorder: lighten(@purple, 30%);