From 33ce3b3271cfa00022fa8351700eec58d97c4c0f Mon Sep 17 00:00:00 2001 From: Hammat Wele Date: Tue, 16 Jan 2024 21:29:37 +0000 Subject: [PATCH] Bug 27113: Fix the Input Size of the Catalog Search Bar This patch addresses the sizing issue with the catalog search bar, ensuring that the input zone now covers the entire white bar area. TEST PLAN: 1) Apply the patches that precede this one. 2) Activate IntranetAutocompleteElasticSearch and OPACAutocompleteElasticSearch in the system preferences. 2) Click "Catalog search" in the navigation bar. 3) Click on the right side of the white area of the search bar. 4) Confirm that it does not allow you to start typing unless you click on the left side of the search bar. 5) Apply this patch. 6) Repeat steps 2 and 3. 7) Verify that this time it allows you to type in the search bar even if you click on the right side of the searc h bar. --- 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 20c9f9f471..a523b34250 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -4469,6 +4469,10 @@ div .suggestion_note { text-indent: initial; } +#cat-search-block .autocomplete { + width:100%; +} + .autocomplete-items { position: absolute; border: 1px solid #d4d4d4; -- 2.34.1