From 40c3409817a79e62723f2e1dd98138f28085e6e4 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 --- 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 c1231ee766..d46c23e888 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -1455,6 +1455,10 @@ i { input { vertical-align: middle; + + &.flatpickr-input { + max-width: 11em; + } } label { -- 2.30.2