fix: timeline filter dropdown rendered behind scroll container

Add relative z-20 to TimelineToolbar so ProjectCombobox and
ResourceCombobox dropdowns (z-[60]) render above the scroll
container below. The scroll container's relative positioning
was creating a stacking context that overlapped the dropdowns.

Co-Authored-By: claude-flow <ruv@ruv.net>
This commit is contained in:
2026-03-22 18:55:18 +01:00
parent 7b48b26c26
commit 7a57b5e649
@@ -90,7 +90,7 @@ export function TimelineToolbar({
} }
return ( return (
<div className="app-toolbar flex flex-wrap items-center justify-between gap-3"> <div className="app-toolbar relative z-20 flex flex-wrap items-center justify-between gap-3">
<div className="flex items-center gap-3"> <div className="flex items-center gap-3">
<ProjectCombobox <ProjectCombobox
value={filters.projectIds[0] ?? null} value={filters.projectIds[0] ?? null}