fix: RTL stepper connectors and duplicate clock icon in session wizard

SessionStepper copied MUI's LTR connector offsets (left: -50%), which in
the RTL admin drew each connector away from its previous step — a stray
line ran off the card edge past the last step and the first two steps
had no line between them. Swap the offsets so connectors extend toward
the previous step on the right, matching tauri's MUI-flipped rendering.

The acceptance-time field showed two clock icons (custom ClockP + the
browser's native picker indicator); hide the native one like the tauri
source, which has a single ClockField adornment.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
hamed
2026-07-16 15:44:37 +03:30
co-authored by Claude Opus 4.8
parent 2e69af1f74
commit d567ea5553
4 changed files with 44 additions and 2 deletions
@@ -270,6 +270,7 @@ export default function CreateStep({ recordUuid, profile, onCreated, onCancel }:
<ClockP color="#6B7280" size={18} />
<input
type="time"
className="time-input-plain"
aria-label="ساعت پذیرش"
value={time}
onChange={(e) => setTime(e.target.value)}