Keep the video options button visible when the dropdown is open (#4771)

This commit is contained in:
absidue 2024-03-25 15:21:10 +01:00 committed by GitHub
parent bce5fc9e3c
commit cac1d6be09
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -370,7 +370,9 @@ $watched-transition-duration: 0.5s;
}
&:hover .optionsButton,
&:has(:focus-visible) .optionsButton {
&:has(:focus-visible) .optionsButton,
// Keep visible when the drop down is open
:deep(.optionsButton:has(> .iconDropdown:focus-within)) {
opacity: 1;
}