diff options
author | Georg Brandl <georg@python.org> | 2014-10-01 17:28:23 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-10-01 17:28:23 (GMT) |
commit | fd3a15a0ccc6a3b89865dc89a4fd3e654fdb4344 (patch) | |
tree | bab08473975d5511a7c6bb41da01fc318b85ef24 /Doc/tools | |
parent | 9e883ca30144c02bff803d13d0b5f24d85ea0b18 (diff) | |
download | cpython-fd3a15a0ccc6a3b89865dc89a4fd3e654fdb4344.zip cpython-fd3a15a0ccc6a3b89865dc89a4fd3e654fdb4344.tar.gz cpython-fd3a15a0ccc6a3b89865dc89a4fd3e654fdb4344.tar.bz2 |
Make pydoctheme compatible with Sphinx 1.3 HTML output changes.
Diffstat (limited to 'Doc/tools')
-rw-r--r-- | Doc/tools/pydoctheme/static/pydoctheme.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/tools/pydoctheme/static/pydoctheme.css b/Doc/tools/pydoctheme/static/pydoctheme.css index 3d995d8..df165a6 100644 --- a/Doc/tools/pydoctheme/static/pydoctheme.css +++ b/Doc/tools/pydoctheme/static/pydoctheme.css @@ -105,20 +105,20 @@ div.body a:hover { color: #00B0E4; } -tt, pre { +tt, code, pre { font-family: monospace, sans-serif; font-size: 96.5%; } -div.body tt { +div.body tt, div.body code { border-radius: 3px; } -div.body tt.descname { +div.body tt.descname, div.body code.descname { font-size: 120%; } -div.body tt.xref, div.body a tt { +div.body tt.xref, div.body a tt, div.body code.xref, div.body a code { font-weight: normal; } |