Skip to content

Commit

Permalink
add overflow:visible to allow the workspace action menu to be highlig…
Browse files Browse the repository at this point in the history
…hted when tabbed into
  • Loading branch information
manutdkid77 committed Feb 20, 2025
1 parent ac3b17b commit d8e6c79
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class UmbWorkspaceActionMenuElement extends UmbLitElement {
margin="6"
placement="top-end"
@toggle=${this.#onPopoverToggle}>
<umb-popover-layout>
<umb-popover-layout id="workspace-action-popover-layout">
<uui-scroll-container>
${repeat(
this.items,
Expand Down Expand Up @@ -75,12 +75,17 @@ export class UmbWorkspaceActionMenuElement extends UmbLitElement {
#workspace-action-popover {
min-width: 200px;
}
#popover-trigger {
--uui-button-padding-top-factor: 0;
--uui-button-padding-bottom-factor: 0.125;
}
#workspace-action-popover-layout {
overflow: visible;
}
`,
];
}
Expand Down

0 comments on commit d8e6c79

Please sign in to comment.