From b278aa54bde4cbbc398d05f3b523f3a7382fd622 Mon Sep 17 00:00:00 2001 From: Hammat Wele Date: Wed, 5 Feb 2025 17:58:56 +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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss b/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss index d20a76d12d..33027e73f4 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss @@ -86,7 +86,7 @@ padding-left: 16px; border-radius: 0 16px 16px 0; white-space: nowrap; - z-index: 1; + z-index: 1000; display: flex; flex-grow: 1; -- 2.34.1