mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1055977 part 1: Use !important (and 'initial') in full-screen-override.css, to more thoroughly prevent ancestors of a fullscreen element from creating stacking contexts. r=dbaron
This commit is contained in:
parent
a07671d470
commit
40fc4720b8
@ -6,19 +6,19 @@
|
||||
*|*:-moz-full-screen-ancestor {
|
||||
/* Ancestors of a full-screen element should not induce stacking contexts
|
||||
that would prevent the full-screen element from being on top. */
|
||||
z-index: auto;
|
||||
z-index: initial !important;
|
||||
/* Ancestors of a full-screen element should not be partially transparent,
|
||||
since that would apply to the full-screen element and make the page visible
|
||||
behind it. It would also create a pseudo-stacking-context that would let content
|
||||
draw on top of the full-screen element. */
|
||||
opacity: 1;
|
||||
opacity: initial !important;
|
||||
/* Ancestors of a full-screen element should not apply SVG masking, clipping, or
|
||||
filtering, since that would affect the full-screen element and create a pseudo-
|
||||
stacking context. */
|
||||
mask: none;
|
||||
clip: auto;
|
||||
filter: none;
|
||||
-moz-transform: none;
|
||||
will-change: auto;
|
||||
mask: initial !important;
|
||||
clip: initial !important;
|
||||
filter: initial !important;
|
||||
transform: initial !important;
|
||||
will-change: initial !important;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user