#295: continuous row separators — namecell is a real table cell again #300
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/pv59"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Dogfood finding on v0.6.58: 1px steps/breaks in the separator line of every row, visible at the name/size column boundary and worst on wrapped names + folder rows (misaligned size dash).
Root cause (pre-existing, made visible by longer wrapped names):
td.namecell { display: flex }. A table cell withdisplay: flexstops being a table cell — the browser wraps it in an anonymous cell, and its border/vertical alignment no longer collapse with the sibling cells, producing the seams.Fix: the
<td>stays a real table cell; the icon+name flex layout moves onto an inner.ncflexwrapper.td.namecell svgselectors unchanged (descendant match). Verified only one namecell construction site exists (survey in run log).