From 683ecb743c66eca4486650ae999683a824067fae 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 c1c6d5dea1..64dfb31ca7 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -4477,6 +4477,10 @@ div .suggestion_note { text-indent: initial; } +#cat-search-block .autocomplete { + width:100%; +} + .autocomplete-items { position: absolute; border: 1px solid #d4d4d4; -- 2.34.1