Skip to content

Commit 76aece0

Browse files
committed
fix: remove unwanted z-index override on PageOverlay that causes flyouts to render incorrectly
1 parent effc35d commit 76aece0

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

  • x-pack/solutions/security/plugins/security_solution/public/management/components/page_overlay

x-pack/solutions/security/plugins/security_solution/public/management/components/page_overlay/page_overlay.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,7 @@ const OverlayRootContainer = styled.div`
3333
3434
border-left: 1px solid ${({ theme: { eui } }) => eui.euiColorLightestShade};
3535
36-
z-index: ${({ theme: { eui } }) =>
37-
eui.euiZFlyout +
38-
3}; // we need to have this response div rendered above the timeline flyout (with z-index at 1002)
36+
z-index: ${({ theme: { eui } }) => eui.euiZFlyout};
3937
4038
background-color: ${({ theme: { eui } }) => eui.euiColorEmptyShade};
4139

0 commit comments

Comments
 (0)