Skip to content

Commit

Permalink
Merge pull request #2041 from umbraco/v14/bugfix/content-type-editor-…
Browse files Browse the repository at this point in the history
…keyboard-nav

Bugfix: Content type editor keyboard navigation
  • Loading branch information
nielslyngsoe authored Jun 25, 2024
2 parents 2b6b31f + 4c67ccc commit 3bffc6c
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -484,11 +484,13 @@ export class UmbContentTypeDesignEditorPropertyElement extends UmbLitElement {
position: absolute;
top: var(--uui-size-space-2);
right: var(--uui-size-space-2);
display: none;
opacity: 0;
}
#editor:hover uui-action-bar,
#editor:focus uui-action-bar {
display: block;
#editor:focus uui-action-bar,
#editor:focus-within uui-action-bar {
opacity: 1;
}
a {
Expand Down

0 comments on commit 3bffc6c

Please sign in to comment.