From 605a4488acd6e8e2c8548b2b80f56539e3dc4da2 Mon Sep 17 00:00:00 2001 From: Ben Miller Date: Sun, 4 Jan 2026 10:54:14 -0700 Subject: [PATCH] fix(ui): resolve overlap between media item badges and sticky action bar - Added z-index: 20 to .action-bar to ensure it stays above absolute-positioned badges (z-index: 10). - Added position: relative to list items in plan and match modals to correctly contain badges. - Ensured action bar has solid background to cover scrolling content. --- src/MediaManager.html | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/src/MediaManager.html b/src/MediaManager.html index cc056b4..c9062c3 100644 --- a/src/MediaManager.html +++ b/src/MediaManager.html @@ -300,6 +300,7 @@ border-bottom-right-radius: 12px; display: flex; gap: 8px; + z-index: 20; } /* Modal */ @@ -574,6 +575,12 @@ .unlink-btn:hover { background: #fee2e2; } + + /* Ensure plan list items contain their absolute children */ + #details-content li, + #match-modal-text li { + position: relative; + } @@ -735,7 +742,7 @@

- +