From a53939d497155e2f6fc6c2ee86badca34839961c 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 Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi Signed-off-by: Jacob O'Mara --- 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 1b12027ed6..9b61d29ab3 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss +++ b/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss @@ -2642,6 +2642,9 @@ td.bundle { .ui-state-active, .ui-state-focus { + background: #e3f1df none; + color: #212121; + font-weight: normal; margin: 0; } } -- 2.39.2