a11y: outline color for menu controls #581

This commit is contained in:
Sören Weber 2023-06-28 19:21:41 +02:00
parent 75cdd546e0
commit c69c5890a9
No known key found for this signature in database
GPG key ID: BEC6D55545451B6D
2 changed files with 10 additions and 0 deletions

View file

@ -273,6 +273,11 @@
color: rgba( 255, 255, 255, 1 ); /* var(--MENU-SECTIONS-LINK-HOVER-color) */ color: rgba( 255, 255, 255, 1 ); /* var(--MENU-SECTIONS-LINK-HOVER-color) */
} }
#sidebar .menu-control button,
#sidebar .menu-control select{
outline-color: rgba( 255, 255, 255, 1 ); /* var(--MENU-SECTIONS-LINK-HOVER-color) */
}
#sidebar ul.enlarge > li.parent, #sidebar ul.enlarge > li.parent,
#sidebar ul.enlarge > li.active { #sidebar ul.enlarge > li.active {
background-color: rgba( 0, 0, 0, .166 ); /* var(--MENU-SECTIONS-ACTIVE-BG-color) */ background-color: rgba( 0, 0, 0, .166 ); /* var(--MENU-SECTIONS-ACTIVE-BG-color) */

View file

@ -62,6 +62,11 @@ a:hover,
color: var(--INTERNAL-MENU-SECTIONS-LINK-HOVER-color); color: var(--INTERNAL-MENU-SECTIONS-LINK-HOVER-color);
} }
#sidebar .menu-control button,
#sidebar .menu-control select{
outline-color: var(--INTERNAL-MENU-SECTIONS-LINK-HOVER-color);
}
#sidebar ul.enlarge > li.parent, #sidebar ul.enlarge > li.parent,
#sidebar ul.enlarge > li.active { #sidebar ul.enlarge > li.active {
background-color: var(--INTERNAL-MENU-SECTIONS-ACTIVE-BG-color); background-color: var(--INTERNAL-MENU-SECTIONS-ACTIVE-BG-color);