From d39260fa970c24f81415d477926af2d6539a2a9b Mon Sep 17 00:00:00 2001 From: adbenitez Date: Fri, 7 Jan 2022 16:58:10 -0500 Subject: [PATCH] set a high z-index to the control panel so it is always on top --- webxdc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webxdc.js b/webxdc.js index acea8e6..eed8186 100644 --- a/webxdc.js +++ b/webxdc.js @@ -61,7 +61,7 @@ window.clearXdcStorage = () => { } window.alterXdcApp = () => { - var styleControlPanel = 'position: fixed; bottom:1em; left:1em; background-color: #000; opacity:0.8; padding:.5em; font-family: sans-serif; color:#fff;'; + var styleControlPanel = 'position: fixed; bottom:1em; left:1em; background-color: #000; opacity:0.8; padding:.5em; font-family: sans-serif; color:#fff; z-index: 9999'; var styleMenuLink = 'color:#fff; text-decoration: none; vertical-align: middle'; var styleAppIcon = 'height: 1.5em; width: 1.5em; margin-right: 0.5em; border-radius:10%; vertical-align: middle'; var title = document.getElementsByTagName('title')[0];