feat(FN-2558): lock TaskCard footer metadata to one line

- Prevent TaskCard footer row metadata from wrapping by enforcing nowrap layout
- Make files-changed chip flex safely and truncate long text with ellipsis while preserving icon visibility
- Keep timer chip placement anchored to the right side of the footer metadata row
- Add TaskCard and board-mobile regression tests asserting footer child order and CSS layout guarantees
This commit is contained in:
Fusion
2026-04-25 17:44:04 -07:00
committed by gsxdsm
parent 02e54b290c
commit 9a22ae9be4
3 changed files with 32 additions and 1 deletions

View File

@@ -428,7 +428,7 @@
gap: var(--space-sm);
margin-top: var(--space-sm);
min-width: 0;
flex-wrap: wrap;
flex-wrap: nowrap;
}
.card-session-files {
@@ -442,6 +442,19 @@
font-size: 12px;
cursor: pointer;
min-width: 0;
flex: 1 1 auto;
overflow: hidden;
}
.card-session-files svg {
flex-shrink: 0;
}
.card-session-files span {
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.card-session-files:hover {