Skip to content

Commit 6bc347d

Browse files
authored
fix: move proper menu positioning style for split button into the component css (#33140)
1 parent 5b86f90 commit 6bc347d

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"type": "prerelease",
3+
"comment": "fix: move proper menu positioning for split button into component css",
4+
"packageName": "@fluentui/web-components",
5+
"email": "[email protected]",
6+
"dependentChangeType": "patch"
7+
}

packages/web-components/src/menu/menu.styles.ts

+4
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ export const styles = css`
2222
z-index: 1;
2323
}
2424
25+
:host([split]) ::slotted([popover]) {
26+
position-area: block-end span-inline-start;
27+
}
28+
2529
::slotted([popover]:popover-open) {
2630
inset: unset;
2731
}

packages/web-components/src/split-button/split-button.stories.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type { Menu as FluentMenu } from '../menu/menu.js';
66
type Story = StoryObj<FluentMenu>;
77

88
const defaultSlottedContent = html`
9-
<fluent-menu-list style="position-area: block-end span-inline-start;">
9+
<fluent-menu-list>
1010
<fluent-menu-item>Menu item 1</fluent-menu-item>
1111
<fluent-menu-item>Menu item 2</fluent-menu-item>
1212
<fluent-menu-item>Menu item 3</fluent-menu-item>

0 commit comments

Comments
 (0)