From 64f6d1bf665572b92206fb0b253b5d50fd2690ce Mon Sep 17 00:00:00 2001 From: Hammat Wele Date: Thu, 11 Sep 2025 17:04:10 +0000 Subject: [PATCH] Bug 40787: Plugins buttons misaligned when search box is enabled 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. 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