[Python-checkins] python/dist/src/Doc/html style.css,1.44,1.45
fdrake at users.sourceforge.net
fdrake at users.sourceforge.net
Sat Nov 13 22:58:04 CET 2004
Update of /cvsroot/python/python/dist/src/Doc/html
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9674
Modified Files:
style.css
Log Message:
avoid applying :active to anchors that are only link targets
(no href attribute)
Index: style.css
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/html/style.css,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- style.css 11 Nov 2004 04:41:24 -0000 1.44
+++ style.css 13 Nov 2004 21:58:01 -0000 1.45
@@ -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; }
More information about the Python-checkins
mailing list