From 2d65d98116a9fe4d47dd90dab12f938762a6a2c1 Mon Sep 17 00:00:00 2001 From: Ruslan Date: Tue, 28 Apr 2026 13:29:53 +0000 Subject: [PATCH] fix: link z-index:0, tile z-index:1 pointer-events:none, scroll restored --- app/static/style.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/app/static/style.css b/app/static/style.css index 52386ca..ee80a12 100644 --- a/app/static/style.css +++ b/app/static/style.css @@ -360,8 +360,7 @@ button { flex-direction: column; gap: 0.3rem; flex-shrink: 0; - position: relative; - z-index: 2; + pointer-events: auto; } .svc-cred-row { display: flex; @@ -417,7 +416,7 @@ button { .tile-link { position: absolute; inset: 0; - z-index: 1; + z-index: 0; border-radius: 12px; } .tile { @@ -435,7 +434,8 @@ button { min-height: 0; overflow: hidden; position: relative; - z-index: 0; + z-index: 1; + pointer-events: none; } .tile-wrap:hover .tile { transform: translateY(-2px); @@ -481,6 +481,7 @@ button { display: flex; flex-direction: column; overflow: hidden; + pointer-events: auto; } .tile-comment { display: block;