From cd1fe6dde03886fb47d0c92c4e35277da98ba922 Mon Sep 17 00:00:00 2001 From: Ozzie Isaacs Date: Wed, 29 Sep 2021 19:26:21 +0200 Subject: [PATCH] Fix #2085 (Misaligned shelf names after glyphicon) --- cps/templates/layout.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cps/templates/layout.html b/cps/templates/layout.html index 017b8791..a7315c34 100644 --- a/cps/templates/layout.html +++ b/cps/templates/layout.html @@ -135,7 +135,7 @@ {% if g.user.is_authenticated or g.allow_anonymous %} {% for shelf in g.shelves_access %} -
  • {{shelf.name|shortentitle(40)}}{% if shelf.is_public == 1 %} {{_('(Public)')}}{% endif %}
  • +
  • {{shelf.name|shortentitle(40)}}{% if shelf.is_public == 1 %} {{_('(Public)')}}{% endif %}
  • {% endfor %} {% if not g.user.is_anonymous %}