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