fix(tracker-assist): z-index max
This commit is contained in:
parent
99ee0d953e
commit
8f92709696
2 changed files with 2 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ export default class CallWindow {
|
|||
const iframe = this.iframe = document.createElement('iframe');
|
||||
Object.assign(iframe.style, {
|
||||
position: "absolute",
|
||||
zIndex: "999999",
|
||||
zIndex: 2147483647 - 1,
|
||||
//borderRadius: ".25em .25em .4em .4em",
|
||||
//border: "4px rgba(0, 0, 0, .7)",
|
||||
border: "none",
|
||||
|
|
|
|||
|
|
@ -59,6 +59,7 @@ export default class Confirm {
|
|||
height: "100%",
|
||||
width: "100%",
|
||||
pointerEvents: "none",
|
||||
zIndex: 2147483647 - 1,
|
||||
})
|
||||
|
||||
wrapper.appendChild(popup);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue