Skip to content

Commit abf0689

Browse files
authored
add overflow:visible to allow the workspace action menu to be highlighted (#18391)
* add overflow:visible to allow the workspace action menu to be highlighted when tabbed into
1 parent 38e9781 commit abf0689

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/Umbraco.Web.UI.Client/src/packages/core/workspace/components/workspace-action-menu/workspace-action-menu.element.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export class UmbWorkspaceActionMenuElement extends UmbLitElement {
4343
margin="6"
4444
placement="top-end"
4545
@toggle=${this.#onPopoverToggle}>
46-
<umb-popover-layout>
46+
<umb-popover-layout id="workspace-action-popover-layout">
4747
<uui-scroll-container>
4848
${repeat(
4949
this.items,
@@ -73,12 +73,17 @@ export class UmbWorkspaceActionMenuElement extends UmbLitElement {
7373
7474
#workspace-action-popover {
7575
min-width: 200px;
76+
7677
}
7778
7879
#popover-trigger {
7980
--uui-button-padding-top-factor: 0;
8081
--uui-button-padding-bottom-factor: 0.125;
8182
}
83+
84+
#workspace-action-popover-layout {
85+
overflow: visible;
86+
}
8287
`,
8388
];
8489
}

0 commit comments

Comments
 (0)