This commit is contained in:
2026-07-01 21:09:11 +08:00
parent 91aac6a931
commit 7a2d127c92
3 changed files with 452 additions and 10 deletions
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -28,7 +28,7 @@
}
})();
</script>
<script type="module" crossorigin src="/assets/index-lZSCkINs.js"></script>
<script type="module" crossorigin src="/assets/index-DjAbNPLm.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-Bi8mcSs8.css">
</head>
<body>
+9 -9
View File
@@ -35,6 +35,7 @@ import {
MenuFoldOutlined,
SendOutlined,
DeleteOutlined,
CloseOutlined,
RobotOutlined,
LoadingOutlined,
PictureOutlined,
@@ -1615,26 +1616,25 @@ const AIChatPage: React.FC = () => {
height: 24,
borderRadius: '50%',
border: 'none',
background: '#ff4d4f',
background: 'transparent',
cursor: 'pointer',
fontSize: 14,
color: '#fff',
fontWeight: 'bold',
color: '#999',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
transition: 'all 0.2s',
}}
onMouseEnter={(e) => {
e.currentTarget.style.background = '#ff7875';
e.currentTarget.style.transform = 'scale(1.1)';
e.currentTarget.style.background = '#f5f5f5';
e.currentTarget.style.color = '#333';
}}
onMouseLeave={(e) => {
e.currentTarget.style.background = '#ff4d4f';
e.currentTarget.style.transform = 'scale(1)';
e.currentTarget.style.background = 'transparent';
e.currentTarget.style.color = '#999';
}}
>
×
<CloseOutlined />
</button>
</div>
{gen_list.find((msg: any) => msg.id === attachmentPopupMessageId)?.mediaReferences?.map((ref: any, idx: number) => (
@@ -1741,7 +1741,7 @@ const AIChatPage: React.FC = () => {
justifyContent: 'center',
}}
>
×
<DeleteOutlined style={{ fontSize: 12 }} />
</button>
</div>
))}