Adds mobile OAuth manual-code fallback with scroll assistance in the OAuthManualCodeForm component, including full test coverage across ModelOnboardingModal and SettingsModal flows, plus documentation updates. Also introduces weighted test shard planning for CI. Fusion-Task-Id: FN-4052
41 lines
738 B
CSS
41 lines
738 B
CSS
.oauth-manual-code {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--space-sm);
|
|
margin-top: var(--space-sm);
|
|
}
|
|
|
|
.oauth-manual-code__prompt,
|
|
.oauth-manual-code__help {
|
|
margin: 0;
|
|
font-size: 0.8rem;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.oauth-manual-code__prompt {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.oauth-manual-code__help {
|
|
color: var(--text-dim);
|
|
}
|
|
|
|
.oauth-manual-code__input {
|
|
min-height: 84px;
|
|
resize: vertical;
|
|
font-family: var(--font-mono);
|
|
scroll-margin-block: var(--space-xl);
|
|
}
|
|
|
|
.oauth-manual-code__input:focus-visible {
|
|
outline: 2px solid var(--color-info);
|
|
outline-offset: 2px;
|
|
box-shadow: var(--focus-ring-strong);
|
|
}
|
|
|
|
.oauth-manual-code__actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--space-sm);
|
|
}
|