[Glitch] Fix messed up z-index when NoScript blocks media/previews

Port f53bd1bef6 to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
lolsob-rspec
ThibG 2020-04-28 09:44:17 +02:00 committed by Thibaut Girka
parent dfa13deaa1
commit e869a257d8
1 changed files with 12 additions and 0 deletions

View File

@ -150,3 +150,15 @@ button {
height: 100%;
}
}
// NoScript adds a __ns__pop2top class to the full ancestry of blocked elements,
// to set the z-index to a high value, which messes with modals and dropdowns.
// Blocked elements can in theory only be media and frames/embeds, so they
// should only appear in statuses, under divs and articles.
body,
div,
article {
.__ns__pop2top {
z-index: unset !important;
}
}