diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-03-09 11:11:09 +0100 |
---|---|---|
committer | Rigel Kent <sendmemail@rigelk.eu> | 2020-03-09 11:11:09 +0100 |
commit | f8cce49c3f36e03edd93ce141b93c49c7d6bfe58 (patch) | |
tree | 105298595bf24875043cc6fcf0b403caeb2c61b7 | |
parent | 937b7a6af8f5385ca2b6454f1e1e71d9275b6ac0 (diff) | |
download | PeerTube-f8cce49c3f36e03edd93ce141b93c49c7d6bfe58.tar.gz PeerTube-f8cce49c3f36e03edd93ce141b93c49c7d6bfe58.tar.zst PeerTube-f8cce49c3f36e03edd93ce141b93c49c7d6bfe58.zip |
Fix my-account list-overflow z-index for dropdowns compared to header
-rw-r--r-- | client/src/sass/bootstrap.scss | 7 |
1 files 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/'; | |||
28 | 28 | ||
29 | /* rules for dropdowns excepts when in button group, to avoid impacting the dropdown-toggle */ | 29 | /* rules for dropdowns excepts when in button group, to avoid impacting the dropdown-toggle */ |
30 | .dropdown:not(.btn-group) { | 30 | .dropdown:not(.btn-group) { |
31 | &:not(.parent-entry) { | 31 | z-index: z(dropdown) !important; |
32 | z-index: z(dropdown) !important; | ||
33 | } | ||
34 | 32 | ||
33 | &.list-overflow-menu, | ||
35 | &.parent-entry { | 34 | &.parent-entry { |
36 | z-index: z(header) - 1; | 35 | z-index: z(header) - 1 !important; |
37 | } | 36 | } |
38 | } | 37 | } |
39 | 38 | ||