Compare commits

...

2 Commits

Author SHA1 Message Date
934616c72f Merge pull request '[accessibility] Open the custom select when it gains focus' (#44) from banaanihillo/mozhi:accessibility/custom-select-keyboard into master
Some checks failed
mozhi pipeline / Push Docker image to Codeberg docker registry (push) Successful in 15m12s
mozhi pipeline / Build and publish artifacts (push) Has been cancelled
Reviewed-on: https://codeberg.org/aryak/mozhi/pulls/44
2024-08-23 13:14:48 +00:00
banaanihillo
251df5cdd8 Open the custom select when it gains focus 2024-07-06 20:12:51 +03:00

View File

@ -240,7 +240,8 @@ button:hover {
background-color: var(--engine-options-hover-bg);
}
.custom-select:hover .options {
.custom-select:hover .options,
.custom-select:focus-within .options {
display: block;
}