From b8653cd89bf83ad8bbe20d72c7e7aa111e395b19 Mon Sep 17 00:00:00 2001 From: Hammat Wele Date: Thu, 11 Sep 2025 17:08:46 +0000 Subject: [PATCH] Bug 40787: Plugins buttons misaligned when search box is enabled MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The buttons in the plugins home page ("Upload plugin" and "View plugins by class") become misaligned when you have the git repository search bar. To test: 1. Add a github/gitlab repository in koha-conf.xml - In ktd shell, open /etc/koha/sites/kohadev/koha-conf.xml - Somewhere under insert the following (or your own) Solutions inLibro inLibro github - Save the file - restart_all 2. Go to Administration > Manage plugins --> Buttons are misaligned 3. Apply the patch 4. Run command « yarn build » 5. Repeat step 2 --> buttons are aligned nicely Signed-off-by: David Nind --- koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss index 3921643243..5bac274c4f 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -4751,6 +4751,12 @@ div .suggestion_note { } } +#plugin-search-form { + .form-group { + margin-bottom: 0px; + } +} + @import "header"; @import "toolbar"; @import "forms"; -- 2.39.5