diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-31 11:19:17 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-31 11:19:17 -0500 |
commit | 703f088e67c256b2491ced099b994f277775fe5f (patch) | |
tree | 8cb068d41ecb0a640bbe09d89a495f80f907181e | |
parent | 5230df797baebcd2338db701a848b8d02aeee4e0 (diff) | |
download | python-coveragepy-git-703f088e67c256b2491ced099b994f277775fe5f.tar.gz |
Underline the name when hovering the row in the HTML index
-rw-r--r-- | coverage/htmlfiles/style.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/coverage/htmlfiles/style.css b/coverage/htmlfiles/style.css index f999eb70..4214af5b 100644 --- a/coverage/htmlfiles/style.css +++ b/coverage/htmlfiles/style.css @@ -308,10 +308,6 @@ td.text { text-decoration: none; color: #000; } -#index td.name a:hover { - text-decoration: underline; - color: #000; - } #index tr.total, #index tr.total_dynamic { } @@ -324,6 +320,10 @@ td.text { #index tr.file:hover { background: #eeeeee; } +#index tr.file:hover td.name { + text-decoration: underline; + color: #000; + } /* scroll marker styles */ #scroll_marker { |