refactor: migrate session, script-builder, account to Design System v4

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Michael Chihlas
2026-03-22 02:08:57 -04:00
parent e4ef904707
commit 858f890ed3
30 changed files with 441 additions and 441 deletions

View File

@@ -47,7 +47,7 @@ export function ContinuationModal({
{/* Descendant Selection */}
{hasDescendants && (
<div>
<p className="mb-4 text-sm text-muted-foreground">
<p className="mb-4 text-sm text-[#848b9b]">
Select the next step in your troubleshooting path:
</p>
@@ -58,20 +58,20 @@ export function ContinuationModal({
onClick={() => onSelectNode(node.id)}
title={`From: ${node.parentOptionLabel}`}
className={cn(
'flex w-full items-center gap-3 rounded-lg border border-border p-3 text-left transition-colors',
'hover:border-border hover:bg-accent'
'flex w-full items-center gap-3 rounded-lg border border-[#1e2130] p-3 text-left transition-colors',
'hover:border-[#1e2130] hover:bg-accent'
)}
>
<div className="flex h-8 w-8 shrink-0 items-center justify-center rounded-full bg-accent">
{nodeTypeIcons[node.type]}
</div>
<div className="min-w-0 flex-1">
<p className="truncate font-medium text-foreground">{node.label}</p>
<p className="text-xs text-muted-foreground">
<p className="truncate font-medium text-[#e2e5eb]">{node.label}</p>
<p className="text-xs text-[#848b9b]">
{nodeTypeLabels[node.type]}
</p>
</div>
<ArrowRight className="h-4 w-4 shrink-0 text-muted-foreground" />
<ArrowRight className="h-4 w-4 shrink-0 text-[#848b9b]" />
</button>
))}
</div>
@@ -81,11 +81,11 @@ export function ContinuationModal({
{/* Divider */}
{hasDescendants && (
<div className="flex items-center gap-4">
<div className="h-px flex-1 bg-border" />
<span className="text-xs font-medium uppercase tracking-wide text-muted-foreground">
<div className="h-px flex-1 bg-[#1e2130]" />
<span className="text-xs font-medium uppercase tracking-wide text-[#848b9b]">
Or
</span>
<div className="h-px flex-1 bg-border" />
<div className="h-px flex-1 bg-[#1e2130]" />
</div>
)}
@@ -102,8 +102,8 @@ export function ContinuationModal({
<GitBranch className="h-5 w-5 text-amber-500" />
</div>
<div className="flex-1">
<p className="font-medium text-foreground">Build Custom Branch</p>
<p className="text-sm text-muted-foreground">
<p className="font-medium text-[#e2e5eb]">Build Custom Branch</p>
<p className="text-sm text-[#848b9b]">
Create your own troubleshooting path with custom steps
</p>
</div>