feat(FN-2647): constrain board header width behavior

- Add desktop CSS constraints so column headers and titles can shrink without expanding board columns
- Prevent auto-merge toggle controls from shrinking to preserve stable header layout
- Add board CSS regression tests for the 6-column minmax grid template and header truncation rules
This commit is contained in:
Fusion
2026-04-26 23:53:22 -07:00
committed by gsxdsm
parent 864d55065b
commit 19171bc98e
2 changed files with 24 additions and 1 deletions

View File

@@ -526,6 +526,7 @@ body {
align-items: center;
gap: var(--space-sm);
padding: calc(var(--space-lg) - 2px) calc(var(--space-lg) - 2px) 0;
min-width: 0;
}
.column-dot {
@@ -556,6 +557,10 @@ body {
font-size: 14px;
font-weight: 600;
flex: 1;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.column-count {
@@ -2571,7 +2576,7 @@ input[type="range"]:focus-visible {
gap: 6px;
cursor: pointer;
user-select: none;
margin-left: auto;
flex-shrink: 0;
}
.auto-merge-toggle input {