[Python-checkins] r87027 - python/branches/py3k/Doc/tools/sphinxext/static/basic.css

gregory.p.smith python-checkins at python.org
Sat Dec 4 12:36:58 CET 2010


Author: gregory.p.smith
Date: Sat Dec  4 12:36:58 2010
New Revision: 87027

Log:
issue10622: fix superflous scrollbar on the right side of <pre> boxes in the
generated html docs.  visible in chrome, possibly other webkit browsers.


Modified:
   python/branches/py3k/Doc/tools/sphinxext/static/basic.css

Modified: python/branches/py3k/Doc/tools/sphinxext/static/basic.css
==============================================================================
--- python/branches/py3k/Doc/tools/sphinxext/static/basic.css	(original)
+++ python/branches/py3k/Doc/tools/sphinxext/static/basic.css	Sat Dec  4 12:36:58 2010
@@ -364,6 +364,7 @@
 
 pre {
     overflow: auto;
+    overflow-y: hidden;
 }
 
 td.linenos pre {


More information about the Python-checkins mailing list