fix(style): input text hover

This commit is contained in:
jialin
2024-10-14 10:33:00 +08:00
parent 4c3dddc486
commit 2b61e3dfd3
2 changed files with 10 additions and 10 deletions
@@ -137,7 +137,7 @@ const GroundReranker: React.FC<MessageProps> = forwardRef((props, ref) => {
setMessageList([
...currentMessageRef.current,
{
title: 'Result',
title: 'Results',
content: result.results?.map((item: any) => {
return {
uid: item.index,
+9 -9
View File
@@ -12,6 +12,15 @@
transition: background-color 0.3s ease;
border-bottom: 1px solid var(--ant-color-split);
&:hover {
background-color: var(--ant-color-fill-tertiary);
.btn-group {
display: flex;
gap: 8px;
}
}
&:focus-within {
background-color: transparent;
}
@@ -26,14 +35,5 @@
display: flex;
gap: 8px;
}
&:hover {
background-color: var(--ant-color-fill-tertiary);
.btn-group {
display: flex;
gap: 8px;
}
}
}
}