summaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rw-r--r--web/style.css25
1 files changed, 22 insertions, 3 deletions
diff --git a/web/style.css b/web/style.css
index 68b6f95..f8ed1e7 100644
--- a/web/style.css
+++ b/web/style.css
@@ -2174,8 +2174,8 @@ dialog label select:focus {
}
.tasks-column {
- flex: 0 0 300px;
- width: 300px;
+ flex: 0 0 220px;
+ width: 220px;
background: var(--bg);
border: 1px solid var(--border);
border-radius: 0.5rem;
@@ -2212,8 +2212,27 @@ dialog label select:focus {
flex-direction: column;
gap: 0.5rem;
min-height: 40px;
- max-height: 60vh;
+ max-height: 70vh;
+ overflow-y: auto;
+}
+
+.task-log-tail {
+ background: var(--bg-card);
+ border: 1px solid var(--border);
+ border-radius: 6px;
+ padding: 0.5rem 0.625rem;
+ font-family: monospace;
+ font-size: 0.75rem;
+ max-height: 90px;
overflow-y: auto;
+ white-space: pre-wrap;
+ word-break: break-word;
+}
+
+.task-log-tail-placeholder {
+ color: var(--text-muted);
+ font-size: 0.8rem;
+ font-style: italic;
}
.story-card {