From 3d515ed11f5dc5a2386ff2eb3405eeefda6e32c1 Mon Sep 17 00:00:00 2001 From: gramps Date: Mon, 13 Jul 2026 09:34:44 -0700 Subject: [PATCH] v0.17.12: stack status dots vertically in input area --- templates/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/index.html b/templates/index.html index 8338495..1a8b295 100644 --- a/templates/index.html +++ b/templates/index.html @@ -202,9 +202,9 @@ body { font-family: var(--font-body); background: var(--bg-primary); color: var( .input-row textarea { flex:1; background:var(--bg-tertiary); border:1px solid var(--border); color:var(--text-primary); font-family:var(--font-body); font-size:14px; padding:12px 14px; border-radius:var(--radius); resize:none; min-height:44px; max-height:200px; line-height:1.5; } .input-row textarea:focus { outline:none; border-color:var(--accent-dim); } .input-row textarea::placeholder { color:var(--text-muted); } -.input-status { display:flex; align-items:center; gap:4px; padding:0 4px; height:44px; font-size:9px; font-family:var(--font-mono); color:var(--text-muted); } +.input-status { display:flex; flex-direction:column; align-items:center; gap:1px; padding:2px 4px; font-size:8px; font-family:var(--font-mono); color:var(--text-muted); line-height:1; } .isdot { display:flex; align-items:center; gap:2px; } -.isdot .status-dot { width:5px; height:5px; } +.isdot .status-dot { width:4px; height:4px; } .islab { line-height:1; } .paperclip-btn { padding:12px 12px; background:var(--bg-tertiary); border:1px solid var(--border); border-radius:var(--radius); color:var(--text-secondary); font-size:18px; cursor:pointer; transition:all 0.2s; line-height:1; } .paperclip-btn:hover { background:var(--bg-hover); color:var(--accent); border-color:var(--accent-dim); }