[Python-checkins] cpython (3.4): Make pydoctheme compatible with Sphinx 1.3 HTML output changes.

georg.brandl python-checkins at python.org
Wed Oct 1 19:28:39 CEST 2014


https://hg.python.org/cpython/rev/b1596a7b52a0
changeset:   92715:b1596a7b52a0
branch:      3.4
parent:      92711:4b56e0b705c0
user:        Georg Brandl <georg at python.org>
date:        Wed Oct 01 19:28:23 2014 +0200
summary:
  Make pydoctheme compatible with Sphinx 1.3 HTML output changes.

files:
  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
--- a/Doc/tools/pydoctheme/static/pydoctheme.css
+++ b/Doc/tools/pydoctheme/static/pydoctheme.css
@@ -105,20 +105,20 @@
     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;
 }
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list