From 8208d931d00c176520928566aa9398ed241160e0 Mon Sep 17 00:00:00 2001 From: pratiyankkumar Date: Wed, 23 Jul 2025 15:36:38 +0530 Subject: [PATCH 1/2] fix: Added z-index in playhead so it doesnt appears above popups --- apps/web/src/components/editor/timeline/timeline-playhead.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/web/src/components/editor/timeline/timeline-playhead.tsx b/apps/web/src/components/editor/timeline/timeline-playhead.tsx index 7a357067..33fcf4f5 100644 --- a/apps/web/src/components/editor/timeline/timeline-playhead.tsx +++ b/apps/web/src/components/editor/timeline/timeline-playhead.tsx @@ -72,6 +72,7 @@ export function TimelinePlayhead({ top: 0, height: `${totalHeight}px`, width: "2px", // Slightly wider for better click target + zIndex: 50, }} onMouseDown={handlePlayheadMouseDown} > From b288cc0eeeac9218db631e46a5a78e2cf35a1481 Mon Sep 17 00:00:00 2001 From: pratiyankkumar Date: Fri, 25 Jul 2025 20:58:57 +0530 Subject: [PATCH 2/2] fix: increase z-index of playhead for improved visibility over timeline while dragging --- apps/web/src/components/editor/timeline/timeline-playhead.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/components/editor/timeline/timeline-playhead.tsx b/apps/web/src/components/editor/timeline/timeline-playhead.tsx index 33fcf4f5..77e1b68f 100644 --- a/apps/web/src/components/editor/timeline/timeline-playhead.tsx +++ b/apps/web/src/components/editor/timeline/timeline-playhead.tsx @@ -72,7 +72,7 @@ export function TimelinePlayhead({ top: 0, height: `${totalHeight}px`, width: "2px", // Slightly wider for better click target - zIndex: 50, + zIndex: 100, }} onMouseDown={handlePlayheadMouseDown} >