Upgrade Furo theme to 2022.12.07. Refs #3077

Should fix "Previous" and "Next" arrow styling issue.
This commit is contained in:
Justin Mayer 2023-01-06 10:31:01 +01:00
commit 4d82a42229
2 changed files with 6 additions and 4 deletions

View file

@ -102,12 +102,12 @@
</div> </div>
<div class="title">{{ next.title }}</div> <div class="title">{{ next.title }}</div>
</div> </div>
<svg><use href="#svg-arrow-right"></use></svg> <svg class="furo-related-icon"><use href="#svg-arrow-right"></use></svg>
</a> </a>
{%- endif %} {%- endif %}
{% if prev -%} {% if prev -%}
<a class="prev-page" href="{{ prev.link }}"> <a class="prev-page" href="{{ prev.link }}">
<svg><use href="#svg-arrow-right"></use></svg> <svg class="furo-related-icon"><use href="#svg-arrow-right"></use></svg>
<div class="page-info"> <div class="page-info">
<div class="context"> <div class="context">
<span>{{ _("Previous") }}</span> <span>{{ _("Previous") }}</span>
@ -145,6 +145,7 @@
{%- endif %} {%- endif %}
</div> </div>
<div class="right-details"> <div class="right-details">
{% if theme_footer_icons or READTHEDOCS -%}
<div class="icons"> <div class="icons">
{% if theme_footer_icons -%} {% if theme_footer_icons -%}
{% for icon_dict in theme_footer_icons -%} {% for icon_dict in theme_footer_icons -%}
@ -171,6 +172,7 @@
{%- endif -%} {%- endif -%}
{%- endif %} {%- endif %}
</div> </div>
{%- endif %}
</div> </div>
</div> </div>
{% endblock footer %} {% endblock footer %}
@ -182,7 +184,7 @@
<div class="toc-sticky toc-scroll"> <div class="toc-sticky toc-scroll">
<div class="toc-title-container"> <div class="toc-title-container">
<span class="toc-title"> <span class="toc-title">
{{ _("Contents") }} {{ _("On this page") }}
</span> </span>
</div> </div>
<div class="toc-tree-container"> <div class="toc-tree-container">

View file

@ -49,7 +49,7 @@ lxml = "^4.3"
markdown = "~3.3.7" markdown = "~3.3.7"
typogrify = "^2.0" typogrify = "^2.0"
sphinx = "^5.1" sphinx = "^5.1"
furo = "2022.06.21" furo = "2022.12.07"
livereload = "^2.6" livereload = "^2.6"
psutil = {version = "^5.7", optional = true} psutil = {version = "^5.7", optional = true}
pygments = "~2.8" pygments = "~2.8"