From 85968e7b2a8adf91a6043fd9443bbb235a98dd44 Mon Sep 17 00:00:00 2001 From: saravanakumardb1 Date: Sat, 21 Mar 2026 20:18:44 -0700 Subject: [PATCH] fix(web): replace --ml-* (MindLyst) with --nl-* (NoteLett) CSS namespace across 18 files --- web/src/app/(app)/dashboard/page.tsx | 64 +++++++++++------------ web/src/app/(app)/notes/[noteId]/page.tsx | 10 ++-- web/src/app/(app)/reviews/page.tsx | 58 ++++++++++---------- web/src/app/(app)/search/page.tsx | 50 +++++++++--------- web/src/app/(app)/settings/page.tsx | 14 ++--- web/src/app/(app)/workspaces/page.tsx | 38 +++++++------- web/src/app/globals.css | 38 +++++++------- web/src/app/not-found.tsx | 6 +-- web/src/app/page.tsx | 12 ++--- web/src/components/AgentTimeline.tsx | 12 ++--- web/src/components/AppShell.tsx | 8 +-- web/src/components/ArtifactPanel.tsx | 26 ++++----- web/src/components/LinkedNotesPanel.tsx | 6 +-- web/src/components/MetadataPanel.tsx | 16 +++--- web/src/components/NoteEditor.tsx | 18 +++---- web/src/components/ProposalReviewCard.tsx | 24 ++++----- web/src/components/Sidebar.tsx | 22 ++++---- web/src/components/TaskReviewPanel.tsx | 22 ++++---- 18 files changed, 222 insertions(+), 222 deletions(-) diff --git a/web/src/app/(app)/dashboard/page.tsx b/web/src/app/(app)/dashboard/page.tsx index 1e9f7e7..62af04d 100644 --- a/web/src/app/(app)/dashboard/page.tsx +++ b/web/src/app/(app)/dashboard/page.tsx @@ -131,58 +131,58 @@ export default function DashboardPage() { } > -
+
{summaryCards.map((card) => ( - -
{card.label}
-
{card.value}
+ +
{card.label}
+
{card.value}
))}
-
-
-
Saved views
-
+
+
+
Saved views
+
{savedViews.map((view) => ( -
+
{view.name} {view.scope}
-
{view.description}
-
- {view.query} - {view.resultCount} results +
{view.description}
+
+ {view.query} + {view.resultCount} results
))}
-
-
Operator workflows
-
+
+
Operator workflows
+
{operatorWorkflows.map((workflow) => ( -
+
{workflow.name} {workflow.status}
-
Owner: {workflow.owner}
-
- Queue: {workflow.queueCount} - SLA: {workflow.sla} +
Owner: {workflow.owner}
+
+ Queue: {workflow.queueCount} + SLA: {workflow.sla}
))} @@ -190,22 +190,22 @@ export default function DashboardPage() {
-
-
Recent note activity
- {error ?
{error}
: null} -
+
+
Recent note activity
+ {error ?
{error}
: null} +
{recentNotes.map((note) => ( -
-
+
+
{note.title} - {note.updatedBy} + {note.updatedBy}
- + {note.excerpt} -
+
{note.tags.map((tag) => ( #{tag} diff --git a/web/src/app/(app)/notes/[noteId]/page.tsx b/web/src/app/(app)/notes/[noteId]/page.tsx index aa43308..a4df35e 100644 --- a/web/src/app/(app)/notes/[noteId]/page.tsx +++ b/web/src/app/(app)/notes/[noteId]/page.tsx @@ -148,7 +148,7 @@ export default function NoteDetailPage() { description="Editable note surface with metadata, linked context, tasks, artifacts, and review history." actions={
Loading
} > -
+
{error ?? "Loading note…"}
@@ -160,7 +160,7 @@ export default function NoteDetailPage() { title={note.title} description="Editable note surface with metadata, linked context, tasks, artifacts, and review history." actions={ -
+
{isSaving ? (
Saving
) : ( @@ -182,11 +182,11 @@ export default function NoteDetailPage() {
} > -
+
-