From 571825f60e9dde56e265cd38fe596ddbd7defad5 Mon Sep 17 00:00:00 2001 From: David Gageot Date: Fri, 9 Nov 2012 13:29:24 +0100 Subject: [PATCH] SONAR-1924 Highlight line of table when mouse comes over a line --- sonar-server/src/main/webapp/stylesheets/style.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sonar-server/src/main/webapp/stylesheets/style.css b/sonar-server/src/main/webapp/stylesheets/style.css index 4f0359c0f52..06d16c79df4 100644 --- a/sonar-server/src/main/webapp/stylesheets/style.css +++ b/sonar-server/src/main/webapp/stylesheets/style.css @@ -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; } -- 2.39.5