feat: 添加快捷提示词标签,点击即可追加到描述

This commit is contained in:
zwbcc
2026-03-28 21:09:56 +08:00
parent 7cddeaa0d3
commit f8c087fb3f
3 changed files with 77 additions and 0 deletions

View File

@@ -134,6 +134,48 @@ header {
.model-tab.active .tab-desc { color: var(--accent2); }
/* ── Prompt Tags ─────────────────────────────────────────────── */
.prompt-tags {
margin-bottom: 12px;
}
.tags-label {
display: block;
font-size: 12px;
font-weight: 500;
color: var(--text3);
margin-bottom: 8px;
}
.tags-list {
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.tag-pill {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 20px;
color: var(--text2);
font-size: 12px;
padding: 4px 12px;
cursor: pointer;
transition: all 0.15s;
font-family: inherit;
}
.tag-pill:hover {
background: rgba(124,106,245,0.15);
border-color: rgba(124,106,245,0.4);
color: var(--accent2);
}
.tag-pill:active {
transform: scale(0.96);
}
/* ── Prompt ──────────────────────────────────────────────────── */
.prompt-row {