From 15e3c12eabb2e5c2cdc6a70105a1cdb38ef2d60e Mon Sep 17 00:00:00 2001 From: LIghtJUNction Date: Sun, 29 Mar 2026 18:15:52 +0800 Subject: [PATCH] fix(dashboard): improve ChatInput dark mode styling and placeholder visibility - Use semi-transparent dark background in input container - Add backdrop blur and glow effects - Fix placeholder text color in dark mode --- dashboard/src/components/chat/ChatInput.vue | 16 +++++++++++++++- dashboard/src/components/chat/MessageList.vue | 13 +++++++++++-- .../src/components/platform/AddNewPlatform.vue | 3 ++- .../components/provider/ProviderSourcesPanel.vue | 4 ++-- 4 files changed, 30 insertions(+), 6 deletions(-) diff --git a/dashboard/src/components/chat/ChatInput.vue b/dashboard/src/components/chat/ChatInput.vue index 5371300b8..f7338d761 100644 --- a/dashboard/src/components/chat/ChatInput.vue +++ b/dashboard/src/components/chat/ChatInput.vue @@ -14,7 +14,7 @@ border: isDark ? 'none' : '1px solid #e0e0e0', borderRadius: '24px', boxShadow: isDark ? 'none' : '0px 2px 2px rgba(0, 0, 0, 0.1)', - backgroundColor: isDark ? '#2d2d2d' : 'transparent', + backgroundColor: isDark ? 'rgba(15, 15, 22, 0.6)' : 'transparent', position: 'relative', }" > @@ -579,6 +579,20 @@ defineExpose({