This merge updates a mobile fullscreen modal CSS selector assertion in the dashboard test suite, aligning it with a recent UI change to the modal structure. Fusion-Task-Id: FN-3374
39 lines
1.0 KiB
CSS
39 lines
1.0 KiB
CSS
.confirm-dialog {
|
|
width: min(calc(var(--space-xl) * 18), calc(100vw - var(--space-2xl)));
|
|
}
|
|
|
|
.confirm-dialog__body {
|
|
color: var(--text-muted);
|
|
line-height: 1.5;
|
|
padding: 0 var(--space-xl) var(--space-lg);
|
|
white-space: pre-wrap;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.confirm-dialog__actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: var(--space-sm);
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.confirm-dialog-overlay {
|
|
align-items: center;
|
|
padding-top: max(var(--space-md), env(safe-area-inset-top, 0px));
|
|
padding-right: var(--space-sm);
|
|
padding-bottom: max(var(--space-md), env(safe-area-inset-bottom, 0px));
|
|
padding-left: var(--space-sm);
|
|
}
|
|
|
|
.confirm-dialog {
|
|
width: min(100%, calc(var(--space-xl) * 16));
|
|
max-height: calc(100dvh - (var(--space-md) * 2) - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
|
|
height: auto;
|
|
border: var(--btn-border-width) solid var(--border);
|
|
border-radius: var(--radius-lg);
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
overflow: hidden;
|
|
}
|
|
}
|