From fe94ba0646c3e8bf0ca0093cebeec9382aa90d5c Mon Sep 17 00:00:00 2001 From: Adam Perkowski Date: Fri, 14 Mar 2025 09:30:07 +0100 Subject: [PATCH] fix: some focus/selection bugs (#20) --- themes/theme.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/themes/theme.css b/themes/theme.css index 363dc82..54c75c1 100644 --- a/themes/theme.css +++ b/themes/theme.css @@ -99,13 +99,13 @@ html { } .paper-icon-button-light:active:not(:disabled), -.paper-icon-button-light:hover:not(:disabled), .listItem:hover, .listItem:focus, +.navMenuOption-selected, .navMenuOption:hover, .navMenuOption:focus { color: var(--main-color) !important; - background-color: var(--hover-background); + background-color: var(--hover-background) !important; } .listItemIcon:not(.listItemIcon-transparent) { @@ -333,3 +333,7 @@ div[role=presentation].jstree-wholerow-clicked { .backgroundContainer.withBackdrop { background-color: var(--main-background-transparent); } + +.emby-checkbox:focus:not(:checked) + span + .checkboxOutline { + border-color: var(--main-color); +}