Skip to content

Commit

Permalink
feat: make actions container visible on focus-within (#949)
Browse files Browse the repository at this point in the history
  • Loading branch information
MMasey authored Nov 7, 2024
1 parent 414ce88 commit 29cfe66
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/uui-ref/lib/uui-ref.element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,8 @@ export class UUIRefElement extends SelectOnlyMixin(
opacity: 0;
transition: opacity 120ms;
}
:host(:hover) #actions-container {
:host(:hover) #actions-container,
:host(:focus-within) #actions-container {
opacity: 1;
}
Expand Down

0 comments on commit 29cfe66

Please sign in to comment.