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>
<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"> <link rel="stylesheet" crossorigin href="/assets/index-Bi8mcSs8.css">
</head> </head>
<body> <body>
+9 -9
View File
@@ -35,6 +35,7 @@ import {
MenuFoldOutlined, MenuFoldOutlined,
SendOutlined, SendOutlined,
DeleteOutlined, DeleteOutlined,
CloseOutlined,
RobotOutlined, RobotOutlined,
LoadingOutlined, LoadingOutlined,
PictureOutlined, PictureOutlined,
@@ -1615,26 +1616,25 @@ const AIChatPage: React.FC = () => {
height: 24, height: 24,
borderRadius: '50%', borderRadius: '50%',
border: 'none', border: 'none',
background: '#ff4d4f', background: 'transparent',
cursor: 'pointer', cursor: 'pointer',
fontSize: 14, fontSize: 14,
color: '#fff', color: '#999',
fontWeight: 'bold',
display: 'flex', display: 'flex',
alignItems: 'center', alignItems: 'center',
justifyContent: 'center', justifyContent: 'center',
transition: 'all 0.2s', transition: 'all 0.2s',
}} }}
onMouseEnter={(e) => { onMouseEnter={(e) => {
e.currentTarget.style.background = '#ff7875'; e.currentTarget.style.background = '#f5f5f5';
e.currentTarget.style.transform = 'scale(1.1)'; e.currentTarget.style.color = '#333';
}} }}
onMouseLeave={(e) => { onMouseLeave={(e) => {
e.currentTarget.style.background = '#ff4d4f'; e.currentTarget.style.background = 'transparent';
e.currentTarget.style.transform = 'scale(1)'; e.currentTarget.style.color = '#999';
}} }}
> >
× <CloseOutlined />
</button> </button>
</div> </div>
{gen_list.find((msg: any) => msg.id === attachmentPopupMessageId)?.mediaReferences?.map((ref: any, idx: number) => ( {gen_list.find((msg: any) => msg.id === attachmentPopupMessageId)?.mediaReferences?.map((ref: any, idx: number) => (
@@ -1741,7 +1741,7 @@ const AIChatPage: React.FC = () => {
justifyContent: 'center', justifyContent: 'center',
}} }}
> >
× <DeleteOutlined style={{ fontSize: 12 }} />
</button> </button>
</div> </div>
))} ))}