From 23c66952db323356bd9ad7bd4330321666663ff6 Mon Sep 17 00:00:00 2001 From: dsyoon Date: Sun, 28 Dec 2025 00:12:54 +0900 Subject: [PATCH] Fix lightbox close button click (z-index) --- css/galleriffic-2.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/css/galleriffic-2.css b/css/galleriffic-2.css index d280805..65b5e86 100644 --- a/css/galleriffic-2.css +++ b/css/galleriffic-2.css @@ -196,10 +196,12 @@ div.navigation { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.85); + z-index: 0; } .lightbox-content { position: absolute; inset: 0; + z-index: 1; display: flex; align-items: center; justify-content: center; @@ -218,6 +220,7 @@ div.navigation { position: absolute; top: 14px; right: 14px; + z-index: 2; /* ensure clickable above .lightbox-content */ width: 44px; height: 44px; border-radius: 999px;