From d06aba6cf265c85c9984f71e49fed7175de2a05a Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 18 Nov 2022 09:55:06 +0100 Subject: [PATCH] Bug 32261: Add more UI feedback when selecting patron from autocomplete There is only a tiny change in the color of the selected item, but it's not obvious. Test plan: Regenerate the css files using `yarn build` Search for patrons and note that the down/up keys let you select a patron and the background color change. Note that the background color is not on the container and so is not similar as the hover rule (when using the mouse). We could change that, but then the behaviour is weird when you have both the mouse and the keyboard selecting items in the item list. Signed-off-by: Owen Leonard --- koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss | 3 +++ 1 file changed, 3 insertions(+) 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 054b6bf3a8..aad595f67a 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -2639,6 +2639,9 @@ td.bundle { .ui-state-active, .ui-state-focus { + background: #e3f1df none; + color: #212121; + font-weight: normal; margin: 0; } } -- 2.20.1