From cdc7da0df0232c30c1d7f3fa2d74f67b0b9d5a0c Mon Sep 17 00:00:00 2001 From: ugla Date: Wed, 29 Dec 2021 22:03:33 +0100 Subject: Set z-index on hint container to max value --- src/scripts/hints.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/hints.js b/src/scripts/hints.js index 1f887ec..d4b3d05 100644 --- a/src/scripts/hints.js +++ b/src/scripts/hints.js @@ -229,7 +229,7 @@ var hints = Object.freeze((function(){ hDiv.style.position = "fixed"; hDiv.style.top = "0"; hDiv.style.left = "0"; - hDiv.style.zIndex = "225000"; + hDiv.style.zIndex = "2147483647"; hDiv.appendChild(fragment); if (doc.body) { doc.body.appendChild(hDiv); -- cgit v1.2.3