Browse Source

Fix messed up z-index when NoScript blocks media/previews (#13449)

Fixes #13444
master
ThibG 4 years ago
committed by GitHub
parent
commit
04eb599864
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions
  1. +12
    -0
      app/javascript/styles/mastodon/basics.scss

+ 12
- 0
app/javascript/styles/mastodon/basics.scss View File

@ -229,3 +229,15 @@ button {
}
}
}
// 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;
}
}

Loading…
Cancel
Save