From: Fred Drake Date: Fri, 14 Jun 2002 13:47:58 +0000 (+0000) Subject: Anchors ("a" elements) used only for the name attribute should not X-Git-Tag: v2.3c1~5312 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a8ef0d1df29b836920f3fff1da7bf4675302d1f8;p=thirdparty%2FPython%2Fcpython.git Anchors ("a" elements) used only for the name attribute should not change color on hover, only those that are link sources (href attributes). --- diff --git a/Doc/html/style.css b/Doc/html/style.css index 3f8b3e858d9d..762d1c45c567 100644 --- a/Doc/html/style.css +++ b/Doc/html/style.css @@ -39,7 +39,7 @@ body { color: #000000; background-color: #ffffff; } a:active { color: #ff0000; } -a:hover { background-color: #bbeeff; } +a[href]:hover { background-color: #bbeeff; } a:visited { color: #551a8b; } a:link { color: #0000bb; }