fix(gui): the parallel-active count takes the summary typography

The `+N` span sat outside `.summary` to survive its ellipsis, which also
left it outside that rule's font-size and line-height. The web shell
leaves body text at the browser default, so the count rendered larger
than the 14px/24px text beside it on the same 24px row.

Also restores the fs-edit fixture's recorded `/private/tmp` cwd spelling,
which a re-record on Linux had rewritten to `/tmp`. The normalizer already
collapses the `/private` prefix onto the cwd token, so the recorded
spelling replays on both platforms and the fixture matches master.
This commit is contained in:
Chinesezjc
2026-07-28 18:56:39 +08:00
parent 04dfd03688
commit 6904c6e325
2 changed files with 7 additions and 2 deletions

View File

@@ -48,9 +48,14 @@
}
/* Parallel-active count, kept out of .summary's ellipsis so a long task name
clips before the count that reports the other running tasks. */
clips before the count that reports the other running tasks. Repeats
.summary's type because it sits beside that text on the same 24px row and
the shell leaves body text at the browser default, not 14px. */
.extra {
flex: none;
margin-left: 4px;
font-size: 14px;
line-height: 24px;
color: var(--dsw-alias-label-tertiary);
}