diff --git a/.changeset/planner-chat-expanded-takeover.md b/.changeset/planner-chat-expanded-takeover.md index ca61d3da34..45a56a0dc8 100644 --- a/.changeset/planner-chat-expanded-takeover.md +++ b/.changeset/planner-chat-expanded-takeover.md @@ -2,6 +2,6 @@ "@runfusion/fusion": patch --- -summary: Make Planner Chat collapsed by default with a floating expand control that takes over the detail view. +summary: Compact Planner Chat chrome and align Activity Live with the same plain composer row. category: fix -dev: Planner Chat expansion now mirrors Activity's overlay control and hides most task-detail chrome while preserving title/workflow context. +dev: Planner Chat removes its redundant header, moves the provider icon to the empty state, and Activity Live drops its card-wrapped composer shell. diff --git a/packages/dashboard/app/components/TaskChatTab.css b/packages/dashboard/app/components/TaskChatTab.css index 22bd092fe9..f788f66a51 100644 --- a/packages/dashboard/app/components/TaskChatTab.css +++ b/packages/dashboard/app/components/TaskChatTab.css @@ -477,8 +477,11 @@ FN-7241 adds timestamps inside individual task-detail transcript blocks. Keep bl flex: 0 0 auto; flex-direction: column; gap: var(--space-sm); - /* FNXC:TaskDetailChat 2026-06-13-19:55: Chat box should sit in the chat view without excess vertical spacing around the composer (FN-6418), while preserving readable horizontal inset for the input row. */ - padding: var(--space-sm) var(--space-md); + /* + FNXC:TaskDetailChat 2026-07-02-00:32: + Activity Live and Planner Chat composers should share the same plain input-row treatment. Do not wrap Activity steering in a card shell or add extra composer padding around the input; the surrounding chat surface already owns the spacing. + */ + padding: 0; } .task-chat-composer-row { @@ -615,7 +618,7 @@ FN-6660 corrects the repeated mobile sizing misses from FN-6507, FN-6604, and FN } .task-chat-composer { - padding: var(--space-xs) var(--space-sm); + padding: 0; } .task-chat-composer-row { diff --git a/packages/dashboard/app/components/TaskChatTab.tsx b/packages/dashboard/app/components/TaskChatTab.tsx index 20ee58b30e..3671e39de3 100644 --- a/packages/dashboard/app/components/TaskChatTab.tsx +++ b/packages/dashboard/app/components/TaskChatTab.tsx @@ -937,7 +937,7 @@ export function TaskChatTab({ task, projectId, active, addToast, onTaskUpdated, ) : null} -
+