From d30432e91a925a1f4106210857066e62e8dcce11 Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Tue, 19 Sep 2023 12:20:43 -1000 Subject: [PATCH] Bug 34835: Highlight logged-in library in patron searches fix for new staff interface Since Bug 30952 the feature from Bug 10902 does not work anymore. The class "currentlibrary" is there but no background color in CSS. Bug 30952 removed it : - background-color: #E6FCB7; This patch restores this rule plus '!important' that is used by class 'ac-currentlibrary' Test plan: 1) Perform a patrons search 2) Check you see green background color for patrons with same branch as currently logged in. Signed-off-by: David Nind --- koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 1 + 1 file changed, 1 insertion(+) 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 905bd67e18..2fd3025511 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -4230,6 +4230,7 @@ div .suggestion_note { } .currentlibrary { + background-color: #E6FCB7 !important; display: inline-block; padding: 2px 4px; } -- 2.30.2