diff options
| author | tk0miya <i.tkomiya@gmail.com> | 2014-08-12 12:12:10 +0900 |
|---|---|---|
| committer | tk0miya <i.tkomiya@gmail.com> | 2014-08-12 12:12:10 +0900 |
| commit | 775cb2ce0daf0b0ae9e69b78ad7d6426612fb7ec (patch) | |
| tree | b86730da7e02443cc98df0992138801e9f373802 /sphinx/themes/basic | |
| parent | 4965d296eaf0d2b94d311422ada14668be919c6f (diff) | |
| download | sphinx-775cb2ce0daf0b0ae9e69b78ad7d6426612fb7ec.tar.gz | |
Fix #1476 replace <tt> tag by <code>
Diffstat (limited to 'sphinx/themes/basic')
| -rw-r--r-- | sphinx/themes/basic/domainindex.html | 2 | ||||
| -rw-r--r-- | sphinx/themes/basic/static/basic.css_t | 10 | ||||
| -rw-r--r-- | sphinx/themes/basic/static/websupport.js | 4 |
3 files changed, 8 insertions, 8 deletions
diff --git a/sphinx/themes/basic/domainindex.html b/sphinx/themes/basic/domainindex.html index ac5aed9f..4ee62d55 100644 --- a/sphinx/themes/basic/domainindex.html +++ b/sphinx/themes/basic/domainindex.html @@ -44,7 +44,7 @@ {%- endif %}</td> <td>{% if grouptype == 2 %} {% endif %} {% if page %}<a href="{{ pathto(page) }}#{{ anchor }}">{% endif -%} - <tt class="xref">{{ name|e }}</tt> + <code class="xref">{{ name|e }}</code> {%- if page %}</a>{% endif %} {%- if extra %} <em>({{ extra|e }})</em>{% endif -%} </td><td>{% if qualifier %}<strong>{{ qualifier|e }}:</strong>{% endif %} diff --git a/sphinx/themes/basic/static/basic.css_t b/sphinx/themes/basic/static/basic.css_t index d4561bfa..cb1a923c 100644 --- a/sphinx/themes/basic/static/basic.css_t +++ b/sphinx/themes/basic/static/basic.css_t @@ -480,7 +480,7 @@ div.code-block-filename { font-size: small; } -div.code-block-filename tt { +div.code-block-filename code { background-color: transparent; } @@ -489,22 +489,22 @@ div.code-block-filename + div.highlight > pre { margin-top: 0; } -tt.descname { +code.descname { background-color: transparent; font-weight: bold; font-size: 1.2em; } -tt.descclassname { +code.descclassname { background-color: transparent; } -tt.xref, a tt { +code.xref, a code { background-color: transparent; font-weight: bold; } -h1 tt, h2 tt, h3 tt, h4 tt, h5 tt, h6 tt { +h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { background-color: transparent; } diff --git a/sphinx/themes/basic/static/websupport.js b/sphinx/themes/basic/static/websupport.js index 71c0a136..9932afb9 100644 --- a/sphinx/themes/basic/static/websupport.js +++ b/sphinx/themes/basic/static/websupport.js @@ -700,8 +700,8 @@ (<a href="#" class="comment-markup" id="ab<%id%>">markup</a>):</p>\ <div class="comment-markup-box" id="mb<%id%>">\ reStructured text markup: <i>*emph*</i>, <b>**strong**</b>, \ - <tt>``code``</tt>, \ - code blocks: <tt>::</tt> and an indented block after blank line</div>\ + <code>``code``</code>, \ + code blocks: <code>::</code> and an indented block after blank line</div>\ <form method="post" id="cf<%id%>" class="comment-form" action="">\ <textarea name="comment" cols="80"></textarea>\ <p class="propose-button">\ |
