From 94c610a17739f611029dbcf25a0dd76922c3037d 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 --- 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 8af3afa2ed7..a6a703aa1d3 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss +++ b/koha-tmpl/opac-tmpl/bootstrap/css/src/opac.scss @@ -1122,6 +1122,7 @@ fieldset { margin-top: 3px; padding-left: 10px; padding-top: .5em; + flex-wrap: wrap; > div:first-child::before { content: ""; -- 2.30.2