From 9366b33dea6ab68a7840ae9a2388873c8d58b02f Mon Sep 17 00:00:00 2001 From: Laura_Escamilla Date: Thu, 4 Sep 2025 15:53:52 +0000 Subject: [PATCH] Bug 40727: Fix minor styling bug To test: 1. Go to a patron's account 2. Make sure they have an email address in their account 3. Go to their Accounting tab 4. Create a manual invoice 5. Pay the fee 6. Go to the Transactions tab and click the Receipt button --> There should be two options: Print and Email --> Note that the options are slightly misaligned (the Print is slightly more to the left) 7. Hover the mouse cursor over one option and then the next --> The background for the Email option goes over the edge of the pop-up menu on the right 8. Apply the patch. Do a yarn build and then restart_all. Next clear the cache in your local browser and refresh the page. 9. Repeat steps 6 & 7. Email is now properly aligned and when you hover over it the button no longer overflows. 10. Sign off -- have a great day :D Signed-off-by: Caroline Cyr La Rose --- koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 4 ++++ 1 file changed, 4 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..7f4271fe2b5 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -2229,6 +2229,10 @@ td { margin-left: 0; } } + + .dropdown-menu .dropdown-item { + margin-left: 0; + } } &.bookcoverimg { -- 2.43.0