added temporary prompt mode

This commit is contained in:
2026-01-19 19:40:49 -05:00
parent d3f7b63a79
commit 372afd5ed2
4 changed files with 134 additions and 14 deletions

View File

@@ -157,6 +157,41 @@ select {
min-width: 0;
}
.custom-task-row {
align-items: stretch;
}
.custom-task-field {
flex: 1;
margin: 0;
}
.custom-task-field textarea {
width: 100%;
padding: 8px;
border-radius: 10px;
border: 1px solid var(--border);
background: var(--input-bg);
color: var(--input-fg);
font-size: 12px;
resize: vertical;
min-height: 52px;
}
.custom-task-actions {
display: flex;
flex-direction: column;
gap: 6px;
}
.custom-task-actions button {
width: 100%;
}
body.custom-task-mode .output {
max-height: 210px;
}
.hidden {
display: none !important;
}