design(mytasks): render tasks as a dense ruled list, not floating cards - #220
Merged
Conversation
This was referenced Aug 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
My Tasks — a primary tab — rendered each task as a full-width floating board card (border + drop-shadow + radius,
gap: 8pxbetween them). Because My Tasks is a single vertical column, that produced tall cards with the title + a couple of small chips clustered in the left third and a large empty right region on desktop, and airy, low-density rows on mobile. It read as a loose stack of cards, not a task list.This applies the same dense ruled-table treatment the List view already uses (#109), scoped to
.mytasks__row:border/box-shadow/border-radius/ surface fill from the card only inside a My Tasks row — the board and its cards are untouched.border-bottomhairline (--tf-border) + a--tf-surface-2hover highlight, and zero the inter-rowgapso the dividers butt into one continuous ruled list.10px→8px 6px) so more tasks are scannable above the fold.Token/CSS-only; no markup, logic, or schema change. Scoped to
.mytasks__row/.mytasks__row > .task-card.Before / After
Desktop
Mobile
After: rows read as a clean dense list — hairline dividers, no empty right region, more tasks visible per screen.