diff options
author | Fred Drake <fdrake@acm.org> | 2004-11-13 21:58:01 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2004-11-13 21:58:01 (GMT) |
commit | 58954813ce4c1f8a0ca87e552cab71c5a19afeeb (patch) | |
tree | dec1f9b9e1d5a1b2d32e6051c1d1625eab4b5662 /Doc | |
parent | f7a8899f33fb0a1efe6cb57fc1b712fa1059d0a6 (diff) | |
download | cpython-58954813ce4c1f8a0ca87e552cab71c5a19afeeb.zip cpython-58954813ce4c1f8a0ca87e552cab71c5a19afeeb.tar.gz cpython-58954813ce4c1f8a0ca87e552cab71c5a19afeeb.tar.bz2 |
avoid applying :active to anchors that are only link targets
(no href attribute)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/html/style.css | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ big.xhuge { font-size : xx-large; } 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; } |