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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user