From 9b393daa760496ac34c87141454848cd005b2c93 Mon Sep 17 00:00:00 2001 From: sfan5 Date: Sat, 5 Jul 2014 14:55:59 +0200 Subject: [PATCH] Highlight the hovered entry in very light gray --- static/style.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/static/style.css b/static/style.css index 13bcf29..74ace65 100644 --- a/static/style.css +++ b/static/style.css @@ -11,7 +11,11 @@ border: 1px solid gray; } -.mts_hover_list{ +tr:hover { + background-color: #f0f0f0; +} + +.mts_hover_list { visibility: hidden; border: gray solid 1px; position: absolute; @@ -32,4 +36,4 @@ td:hover .mts_hover_list { .clickable { text-decoration: underline; cursor: pointer; -} \ No newline at end of file +}