From 0c0be97d35d123499cde31a7040911be57b0014c Mon Sep 17 00:00:00 2001 From: Anton Vodonosov Date: Mon, 6 Aug 2012 04:18:57 +0300 Subject: [PATCH] Invert hightlighting colors: normal background gray, hover background white. --- reports-generated/style.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/reports-generated/style.css b/reports-generated/style.css index fbe62b1..3eda3ce 100644 --- a/reports-generated/style.css +++ b/reports-generated/style.css @@ -46,10 +46,6 @@ border-collapse: collapse; } -.test-table th { - background: white; -} - .test-table td, .test-table th { padding-left: 2px; padding-right: 2px; @@ -84,12 +80,16 @@ th.rotated-header { /* Table highlighting */ -th.hover, .hover { +.test-table { background-color: #f2f2f2; } +th.hover, .hover { + background-color: white; +} + th.no-hover { - background-color: white; + background-color: #f2f2f2; color: black !important; }