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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user