From 26ede95e5772e52116b8c921fd3daab4d007897e Mon Sep 17 00:00:00 2001 From: Rigel Kent Date: Sun, 8 Mar 2020 18:02:14 +0100 Subject: Fix admin menu z-index for dropdowns compared to header --- client/src/sass/bootstrap.scss | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'client') diff --git a/client/src/sass/bootstrap.scss b/client/src/sass/bootstrap.scss index 5e0b16bfa..daa4a049f 100644 --- a/client/src/sass/bootstrap.scss +++ b/client/src/sass/bootstrap.scss @@ -28,7 +28,13 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; /* rules for dropdowns excepts when in button group, to avoid impacting the dropdown-toggle */ .dropdown:not(.btn-group) { - z-index: z(dropdown) !important; + &:not(.parent-entry) { + z-index: z(dropdown) !important; + } + + &.parent-entry { + z-index: z(header) - 1; + } } .dropdown-menu { -- cgit v1.2.3