diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-03-26 09:01:35 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-03-26 09:01:35 +0000 |
| commit | dac676e8284725c8ec6de08282fe08a9b519ccc8 (patch) | |
| tree | f3cd7adb5ddf7acad95d3946ce518913e3a9a232 /web/style.css | |
| parent | 909fa86bea1f55acc1ccb119e9509d2c724f6b5b (diff) | |
feat: show tasks and subtasks in story detail view
Story detail modal now fetches /api/stories/{id}/tasks and renders
top-level tasks as a numbered list with subtasks nested beneath, using
the same state emoji as the blocked/task views.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'web/style.css')
| -rw-r--r-- | web/style.css | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/web/style.css b/web/style.css index 1aa6627..c7e82ae 100644 --- a/web/style.css +++ b/web/style.css @@ -1924,3 +1924,32 @@ dialog label select:focus { .story-detail-body { padding: 0.25rem 0; } + +.story-detail-tasks { + margin-top: 1rem; + padding-top: 0.75rem; + border-top: 1px solid var(--border); +} + +.story-detail-task-list { + margin: 0.5rem 0 0; + padding-left: 1.25rem; + list-style: decimal; +} + +.story-detail-task-list > li { + padding: 0.2rem 0; + font-size: 0.9rem; +} + +.story-detail-subtask-list { + margin: 0.25rem 0 0.25rem 0.5rem; + padding-left: 1rem; + list-style: none; +} + +.story-detail-subtask-list li { + font-size: 0.85rem; + opacity: 0.85; + padding: 0.1rem 0; +} |
