From cb989a137ac56814fd9930770c1e6716aa72600d Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 31 Oct 2024 15:12:54 +0100 Subject: [PATCH] Bug 38312: Do not hide patron search form behind the fixed header On the patron search form (/members/members-home.pl) if you open the patron search form *from the header search*, part of the form will be hidden behind the fixed header (the one with the select/clear, actions) Before: https://snipboard.io/oF2gBA.jpg After : https://snipboard.io/QqMiRH.jpg Using z-index: 1000 as the header as 999 Signed-off-by: Phil Ringnalda --- 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 ecd762633c..d20a76d12d 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/_header.scss @@ -123,7 +123,7 @@ border: 1px solid $background-color-primary; border-top: 0 none; box-shadow: 0 2px 2px 1px #00000030; - z-index: 1; + z-index: 1000; display: none; a { -- 2.44.0