1
This commit is contained in:
+442
File diff suppressed because one or more lines are too long
Vendored
+1
-1
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
))}
|
||||
|
||||
Reference in New Issue
Block a user