From 3a67c10f0e54868ad8c454cb6d8a14f481926416 Mon Sep 17 00:00:00 2001 From: Hammat Wele Date: Wed, 14 Dec 2022 13:08:38 +0000 Subject: [PATCH] Bug 32338: OPAC - Mobile - Selection toolbar in search result is shifted and not adjusted Content-Type: text/plain; charset=utf-8 To reproduce: 1- Go to the OPAC 2- Inspect the webpage and switch to mobile view 3- Perform a search 4- Check the top of the results table 5- Notice that options are not displayed correctly, there is a blank space between 'Unhighlight' and 'Select All' 6- Apply the patch 7- compile the .scss file 'yarn build --view opac' 8- Clear your navigator caches 9- repeat step 1, 2, 3, 4 10- The options are now displayed correctly Signed-off-by: Lucas Gass Signed-off-by: Marcel de Rooy --- koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss index a927bff544..1c22c23d14 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss +++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss @@ -1128,6 +1128,7 @@ fieldset { margin-top: 3px; padding-left: 10px; padding-top: .5em; + flex-wrap: wrap; > div:first-child::before { content: ""; -- 2.30.2