Lower tray zIndex when overlay tray being opened

Fixes #3019
This commit is contained in:
Nick O'Leary 2021-06-23 14:34:52 +01:00
parent 2cda49fc38
commit d6f6efc189
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
1 changed files with 6 additions and 1 deletions

View File

@ -260,6 +260,9 @@
showTray(options);
},250)
} else {
if (stack.length > 0) {
stack[stack.length-1].tray.css("z-index", 0);
}
RED.events.emit("editor:open");
showTray(options);
}
@ -301,7 +304,7 @@
oldTray.tray.css({right:0});
if (oldTray.options.show) {
raiseTrayZ();
handleWindowResize();//cause call to monaco layout
handleWindowResize();//cause call to monaco layout
oldTray.options.show();
}
},0);
@ -322,6 +325,8 @@
$(".red-ui-sidebar-shade").hide();
RED.events.emit("editor:close");
RED.view.focus();
} else {
stack[stack.length-1].tray.css("z-index", "auto");
}
},250)
}