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;
118
118
padding : 0 0.2em ;
119
119
line-height : 1em ;
120
120
121
+ > .overtime {
122
+ color : $general-late-color ;
123
+ }
124
+
121
125
> img .freeze-icon {
122
126
width : 0.9em ;
123
127
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'
41
41
import { useSetDocumentClass } from '../util/useSetDocumentClass'
42
42
import { useRundownAndShowStyleIdsForPlaylist } from '../util/useRundownAndShowStyleIdsForPlaylist'
43
43
import { RundownPlaylistClientUtil } from '../../lib/rundownPlaylistUtil'
44
+ import { CurrentPartOrSegmentRemaining } from '../RundownView/RundownTiming/CurrentPartOrSegmentRemaining'
44
45
45
46
interface SegmentUi extends DBSegment {
46
47
items : Array < PartUi >
@@ -460,7 +461,11 @@ function PresenterScreenContentDefaultLayout({
460
461
/>
461
462
</ div >
462
463
< div className = "presenter-screen__part__piece-countdown" >
463
- < PieceCountdownContainer
464
+ < CurrentPartOrSegmentRemaining
465
+ currentPartInstanceId = { currentPartInstance . instance . _id }
466
+ heavyClassName = "overtime"
467
+ />
468
+ { /* <PieceCountdownContainer
464
469
partInstanceId={currentPartInstance.instance._id}
465
470
showStyleBaseId={currentShowStyleBaseId}
466
471
rundownIds={rundownIds}
@@ -470,7 +475,7 @@ function PresenterScreenContentDefaultLayout({
470
475
)}
471
476
partStartedPlayback={currentPartInstance.instance.timings?.plannedStartedPlayback}
472
477
playlistActivationId={playlist?.activationId}
473
- />
478
+ /> */ }
474
479
</ div >
475
480
< div className = "presenter-screen__part__part-countdown" >
476
481
< Timediff time = { currentPartOrSegmentCountdown } />
You can’t perform that action at this time.
0 commit comments