From f1311108ce62ec9f88a45f18c6dd3119c4c87449 Mon Sep 17 00:00:00 2001 From: Ihor Romaniuk Date: Wed, 27 Mar 2024 15:25:15 +0100 Subject: [PATCH] fix: decoration of see all children link in wiki pages (#33670) --- lms/static/sass/course/wiki/_wiki.scss | 2 +- lms/templates/wiki/article.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lms/static/sass/course/wiki/_wiki.scss b/lms/static/sass/course/wiki/_wiki.scss index b3023af1d7..c896ff3918 100644 --- a/lms/static/sass/course/wiki/_wiki.scss +++ b/lms/static/sass/course/wiki/_wiki.scss @@ -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 { diff --git a/lms/templates/wiki/article.html b/lms/templates/wiki/article.html index 542512c762..1a38d01aeb 100644 --- a/lms/templates/wiki/article.html +++ b/lms/templates/wiki/article.html @@ -33,7 +33,7 @@ {% if urlpath %}
- {% trans "See all children" as tmsg %} | {{ tmsg | force_escape}} + {% trans "See all children" as tmsg %} {{ tmsg | force_escape}}
{% endif %}