File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed
packages/webui/src/client Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -118,6 +118,10 @@ $hold-status-color: $liveline-timecode-color;
118118 padding : 0 0.2em ;
119119 line-height : 1em ;
120120
121+ > .overtime {
122+ color : $general-late-color ;
123+ }
124+
121125 > img .freeze-icon {
122126 width : 0.9em ;
123127 height : 0.9em ;
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ import { CorelibPubSub } from '@sofie-automation/corelib/dist/pubsub'
4141import { useSetDocumentClass } from '../util/useSetDocumentClass'
4242import { useRundownAndShowStyleIdsForPlaylist } from '../util/useRundownAndShowStyleIdsForPlaylist'
4343import { RundownPlaylistClientUtil } from '../../lib/rundownPlaylistUtil'
44+ import { CurrentPartOrSegmentRemaining } from '../RundownView/RundownTiming/CurrentPartOrSegmentRemaining'
4445
4546interface SegmentUi extends DBSegment {
4647 items : Array < PartUi >
@@ -460,7 +461,11 @@ function PresenterScreenContentDefaultLayout({
460461 />
461462 </ div >
462463 < div className = "presenter-screen__part__piece-countdown" >
463- < PieceCountdownContainer
464+ < CurrentPartOrSegmentRemaining
465+ currentPartInstanceId = { currentPartInstance . instance . _id }
466+ heavyClassName = "overtime"
467+ />
468+ { /* <PieceCountdownContainer
464469 partInstanceId={currentPartInstance.instance._id}
465470 showStyleBaseId={currentShowStyleBaseId}
466471 rundownIds={rundownIds}
@@ -470,7 +475,7 @@ function PresenterScreenContentDefaultLayout({
470475 )}
471476 partStartedPlayback={currentPartInstance.instance.timings?.plannedStartedPlayback}
472477 playlistActivationId={playlist?.activationId}
473- />
478+ /> */ }
474479 </ div >
475480 < div className = "presenter-screen__part__part-countdown" >
476481 < Timediff time = { currentPartOrSegmentCountdown } />
You can’t perform that action at this time.
0 commit comments