diff options
author | R. David Murray <rdmurray@bitdance.com> | 2010-12-18 19:43:05 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2010-12-18 19:43:05 (GMT) |
commit | 62a1aaeeac5c6d2349a0698e1ba23870a6756e5e (patch) | |
tree | 42a5464ed1e54ed316f9621eca0725649c75224f /Doc/tools | |
parent | 8820c1ae62bee7f0fdd630e56dafa1c2f0c7fc1a (diff) | |
download | cpython-62a1aaeeac5c6d2349a0698e1ba23870a6756e5e.zip cpython-62a1aaeeac5c6d2349a0698e1ba23870a6756e5e.tar.gz cpython-62a1aaeeac5c6d2349a0698e1ba23870a6756e5e.tar.bz2 |
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 <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 aeb1381..8977187 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 { |