feat: 默认模式提示 + Claude/Codex头像图标

This commit is contained in:
cc-dan
2026-03-14 07:19:13 +00:00
parent f2d6bdbc83
commit 34bc597d39
2 changed files with 23 additions and 2 deletions

View File

@@ -1015,6 +1015,18 @@ body.session-loading-active {
}
.msg.user .msg-avatar { background: var(--bg-bubble-user); color: #fff; }
.msg.assistant .msg-avatar { background: var(--success); color: #fff; }
.msg-avatar svg { display: block; flex-shrink: 0; }
/* Claude avatar: pixel crab emoji on accent bg */
.msg.assistant.agent-claude .msg-avatar {
background: var(--accent);
color: #fff;
font-size: 18px;
}
/* Codex avatar: GPT logo on green bg */
.msg.assistant.agent-codex .msg-avatar {
background: #10a37f;
color: #fff;
}
.msg-bubble {
padding: 12px 16px;