@gcorevideo/player 2.22.29 → 2.22.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/media-control/container.scss +2 -3
- package/assets/poster/poster.ejs +3 -1
- package/assets/poster/poster.scss +3 -3
- package/assets/skip-time/skip-time.ejs +4 -4
- package/assets/skip-time/style.scss +4 -4
- package/assets/style/main.scss +1 -1
- package/dist/core.js +1 -1
- package/dist/index.css +573 -574
- package/dist/index.js +225 -230
- package/dist/player.d.ts +63 -33
- package/docs/api/{player.seektime.bindevents.md → player.clapprstats.clearmetrics.md} +3 -3
- package/docs/api/player.clapprstats.md +14 -0
- package/docs/api/player.extendedevents.md +14 -0
- package/docs/api/player.md +13 -2
- package/docs/api/player.seektime.attributes.md +0 -1
- package/docs/api/player.seektime.md +6 -197
- package/docs/api/{player.seektime.render.md → player.seektimesettings.md} +7 -7
- package/docs/api/player.skiptime.md +3 -184
- package/lib/plugins/poster/Poster.d.ts +24 -14
- package/lib/plugins/poster/Poster.d.ts.map +1 -1
- package/lib/plugins/poster/Poster.js +67 -97
- package/lib/plugins/skip-time/SkipTime.d.ts +25 -11
- package/lib/plugins/skip-time/SkipTime.d.ts.map +1 -1
- package/lib/plugins/skip-time/SkipTime.js +43 -17
- package/lib/testUtils.d.ts +13 -39
- package/lib/testUtils.d.ts.map +1 -1
- package/lib/testUtils.js +14 -65
- package/package.json +1 -1
- package/src/plugins/poster/Poster.ts +91 -110
- package/src/plugins/poster/__tests__/Poster.test.ts +119 -0
- package/src/plugins/poster/__tests__/__snapshots__/Poster.test.ts.snap +8 -0
- package/src/plugins/skip-time/SkipTime.ts +52 -25
- package/src/plugins/source-controller/__tests__/SourceController.test.ts +1 -2
- package/src/testUtils.ts +14 -86
- package/temp/player.api.json +295 -829
- package/tsconfig.tsbuildinfo +1 -1
- package/docs/api/player.seektime.durationshown.md +0 -14
- package/docs/api/player.seektime.getseektime.md +0 -20
- package/docs/api/player.seektime.islivestreamwithdvr.md +0 -14
- package/docs/api/player.seektime.mediacontrol.md +0 -14
- package/docs/api/player.seektime.mediacontrolcontainer.md +0 -14
- package/docs/api/player.seektime.shouldbevisible.md +0 -18
- package/docs/api/player.seektime.template.md +0 -14
- package/docs/api/player.seektime.update.md +0 -18
- package/docs/api/player.skiptime.attributes.md +0 -17
- package/docs/api/player.skiptime.bindevents.md +0 -18
- package/docs/api/player.skiptime.events.md +0 -18
- package/docs/api/player.skiptime.handlerewindclicks.md +0 -18
- package/docs/api/player.skiptime.render.md +0 -18
- package/docs/api/player.skiptime.setback.md +0 -18
- package/docs/api/player.skiptime.setforward.md +0 -18
- package/docs/api/player.skiptime.setmidclick.md +0 -18
- package/docs/api/player.skiptime.template.md +0 -14
- package/docs/api/player.skiptime.togglefullscreen.md +0 -18
package/dist/index.css
CHANGED
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
user-select: none;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
-
.player-poster
|
|
94
|
+
.player-poster {
|
|
95
95
|
background-size: contain !important;
|
|
96
96
|
}
|
|
97
97
|
|
|
@@ -122,91 +122,112 @@
|
|
|
122
122
|
.gplayer-lite-btn::-moz-focus-inner {
|
|
123
123
|
border: 0;
|
|
124
124
|
padding: 0;
|
|
125
|
-
}.
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
background-color: transparent;
|
|
129
|
-
display: flex;
|
|
130
|
-
justify-content: center;
|
|
131
|
-
width: 100%;
|
|
132
|
-
height: calc(100% - 50px);
|
|
133
|
-
margin: 0 auto;
|
|
134
|
-
opacity: 0.75;
|
|
135
|
-
transition: opacity 0.1s ease;
|
|
136
|
-
pointer-events: auto;
|
|
125
|
+
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
126
|
+
order: 99;
|
|
127
|
+
height: 20px;
|
|
137
128
|
}
|
|
138
|
-
.
|
|
139
|
-
|
|
129
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
|
|
130
|
+
position: absolute;
|
|
131
|
+
right: 16px;
|
|
132
|
+
bottom: 52px;
|
|
133
|
+
width: 250px;
|
|
134
|
+
min-height: 48px;
|
|
135
|
+
z-index: 9999;
|
|
136
|
+
border-radius: 4px;
|
|
140
137
|
}
|
|
141
|
-
.
|
|
142
|
-
|
|
138
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
|
|
139
|
+
padding: 8px 0;
|
|
143
140
|
}
|
|
144
|
-
|
|
145
|
-
|
|
141
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
|
|
142
|
+
margin: 0;
|
|
143
|
+
text-align: left;
|
|
144
|
+
line-height: 22px;
|
|
145
|
+
padding: 5px 14px;
|
|
146
|
+
width: 250px;
|
|
147
|
+
font-size: 12px;
|
|
146
148
|
display: flex;
|
|
147
149
|
align-items: center;
|
|
148
|
-
justify-content:
|
|
149
|
-
|
|
150
|
-
width: 120px;
|
|
151
|
-
height: 120px;
|
|
152
|
-
border: 2px solid white;
|
|
153
|
-
border-radius: 50%;
|
|
154
|
-
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
155
|
-
filter: alpha(opacity=60);
|
|
156
|
-
opacity: 1;
|
|
157
|
-
box-shadow: 0 0 1px 0 white;
|
|
158
|
-
background: rgba(240, 243, 247, 0.9411764706);
|
|
159
|
-
z-index: 10000;
|
|
150
|
+
justify-content: flex-start;
|
|
151
|
+
gap: 8px;
|
|
160
152
|
}
|
|
161
|
-
.
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
height: 80px;
|
|
153
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
|
|
154
|
+
flex: 24px 0 0;
|
|
155
|
+
height: 24px;
|
|
165
156
|
}
|
|
166
|
-
.
|
|
167
|
-
|
|
157
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
|
|
158
|
+
visibility: hidden;
|
|
159
|
+
display: inline-block;
|
|
168
160
|
}
|
|
169
|
-
.
|
|
170
|
-
|
|
161
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
|
|
162
|
+
flex: 0 1 100%;
|
|
171
163
|
}
|
|
172
|
-
.
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
z-index: 999;
|
|
176
|
-
position: absolute;
|
|
177
|
-
top: 0;
|
|
178
|
-
left: 0;
|
|
179
|
-
text-align: center;
|
|
164
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
|
|
165
|
+
flex: 0 0 14px;
|
|
166
|
+
height: 24px;
|
|
180
167
|
}
|
|
181
|
-
.
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
168
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
|
|
169
|
+
flex: 1 0 auto;
|
|
170
|
+
}*, :focus, :visited {
|
|
171
|
+
outline: none !important;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.gear-wrapper .go-back {
|
|
175
|
+
font-weight: 600;
|
|
176
|
+
font-size: 14px;
|
|
177
|
+
line-height: 20px;
|
|
178
|
+
width: 100%;
|
|
179
|
+
text-align: left;
|
|
180
|
+
padding: 12px;
|
|
181
|
+
}
|
|
182
|
+
.gear-wrapper .go-back .arrow-left-icon {
|
|
183
|
+
float: left;
|
|
184
|
+
padding-top: 2px;
|
|
185
|
+
padding-right: 2px;
|
|
186
|
+
}
|
|
187
|
+
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
188
|
+
height: 16px;
|
|
189
|
+
}
|
|
190
|
+
.gear-wrapper ul.gear-sub-menu {
|
|
191
|
+
width: 100%;
|
|
185
192
|
list-style-type: none;
|
|
193
|
+
min-width: 60px;
|
|
194
|
+
border-top: 2px solid rgb(36, 36, 36);
|
|
195
|
+
}
|
|
196
|
+
.gear-wrapper ul.gear-sub-menu li {
|
|
197
|
+
font-size: 12px;
|
|
186
198
|
text-align: left;
|
|
199
|
+
}
|
|
200
|
+
.gear-wrapper ul.gear-sub-menu li[data-title] {
|
|
201
|
+
background-color: #c3c2c2;
|
|
187
202
|
padding: 5px;
|
|
188
|
-
margin-left: auto;
|
|
189
|
-
margin-right: auto;
|
|
190
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
191
|
-
border: 1px solid #666;
|
|
192
|
-
border-radius: 4px;
|
|
193
203
|
}
|
|
194
|
-
.
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
204
|
+
.gear-wrapper ul.gear-sub-menu li a {
|
|
205
|
+
display: block;
|
|
206
|
+
text-decoration: none;
|
|
207
|
+
height: 32px;
|
|
208
|
+
padding: 5px 10px;
|
|
209
|
+
line-height: 22px;
|
|
210
|
+
color: #fffffe;
|
|
211
|
+
}
|
|
212
|
+
.gear-wrapper ul.gear-sub-menu li a:hover {
|
|
198
213
|
color: white;
|
|
199
|
-
|
|
200
|
-
gap: 8px;
|
|
201
|
-
align-items: center;
|
|
202
|
-
justify-content: center;
|
|
203
|
-
cursor: pointer;
|
|
204
|
-
padding: 5px;
|
|
205
|
-
width: 100%;
|
|
214
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
206
215
|
}
|
|
207
|
-
.
|
|
208
|
-
|
|
216
|
+
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
217
|
+
color: white;
|
|
218
|
+
text-decoration: none;
|
|
219
|
+
}
|
|
220
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
221
|
+
width: 30px;
|
|
209
222
|
height: 20px;
|
|
223
|
+
float: left;
|
|
224
|
+
display: block;
|
|
225
|
+
}
|
|
226
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
227
|
+
display: none;
|
|
228
|
+
}
|
|
229
|
+
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
230
|
+
display: inline;
|
|
210
231
|
}*,
|
|
211
232
|
:focus,
|
|
212
233
|
:visited {
|
|
@@ -307,6 +328,28 @@
|
|
|
307
328
|
100% {
|
|
308
329
|
color: #B80000;
|
|
309
330
|
}
|
|
331
|
+
}@charset "UTF-8";
|
|
332
|
+
.media-control-clips {
|
|
333
|
+
display: flex;
|
|
334
|
+
gap: 6px;
|
|
335
|
+
}
|
|
336
|
+
.media-control-clips .media-clip-text {
|
|
337
|
+
text-overflow: ellipsis;
|
|
338
|
+
white-space: nowrap;
|
|
339
|
+
overflow: hidden;
|
|
340
|
+
display: inline-block;
|
|
341
|
+
text-overflow: ellipsis;
|
|
342
|
+
color: white;
|
|
343
|
+
cursor: default;
|
|
344
|
+
line-height: var(--bottom-panel);
|
|
345
|
+
position: relative;
|
|
346
|
+
}
|
|
347
|
+
.media-control-clips .media-clip-text::before {
|
|
348
|
+
content: "•";
|
|
349
|
+
padding-right: 6px;
|
|
350
|
+
}
|
|
351
|
+
.media-control-clips .media-clip-text {
|
|
352
|
+
max-width: 100px;
|
|
310
353
|
}:root {
|
|
311
354
|
--primary-background-color: #000;
|
|
312
355
|
--secondary-background-color: #262626;
|
|
@@ -671,134 +714,196 @@
|
|
|
671
714
|
.fullscreen .clappr-nerd-stats .stats-box {
|
|
672
715
|
top: unset;
|
|
673
716
|
}
|
|
674
|
-
}.
|
|
675
|
-
order: 99;
|
|
676
|
-
height: 20px;
|
|
677
|
-
}
|
|
678
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
|
|
717
|
+
}.big-mute-icon-wrapper[data-big-mute] {
|
|
679
718
|
position: absolute;
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
719
|
+
z-index: 9998;
|
|
720
|
+
background-color: transparent;
|
|
721
|
+
display: flex;
|
|
722
|
+
justify-content: center;
|
|
723
|
+
width: 100%;
|
|
724
|
+
height: calc(100% - 50px);
|
|
725
|
+
margin: 0 auto;
|
|
726
|
+
opacity: 0.75;
|
|
727
|
+
transition: opacity 0.1s ease;
|
|
728
|
+
pointer-events: auto;
|
|
686
729
|
}
|
|
687
|
-
.
|
|
688
|
-
|
|
730
|
+
.big-mute-icon-wrapper[data-big-mute].hide {
|
|
731
|
+
display: none;
|
|
689
732
|
}
|
|
690
|
-
.
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
width: 250px;
|
|
696
|
-
font-size: 12px;
|
|
733
|
+
.big-mute-icon-wrapper[data-big-mute]:hover {
|
|
734
|
+
cursor: pointer;
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
.big-mute-icon[data-big-mute-icon] {
|
|
697
738
|
display: flex;
|
|
698
739
|
align-items: center;
|
|
699
|
-
justify-content:
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
740
|
+
justify-content: center;
|
|
741
|
+
align-self: center;
|
|
742
|
+
width: 120px;
|
|
743
|
+
height: 120px;
|
|
744
|
+
border: 2px solid white;
|
|
745
|
+
border-radius: 50%;
|
|
746
|
+
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
747
|
+
filter: alpha(opacity=60);
|
|
748
|
+
opacity: 1;
|
|
749
|
+
box-shadow: 0 0 1px 0 white;
|
|
750
|
+
background: rgba(240, 243, 247, 0.9411764706);
|
|
751
|
+
z-index: 10000;
|
|
709
752
|
}
|
|
710
|
-
.
|
|
711
|
-
|
|
753
|
+
.big-mute-icon[data-big-mute-icon] svg {
|
|
754
|
+
margin-left: 5px;
|
|
755
|
+
width: 80px;
|
|
756
|
+
height: 80px;
|
|
712
757
|
}
|
|
713
|
-
.
|
|
714
|
-
|
|
715
|
-
height: 24px;
|
|
758
|
+
.big-mute-icon[data-big-mute-icon] svg path {
|
|
759
|
+
fill: #1f1e1e !important;
|
|
716
760
|
}
|
|
717
|
-
.
|
|
718
|
-
|
|
719
|
-
}*, :focus, :visited {
|
|
720
|
-
outline: none !important;
|
|
761
|
+
.big-mute-icon[data-big-mute-icon]:hover {
|
|
762
|
+
background: rgba(240, 243, 247, 0.8784313725);
|
|
721
763
|
}
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
padding-right: 2px;
|
|
764
|
+
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
765
|
+
fill: #151515 !important;
|
|
766
|
+
}.dvr-controls[data-dvr] {
|
|
767
|
+
display: inline-block;
|
|
768
|
+
color: var(--player-dvr-color);
|
|
769
|
+
line-height: 32px;
|
|
770
|
+
font-size: 10px;
|
|
771
|
+
font-weight: bold;
|
|
772
|
+
margin-left: 6px;
|
|
773
|
+
height: 40px;
|
|
774
|
+
line-height: 40px;
|
|
775
|
+
margin-left: 0;
|
|
735
776
|
}
|
|
736
|
-
.
|
|
737
|
-
|
|
777
|
+
.dvr-controls[data-dvr] .live-info {
|
|
778
|
+
cursor: default;
|
|
779
|
+
text-transform: uppercase;
|
|
738
780
|
}
|
|
739
|
-
.
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
781
|
+
.dvr-controls[data-dvr] .live-info:before {
|
|
782
|
+
content: "";
|
|
783
|
+
display: inline-block;
|
|
784
|
+
position: relative;
|
|
785
|
+
width: 7px;
|
|
786
|
+
height: 7px;
|
|
787
|
+
border-radius: 3.5px;
|
|
788
|
+
margin-right: 3.5px;
|
|
789
|
+
background-color: var(--player-live-color);
|
|
744
790
|
}
|
|
745
|
-
.
|
|
746
|
-
|
|
747
|
-
text-align: left;
|
|
791
|
+
.dvr-controls[data-dvr] .live-info.disabled {
|
|
792
|
+
opacity: 0.3;
|
|
748
793
|
}
|
|
749
|
-
.
|
|
750
|
-
background-color:
|
|
751
|
-
padding: 5px;
|
|
794
|
+
.dvr-controls[data-dvr] .live-info.disabled:before {
|
|
795
|
+
background-color: var(--player-dvr-color);
|
|
752
796
|
}
|
|
753
|
-
.
|
|
754
|
-
|
|
755
|
-
|
|
797
|
+
.dvr-controls[data-dvr] .live-button {
|
|
798
|
+
cursor: pointer;
|
|
799
|
+
outline: none;
|
|
800
|
+
display: none;
|
|
801
|
+
border: 0;
|
|
802
|
+
color: var(--player-dvr-color);
|
|
803
|
+
background-color: transparent;
|
|
756
804
|
height: 32px;
|
|
757
|
-
padding:
|
|
758
|
-
|
|
759
|
-
|
|
805
|
+
padding: 0;
|
|
806
|
+
opacity: 0.7;
|
|
807
|
+
text-transform: uppercase;
|
|
808
|
+
transition: all 0.1s ease;
|
|
760
809
|
}
|
|
761
|
-
.
|
|
762
|
-
|
|
763
|
-
|
|
810
|
+
.dvr-controls[data-dvr] .live-button:before {
|
|
811
|
+
content: "";
|
|
812
|
+
display: inline-block;
|
|
813
|
+
position: relative;
|
|
814
|
+
width: 7px;
|
|
815
|
+
height: 7px;
|
|
816
|
+
border-radius: 3.5px;
|
|
817
|
+
margin-right: 3.5px;
|
|
818
|
+
background-color: var(--player-dvr-color);
|
|
764
819
|
}
|
|
765
|
-
.
|
|
766
|
-
|
|
767
|
-
text-
|
|
820
|
+
.dvr-controls[data-dvr] .live-button:hover {
|
|
821
|
+
opacity: 1;
|
|
822
|
+
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
768
823
|
}
|
|
769
|
-
.
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
824
|
+
.dvr-controls[data-dvr] .live-info {
|
|
825
|
+
font-size: 14px;
|
|
826
|
+
letter-spacing: 0.8px;
|
|
827
|
+
font-weight: 500;
|
|
828
|
+
color: #fffffe;
|
|
829
|
+
margin-left: 21px;
|
|
774
830
|
}
|
|
775
|
-
.
|
|
776
|
-
|
|
831
|
+
.dvr-controls[data-dvr] .live-info::before {
|
|
832
|
+
width: 10px;
|
|
833
|
+
height: 10px;
|
|
834
|
+
border-radius: 50%;
|
|
835
|
+
margin-right: 8px;
|
|
836
|
+
background-color: #ed4f4a;
|
|
777
837
|
}
|
|
778
|
-
.
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
838
|
+
.dvr-controls[data-dvr] .live-button {
|
|
839
|
+
height: 40px;
|
|
840
|
+
opacity: 1;
|
|
841
|
+
font-size: 14px;
|
|
842
|
+
letter-spacing: 0.8px;
|
|
843
|
+
font-weight: 500;
|
|
844
|
+
margin-left: 20px;
|
|
845
|
+
}
|
|
846
|
+
.dvr-controls[data-dvr] .live-button::before {
|
|
847
|
+
width: 10px;
|
|
848
|
+
height: 10px;
|
|
849
|
+
border-radius: 50%;
|
|
850
|
+
margin-right: 8px;
|
|
851
|
+
background-color: #cacaca;
|
|
852
|
+
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
853
|
+
color: #CCCACA;
|
|
854
|
+
position: absolute;
|
|
855
|
+
top: 0;
|
|
856
|
+
height: 100%;
|
|
857
|
+
width: 100%;
|
|
858
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
859
|
+
z-index: 2000;
|
|
782
860
|
display: flex;
|
|
783
|
-
|
|
861
|
+
flex-direction: column;
|
|
862
|
+
justify-content: center;
|
|
784
863
|
}
|
|
785
|
-
.
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
display: inline-block;
|
|
790
|
-
text-overflow: ellipsis;
|
|
791
|
-
color: white;
|
|
792
|
-
cursor: default;
|
|
793
|
-
line-height: var(--bottom-panel);
|
|
794
|
-
position: relative;
|
|
864
|
+
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
865
|
+
font-size: 14px;
|
|
866
|
+
color: #CCCACA;
|
|
867
|
+
margin-top: 45px;
|
|
795
868
|
}
|
|
796
|
-
.
|
|
797
|
-
|
|
798
|
-
|
|
869
|
+
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
870
|
+
font-weight: bold;
|
|
871
|
+
line-height: 30px;
|
|
872
|
+
font-size: 18px;
|
|
799
873
|
}
|
|
800
|
-
.
|
|
801
|
-
|
|
874
|
+
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
875
|
+
width: 90%;
|
|
876
|
+
margin: 0 auto;
|
|
877
|
+
}
|
|
878
|
+
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
879
|
+
font-size: 13px;
|
|
880
|
+
margin-top: 15px;
|
|
881
|
+
}
|
|
882
|
+
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
883
|
+
cursor: pointer;
|
|
884
|
+
width: 30px;
|
|
885
|
+
margin: 15px auto 0;
|
|
886
|
+
}.container-with-poster-clickable .mc-skip-time {
|
|
887
|
+
height: 0;
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
.mc-skip-time {
|
|
891
|
+
position: absolute;
|
|
892
|
+
width: 100%;
|
|
893
|
+
height: calc(100% - 50px);
|
|
894
|
+
z-index: 9998;
|
|
895
|
+
background-color: transparent;
|
|
896
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
897
|
+
}
|
|
898
|
+
.mc-skip-time .skip-container {
|
|
899
|
+
width: 100%;
|
|
900
|
+
height: 100%;
|
|
901
|
+
display: flex;
|
|
902
|
+
justify-content: space-between;
|
|
903
|
+
}
|
|
904
|
+
.mc-skip-time .skip-container .skip-item {
|
|
905
|
+
flex: 1 0 0px;
|
|
906
|
+
height: 100%;
|
|
802
907
|
}[data-player] {
|
|
803
908
|
--bottom-panel: 40px;
|
|
804
909
|
}
|
|
@@ -806,7 +911,7 @@
|
|
|
806
911
|
.container .media-control-notransition {
|
|
807
912
|
transition: none !important;
|
|
808
913
|
}
|
|
809
|
-
.container .player-poster
|
|
914
|
+
.container .player-poster .play-wrapper {
|
|
810
915
|
opacity: 1;
|
|
811
916
|
}
|
|
812
917
|
.container.crop-video [data-html5-video] {
|
|
@@ -823,7 +928,7 @@
|
|
|
823
928
|
color: white;
|
|
824
929
|
display: inline-block;
|
|
825
930
|
}
|
|
826
|
-
.container .
|
|
931
|
+
.container .player-poster .circle-poster {
|
|
827
932
|
top: 50%;
|
|
828
933
|
margin-top: -60px;
|
|
829
934
|
left: 50%;
|
|
@@ -838,10 +943,9 @@
|
|
|
838
943
|
opacity: 1;
|
|
839
944
|
box-shadow: 0 0 1px 0 white;
|
|
840
945
|
}
|
|
841
|
-
.container .
|
|
946
|
+
.container .player-poster .circle-poster svg {
|
|
842
947
|
margin-left: 5px;
|
|
843
948
|
width: 80px;
|
|
844
|
-
height: 80px;
|
|
845
949
|
}
|
|
846
950
|
.container .spinner-three-bounce[data-spinner] > div {
|
|
847
951
|
background-color: #ff5700;
|
|
@@ -1413,146 +1517,142 @@
|
|
|
1413
1517
|
.media-control-skin-1[data-media-control-skin-1] .seek-time .seek-time__pos {
|
|
1414
1518
|
padding-left: 8px;
|
|
1415
1519
|
padding-right: 8px;
|
|
1416
|
-
}
|
|
1417
|
-
|
|
1418
|
-
position: absolute;
|
|
1419
|
-
top: 0;
|
|
1420
|
-
height: 100%;
|
|
1421
|
-
width: 100%;
|
|
1422
|
-
background-color: rgba(0, 0, 0, 0.7);
|
|
1423
|
-
z-index: 2000;
|
|
1424
|
-
display: flex;
|
|
1425
|
-
flex-direction: column;
|
|
1426
|
-
justify-content: center;
|
|
1520
|
+
}*, :focus, :visited {
|
|
1521
|
+
outline: none !important;
|
|
1427
1522
|
}
|
|
1428
|
-
|
|
1523
|
+
|
|
1524
|
+
.multicamera[data-multicamera] {
|
|
1525
|
+
float: right;
|
|
1526
|
+
margin-top: 4px;
|
|
1527
|
+
position: relative;
|
|
1528
|
+
margin-right: 20px;
|
|
1529
|
+
width: 20px;
|
|
1530
|
+
}
|
|
1531
|
+
.multicamera[data-multicamera] button {
|
|
1532
|
+
background-color: transparent;
|
|
1533
|
+
color: #fff;
|
|
1534
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1535
|
+
-webkit-font-smoothing: antialiased;
|
|
1536
|
+
border: none;
|
|
1429
1537
|
font-size: 14px;
|
|
1430
|
-
|
|
1431
|
-
margin-top: 45px;
|
|
1538
|
+
padding: 0;
|
|
1432
1539
|
}
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1540
|
+
.multicamera[data-multicamera] button svg {
|
|
1541
|
+
height: 20px;
|
|
1542
|
+
position: relative;
|
|
1543
|
+
margin-top: 6px;
|
|
1437
1544
|
}
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
margin: 0 auto;
|
|
1545
|
+
.multicamera[data-multicamera] button:hover {
|
|
1546
|
+
color: #c9c9c9;
|
|
1441
1547
|
}
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
margin-top: 15px;
|
|
1548
|
+
.multicamera[data-multicamera] button.changing {
|
|
1549
|
+
animation: pulse 0.5s infinite alternate;
|
|
1445
1550
|
}
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
margin:
|
|
1450
|
-
|
|
1451
|
-
height: 0;
|
|
1551
|
+
.multicamera[data-multicamera] button span.quality-arrow {
|
|
1552
|
+
width: 9px;
|
|
1553
|
+
height: 6px;
|
|
1554
|
+
margin-top: 11px;
|
|
1555
|
+
margin-left: 5px;
|
|
1452
1556
|
}
|
|
1453
|
-
|
|
1454
|
-
|
|
1557
|
+
.multicamera[data-multicamera] > ul {
|
|
1558
|
+
padding: 6px 0;
|
|
1559
|
+
right: -24px;
|
|
1560
|
+
width: 245px;
|
|
1561
|
+
list-style-type: none;
|
|
1455
1562
|
position: absolute;
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
background-color:
|
|
1460
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1461
|
-
}
|
|
1462
|
-
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
|
|
1463
|
-
width: 100%;
|
|
1464
|
-
height: 100%;
|
|
1465
|
-
display: flex;
|
|
1466
|
-
justify-content: space-between;
|
|
1563
|
+
bottom: 48px;
|
|
1564
|
+
border-radius: 4px;
|
|
1565
|
+
display: none;
|
|
1566
|
+
background-color: rgba(74, 74, 74, 0.9);
|
|
1467
1567
|
}
|
|
1468
|
-
.
|
|
1469
|
-
|
|
1470
|
-
height: 100%;
|
|
1471
|
-
}.seek-time {
|
|
1568
|
+
.multicamera[data-multicamera] > ul::after {
|
|
1569
|
+
content: "";
|
|
1472
1570
|
position: absolute;
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
transition: opacity 0.1s ease;
|
|
1482
|
-
}
|
|
1483
|
-
.seek-time.hidden {
|
|
1484
|
-
opacity: 0;
|
|
1571
|
+
top: 100%;
|
|
1572
|
+
left: 85%;
|
|
1573
|
+
margin-left: -10px;
|
|
1574
|
+
width: 0;
|
|
1575
|
+
height: 0;
|
|
1576
|
+
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
1577
|
+
border-right: 10px solid transparent;
|
|
1578
|
+
border-left: 10px solid transparent;
|
|
1485
1579
|
}
|
|
1486
|
-
.
|
|
1487
|
-
display: inline-block;
|
|
1488
|
-
color: white;
|
|
1580
|
+
.multicamera[data-multicamera] li {
|
|
1489
1581
|
font-size: 10px;
|
|
1490
|
-
|
|
1491
|
-
padding-right: 7px;
|
|
1492
|
-
vertical-align: top;
|
|
1582
|
+
cursor: pointer;
|
|
1493
1583
|
}
|
|
1494
|
-
.
|
|
1495
|
-
display:
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
vertical-align: top;
|
|
1584
|
+
.multicamera[data-multicamera] li .multicamera-item {
|
|
1585
|
+
display: flex;
|
|
1586
|
+
padding: 10px 0;
|
|
1587
|
+
justify-content: center;
|
|
1588
|
+
position: relative;
|
|
1500
1589
|
}
|
|
1501
|
-
.
|
|
1502
|
-
|
|
1503
|
-
margin-right: 7px;
|
|
1504
|
-
}*,
|
|
1505
|
-
:focus,
|
|
1506
|
-
:visited {
|
|
1507
|
-
outline: none !important;
|
|
1590
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
1591
|
+
pointer-events: none;
|
|
1508
1592
|
}
|
|
1509
|
-
|
|
1510
|
-
.
|
|
1511
|
-
position: relative;
|
|
1512
|
-
order: 85;
|
|
1593
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
1594
|
+
opacity: 0.5;
|
|
1513
1595
|
}
|
|
1514
|
-
.
|
|
1515
|
-
|
|
1516
|
-
color: #fff;
|
|
1517
|
-
-webkit-font-smoothing: antialiased;
|
|
1518
|
-
border: none;
|
|
1519
|
-
cursor: pointer;
|
|
1596
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
1597
|
+
opacity: 0.5;
|
|
1520
1598
|
}
|
|
1521
|
-
.
|
|
1522
|
-
|
|
1599
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
1600
|
+
background-color: rgba(0, 0, 0, 0);
|
|
1523
1601
|
}
|
|
1524
|
-
.
|
|
1525
|
-
color:
|
|
1602
|
+
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
1603
|
+
background-color: rgba(0, 0, 0, 0.3);
|
|
1526
1604
|
}
|
|
1527
|
-
.
|
|
1528
|
-
|
|
1605
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
1606
|
+
width: 80px;
|
|
1607
|
+
height: 60px;
|
|
1529
1608
|
}
|
|
1530
|
-
.
|
|
1609
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
|
|
1531
1610
|
width: 80px;
|
|
1532
|
-
|
|
1533
|
-
position: absolute;
|
|
1534
|
-
bottom: 25px;
|
|
1535
|
-
border: 1px solid black;
|
|
1536
|
-
background-color: #e6e6e6;
|
|
1537
|
-
padding: 8px 0;
|
|
1611
|
+
height: 60px;
|
|
1538
1612
|
}
|
|
1539
|
-
.
|
|
1613
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
1614
|
+
width: 120px;
|
|
1615
|
+
text-align: left;
|
|
1616
|
+
margin-left: 15px;
|
|
1617
|
+
}
|
|
1618
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1619
|
+
width: 120px;
|
|
1620
|
+
height: 20px;
|
|
1621
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1622
|
+
font-size: 14px;
|
|
1623
|
+
font-weight: normal;
|
|
1624
|
+
font-style: normal;
|
|
1625
|
+
font-stretch: normal;
|
|
1626
|
+
line-height: 1.43;
|
|
1627
|
+
letter-spacing: normal;
|
|
1628
|
+
text-align: left;
|
|
1629
|
+
color: #fff;
|
|
1630
|
+
text-overflow: ellipsis;
|
|
1631
|
+
overflow: hidden;
|
|
1632
|
+
}
|
|
1633
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1634
|
+
opacity: 0.6;
|
|
1635
|
+
}
|
|
1636
|
+
.multicamera[data-multicamera] li[data-title] {
|
|
1637
|
+
background-color: #c3c2c2;
|
|
1638
|
+
padding: 5px;
|
|
1639
|
+
}
|
|
1640
|
+
.multicamera[data-multicamera] li a {
|
|
1540
1641
|
color: #444;
|
|
1541
1642
|
padding: 2px 10px;
|
|
1542
1643
|
display: block;
|
|
1543
1644
|
text-decoration: none;
|
|
1544
1645
|
}
|
|
1545
|
-
.
|
|
1646
|
+
.multicamera[data-multicamera] li a:hover {
|
|
1546
1647
|
background-color: #555;
|
|
1547
1648
|
color: white;
|
|
1548
1649
|
}
|
|
1549
|
-
.
|
|
1650
|
+
.multicamera[data-multicamera] li a:hover a {
|
|
1550
1651
|
color: white;
|
|
1551
1652
|
text-decoration: none;
|
|
1552
1653
|
}
|
|
1553
|
-
.
|
|
1654
|
+
.multicamera[data-multicamera] li.current a {
|
|
1554
1655
|
color: #f00;
|
|
1555
|
-
background-color: #555;
|
|
1556
1656
|
}
|
|
1557
1657
|
|
|
1558
1658
|
@keyframes pulse {
|
|
@@ -1565,101 +1665,87 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1565
1665
|
100% {
|
|
1566
1666
|
color: #B80000;
|
|
1567
1667
|
}
|
|
1668
|
+
}.media-control-pip {
|
|
1669
|
+
order: 95;
|
|
1670
|
+
display: flex;
|
|
1568
1671
|
}
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
font-size: 0 !important;
|
|
1672
|
+
.media-control-pip button {
|
|
1673
|
+
height: 20px;
|
|
1572
1674
|
}
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1675
|
+
.media-control-pip button svg {
|
|
1676
|
+
height: 20px;
|
|
1677
|
+
}.player-poster {
|
|
1678
|
+
display: flex;
|
|
1679
|
+
justify-content: center;
|
|
1680
|
+
align-items: center;
|
|
1681
|
+
position: absolute;
|
|
1682
|
+
height: 100%;
|
|
1683
|
+
width: 100%;
|
|
1684
|
+
z-index: 998;
|
|
1685
|
+
top: 0;
|
|
1686
|
+
left: 0;
|
|
1687
|
+
background-color: #000;
|
|
1688
|
+
background-size: cover;
|
|
1689
|
+
background-repeat: no-repeat;
|
|
1690
|
+
background-position: 50% 50%;
|
|
1587
1691
|
}
|
|
1588
|
-
.
|
|
1589
|
-
cursor:
|
|
1590
|
-
text-transform: uppercase;
|
|
1692
|
+
.player-poster.clickable {
|
|
1693
|
+
cursor: pointer;
|
|
1591
1694
|
}
|
|
1592
|
-
.
|
|
1593
|
-
|
|
1594
|
-
display: inline-block;
|
|
1595
|
-
position: relative;
|
|
1596
|
-
width: 7px;
|
|
1597
|
-
height: 7px;
|
|
1598
|
-
border-radius: 3.5px;
|
|
1599
|
-
margin-right: 3.5px;
|
|
1600
|
-
background-color: var(--player-live-color);
|
|
1695
|
+
.player-poster:hover .play-wrapper {
|
|
1696
|
+
opacity: 1;
|
|
1601
1697
|
}
|
|
1602
|
-
.
|
|
1603
|
-
|
|
1698
|
+
.player-poster .play-wrapper {
|
|
1699
|
+
width: 100%;
|
|
1700
|
+
height: 25%;
|
|
1701
|
+
margin: 0 auto;
|
|
1702
|
+
opacity: 0.75;
|
|
1703
|
+
transition: opacity 0.1s ease;
|
|
1604
1704
|
}
|
|
1605
|
-
.
|
|
1606
|
-
|
|
1705
|
+
.player-poster .play-wrapper svg {
|
|
1706
|
+
height: 100%;
|
|
1707
|
+
display: inline;
|
|
1607
1708
|
}
|
|
1608
|
-
.
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1709
|
+
.player-poster .play-wrapper svg path {
|
|
1710
|
+
fill: #fff;
|
|
1711
|
+
}.spinner-three-bounce[data-spinner] {
|
|
1712
|
+
position: absolute;
|
|
1713
|
+
width: 70px;
|
|
1714
|
+
text-align: center;
|
|
1715
|
+
z-index: 999;
|
|
1716
|
+
left: 0;
|
|
1717
|
+
right: 0;
|
|
1718
|
+
margin: 0 auto;
|
|
1719
|
+
margin-left: auto;
|
|
1720
|
+
margin-right: auto;
|
|
1721
|
+
/* center vertically */
|
|
1722
|
+
top: 50%;
|
|
1723
|
+
transform: translateY(-50%);
|
|
1620
1724
|
}
|
|
1621
|
-
.
|
|
1622
|
-
|
|
1725
|
+
.spinner-three-bounce[data-spinner] > div {
|
|
1726
|
+
width: 18px;
|
|
1727
|
+
height: 18px;
|
|
1728
|
+
background-color: #FFF;
|
|
1729
|
+
border-radius: 100%;
|
|
1623
1730
|
display: inline-block;
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
border-radius: 3.5px;
|
|
1628
|
-
margin-right: 3.5px;
|
|
1629
|
-
background-color: var(--player-dvr-color);
|
|
1630
|
-
}
|
|
1631
|
-
.dvr-controls[data-dvr] .live-button:hover {
|
|
1632
|
-
opacity: 1;
|
|
1633
|
-
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
1634
|
-
}
|
|
1635
|
-
.dvr-controls[data-dvr] .live-info {
|
|
1636
|
-
font-size: 14px;
|
|
1637
|
-
letter-spacing: 0.8px;
|
|
1638
|
-
font-weight: 500;
|
|
1639
|
-
color: #fffffe;
|
|
1640
|
-
margin-left: 21px;
|
|
1731
|
+
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
1732
|
+
/* Prevent first frame from flickering when animation starts */
|
|
1733
|
+
animation-fill-mode: both;
|
|
1641
1734
|
}
|
|
1642
|
-
.
|
|
1643
|
-
|
|
1644
|
-
height: 10px;
|
|
1645
|
-
border-radius: 50%;
|
|
1646
|
-
margin-right: 8px;
|
|
1647
|
-
background-color: #ed4f4a;
|
|
1735
|
+
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
1736
|
+
animation-delay: -0.32s;
|
|
1648
1737
|
}
|
|
1649
|
-
.
|
|
1650
|
-
|
|
1651
|
-
opacity: 1;
|
|
1652
|
-
font-size: 14px;
|
|
1653
|
-
letter-spacing: 0.8px;
|
|
1654
|
-
font-weight: 500;
|
|
1655
|
-
margin-left: 20px;
|
|
1738
|
+
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
1739
|
+
animation-delay: -0.16s;
|
|
1656
1740
|
}
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1741
|
+
|
|
1742
|
+
@keyframes bouncedelay {
|
|
1743
|
+
0%, 80%, 100% {
|
|
1744
|
+
transform: scale(0);
|
|
1745
|
+
}
|
|
1746
|
+
40% {
|
|
1747
|
+
transform: scale(1);
|
|
1748
|
+
}
|
|
1663
1749
|
}.share_plugin[data-share] {
|
|
1664
1750
|
pointer-events: auto;
|
|
1665
1751
|
z-index: 5;
|
|
@@ -1733,208 +1819,68 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1733
1819
|
border: solid 1px #d3d3d3;
|
|
1734
1820
|
width: calc(100% - 10px);
|
|
1735
1821
|
padding: 5px;
|
|
1736
|
-
}
|
|
1737
|
-
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
1738
|
-
max-height: 90px;
|
|
1739
|
-
resize: none;
|
|
1740
|
-
}
|
|
1741
|
-
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
1742
|
-
width: 32px;
|
|
1743
|
-
display: inline-block;
|
|
1744
|
-
margin-right: 5px;
|
|
1745
|
-
cursor: pointer;
|
|
1746
|
-
}
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
}
|
|
1750
|
-
.media-control-pip button {
|
|
1751
|
-
height: 20px;
|
|
1752
|
-
}
|
|
1753
|
-
.media-control-pip button svg {
|
|
1754
|
-
height: 20px;
|
|
1755
|
-
}.player-logo[data-logo] {
|
|
1756
|
-
position: absolute;
|
|
1757
|
-
z-index: 2;
|
|
1758
|
-
width: 100%;
|
|
1759
|
-
height: 100%;
|
|
1760
|
-
}
|
|
1761
|
-
|
|
1762
|
-
.clappr-logo {
|
|
1763
|
-
position: absolute;
|
|
1764
|
-
}.spinner-three-bounce[data-spinner] {
|
|
1765
|
-
position: absolute;
|
|
1766
|
-
width: 70px;
|
|
1767
|
-
text-align: center;
|
|
1768
|
-
z-index: 999;
|
|
1769
|
-
left: 0;
|
|
1770
|
-
right: 0;
|
|
1771
|
-
margin: 0 auto;
|
|
1772
|
-
margin-left: auto;
|
|
1773
|
-
margin-right: auto;
|
|
1774
|
-
/* center vertically */
|
|
1775
|
-
top: 50%;
|
|
1776
|
-
transform: translateY(-50%);
|
|
1777
|
-
}
|
|
1778
|
-
.spinner-three-bounce[data-spinner] > div {
|
|
1779
|
-
width: 18px;
|
|
1780
|
-
height: 18px;
|
|
1781
|
-
background-color: #FFF;
|
|
1782
|
-
border-radius: 100%;
|
|
1783
|
-
display: inline-block;
|
|
1784
|
-
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
1785
|
-
/* Prevent first frame from flickering when animation starts */
|
|
1786
|
-
animation-fill-mode: both;
|
|
1787
|
-
}
|
|
1788
|
-
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
1789
|
-
animation-delay: -0.32s;
|
|
1790
|
-
}
|
|
1791
|
-
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
1792
|
-
animation-delay: -0.16s;
|
|
1793
|
-
}
|
|
1794
|
-
|
|
1795
|
-
@keyframes bouncedelay {
|
|
1796
|
-
0%, 80%, 100% {
|
|
1797
|
-
transform: scale(0);
|
|
1798
|
-
}
|
|
1799
|
-
40% {
|
|
1800
|
-
transform: scale(1);
|
|
1801
|
-
}
|
|
1802
|
-
}*, :focus, :visited {
|
|
1822
|
+
}
|
|
1823
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
1824
|
+
max-height: 90px;
|
|
1825
|
+
resize: none;
|
|
1826
|
+
}
|
|
1827
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
1828
|
+
width: 32px;
|
|
1829
|
+
display: inline-block;
|
|
1830
|
+
margin-right: 5px;
|
|
1831
|
+
cursor: pointer;
|
|
1832
|
+
}*,
|
|
1833
|
+
:focus,
|
|
1834
|
+
:visited {
|
|
1803
1835
|
outline: none !important;
|
|
1804
1836
|
}
|
|
1805
1837
|
|
|
1806
|
-
.
|
|
1807
|
-
float: right;
|
|
1808
|
-
margin-top: 4px;
|
|
1838
|
+
.media-control-cc[data-cc] {
|
|
1809
1839
|
position: relative;
|
|
1810
|
-
|
|
1811
|
-
width: 20px;
|
|
1840
|
+
order: 85;
|
|
1812
1841
|
}
|
|
1813
|
-
.
|
|
1842
|
+
.media-control-cc[data-cc] button {
|
|
1814
1843
|
background-color: transparent;
|
|
1815
1844
|
color: #fff;
|
|
1816
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1817
1845
|
-webkit-font-smoothing: antialiased;
|
|
1818
1846
|
border: none;
|
|
1819
|
-
|
|
1820
|
-
padding: 0;
|
|
1847
|
+
cursor: pointer;
|
|
1821
1848
|
}
|
|
1822
|
-
.
|
|
1823
|
-
|
|
1824
|
-
position: relative;
|
|
1825
|
-
margin-top: 6px;
|
|
1849
|
+
.media-control-cc[data-cc] button .cc-text svg {
|
|
1850
|
+
fill: white;
|
|
1826
1851
|
}
|
|
1827
|
-
.
|
|
1852
|
+
.media-control-cc[data-cc] button:hover {
|
|
1828
1853
|
color: #c9c9c9;
|
|
1829
1854
|
}
|
|
1830
|
-
.
|
|
1855
|
+
.media-control-cc[data-cc] button.changing {
|
|
1831
1856
|
animation: pulse 0.5s infinite alternate;
|
|
1832
1857
|
}
|
|
1833
|
-
.
|
|
1834
|
-
width:
|
|
1835
|
-
height: 6px;
|
|
1836
|
-
margin-top: 11px;
|
|
1837
|
-
margin-left: 5px;
|
|
1838
|
-
}
|
|
1839
|
-
.multicamera[data-multicamera] > ul {
|
|
1840
|
-
padding: 6px 0;
|
|
1841
|
-
right: -24px;
|
|
1842
|
-
width: 245px;
|
|
1858
|
+
.media-control-cc[data-cc] ul {
|
|
1859
|
+
width: 80px;
|
|
1843
1860
|
list-style-type: none;
|
|
1844
1861
|
position: absolute;
|
|
1845
|
-
bottom:
|
|
1846
|
-
border
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
}
|
|
1850
|
-
.multicamera[data-multicamera] > ul::after {
|
|
1851
|
-
content: "";
|
|
1852
|
-
position: absolute;
|
|
1853
|
-
top: 100%;
|
|
1854
|
-
left: 85%;
|
|
1855
|
-
margin-left: -10px;
|
|
1856
|
-
width: 0;
|
|
1857
|
-
height: 0;
|
|
1858
|
-
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
1859
|
-
border-right: 10px solid transparent;
|
|
1860
|
-
border-left: 10px solid transparent;
|
|
1861
|
-
}
|
|
1862
|
-
.multicamera[data-multicamera] li {
|
|
1863
|
-
font-size: 10px;
|
|
1864
|
-
cursor: pointer;
|
|
1865
|
-
}
|
|
1866
|
-
.multicamera[data-multicamera] li .multicamera-item {
|
|
1867
|
-
display: flex;
|
|
1868
|
-
padding: 10px 0;
|
|
1869
|
-
justify-content: center;
|
|
1870
|
-
position: relative;
|
|
1871
|
-
}
|
|
1872
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
1873
|
-
pointer-events: none;
|
|
1874
|
-
}
|
|
1875
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
1876
|
-
opacity: 0.5;
|
|
1877
|
-
}
|
|
1878
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
1879
|
-
opacity: 0.5;
|
|
1880
|
-
}
|
|
1881
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
1882
|
-
background-color: rgba(0, 0, 0, 0);
|
|
1883
|
-
}
|
|
1884
|
-
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
1885
|
-
background-color: rgba(0, 0, 0, 0.3);
|
|
1886
|
-
}
|
|
1887
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
1888
|
-
width: 80px;
|
|
1889
|
-
height: 60px;
|
|
1890
|
-
}
|
|
1891
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
|
|
1892
|
-
width: 80px;
|
|
1893
|
-
height: 60px;
|
|
1894
|
-
}
|
|
1895
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
1896
|
-
width: 120px;
|
|
1897
|
-
text-align: left;
|
|
1898
|
-
margin-left: 15px;
|
|
1899
|
-
}
|
|
1900
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1901
|
-
width: 120px;
|
|
1902
|
-
height: 20px;
|
|
1903
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1904
|
-
font-size: 14px;
|
|
1905
|
-
font-weight: normal;
|
|
1906
|
-
font-style: normal;
|
|
1907
|
-
font-stretch: normal;
|
|
1908
|
-
line-height: 1.43;
|
|
1909
|
-
letter-spacing: normal;
|
|
1910
|
-
text-align: left;
|
|
1911
|
-
color: #fff;
|
|
1912
|
-
text-overflow: ellipsis;
|
|
1913
|
-
overflow: hidden;
|
|
1914
|
-
}
|
|
1915
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1916
|
-
opacity: 0.6;
|
|
1917
|
-
}
|
|
1918
|
-
.multicamera[data-multicamera] li[data-title] {
|
|
1919
|
-
background-color: #c3c2c2;
|
|
1920
|
-
padding: 5px;
|
|
1862
|
+
bottom: 25px;
|
|
1863
|
+
border: 1px solid black;
|
|
1864
|
+
background-color: #e6e6e6;
|
|
1865
|
+
padding: 8px 0;
|
|
1921
1866
|
}
|
|
1922
|
-
.
|
|
1867
|
+
.media-control-cc[data-cc] li a {
|
|
1923
1868
|
color: #444;
|
|
1924
1869
|
padding: 2px 10px;
|
|
1925
1870
|
display: block;
|
|
1926
1871
|
text-decoration: none;
|
|
1927
1872
|
}
|
|
1928
|
-
.
|
|
1873
|
+
.media-control-cc[data-cc] li a:hover {
|
|
1929
1874
|
background-color: #555;
|
|
1930
1875
|
color: white;
|
|
1931
1876
|
}
|
|
1932
|
-
.
|
|
1877
|
+
.media-control-cc[data-cc] li a:hover a {
|
|
1933
1878
|
color: white;
|
|
1934
1879
|
text-decoration: none;
|
|
1935
1880
|
}
|
|
1936
|
-
.
|
|
1881
|
+
.media-control-cc[data-cc] li.current a {
|
|
1937
1882
|
color: #f00;
|
|
1883
|
+
background-color: #555;
|
|
1938
1884
|
}
|
|
1939
1885
|
|
|
1940
1886
|
@keyframes pulse {
|
|
@@ -1947,6 +1893,90 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1947
1893
|
100% {
|
|
1948
1894
|
color: #B80000;
|
|
1949
1895
|
}
|
|
1896
|
+
}
|
|
1897
|
+
::cue {
|
|
1898
|
+
visibility: hidden !important;
|
|
1899
|
+
font-size: 0 !important;
|
|
1900
|
+
}
|
|
1901
|
+
|
|
1902
|
+
.ios-fullscreen::cue {
|
|
1903
|
+
visibility: visible !important;
|
|
1904
|
+
font-size: 1em !important;
|
|
1905
|
+
}.context-menu {
|
|
1906
|
+
z-index: 999;
|
|
1907
|
+
position: absolute;
|
|
1908
|
+
top: 0;
|
|
1909
|
+
left: 0;
|
|
1910
|
+
text-align: center;
|
|
1911
|
+
}
|
|
1912
|
+
.context-menu .context-menu-list {
|
|
1913
|
+
font-family: "Proxima Nova", sans-serif;
|
|
1914
|
+
font-size: 12px;
|
|
1915
|
+
line-height: 12px;
|
|
1916
|
+
list-style-type: none;
|
|
1917
|
+
text-align: left;
|
|
1918
|
+
padding: 5px;
|
|
1919
|
+
margin-left: auto;
|
|
1920
|
+
margin-right: auto;
|
|
1921
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
1922
|
+
border: 1px solid #666;
|
|
1923
|
+
border-radius: 4px;
|
|
1924
|
+
}
|
|
1925
|
+
.context-menu .context-menu-list-item button {
|
|
1926
|
+
border: none;
|
|
1927
|
+
background-color: transparent;
|
|
1928
|
+
padding: 0;
|
|
1929
|
+
color: white;
|
|
1930
|
+
display: flex;
|
|
1931
|
+
gap: 8px;
|
|
1932
|
+
align-items: center;
|
|
1933
|
+
justify-content: center;
|
|
1934
|
+
cursor: pointer;
|
|
1935
|
+
padding: 5px;
|
|
1936
|
+
width: 100%;
|
|
1937
|
+
}
|
|
1938
|
+
.context-menu .context-menu-list-item_icon {
|
|
1939
|
+
width: 20px;
|
|
1940
|
+
height: 20px;
|
|
1941
|
+
}.quality-levels li.disabled {
|
|
1942
|
+
opacity: 0.5;
|
|
1943
|
+
pointer-events: none;
|
|
1944
|
+
}
|
|
1945
|
+
.quality-levels li.current {
|
|
1946
|
+
background-color: #000;
|
|
1947
|
+
}.seek-time {
|
|
1948
|
+
position: absolute;
|
|
1949
|
+
white-space: nowrap;
|
|
1950
|
+
height: 20px;
|
|
1951
|
+
line-height: 20px;
|
|
1952
|
+
font-size: 0;
|
|
1953
|
+
left: -100%;
|
|
1954
|
+
bottom: 55px;
|
|
1955
|
+
background-color: rgba(2, 2, 2, 0.5);
|
|
1956
|
+
z-index: 9999;
|
|
1957
|
+
transition: opacity 0.1s ease;
|
|
1958
|
+
}
|
|
1959
|
+
.seek-time.hidden {
|
|
1960
|
+
opacity: 0;
|
|
1961
|
+
}
|
|
1962
|
+
.seek-time .seek-time__pos {
|
|
1963
|
+
display: inline-block;
|
|
1964
|
+
color: white;
|
|
1965
|
+
font-size: 10px;
|
|
1966
|
+
padding-left: 7px;
|
|
1967
|
+
padding-right: 7px;
|
|
1968
|
+
vertical-align: top;
|
|
1969
|
+
}
|
|
1970
|
+
.seek-time .seek-time__duration {
|
|
1971
|
+
display: inline-block;
|
|
1972
|
+
color: rgba(255, 255, 255, 0.5);
|
|
1973
|
+
font-size: 10px;
|
|
1974
|
+
padding-right: 7px;
|
|
1975
|
+
vertical-align: top;
|
|
1976
|
+
}
|
|
1977
|
+
.seek-time .seek-time__duration::before {
|
|
1978
|
+
content: "|";
|
|
1979
|
+
margin-right: 7px;
|
|
1950
1980
|
}.scrub-thumbnails {
|
|
1951
1981
|
position: absolute;
|
|
1952
1982
|
bottom: 52px;
|
|
@@ -2008,44 +2038,13 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
2008
2038
|
}
|
|
2009
2039
|
.scrub-thumbnails .backdrop .carousel img {
|
|
2010
2040
|
width: auto;
|
|
2011
|
-
}.
|
|
2012
|
-
opacity: 0.5;
|
|
2013
|
-
pointer-events: none;
|
|
2014
|
-
}
|
|
2015
|
-
.quality-levels li.current {
|
|
2016
|
-
background-color: #000;
|
|
2017
|
-
}.player-poster[data-poster] {
|
|
2018
|
-
display: flex;
|
|
2019
|
-
justify-content: center;
|
|
2020
|
-
align-items: center;
|
|
2041
|
+
}.player-logo[data-logo] {
|
|
2021
2042
|
position: absolute;
|
|
2022
|
-
|
|
2023
|
-
width: 100%;
|
|
2024
|
-
z-index: 998;
|
|
2025
|
-
top: 0;
|
|
2026
|
-
left: 0;
|
|
2027
|
-
background-color: #000;
|
|
2028
|
-
background-size: cover;
|
|
2029
|
-
background-repeat: no-repeat;
|
|
2030
|
-
background-position: 50% 50%;
|
|
2031
|
-
}
|
|
2032
|
-
.player-poster[data-poster].clickable {
|
|
2033
|
-
cursor: pointer;
|
|
2034
|
-
}
|
|
2035
|
-
.player-poster[data-poster]:hover .play-wrapper[data-poster] {
|
|
2036
|
-
opacity: 1;
|
|
2037
|
-
}
|
|
2038
|
-
.player-poster[data-poster] .play-wrapper[data-poster] {
|
|
2043
|
+
z-index: 2;
|
|
2039
2044
|
width: 100%;
|
|
2040
|
-
height: 25%;
|
|
2041
|
-
margin: 0 auto;
|
|
2042
|
-
opacity: 0.75;
|
|
2043
|
-
transition: opacity 0.1s ease;
|
|
2044
|
-
}
|
|
2045
|
-
.player-poster[data-poster] .play-wrapper[data-poster] svg {
|
|
2046
2045
|
height: 100%;
|
|
2047
|
-
display: inline;
|
|
2048
2046
|
}
|
|
2049
|
-
|
|
2050
|
-
|
|
2047
|
+
|
|
2048
|
+
.clappr-logo {
|
|
2049
|
+
position: absolute;
|
|
2051
2050
|
}
|