commit | 58954813ce4c1f8a0ca87e552cab71c5a19afeeb | [log] [tgz] |
---|---|---|
author | Fred Drake <fdrake@acm.org> | Sat Nov 13 21:58:01 2004 +0000 |
committer | Fred Drake <fdrake@acm.org> | Sat Nov 13 21:58:01 2004 +0000 |
tree | dec1f9b9e1d5a1b2d32e6051c1d1625eab4b5662 | |
parent | f7a8899f33fb0a1efe6cb57fc1b712fa1059d0a6 [diff] [blame] |
avoid applying :active to anchors that are only link targets (no href attribute)
diff --git a/Doc/html/style.css b/Doc/html/style.css index 7f0d753..06a613c 100644 --- a/Doc/html/style.css +++ b/Doc/html/style.css
@@ -38,7 +38,7 @@ body { color: #000000; background-color: #ffffff; } -a:active { color: #ff0000; } +a:link:active { color: #ff0000; } a:link:hover { background-color: #bbeeff; } a:visited:hover { background-color: #bbeeff; } a:visited { color: #551a8b; }