From c2916c36f1dbf2234badc98ce2e10de457d1a3f6 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 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 Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 967c61a190cd0da395e8acf8e8cbf4ee3f12eb37) Signed-off-by: Jacob O'Mara --- 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 719ef61980..c8e656b4a6 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss +++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss @@ -1137,6 +1137,7 @@ fieldset { margin-top: 3px; padding-left: 10px; padding-top: .5em; + flex-wrap: wrap; > div:first-child::before { content: ""; -- 2.20.1