From 63cd7b6fb3b4198eda770c00b56d0ddc20b62f40 Mon Sep 17 00:00:00 2001 From: "R. David Murray" Date: Sat, 18 Dec 2010 19:41:50 +0000 Subject: [PATCH] Merged revisions 87027 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87027 | gregory.p.smith | 2010-12-04 06:36:58 -0500 (Sat, 04 Dec 2010) | 3 lines issue10622: fix superflous scrollbar on the right side of
 boxes in the
  generated html docs.  visible in chrome, possibly other webkit browsers.
........
---
 Doc/tools/sphinxext/static/basic.css | 1 +
 1 file changed, 1 insertion(+)

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