From: Gregory P. Smith <greg@mad-scientist.com>
Date: Sat, 4 Dec 2010 11:36:58 +0000 (+0000)
Subject: issue10622: fix superflous scrollbar on the right side of <pre> boxes in the
X-Git-Tag: v3.2b1~52
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=09b0b3a655fe83b5b2be4f6ba22725c252592665;p=python

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

diff --git a/Doc/tools/sphinxext/static/basic.css b/Doc/tools/sphinxext/static/basic.css
index 46237d82c6..d1811b0c00 100644
--- a/Doc/tools/sphinxext/static/basic.css
+++ b/Doc/tools/sphinxext/static/basic.css
@@ -364,6 +364,7 @@ p.deprecated, p.deprecated-removed {
 
 pre {
     overflow: auto;
+    overflow-y: hidden;
 }
 
 td.linenos pre {