新增用户消息复制和编辑功能,并提高批量生成数量上限至20。

This commit is contained in:
2025-08-29 14:10:39 +08:00
parent fed199f08d
commit 626f8992f6
3 changed files with 98 additions and 6 deletions

View File

@@ -700,3 +700,30 @@ body {
border-bottom-left-radius: var(--border-radius);
border-bottom-right-radius: var(--border-radius);
}
/* 聊天消息操作按钮 */
.message-actions {
opacity: 0;
transition: opacity 0.3s ease;
}
.chat-message:hover .message-actions {
opacity: 1;
}
.message-actions .btn {
padding: 4px 8px;
font-size: 0.75rem;
border-radius: 6px;
min-width: 32px;
}
.message-actions .btn:hover {
transform: translateY(-1px);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.message-content {
word-break: break-word;
line-height: 1.5;
}