forked from matrix/element-web
Move z-index to the dialog wrapper because that's the shallowest positioned element in the DOM and therefore what creates the first stacking context
This commit is contained in:
parent
0dd85d9adf
commit
eb1c6b347d
|
@ -107,11 +107,11 @@ a:visited {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background-color: #000;
|
background-color: #000;
|
||||||
opacity: 0.2;
|
opacity: 0.2;
|
||||||
z-index: 4000;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_Dialog_wrapper {
|
.mx_Dialog_wrapper {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
z-index: 4000;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
Loading…
Reference in New Issue