From d7bae15bdeca372ffe0a5f523b278ddc5267e02c Mon Sep 17 00:00:00 2001 From: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Date: Tue, 15 Oct 2024 02:00:34 +1100 Subject: [PATCH] [8.x] [EDR Workflows] Fix navigation not opening on Response Console view (#195907) (#196134) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Backport This will backport the following commits from `main` to `8.x`: - [[EDR Workflows] Fix navigation not opening on Response Console view (#195907)](https://github.com/elastic/kibana/pull/195907) ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) Co-authored-by: Konrad Szwarc --- .../management/components/page_overlay/page_overlay.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/x-pack/plugins/security_solution/public/management/components/page_overlay/page_overlay.tsx b/x-pack/plugins/security_solution/public/management/components/page_overlay/page_overlay.tsx index 966e7aab6d833..570c250057f34 100644 --- a/x-pack/plugins/security_solution/public/management/components/page_overlay/page_overlay.tsx +++ b/x-pack/plugins/security_solution/public/management/components/page_overlay/page_overlay.tsx @@ -27,9 +27,12 @@ const OverlayRootContainer = styled.div` top: var(--euiFixedHeadersOffset, 0); bottom: 0; right: 0; + left: var(--euiCollapsibleNavOffset, 0); + width: calc(100% - var(--euiCollapsibleNavOffset, 0)); height: calc(100% - var(--euiFixedHeadersOffset, 0)); - width: 100%; + + border-left: 1px solid ${({ theme: { eui } }) => eui.euiColorLightestShade}; z-index: ${({ theme: { eui } }) => eui.euiZFlyout +