From 77003f40bc668d7bbd056c6908b89fba3a8333f9 Mon Sep 17 00:00:00 2001 From: Lambda Date: Sat, 11 Jul 2026 17:48:59 +0800 Subject: [PATCH] fix(issues): float find bar above sticky resolve collapse bars (MUL-4414) The in-page find bar (absolute, z-20) and the resolve collapse bars pinned at the timeline's top-0 (sticky, z-20) tied on z-index, so the later-in-DOM collapse bar painted over the find bar, half-hiding it and orphaning its close button. Raise the find bar to z-30 so the transient overlay reliably paints above every sticky affordance in the content column (comment headers z-10, collapse bars z-20). Co-authored-by: multica-agent --- packages/views/issues/components/issue-detail.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/packages/views/issues/components/issue-detail.tsx b/packages/views/issues/components/issue-detail.tsx index 52b7a32aba..69847f9c19 100644 --- a/packages/views/issues/components/issue-detail.tsx +++ b/packages/views/issues/components/issue-detail.tsx @@ -1852,9 +1852,13 @@ export function IssueDetail({ issueId, onDelete, onDone, defaultSidebarOpen = tr
{/* In-page find bar — floats over the top-right of the content column (below the breadcrumb header), outside the scroll container so it - stays put while the timeline scrolls and its own text isn't walked. */} + stays put while the timeline scrolls and its own text isn't walked. + z-30: must beat every sticky affordance pinned at the timeline's + top-0 (comment headers z-10, resolve collapse bars z-20) — at equal + z the later-in-DOM sticky bar paints over the find bar and orphans + its close button (MUL-4414). */} {find.open && ( - + )}