From bcd8c96d5fde0f0a6a385bbf73579d53740e6f69 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 23 Sep 2021 11:54:43 +0000 Subject: [PATCH] Bug 29091: Correct display of lists and tags on search results This patch makes a minor change to CSS to fix the display of tags and lists on the OPAC search results page so that the list doesn't have extra padding. To test, apply the patch and rebuild the OPAC SCSS (https://wiki.koha-community.org/wiki/Working_with_SCSS_in_the_OPAC_and_staff_client). - To test you should be able to perform a catalog search in the OPAC which will return results which have one or more tags and which are on one or more lists. - In the OPAC search results, confirm that there isn't extra padding between the "Tags:" and "Lists:" labels and their values. Signed-off-by: Fridolin Somers Signed-off-by: Katrin Fischer Signed-off-by: Jonathan Druart --- koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss index 15eb2c770a..b5d1367634 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss +++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss @@ -2052,9 +2052,10 @@ nav { .tags, .shelves { ul { - display: inline; + display: inline-block; list-style: none; - margin-left: 0; + margin: 0; + padding: 0; li { display: inline; -- 2.39.5