fix(FN-2906): refine chat render toggles and quick chat resume state

- Remove btn-icon styling from ChatView render toggle controls and apply dedicated borderless toggle styling
- Update ChatView and QuickChatFAB behavior so quick chat streaming state is preserved when resuming sessions
- Add regression tests for QuickChatFAB and useQuickChat to cover resume and streaming-state handling

Fusion-Task-Id: FN-2906
This commit is contained in:
Fusion
2026-04-28 19:55:59 -07:00
committed by gsxdsm
parent b248ffc6e6
commit 88a148d7dd
2 changed files with 7 additions and 3 deletions

View File

@@ -231,15 +231,19 @@
.chat-message-render-toggle {
display: inline-flex;
align-items: center;
justify-content: center;
margin-left: auto;
width: calc(var(--space-md) * 3);
height: calc(var(--space-md) * 3);
min-width: calc(var(--space-md) * 3);
min-height: calc(var(--space-md) * 3);
padding: 0;
border: none;
color: var(--text-muted);
background: transparent;
border-color: transparent;
cursor: pointer;
outline: none;
}
.chat-message--assistant .chat-message-render-toggle {