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
This commit is contained in:
Lucas 'Paperboy' Rose-Winters
2025-10-21 21:44:58 +11:00
parent 8e913031f1
commit 711f3feb00
+1 -1
View File
@@ -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;