From 201f3febf7de48dd562e3dfa34a4e52333e98392 Mon Sep 17 00:00:00 2001 From: Laura_Escamilla Date: Tue, 30 Sep 2025 21:08:02 +0000 Subject: [PATCH] Bug 40897: Resized the field lengths to ensure even lengths To test: 1. Select an existing record and manage items (or create a new record) so that you are on the additem.pl form. 2. Notice that the fields are uneven lengths. 3. Apply the patch. Do a yarn build and restart_all. Clear your browser cache if necessary. 4. Refresh the additem.pl page and notice that the fields are all the same length now. 5. Sign off and have a great day! Signed-off-by: CJ Lynce --- koha-tmpl/intranet-tmpl/prog/css/addbiblio.css | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/css/addbiblio.css b/koha-tmpl/intranet-tmpl/prog/css/addbiblio.css index 862cf98eb4..cd31aead1a 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/addbiblio.css +++ b/koha-tmpl/intranet-tmpl/prog/css/addbiblio.css @@ -245,7 +245,7 @@ div.item_edit_form ol li { } .item_edit_form .input_marceditor { - flex-basis: 50%; + flex-basis: 60%; float: none; } diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt index 32c79d0fa4..cc94134db3 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt @@ -46,7 +46,7 @@ } .flatpickr_wrapper { - flex-basis: 50%; + flex-basis: 60%; } -- 2.39.5