From fa8dedaec490958ca5fc1d52f31be386cb63daaf Mon Sep 17 00:00:00 2001 From: Hammat Wele Date: Fri, 7 Feb 2025 21:48:46 +0000 Subject: [PATCH] Bug 27113: Fix autocomplete list position This patch set the z-index of form-content When you are on the search results page on the intranet, and you do another search that opens the autocomplete dropdown, the results page number is above it. --- koha-tmpl/intranet-tmpl/prog/css/src/_header.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss b/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss index d20a76d12d..93e95ffb08 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss @@ -60,7 +60,7 @@ display: flex; align-items: center; justify-content: flex-end; - z-index: 2; + z-index: 5; white-space: nowrap; flex-basis: 15%; @@ -86,7 +86,7 @@ padding-left: 16px; border-radius: 0 16px 16px 0; white-space: nowrap; - z-index: 1; + z-index: 4; display: flex; flex-grow: 1; -- 2.34.1