From 20302900b81bc79a9421f164ca0b28e295b36a39 Mon Sep 17 00:00:00 2001 From: chihlasm Date: Tue, 24 Mar 2026 21:51:24 +0000 Subject: [PATCH] fix: improve text contrast on DevBranchingPage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Page subtitle: text-secondary → text-primary - Helper text: text-muted → text-secondary - Section labels: text-muted → text-secondary - Detail card labels: text-muted → text-secondary - Detail card values: text-primary → text-heading - Detail card body: text-secondary → text-primary Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/src/pages/DevBranchingPage.tsx | 34 ++++++++++++------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/frontend/src/pages/DevBranchingPage.tsx b/frontend/src/pages/DevBranchingPage.tsx index de99861c..ac573b99 100644 --- a/frontend/src/pages/DevBranchingPage.tsx +++ b/frontend/src/pages/DevBranchingPage.tsx @@ -455,7 +455,7 @@ export default function DevBranchingPage() {

Conversational Branching — Component Test

-

+

Mock scenario: Intermittent connectivity on WS-1042. 5 branches, 1 fork, 1 revival.

@@ -469,7 +469,7 @@ export default function DevBranchingPage() { toBranch={activeBranch} /> ) : ( -

Click a branch in the sidebar to see the transition bar.

+

Click a branch in the sidebar to see the transition bar.

)} @@ -519,35 +519,35 @@ export default function DevBranchingPage() {
- Label:{' '} - {activeBranch.label} + Label:{' '} + {activeBranch.label}
- Status:{' '} - {activeBranch.status} + Status:{' '} + {activeBranch.status}
- Steps:{' '} - {activeBranch.step_count} + Steps:{' '} + {activeBranch.step_count}
- Order:{' '} - {activeBranch.branch_order} + Order:{' '} + {activeBranch.branch_order}
{activeBranch.status_reason && (
- Reason:{' '} - {activeBranch.status_reason} + Reason:{' '} + {activeBranch.status_reason}
)} {activeBranch.context_summary && (
- Tried:{' '} - {activeBranch.context_summary.tried.join(', ')} + Tried:{' '} + {activeBranch.context_summary.tried.join(', ')}
- Concluded:{' '} - {activeBranch.context_summary.concluded} + Concluded:{' '} + {activeBranch.context_summary.concluded}
)}
@@ -570,7 +570,7 @@ export default function DevBranchingPage() { function SectionLabel({ children }: { children: React.ReactNode }) { return ( - + {children} )