Restore horizontal concurrency thumb drags on mobile by opting range inputs out of the pan-y ancestor lock. - Set touch-action:none on Engine Control menu and Command Center concurrency range inputs - Update geometry/touch contract test to assert none and reject pan-y - Add patch changeset for the mobile slider fix Files changed: .changeset/fn-7973-mobile-concurrency-sliders.md | 7 +++++++ packages/dashboard/app/components/EngineControlMenu.css | 5 ++++- .../app/components/__tests__/EngineControlMenu.test.tsx | 11 ++++++++--- .../app/components/command-center/CommandCenterControls.css | 5 ++++- 4 files changed, 23 insertions(+), 5 deletions(-) Fusion-Task-Id: FN-7973 Fusion-Task-Lineage: bf36e544-c24f-49ae-beae-b11707be9c79 Co-authored-by: Fusion (runfusion.ai) <noreply@runfusion.ai>
194 lines
4.6 KiB
CSS
194 lines
4.6 KiB
CSS
.cc-controls {
|
|
min-inline-size: 0;
|
|
}
|
|
|
|
.cc-controls-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: var(--space-md);
|
|
align-items: stretch;
|
|
}
|
|
|
|
.cc-controls-card {
|
|
min-inline-size: 0;
|
|
padding: var(--space-md);
|
|
border: 1px solid var(--border-subtle);
|
|
border-radius: var(--radius-md);
|
|
background: var(--surface-1);
|
|
}
|
|
|
|
.cc-controls-card--concurrency {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.cc-controls-card-header {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: var(--space-md);
|
|
margin-block-end: var(--space-md);
|
|
}
|
|
|
|
.cc-controls-card-header h3 {
|
|
margin: 0;
|
|
color: var(--text);
|
|
font-size: 0.9375rem;
|
|
}
|
|
|
|
.cc-controls-card-header p,
|
|
.cc-controls-muted {
|
|
margin: var(--space-xs) 0 0;
|
|
color: var(--text-muted);
|
|
font-size: 0.8125rem;
|
|
}
|
|
|
|
.cc-controls-error {
|
|
margin: 0;
|
|
color: var(--color-error);
|
|
font-size: 0.8125rem;
|
|
}
|
|
|
|
.cc-controls-status-pill {
|
|
display: inline-flex;
|
|
flex: 0 0 auto;
|
|
align-items: center;
|
|
gap: var(--space-xs);
|
|
color: var(--text-muted);
|
|
font-size: 0.8125rem;
|
|
}
|
|
|
|
.cc-controls-action {
|
|
gap: var(--space-xs);
|
|
}
|
|
|
|
.cc-controls-save-state {
|
|
flex: 0 0 auto;
|
|
color: var(--text-muted);
|
|
font-size: 0.8125rem;
|
|
}
|
|
|
|
.cc-controls-save-state--saved {
|
|
color: var(--color-success);
|
|
}
|
|
|
|
.cc-controls-save-state--error {
|
|
color: var(--color-error);
|
|
}
|
|
|
|
.cc-controls-sliders {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: var(--space-md);
|
|
}
|
|
|
|
.cc-controls-slider {
|
|
display: flex;
|
|
min-inline-size: 0;
|
|
flex-direction: column;
|
|
gap: var(--space-sm);
|
|
color: var(--text);
|
|
font-size: 0.8125rem;
|
|
}
|
|
|
|
/* FNXC:GlobalConcurrencyControls 2026-06-25-14:10: The global cap is a cross-project setting; span it full-width at the top of the Concurrency card and separate it from the per-project sliders with a divider plus an "Across all projects" caption. */
|
|
.cc-controls-slider--global {
|
|
grid-column: 1 / -1;
|
|
padding-bottom: var(--space-md);
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
.cc-controls-slider-caption {
|
|
color: var(--text-muted);
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.cc-controls-slider-label {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: var(--space-sm);
|
|
}
|
|
|
|
.cc-controls-slider-label strong {
|
|
color: var(--accent);
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
|
|
.cc-controls-range-wrap {
|
|
--cc-controls-range-thumb-size: var(--space-md);
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
/* FNXC:GlobalConcurrencyControls 2026-06-26-00:00: The Command Center current-use marker mirrors the footer marker, reuses the status-dot convention, uses logical inline positioning for RTL, and never intercepts range drags. */
|
|
.cc-controls-use-marker {
|
|
--use-pct: 0%;
|
|
--use-offset: 0%;
|
|
position: absolute;
|
|
inset-block-start: 50%;
|
|
inset-inline-start: var(--use-offset, var(--use-pct));
|
|
transform: translate(-50%, -50%);
|
|
pointer-events: none;
|
|
}
|
|
|
|
/*
|
|
FNXC:CommandCenter 2026-06-20-00:25:
|
|
Mobile users must be able to drag horizontal concurrency sliders without the page scroll gesture stealing the thumb movement. Scope touch-action to these range inputs and preserve desktop accent/full-width behavior while increasing the hit area with design tokens.
|
|
|
|
FNXC:CommandCenter 2026-07-15-00:00:
|
|
FN-7973 requires touch-action:none because the mobile pan-y ancestor lock otherwise claims near-horizontal thumb drags as page pans. This shared rule covers every Command Center concurrency range input while preserving disabled and loading no-op behavior.
|
|
*/
|
|
.cc-controls-slider input[type="range"],
|
|
.cc-controls-touch-slider {
|
|
inline-size: 100%;
|
|
min-block-size: var(--space-xl);
|
|
accent-color: var(--accent);
|
|
touch-action: none;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.cc-controls-grid {
|
|
grid-template-columns: minmax(0, 1fr);
|
|
}
|
|
|
|
.cc-controls-card {
|
|
padding: var(--space-sm);
|
|
}
|
|
|
|
.cc-controls-card-header {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.cc-controls-sliders {
|
|
grid-template-columns: minmax(0, 1fr);
|
|
}
|
|
|
|
.cc-controls-range-wrap {
|
|
--cc-controls-range-thumb-size: var(--space-xl);
|
|
}
|
|
|
|
.cc-controls-slider input[type="range"],
|
|
.cc-controls-touch-slider {
|
|
min-block-size: var(--space-2xl);
|
|
}
|
|
|
|
.cc-controls-slider input[type="range"]::-webkit-slider-thumb,
|
|
.cc-controls-touch-slider::-webkit-slider-thumb {
|
|
inline-size: var(--space-xl);
|
|
block-size: var(--space-xl);
|
|
}
|
|
|
|
.cc-controls-slider input[type="range"]::-moz-range-thumb,
|
|
.cc-controls-touch-slider::-moz-range-thumb {
|
|
inline-size: var(--space-xl);
|
|
block-size: var(--space-xl);
|
|
}
|
|
|
|
.cc-controls-action {
|
|
justify-content: center;
|
|
inline-size: 100%;
|
|
}
|
|
|
|
}
|