From 61c410e366f37eb56302ff84304fd81ea248368f Mon Sep 17 00:00:00 2001 From: chihlasm Date: Sun, 29 Mar 2026 16:20:24 +0000 Subject: [PATCH] feat: replace orange-* Tailwind classes with blue-* equivalents MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit orange-400→blue-400, orange-500→blue-500, orange-600→blue-600 across ~21 component files. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../src/components/assistant/ConcludeSessionModal.tsx | 2 +- frontend/src/components/dashboard/PreparedSessions.tsx | 6 +++--- frontend/src/components/dashboard/WeeklyCalendar.tsx | 2 +- .../src/components/flowpilot/FlowPilotActionBar.tsx | 2 +- frontend/src/components/flowpilot/FlowPilotSession.tsx | 2 +- .../src/components/flowpilot/StatusUpdateModal.tsx | 6 +++--- frontend/src/components/library/TreeGridView.tsx | 2 +- frontend/src/components/library/TreeListView.tsx | 2 +- frontend/src/components/library/TreeTableView.tsx | 2 +- .../src/components/procedural/InlineVariablePrompt.tsx | 10 +++++----- .../src/components/procedural/PrepareSessionModal.tsx | 2 +- .../components/script-builder/ScriptBuilderChat.tsx | 6 +++--- .../src/components/script-builder/ScriptCodeBlock.tsx | 2 +- .../components/script-builder/ScriptPreviewModal.tsx | 2 +- .../components/scripts/ParameterizeAndSavePanel.tsx | 2 +- .../src/components/session/TicketLinkIndicator.tsx | 2 +- frontend/src/components/session/UpdateTicketModal.tsx | 2 +- frontend/src/pages/AssistantChatPage.tsx | 2 +- frontend/src/pages/FlowPilotSessionPage.tsx | 6 +++--- frontend/src/pages/ProceduralNavigationPage.tsx | 10 +++++----- frontend/src/pages/SessionHistoryPage.tsx | 2 +- 21 files changed, 37 insertions(+), 37 deletions(-) diff --git a/frontend/src/components/assistant/ConcludeSessionModal.tsx b/frontend/src/components/assistant/ConcludeSessionModal.tsx index 7fa87ad3..9f995c8d 100644 --- a/frontend/src/components/assistant/ConcludeSessionModal.tsx +++ b/frontend/src/components/assistant/ConcludeSessionModal.tsx @@ -467,7 +467,7 @@ export function ConcludeSessionModal({ {/* Paused/Escalated: generating spinner */} {(outcome === 'paused' || outcome === 'escalated') && generatingUpdate && (
- +

Generating status update...

)} diff --git a/frontend/src/components/dashboard/PreparedSessions.tsx b/frontend/src/components/dashboard/PreparedSessions.tsx index 8a4005ca..5664644e 100644 --- a/frontend/src/components/dashboard/PreparedSessions.tsx +++ b/frontend/src/components/dashboard/PreparedSessions.tsx @@ -31,9 +31,9 @@ export function PreparedSessions() {
- +

Prepared for You

- + {sessions.length}
@@ -52,7 +52,7 @@ export function PreparedSessions() { onClick={() => handleStart(session)} className={cn( 'group flex w-full items-center justify-between gap-3 rounded-lg border border-border px-4 py-3', - 'text-left transition-all hover:border-orange-500/30 hover:bg-orange-500/5' + 'text-left transition-all hover:border-blue-500/30 hover:bg-blue-500/5' )} >
diff --git a/frontend/src/components/dashboard/WeeklyCalendar.tsx b/frontend/src/components/dashboard/WeeklyCalendar.tsx index ba590e5a..c50bcdb1 100644 --- a/frontend/src/components/dashboard/WeeklyCalendar.tsx +++ b/frontend/src/components/dashboard/WeeklyCalendar.tsx @@ -56,7 +56,7 @@ export function WeeklyCalendar({ events = {} }: WeeklyCalendarProps) { borderBottom: day.isToday ? '2px solid #ea580c' : '1px solid var(--color-border-default)', }} > - + {day.label}
diff --git a/frontend/src/components/flowpilot/FlowPilotActionBar.tsx b/frontend/src/components/flowpilot/FlowPilotActionBar.tsx index 30fc9994..df72f812 100644 --- a/frontend/src/components/flowpilot/FlowPilotActionBar.tsx +++ b/frontend/src/components/flowpilot/FlowPilotActionBar.tsx @@ -108,7 +108,7 @@ export function FlowPilotActionBar({ diff --git a/frontend/src/pages/FlowPilotSessionPage.tsx b/frontend/src/pages/FlowPilotSessionPage.tsx index 457c369a..55927daf 100644 --- a/frontend/src/pages/FlowPilotSessionPage.tsx +++ b/frontend/src/pages/FlowPilotSessionPage.tsx @@ -207,7 +207,7 @@ export default function FlowPilotSessionPage() {
@@ -263,7 +263,7 @@ export default function FlowPilotSessionPage() {