Admin popup menu needs a higher z-index than the bg cloak on mobile

This commit is contained in:
Kris 2020-05-07 16:24:47 -04:00
parent f9608c0af5
commit 94d10b46ca

View File

@ -40,7 +40,7 @@
width: 100%; width: 100%;
padding: 0; padding: 0;
padding-bottom: env(safe-area-inset-bottom); padding-bottom: env(safe-area-inset-bottom);
z-index: 1000; z-index: z("modal", "popover");
@keyframes slideUp { @keyframes slideUp {
0% { 0% {
@ -65,6 +65,10 @@
margin-top: 0; margin-top: 0;
} }
} }
.mobile-view & {
z-index: z("modal", "popover");
}
} }
.modal-body.feature-topic { .modal-body.feature-topic {