This merge adds a canonical in-dialog AI interview flow for agent onboarding (FN-3553), replacing the old wizard with a multi-step dialog that guides users through creating and reviewing agent prompts before spawning, plus tokenized typography fixes. It also introduces native shell connection handof Fusion-Task-Id: FN-3553
43 lines
948 B
CSS
43 lines
948 B
CSS
.experimental-agent-onboarding-modal__textarea {
|
|
min-height: calc(var(--space-2xl) * 4);
|
|
}
|
|
|
|
.experimental-agent-onboarding-modal__summary {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-lg);
|
|
padding: var(--space-lg);
|
|
}
|
|
|
|
.experimental-agent-onboarding-modal__summary-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-sm);
|
|
}
|
|
|
|
.experimental-agent-onboarding-modal__summary-section h4 {
|
|
margin: 0;
|
|
color: var(--text);
|
|
font-size: calc(var(--space-md) + var(--space-xs) * 0.25);
|
|
}
|
|
|
|
.experimental-agent-onboarding-modal__summary-section p {
|
|
margin: 0;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.experimental-agent-onboarding-modal__summary-block {
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.experimental-agent-onboarding-modal__textarea {
|
|
min-height: calc(var(--space-2xl) * 3);
|
|
}
|
|
|
|
.experimental-agent-onboarding-modal__summary {
|
|
gap: var(--space-md);
|
|
padding: var(--space-md);
|
|
}
|
|
}
|