From 711f3feb00eacd8ebd61e3a0a901e1cca6841c6c Mon Sep 17 00:00:00 2001 From: Lucas 'Paperboy' Rose-Winters Date: Tue, 21 Oct 2025 21:44:58 +1100 Subject: [PATCH] fix: increase refresh button z-index to appear above panel - Changed z-index from 99 to 1001 - Now properly layers: panel (1000) < refresh button (1001) < FAB toggle (10002) - Refresh button is now visible when panel is open --- style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.css b/style.css index 7670944..6a3ed8c 100644 --- a/style.css +++ b/style.css @@ -2728,7 +2728,7 @@ body:has(.rpg-panel.rpg-position-left) #sheld { align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); - z-index: 99; /* Below mobile FAB (100) but above content */ + z-index: 1001; /* Above panel (1000) but below mobile FAB (10002) */ /* Fix sticky tap highlight */ -webkit-tap-highlight-color: transparent;