diff options
| author | R. David Murray <rdmurray@bitdance.com> | 2010-12-18 19:41:50 (GMT) |
|---|---|---|
| committer | R. David Murray <rdmurray@bitdance.com> | 2010-12-18 19:41:50 (GMT) |
| commit | 63cd7b6fb3b4198eda770c00b56d0ddc20b62f40 (patch) | |
| tree | 861a1bb102227f5894759819ae032fc9ab59b3c3 | |
| parent | af05f18affae03f1fb9dce6eb0e602c821715558 (diff) | |
| download | cpython-63cd7b6fb3b4198eda770c00b56d0ddc20b62f40.zip cpython-63cd7b6fb3b4198eda770c00b56d0ddc20b62f40.tar.gz cpython-63cd7b6fb3b4198eda770c00b56d0ddc20b62f40.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.
........
| -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 { |
