From ad39fdb4ea753f221a3f829f617f37d12f142596 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 19 Jul 2026 10:16:19 +0000 Subject: [PATCH] feat(rundown): keep per-button hover tooltips on offset toggle Restore the short per-mode hover tooltips on Absolute/Relative alongside the in-pill info icon. The icon carries the side-by-side comparison; the per-button tooltips give a quick reminder of the hovered mode and keep the group consistent with the Run/Edit and List/Table toggles. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01Hj5P4eDgf97zSCzViGHNDy --- .../rundown/rundown-header/RundownHeader.tsx | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/apps/client/src/features/rundown/rundown-header/RundownHeader.tsx b/apps/client/src/features/rundown/rundown-header/RundownHeader.tsx index 68e7f53ca..1c35c1b3c 100644 --- a/apps/client/src/features/rundown/rundown-header/RundownHeader.tsx +++ b/apps/client/src/features/rundown/rundown-header/RundownHeader.tsx @@ -109,12 +109,18 @@ function RundownHeader({ isExtracted, viewMode, setViewMode }: RundownHeaderProp {showOffsetToggle && (
- } value={OffsetMode.Absolute} className={style.radioButton}> + } value={OffsetMode.Absolute} className={style.radioButton} />} + > Absolute - - } value={OffsetMode.Relative} className={style.radioButton}> + + } value={OffsetMode.Relative} className={style.radioButton} />} + > Relative - +