From ef7008f6a3936bfa3c3495211a7bc4784b1b531a 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 Signed-off-by: Jonathan Druart --- 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 905bd67e18e..2fd3025511f 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.25.1