From e53d97bc9fc9314205d8cc1ae2cd64b223885ee4 Mon Sep 17 00:00:00 2001 From: IgorA100 Date: Fri, 27 Feb 2026 16:54:46 +0300 Subject: [PATCH] For ".imageFeed svg.zones" apply z-index: 100 (skin.css) On the Zones page, with the default player = go2rtc, a zone may not display due to the added tag due to "position: relative" And zones should always be above all other elements. Possible fix #4648 --- web/skins/classic/css/base/skin.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/skins/classic/css/base/skin.css b/web/skins/classic/css/base/skin.css index 50f62519d..e02717772 100644 --- a/web/skins/classic/css/base/skin.css +++ b/web/skins/classic/css/base/skin.css @@ -1044,6 +1044,9 @@ a.flip { right: 0; background: none; } +.imageFeed svg.zones { + z-index: 100; +} .colThumbnail img { border-radius: 4px; }