File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
components/playlist-countdown Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
.player {
2
2
3
3
.playlist-countdown {
4
+ font-family : $font-family ;
4
5
height : 72px ;
5
6
position : absolute ;
6
7
bottom : 0 ;
12
13
13
14
& .hidden {
14
15
right : -160px ;
16
+ pointer-events : none ;
15
17
opacity : 0 ;
16
18
.playlist-countdown-content-placeholder {
17
19
.playlist-countdown-content-background {
Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ export function liveUI(props: any): React$Element<any> {
39
39
< UnmuteIndication />
40
40
< OverlayAction player = { props . player } />
41
41
< PlaybackControls player = { props . player } />
42
- { Watermark . shouldRender ( props ) ? < Watermark player = { props . player } /> : undefined }
43
42
< BottomBar >
44
43
< SeekBarLivePlaybackContainer showFramePreview showTimeBubble player = { props . player } playerContainer = { props . playerContainer } />
45
44
< div className = { style . leftControls } >
@@ -57,6 +56,7 @@ export function liveUI(props: any): React$Element<any> {
57
56
</ div >
58
57
</ BottomBar >
59
58
</ div >
59
+ { Watermark . shouldRender ( props ) ? < Watermark player = { props . player } /> : undefined }
60
60
< PrePlaybackPlayOverlay player = { props . player } />
61
61
< CastBeforePlay player = { props . player } />
62
62
< Backdrop />
Original file line number Diff line number Diff line change @@ -43,7 +43,6 @@ export function playbackUI(props: any): React$Element<any> {
43
43
< OverlayAction player = { props . player } />
44
44
< PlaybackControls player = { props . player } />
45
45
{ PlaylistNextScreen . shouldRender ( props ) ? < PlaylistNextScreen player = { props . player } /> : undefined }
46
- { Watermark . shouldRender ( props ) ? < Watermark player = { props . player } /> : undefined }
47
46
< BottomBar >
48
47
< SeekBarPlaybackContainer showFramePreview showTimeBubble player = { props . player } playerContainer = { props . playerContainer } />
49
48
< div className = { style . leftControls } >
@@ -61,8 +60,9 @@ export function playbackUI(props: any): React$Element<any> {
61
60
< FullscreenControl player = { props . player } />
62
61
</ div >
63
62
</ BottomBar >
64
- { PlaylistCountdown . shouldRender ( props ) ? < PlaylistCountdown player = { props . player } /> : undefined }
65
63
</ div >
64
+ { Watermark . shouldRender ( props ) ? < Watermark player = { props . player } /> : undefined }
65
+ { PlaylistCountdown . shouldRender ( props ) ? < PlaylistCountdown player = { props . player } /> : undefined }
66
66
< PrePlaybackPlayOverlay player = { props . player } />
67
67
< CastBeforePlay player = { props . player } />
68
68
< Backdrop />
You can’t perform that action at this time.
0 commit comments