From 691e3026d9537b1ba3570285b7c380159f5bdaa5 Mon Sep 17 00:00:00 2001 From: Badri Sunderarajan Date: Fri, 8 May 2020 15:44:38 +0530 Subject: [PATCH] Increase z-index of "Loading..." bookmarklet banner Medium's popup was overpowering it, but now we've got the other hand --- static/bookmarklet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/bookmarklet.js b/static/bookmarklet.js index 10dc1e4..d4084c8 100644 --- a/static/bookmarklet.js +++ b/static/bookmarklet.js @@ -18,7 +18,7 @@ // Keep the user engaged with a nice bannery message var d1 = document.createElement('div') - d1.style="position: absolute; top:0; right: 0; left: 0; background-color: turquoise; min-height: 2em; z-index: 100; text-align: center;" + d1.style="position: absolute; top:0; right: 0; left: 0; background-color: turquoise; min-height: 2em; z-index: 1000; text-align: center;" var p1 = document.createElement('p') p1.innerHTML = 'Seance loading in progress...'