From ffe1087aac1953644c245b99f71ab423682c1683 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Tue, 10 Mar 2026 17:33:54 -0400 Subject: [PATCH] Sync WorkspaceView queued bubble to indigo gradient (design language) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Matches the ChatView.vue update from the UI polish pass — queued bubbles use linear-gradient(135deg, #6366f1, #4f46e5) and 18px border-radius consistent with the Illuminated Transcript design language. Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/views/WorkspaceView.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/WorkspaceView.vue b/frontend/src/views/WorkspaceView.vue index e806387..59d90a4 100644 --- a/frontend/src/views/WorkspaceView.vue +++ b/frontend/src/views/WorkspaceView.vue @@ -650,9 +650,9 @@ details[open] .thinking-summary::before { .queued-bubble { max-width: 80%; padding: 0.75rem 1rem; - border-radius: 16px; + border-radius: 18px; border-bottom-right-radius: 4px; - background: var(--color-primary); + background: linear-gradient(135deg, #6366f1, #4f46e5); color: #fff; opacity: 0.45; font-size: 0.95rem;