From cb8fae0267f10a0f7b311e905457be4755297515 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 --- 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 c665cfea5d..6607aef618 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss +++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss @@ -2037,9 +2037,10 @@ nav { .tags, .shelves { ul { - display: inline; + display: inline-block; list-style: none; - margin-left: 0; + margin: 0; + padding: 0; li { display: inline; -- 2.11.0