Show today's tasks as seed chips on the planning screen
The planning view renders Marvin's today list as clickable chips; clicking one fills the intent field, feeding the existing coach flow. idle/error/empty render nothing, pending shows a quiet loading line. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -107,3 +107,12 @@ input:focus { outline: 0; border-color: var(--accent); }
|
||||
font-variant-numeric: tabular-nums; color: var(--ink-dim);
|
||||
}
|
||||
.summary-row span:last-child { color: var(--ink); font-family: ui-monospace, monospace; }
|
||||
|
||||
/* Planning: today's tasks as clickable seed chips */
|
||||
.tasklist { display: flex; flex-wrap: wrap; gap: 8px; }
|
||||
.task-chip {
|
||||
padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px;
|
||||
background: var(--bg); color: var(--ink); font: inherit; font-size: 13px;
|
||||
cursor: pointer; text-align: left;
|
||||
}
|
||||
.task-chip:hover { border-color: var(--accent); color: var(--accent); }
|
||||
|
||||
Reference in New Issue
Block a user