design(board): keep the section count beside its name in the list view - #193
Merged
Conversation
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.
Design-polish pass — continuing on the List view (per owner direction). Looking at the section grouping (collapse-all makes it obvious), each section's task count floated at the far-right edge of the row, disconnected from its section name — "To do" on the left, "24" way out at ~1240px on desktop (and a big gap on mobile too). The clickable collapse-toggle header also had no hover feedback.
Fix (CSS-only, tokens only)
flex: 1from.list-section__name, so the name is content-width and the count sits immediately after it — "To do 24" reads as one cohesive label (Asana-style)..list-section__heada hover tint (--tf-surface-2) + rounded padding, so it clearly reads as the interactive collapse toggle it is.Before → after
Before: section counts were pushed to the far right, disconnected from the section name.
After (count hugs the name):
Full quality gate green; presentational-only. Verified against the sandbox (
AWS_PROFILE=personal).