[Python-checkins] r57898 - doctools/trunk/sphinx/style/default.css

georg.brandl python-checkins at python.org
Sat Sep 1 23:48:59 CEST 2007


Author: georg.brandl
Date: Sat Sep  1 23:48:59 2007
New Revision: 57898

Modified:
   doctools/trunk/sphinx/style/default.css
Log:
Patch by Robin Stocker: fix unnecessary slowing styles.


Modified: doctools/trunk/sphinx/style/default.css
==============================================================================
--- doctools/trunk/sphinx/style/default.css	(original)
+++ doctools/trunk/sphinx/style/default.css	Sat Sep  1 23:48:59 2007
@@ -529,11 +529,6 @@
 div.body h5 { font-size: 110%; }
 div.body h6 { font-size: 100%; }
 
-a.headerlink,
-a.headerlink,
-a.headerlink,
-a.headerlink,
-a.headerlink,
 a.headerlink {
     color: #c60f0f;
     font-size: 0.8em;
@@ -542,20 +537,16 @@
     visibility: hidden;
 }
 
-*:hover > a.headerlink,
-*:hover > a.headerlink,
-*:hover > a.headerlink,
-*:hover > a.headerlink,
-*:hover > a.headerlink,
-*:hover > a.headerlink {
+h1:hover > a.headerlink,
+h2:hover > a.headerlink,
+h3:hover > a.headerlink,
+h4:hover > a.headerlink,
+h5:hover > a.headerlink,
+h6:hover > a.headerlink,
+dt:hover > a.headerlink {
     visibility: visible;
 }
 
-a.headerlink:hover,
-a.headerlink:hover,
-a.headerlink:hover,
-a.headerlink:hover,
-a.headerlink:hover,
 a.headerlink:hover {
     background-color: #c60f0f;
     color: white;


More information about the Python-checkins mailing list