From 82b5d980db9ab982b0e6af1891416e07765d5a76 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 --- 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 f8c9cefcd75..ef2bf2281e1 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -4749,6 +4749,12 @@ div .suggestion_note { } } +#plugin-search-form { + .form-group { + margin-bottom: 0px; + } +} + @import "header"; @import "toolbar"; @import "forms"; -- 2.34.1