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 = () => {