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

@@ -1,4 +1,11 @@
/* === Detail Modal === */
.task-detail-content {
display: flex;
flex-direction: column;
height: 100%;
min-height: 0;
}
.modal.task-detail-modal {
width: min(95vw, 800px);
max-width: 95vw;
@@ -600,7 +607,7 @@
}
.detail-refine-overlay {
position: absolute;
position: fixed;
inset: 0;
display: flex;
align-items: center;
@@ -610,11 +617,21 @@
}
.detail-refine-modal {
max-width: 500px;
max-width: min(90vw, calc(var(--space-2xl) * 16));
width: 90%;
margin: 0;
}
.task-detail-content--embedded {
height: 100%;
}
.task-detail-content--embedded .detail-actions-menu,
.task-detail-content--embedded .detail-move-menu {
top: calc(100% + var(--space-xs));
bottom: auto;
}
.detail-refine-title {
margin: 0;
}