From e0b58ac205f96cfe5ff5ed1b0973880d674ceb7e Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 10 Nov 2022 19:04:11 +0000 Subject: [PATCH] Bug 32158: Specify due date field is very long now This patch adds a reasonable width to the "specify due date" date field on the circulation page. To test, apply the patch and rebuild the staff interface CSS. Check out to a patron and click the "setting" icon on the "Enter item barcode" field. In the checkout setting panel, confirm that the date field isn't unreasonably wide. Signed-off-by: Barbara Johnson Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi --- 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 7e733d0e87..5792e83c96 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -1450,6 +1450,10 @@ i { input { vertical-align: middle; + + &.flatpickr-input { + max-width: 11em; + } } label { -- 2.39.5