fix: decoration of see all children link in wiki pages (#33670)

This commit is contained in:
Ihor Romaniuk
2024-03-27 15:25:15 +01:00
committed by GitHub
parent 4d969b73b5
commit f1311108ce
2 changed files with 2 additions and 2 deletions

View File

@@ -262,9 +262,9 @@
a {
display: block;
padding: 2px 4px 2px 10px;
border-radius: 3px;
font-size: 0.9em;
line-height: 25px;
border-left: 1px solid $m-blue;
&:hover,
&:focus {

View File

@@ -33,7 +33,7 @@
{% if urlpath %}
<div class="see-children">
<a href="{% url 'wiki:dir' path=urlpath.path %}">{% trans "See all children" as tmsg %} | {{ tmsg | force_escape}}</a>
<a href="{% url 'wiki:dir' path=urlpath.path %}">{% trans "See all children" as tmsg %} {{ tmsg | force_escape}}</a>
</div>
{% endif %}
</div>