From d4450658a8f7f05606dcaf30151daa04e6b7cae9 Mon Sep 17 00:00:00 2001 From: zhaoying Date: Tue, 31 Mar 2026 13:41:46 +0800 Subject: [PATCH] fix(web): ui --- web/src/styles/index.css | 3 ++- web/src/views/MemoryConversation/index.tsx | 2 +- web/src/views/Prompt/index.tsx | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/web/src/styles/index.css b/web/src/styles/index.css index 0f183374..7e21e1af 100644 --- a/web/src/styles/index.css +++ b/web/src/styles/index.css @@ -377,9 +377,10 @@ body { .ant-input-filled, .ant-select-filled:not(.ant-select-customize-input) .ant-select-selector { background-color: #FFFFFF; + border-color: #FFFFFF; } .ant-input-filled:hover, -.ant-select-filled:not(.ant-select-customize-input) .ant-select-selector { +.ant-select-filled:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer):hover .ant-select-selector { background-color: #FFFFFF; border-color: #171719; } diff --git a/web/src/views/MemoryConversation/index.tsx b/web/src/views/MemoryConversation/index.tsx index c33bd0e5..1e1d0a92 100644 --- a/web/src/views/MemoryConversation/index.tsx +++ b/web/src/views/MemoryConversation/index.tsx @@ -169,8 +169,8 @@ const MemoryConversation: FC = () => { placeholder={t('memoryConversation.searchPlaceholder')} style={{ width: '100%', marginBottom: '16px' }} onChange={setUserId} - variant="borderless" className="rb:bg-white rb:rounded-lg" + variant="filled" /> diff --git a/web/src/views/Prompt/index.tsx b/web/src/views/Prompt/index.tsx index 469b1e39..521971f9 100644 --- a/web/src/views/Prompt/index.tsx +++ b/web/src/views/Prompt/index.tsx @@ -243,6 +243,7 @@ const Prompt: FC = () => {