]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-1924 Highlight line of table when mouse comes over a line
authorDavid Gageot <david@gageot.net>
Fri, 9 Nov 2012 12:29:24 +0000 (13:29 +0100)
committerDavid Gageot <david@gageot.net>
Fri, 9 Nov 2012 12:29:24 +0000 (13:29 +0100)
sonar-server/src/main/webapp/stylesheets/style.css

index 4f0359c0f52608558e6e8875f3f6c436f58ab4f3..06d16c79df4b0e866592718079a0f81bc3942e8a 100644 (file)
@@ -441,11 +441,15 @@ table.data th img, table.data td img {
   background-color: #CAE3F2 !important;
 }
 
-table.nohighlight .odd:hover {
+.hoverable:hover, table.data tbody tr.selected:hover {
+  background-color: #4B9FD5 !important;
+}
+
+table.nohighlight tbody tr:hover {
   background-color: #fff !important;
 }
 
-table.nohighlight .even:hover {
+table.nohighlight tbody .even:hover {
   background-color: #EFEFEF !important;
 }