Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ export async function getEditLensConfiguration(
size="s"
hideCloseButton
css={css`
clip-path: polygon(-100% 0, 100% 0, 100% 100%, -100% 100%);
clip-path: none; // need to override the eui-flyout clip-path for dnd outside of the flyout
`}
>
{children}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
// styles needed to display extra drop targets that are outside of the config panel main area while also allowing to scroll vertically
.lnsConfigPanel__overlay {
clip-path: polygon(-100% 0, 100% 0, 100% 100%, -100% 100%);
clip-path:none; // need to override the eui-flyout clip-path
max-inline-size: $euiSizeXXL * 20;
min-inline-size: $euiSizeXXL * 8;
background: $euiColorLightestShade;
@include euiBreakpoint('xs', 's', 'm') {
clip-path: none;
}

.kbnOverlayMountWrapper {
padding-left: $euiFormMaxWidth;
margin-left: -$euiFormMaxWidth;
Expand All @@ -21,4 +19,4 @@
.euiFlyoutBody__overflow {
transform: initial;
}
}
}