Merge remote-tracking branch 'origin/master'

Conflicts:
	sass/theme.sass
	sphinx_rtd_theme/layout.html
This commit is contained in:
Thibault Cohen 2015-02-07 13:07:46 -05:00
commit 66c4eb2d4a
6 changed files with 16 additions and 11 deletions

View File

@ -26,7 +26,7 @@
text-align: center text-align: center
// Usually it's a good idea to give images some space. // Usually it's a good idea to give images some space.
.section > img .section > img, .section > a > img
margin-bottom: $base-line-height margin-bottom: $base-line-height
// Questionable whether this is nice or not. It styles eternal links, but comes with some baggage. // Questionable whether this is nice or not. It styles eternal links, but comes with some baggage.
// a.reference.external:after // a.reference.external:after

View File

@ -28,5 +28,6 @@
</p> </p>
</div> </div>
{% trans %}<a href="https://github.com/snide/sphinx_rtd_theme">Sphinx theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>{% endtrans %} {% trans %}Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/snide/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>{% endtrans %}.
</footer> </footer>

View File

@ -88,6 +88,7 @@
</div> </div>
<div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation"> <div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
{% block menu %}
{% set toctree = toctree(maxdepth=2, collapse=False, includehidden=True) %} {% set toctree = toctree(maxdepth=2, collapse=False, includehidden=True) %}
{% if toctree %} {% if toctree %}
{{ toctree }} {{ toctree }}
@ -95,6 +96,7 @@
<!-- Local TOC --> <!-- Local TOC -->
<div class="local-toc">{{ toc }}</div> <div class="local-toc">{{ toc }}</div>
{% endif %} {% endif %}
{% endblock %}
</div> </div>
&nbsp; &nbsp;
</nav> </nav>

View File

@ -1,7 +1,9 @@
{%- if builder != 'singlehtml' %}
<div role="search"> <div role="search">
<form id ="rtd-search-form" class="wy-form" action="{{ pathto('search') }}" method="get"> <form id="rtd-search-form" class="wy-form" action="{{ pathto('search') }}" method="get">
<input type="text" name="q" placeholder="Search docs" /> <input type="text" name="q" placeholder="Search docs" />
<input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" /> <input type="hidden" name="area" value="default" />
</form> </form>
</div> </div>
{%- endif %}

File diff suppressed because one or more lines are too long