From 03a9cc45c5aa3ab99380dba1856a6977f46aa6d0 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 Signed-off-by: Kyle M Hall --- 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 aaab5a7cf0..ea3976b839 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss +++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss @@ -2039,9 +2039,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.2