From 14c064de640afa2582f5f413c5e8c229db72d6e0 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 13 Jan 2026 09:39:44 +0000 Subject: [PATCH] Fix video overlay issue - add z-index and disable zoom temporarily - Added z-index: 10 to webcam-player (higher than overlays) - Added z-index: 5 and display: none to timelapse/daily-video overlays - Disabled zoom script temporarily for testing --- aurora-livecam/index.php | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/aurora-livecam/index.php b/aurora-livecam/index.php index f2e7f00..01fb30c 100644 --- a/aurora-livecam/index.php +++ b/aurora-livecam/index.php @@ -1527,13 +1527,25 @@ nav ul li a:hover { color: #4CAF50; } z-index: 30; } -#webcam-player, #timelapse-viewer, #daily-video-player { +#webcam-player { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 8px; + z-index: 10; +} + +#timelapse-viewer, #daily-video-player { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + border-radius: 8px; + z-index: 5; + display: none; } .video-info-bar { @@ -2308,13 +2320,14 @@ document.getElementById('qrcode')?.addEventListener('click', function() { - + +