From 372946de9d9b9dc469f9aa976a4a541a25993697 Mon Sep 17 00:00:00 2001 From: gaoziman <2942894660@qq.com> Date: Sun, 21 Dec 2025 01:15:19 +0800 Subject: [PATCH] =?UTF-8?q?style(=E8=81=8A=E5=A4=A9):=20=E7=BB=9F=E4=B8=80?= =?UTF-8?q?=E6=B6=88=E6=81=AF=E6=B0=94=E6=B3=A1=E5=92=8C=E8=BE=93=E5=85=A5?= =?UTF-8?q?=E6=A1=86=E5=9C=86=E8=A7=92=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将输入框圆角从 rounded-[18px] 改为 rounded-md - 将用户消息气泡圆角从 rounded-[18px] 改为 rounded-md - 将助手消息气泡圆角从 rounded-2xl 改为 rounded-md - 保持界面风格一致性 --- src/components/features/ChatInput.tsx | 4 ++-- src/components/features/MessageBubble.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/features/ChatInput.tsx b/src/components/features/ChatInput.tsx index 2002cb8..588c5c6 100644 --- a/src/components/features/ChatInput.tsx +++ b/src/components/features/ChatInput.tsx @@ -88,7 +88,7 @@ export function ChatInput({
{/* 拖拽覆盖层 */} {isDragging && ( -
+

释放以添加文件 diff --git a/src/components/features/MessageBubble.tsx b/src/components/features/MessageBubble.tsx index 24ecac1..cc9e810 100644 --- a/src/components/features/MessageBubble.tsx +++ b/src/components/features/MessageBubble.tsx @@ -152,7 +152,7 @@ export function MessageBubble({ message, user, thinkingContent, isStreaming, err })}

)} -
+
{message.content || ((uploadedImages && uploadedImages.length > 0) || (uploadedDocuments && uploadedDocuments.length > 0) ? '(附件)' : '')}
{/* 悬停显示复制按钮 */} @@ -233,7 +233,7 @@ export function MessageBubble({ message, user, thinkingContent, isStreaming, err )} {/* 主要内容 */} -
+
{message.content ? (