diff --git a/packages/calcite-components/src/components/list-item/list-item.scss b/packages/calcite-components/src/components/list-item/list-item.scss index 3638453dc01..928464a0f61 100755 --- a/packages/calcite-components/src/components/list-item/list-item.scss +++ b/packages/calcite-components/src/components/list-item/list-item.scss @@ -136,7 +136,9 @@ td:focus { .actions-start, .actions-end { - ::slotted(calcite-action) { + ::slotted(calcite-action), + ::slotted(calcite-action-menu), + ::slotted(calcite-handle) { @apply self-stretch; color: inherit; diff --git a/packages/calcite-components/src/components/list/list.stories.ts b/packages/calcite-components/src/components/list/list.stories.ts index f8aac4fea92..dc371b3f932 100644 --- a/packages/calcite-components/src/components/list/list.stories.ts +++ b/packages/calcite-components/src/components/list/list.stories.ts @@ -65,6 +65,26 @@ export const onlyLabelVersusOnlyDescription_TestOnly = (): string => html` `; +export const stretchSlottedContent = (): string => html` + + + + + + + + + + + +`; + export const nestedItems = (): string => html` export const simple = (): string => simpleHTML; +export const stretchSlottedContent = (): string => html` + + + + Hello World + + My great chip + + + + + + +`; + export const simpleDarkMode_TestOnly = (): string => simpleHTML; simpleDarkMode_TestOnly.parameters = { modes: modesDarkDefault };