feat: 添加快捷提示词标签,点击即可追加到描述
This commit is contained in:
42
style.css
42
style.css
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user