- Emit an auth-token recovery event when dashboard daemon calls fail with bearer-token 401 responses - Render a non-dismissable recovery dialog with set-token and clear-token reload actions - Keep the recovery overlay topmost while aligning modal markup with shared modal conventions - Add focused regression coverage for dialog behavior and include a patch changeset for @runfusion/fusion
38 lines
640 B
CSS
38 lines
640 B
CSS
.auth-token-recovery-overlay {
|
|
z-index: 210;
|
|
}
|
|
|
|
.auth-token-recovery-header h3 {
|
|
margin: 0;
|
|
}
|
|
|
|
.auth-token-recovery-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-lg);
|
|
padding: var(--space-lg) var(--space-xl);
|
|
}
|
|
|
|
.auth-token-recovery-content p {
|
|
margin: 0;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.auth-token-recovery-field {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-sm);
|
|
}
|
|
|
|
.auth-token-recovery-field label {
|
|
color: var(--text-muted);
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
letter-spacing: 0.04em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.auth-token-recovery-actions {
|
|
gap: var(--space-sm);
|
|
}
|