From 58954813ce4c1f8a0ca87e552cab71c5a19afeeb Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Sat, 13 Nov 2004 21:58:01 +0000 Subject: avoid applying :active to anchors that are only link targets (no href attribute) --- Doc/html/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v0.12