From: Rigel Kent Date: Mon, 9 Mar 2020 10:11:09 +0000 (+0100) Subject: Fix my-account list-overflow z-index for dropdowns compared to header X-Git-Tag: v2.2.0-rc.1~394 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f8cce49c3f36e03edd93ce141b93c49c7d6bfe58;p=oweals%2Fpeertube.git Fix my-account list-overflow z-index for dropdowns compared to header --- 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; } }