summaryrefslogtreecommitdiff
path: root/web/style.css
diff options
context:
space:
mode:
authorClaudomator Agent <agent@claudomator>2026-03-16 21:01:09 +0000
committerClaudomator Agent <agent@claudomator>2026-03-16 21:01:09 +0000
commitb8381507ff61c7fb69a91490a9fd58403da8c0fa (patch)
tree919fb2e548bb0e6296ac15fbba372972c79401c0 /web/style.css
parent85003cd4372475b9cae973b74261a6ca3f61af0d (diff)
feat: display project field in web UI
Show task.project as a badge in task card meta row and as a field in the task detail overview grid. Both display conditionally only when project is non-empty. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'web/style.css')
-rw-r--r--web/style.css11
1 files changed, 11 insertions, 0 deletions
diff --git a/web/style.css b/web/style.css
index 1b6fb69..7a3eb71 100644
--- a/web/style.css
+++ b/web/style.css
@@ -264,6 +264,17 @@ main {
flex-wrap: wrap;
}
+.task-project {
+ font-size: 0.72rem;
+ font-weight: 600;
+ color: var(--text-muted);
+ background: var(--bg-elevated, #2a2a2a);
+ border: 1px solid var(--border, #444);
+ border-radius: 3px;
+ padding: 0 0.35rem;
+ letter-spacing: 0.02em;
+}
+
.task-description {
font-size: 0.82rem;
color: var(--text-muted);