Skip to content

Commit

Permalink
fix: decoration of see all children link in wiki pages (#33670)
Browse files Browse the repository at this point in the history
  • Loading branch information
ihor-romaniuk authored Mar 27, 2024
1 parent 4d969b7 commit f131110
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lms/static/sass/course/wiki/_wiki.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion lms/templates/wiki/article.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ <h3 class="entry-title">{{ article.current_revision.title }}</h3>

{% 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>
Expand Down

0 comments on commit f131110

Please sign in to comment.