From b3a4aa1e36fa3d28fcd4e054faabe6a664479924 Mon Sep 17 00:00:00 2001 From: Richard Sauer Date: Wed, 8 Apr 2026 16:05:51 +1000 Subject: [PATCH] Fix popup z-index to cover all content --- templates/editor.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/editor.html b/templates/editor.html index 9dcd960..d0b5785 100644 --- a/templates/editor.html +++ b/templates/editor.html @@ -158,8 +158,9 @@ body{font-family:'Segoe UI',system-ui,sans-serif;background:var(--bg);color:var( .inline-edit{background:transparent;border:none;border-bottom:2px solid var(--blue);color:var(--text);font-size:inherit;font-family:inherit;text-align:center;outline:none;width:100%} /* Popup */ -#popup-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.5);display:none;align-items:center;justify-content:center;z-index:50} +#popup-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.7);display:none;align-items:center;justify-content:center;z-index:500} #popup-overlay.active{display:flex} +.popup{z-index:501} .popup{background:var(--card);border:3px solid var(--blue);border-radius:16px;padding:24px;width:500px;display:flex;flex-direction:column;align-items:center;gap:16px} .popup .title{font-size:24px;color:var(--text2)} .popup .live{font-size:32px;font-weight:700}