feat: conversational branching, AI markers, TaskLane improvements, collapsible sidebar #120

Merged
chihlasm merged 58 commits from feat/conversational-branching into main 2026-03-27 13:16:44 +00:00
Showing only changes of commit b96f4a42bb - Show all commits

View File

@@ -97,8 +97,11 @@ export function BranchNode({ branch, depth, isActive, onClick }: BranchNodeProps
{/* Expanded card — floats directly on top of the base card */} {/* Expanded card — floats directly on top of the base card */}
{showExpanded && ( {showExpanded && (
<> <>
{/* Scrim behind to dim everything */} {/* Scrim behind to dim everything — dismisses on mouse enter */}
<div className="fixed inset-0 z-40 bg-black/30" /> <div
className="fixed inset-0 z-40 bg-black/30"
onMouseEnter={() => setIsHovered(false)}
/>
{/* Expanded card positioned over the original */} {/* Expanded card positioned over the original */}
<div <div