feat(FN-3191): keep embedded task-link navigation in split pane

Fixes task link navigation in ListView so embedded links continue working when the split pane is active, including a new test case for FN-3191.

Fusion-Task-Id: FN-3191
This commit is contained in:
Fusion
2026-05-03 00:52:12 -07:00
committed by gsxdsm
parent d4c534a8dd
commit 2ce4351724
8 changed files with 320 additions and 62 deletions

View File

@@ -339,6 +339,12 @@
min-width: 0;
min-height: 0;
border-left: 1px solid var(--border);
overflow: hidden;
background: var(--card);
}
.list-split-detail-empty {
height: 100%;
padding: var(--space-xl);
color: var(--text-muted);
display: flex;
@@ -347,11 +353,16 @@
text-align: center;
}
.list-split-detail p {
.list-split-detail-empty p {
margin-block: 0;
margin-inline: 0;
}
.list-split-detail-content {
height: 100%;
min-height: 0;
}
.list-table {
width: 100%;
border-collapse: collapse;