diff --git a/apps/client/src/features/rundown/entry-editor/composite/EventEditorTimes.tsx b/apps/client/src/features/rundown/entry-editor/composite/EventEditorTimes.tsx index 76d0d6942..3634dcde0 100644 --- a/apps/client/src/features/rundown/entry-editor/composite/EventEditorTimes.tsx +++ b/apps/client/src/features/rundown/entry-editor/composite/EventEditorTimes.tsx @@ -88,7 +88,6 @@ function EventEditorTimes({ timeStrategy={timeStrategy} linkStart={linkStart} delay={delay} - countToEnd={countToEnd} showLabels /> diff --git a/apps/client/src/features/rundown/rundown-event/RundownEvent.module.scss b/apps/client/src/features/rundown/rundown-event/RundownEvent.module.scss index 84397cfaf..5a159acfd 100644 --- a/apps/client/src/features/rundown/rundown-event/RundownEvent.module.scss +++ b/apps/client/src/features/rundown/rundown-event/RundownEvent.module.scss @@ -7,6 +7,7 @@ $skip-opacity: 0.2; background-color: $block-bg; margin-block: 0.25rem; overflow: initial; + position: relative; display: grid; grid-template-areas: @@ -155,7 +156,7 @@ $skip-opacity: 0.2; align-items: center; justify-content: space-between; - .nextTag { + .warningMeta { font-size: 1rem; color: $orange-500; letter-spacing: 0.03px; @@ -231,6 +232,10 @@ $skip-opacity: 0.2; color: var(--status-color-active-override, $active-indicator); } + .statusIcon.countToEndStatus { + color: $orange-400; + } + .statusIcon.warning { color: $orange-500; } diff --git a/apps/client/src/features/rundown/rundown-event/RundownEventInner.tsx b/apps/client/src/features/rundown/rundown-event/RundownEventInner.tsx index 90f545a83..a0b53e715 100644 --- a/apps/client/src/features/rundown/rundown-event/RundownEventInner.tsx +++ b/apps/client/src/features/rundown/rundown-event/RundownEventInner.tsx @@ -115,12 +115,12 @@ function RundownEventInner({ delay={delay} timeStrategy={timeStrategy} linkStart={linkStart} - countToEnd={countToEnd} />