aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/sass/bootstrap.scss
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2020-03-09 11:11:09 +0100
committerRigel Kent <sendmemail@rigelk.eu>2020-03-09 11:11:09 +0100
commitf8cce49c3f36e03edd93ce141b93c49c7d6bfe58 (patch)
tree105298595bf24875043cc6fcf0b403caeb2c61b7 /client/src/sass/bootstrap.scss
parent937b7a6af8f5385ca2b6454f1e1e71d9275b6ac0 (diff)
downloadPeerTube-f8cce49c3f36e03edd93ce141b93c49c7d6bfe58.tar.gz
PeerTube-f8cce49c3f36e03edd93ce141b93c49c7d6bfe58.tar.zst
PeerTube-f8cce49c3f36e03edd93ce141b93c49c7d6bfe58.zip
Fix my-account list-overflow z-index for dropdowns compared to header
Diffstat (limited to 'client/src/sass/bootstrap.scss')
-rw-r--r--client/src/sass/bootstrap.scss7
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