From e77eb947ac669b22652e51158f6ec010cb4b3f2d Mon Sep 17 00:00:00 2001 From: CJ Cenizal Date: Mon, 23 Mar 2020 13:30:13 -0700 Subject: [PATCH] Fix bottom bar z-index. --- x-pack/plugins/painless_lab/public/styles/_index.scss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/x-pack/plugins/painless_lab/public/styles/_index.scss b/x-pack/plugins/painless_lab/public/styles/_index.scss index ed9f7d5a8d248..f68dbe302511a 100644 --- a/x-pack/plugins/painless_lab/public/styles/_index.scss +++ b/x-pack/plugins/painless_lab/public/styles/_index.scss @@ -45,10 +45,11 @@ $bottomBarHeight: calc(#{$euiSize} * 3); } /** - * 1. Hack EUI so the bottom bar doesn't obscure the nav drawer flyout. + * 1. Hack EUI so the bottom bar doesn't obscure the nav drawer flyout, but is also not obscured + * by the main content area. */ .painlessLab__bottomBar { - z-index: 0; /* 1 */ + z-index: 5; /* 1 */ left: $euiNavDrawerWidthCollapsed; }