feat: add New Session settings tab with template textarea

This commit is contained in:
Brian Krabach
2026-03-30 01:03:54 -07:00
parent 2e86692c3c
commit 5f81b87348
7 changed files with 890 additions and 102 deletions
+28
View File
@@ -1091,6 +1091,34 @@ body {
cursor: pointer;
}
/* ============================================================
New Session tab controls
============================================================ */
.settings-textarea {
width: 100%;
background: var(--bg-secondary);
border: 1px solid var(--border);
border-radius: 4px;
color: var(--text);
font-family: var(--font-mono);
font-size: 13px;
padding: 10px;
resize: vertical;
min-height: 60px;
outline: none;
}
.settings-textarea:focus {
border-color: var(--accent);
}
.settings-helper {
font-size: 12px;
color: var(--text-muted);
font-style: italic;
}
/* ============================================================
Notifications tab controls
============================================================ */