From f8cce49c3f36e03edd93ce141b93c49c7d6bfe58 Mon Sep 17 00:00:00 2001 From: Rigel Kent Date: Mon, 9 Mar 2020 11:11:09 +0100 Subject: [PATCH] Fix my-account list-overflow z-index for dropdowns compared to header --- client/src/sass/bootstrap.scss | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/client/src/sass/bootstrap.scss b/client/src/sass/bootstrap.scss index daa4a049f..e167fd02b 100644 --- a/client/src/sass/bootstrap.scss +++ b/client/src/sass/bootstrap.scss @@ -28,12 +28,11 @@ $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) { - &:not(.parent-entry) { - z-index: z(dropdown) !important; - } + z-index: z(dropdown) !important; + &.list-overflow-menu, &.parent-entry { - z-index: z(header) - 1; + z-index: z(header) - 1 !important; } }