diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2010-12-04 11:36:58 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2010-12-04 11:36:58 (GMT) |
commit | 09b0b3a655fe83b5b2be4f6ba22725c252592665 (patch) | |
tree | 3f97c804fea8090273ba54a68ff68fb0bc4f2de7 /Doc/tools | |
parent | d4cc7bf993eda4149a05ed25f2f33e18e43fd7c1 (diff) | |
download | cpython-09b0b3a655fe83b5b2be4f6ba22725c252592665.zip cpython-09b0b3a655fe83b5b2be4f6ba22725c252592665.tar.gz cpython-09b0b3a655fe83b5b2be4f6ba22725c252592665.tar.bz2 |
issue10622: fix superflous scrollbar on the right side of <pre> boxes in the
generated html docs. visible in chrome, possibly other webkit browsers.
Diffstat (limited to 'Doc/tools')
-rw-r--r-- | Doc/tools/sphinxext/static/basic.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/tools/sphinxext/static/basic.css b/Doc/tools/sphinxext/static/basic.css index 46237d8..d1811b0 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 { |