diff --git a/frontend/src/app/activity/page.tsx b/frontend/src/app/activity/page.tsx index c83c2a5..0344fe5 100644 --- a/frontend/src/app/activity/page.tsx +++ b/frontend/src/app/activity/page.tsx @@ -242,7 +242,7 @@ const eventLabel = (eventType: FeedEventType): string => { const eventPillClass = (eventType: FeedEventType): string => { if (eventType === "task.comment") { - return "border-blue-200 bg-blue-50 text-blue-700"; + return "border-primary/30 bg-primary/10 text-primary"; } if (eventType === "task.created") { return "border-emerald-200 bg-emerald-50 text-emerald-700"; @@ -263,7 +263,7 @@ const eventPillClass = (eventType: FeedEventType): string => { return "border-lime-200 bg-lime-50 text-lime-700"; } if (eventType === "agent.offline") { - return "border-slate-300 bg-slate-100 text-slate-700"; + return "border-input bg-accent text-muted-foreground"; } if (eventType === "agent.updated") { return "border-indigo-200 bg-indigo-50 text-indigo-700"; @@ -280,7 +280,7 @@ const eventPillClass = (eventType: FeedEventType): string => { if (eventType === "approval.rejected") { return "border-rose-200 bg-rose-50 text-rose-700"; } - return "border-slate-200 bg-slate-100 text-slate-700"; + return "border-border bg-accent text-muted-foreground"; }; const FeedCard = memo(function FeedCard({ @@ -297,14 +297,14 @@ const FeedCard = memo(function FeedCard({
-
+
{authorAvatar}
@@ -312,7 +312,7 @@ const FeedCard = memo(function FeedCard({ {item.context_href ? ( ) : ( -

+

{item.title}

)} -
+
{item.board_name} ) : item.board_name ? ( - + {item.board_name} ) : null} {item.board_name ? ( - · + · ) : null} - + {item.actor_name} {item.actor_role ? ( <> - · - {item.actor_role} + · + {item.actor_role} ) : null} - · - + · + {formatShortTimestamp(item.created_at)}
@@ -370,11 +370,11 @@ const FeedCard = memo(function FeedCard({
{message ? ( -
+
) : ( -

+

)}
); @@ -1506,18 +1506,18 @@ export default function ActivityPage() { -
-
+
+
- -

+ +

Live feed

-

+

Realtime task, approval, agent, and board-chat activity across all boards.

diff --git a/frontend/src/app/agents/[agentId]/edit/page.tsx b/frontend/src/app/agents/[agentId]/edit/page.tsx index e80d035..7abcfe9 100644 --- a/frontend/src/app/agents/[agentId]/edit/page.tsx +++ b/frontend/src/app/agents/[agentId]/edit/page.tsx @@ -258,16 +258,16 @@ export default function EditAgentPage() { >
-

+

Basic configuration

-
-