@gcorevideo/player 2.22.4 → 2.22.5
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/level-selector/button.ejs +1 -1
- package/assets/level-selector/list.ejs +10 -4
- package/assets/level-selector/style.scss +8 -3
- package/dist/core.js +1 -1
- package/dist/index.css +1337 -1333
- package/dist/index.js +329 -326
- package/dist/plugins/index.css +626 -622
- package/dist/plugins/index.js +305 -302
- package/lib/index.plugins.d.ts +2 -1
- package/lib/index.plugins.d.ts.map +1 -1
- package/lib/index.plugins.js +2 -1
- package/lib/plugins/level-selector/LevelSelector.d.ts +6 -5
- package/lib/plugins/level-selector/LevelSelector.d.ts.map +1 -1
- package/lib/plugins/level-selector/LevelSelector.js +11 -8
- package/lib/plugins/level-selector/QualityLevels.d.ts +112 -0
- package/lib/plugins/level-selector/QualityLevels.d.ts.map +1 -0
- package/lib/plugins/level-selector/QualityLevels.js +280 -0
- package/lib/plugins/vast-ads/VastAds.d.ts +1 -0
- package/lib/plugins/vast-ads/VastAds.d.ts.map +1 -1
- package/lib/plugins/vast-ads/VastAds.js +6 -3
- package/package.json +1 -1
- package/src/index.plugins.ts +2 -1
- package/src/plugins/level-selector/{LevelSelector.ts → QualityLevels.ts} +19 -13
- package/src/plugins/level-selector/__tests__/{LevelSelector.test.ts → QualityLevels.test.ts} +20 -6
- package/src/plugins/level-selector/__tests__/__snapshots__/{LevelSelector.test.ts.snap → QualityLevels.test.ts.snap} +58 -25
- package/src/plugins/vast-ads/VastAds.ts +8 -4
- package/tsconfig.tsbuildinfo +1 -1
package/dist/plugins/index.css
CHANGED
|
@@ -122,6 +122,106 @@
|
|
|
122
122
|
.gplayer-lite-btn::-moz-focus-inner {
|
|
123
123
|
border: 0;
|
|
124
124
|
padding: 0;
|
|
125
|
+
}*,
|
|
126
|
+
:focus,
|
|
127
|
+
:visited {
|
|
128
|
+
outline: none !important;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.media-control-audiotracks {
|
|
132
|
+
position: relative;
|
|
133
|
+
}
|
|
134
|
+
.media-control-audiotracks button {
|
|
135
|
+
background-color: transparent;
|
|
136
|
+
color: #fff;
|
|
137
|
+
-webkit-font-smoothing: antialiased;
|
|
138
|
+
border: none;
|
|
139
|
+
cursor: pointer;
|
|
140
|
+
display: flex;
|
|
141
|
+
align-items: center;
|
|
142
|
+
padding: 0;
|
|
143
|
+
}
|
|
144
|
+
.media-control-audiotracks button .audio-text {
|
|
145
|
+
text-overflow: ellipsis;
|
|
146
|
+
overflow: hidden;
|
|
147
|
+
white-space: nowrap;
|
|
148
|
+
max-width: 100px;
|
|
149
|
+
background-color: transparent;
|
|
150
|
+
-webkit-font-smoothing: antialiased;
|
|
151
|
+
border: none;
|
|
152
|
+
cursor: pointer;
|
|
153
|
+
}
|
|
154
|
+
.media-control-audiotracks button:hover {
|
|
155
|
+
color: white;
|
|
156
|
+
}
|
|
157
|
+
.media-control-audiotracks button.changing {
|
|
158
|
+
animation: pulse 0.5s infinite alternate;
|
|
159
|
+
}
|
|
160
|
+
.media-control-audiotracks button span.audio-arrow {
|
|
161
|
+
width: 9px;
|
|
162
|
+
height: 6px;
|
|
163
|
+
margin-left: 5px;
|
|
164
|
+
}
|
|
165
|
+
.media-control-audiotracks .menu {
|
|
166
|
+
max-width: 114px;
|
|
167
|
+
list-style-type: none;
|
|
168
|
+
position: absolute;
|
|
169
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
170
|
+
border: none;
|
|
171
|
+
min-width: 60px;
|
|
172
|
+
border-radius: 4px;
|
|
173
|
+
bottom: 40px;
|
|
174
|
+
right: -2px;
|
|
175
|
+
}
|
|
176
|
+
.media-control-audiotracks .menu.hidden {
|
|
177
|
+
display: none;
|
|
178
|
+
}
|
|
179
|
+
.media-control-audiotracks li {
|
|
180
|
+
font-size: var(--font-size-media-controls-dropdown);
|
|
181
|
+
text-align: right;
|
|
182
|
+
height: 30px;
|
|
183
|
+
}
|
|
184
|
+
.media-control-audiotracks li[data-title] {
|
|
185
|
+
background-color: #c3c2c2;
|
|
186
|
+
padding: 5px;
|
|
187
|
+
}
|
|
188
|
+
.media-control-audiotracks li a {
|
|
189
|
+
display: block;
|
|
190
|
+
text-decoration: none;
|
|
191
|
+
text-overflow: ellipsis;
|
|
192
|
+
overflow: hidden;
|
|
193
|
+
white-space: nowrap;
|
|
194
|
+
height: 30px;
|
|
195
|
+
padding: 5px 10px;
|
|
196
|
+
color: #fffffe;
|
|
197
|
+
}
|
|
198
|
+
.media-control-audiotracks li a:hover {
|
|
199
|
+
text-decoration: none;
|
|
200
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
201
|
+
color: white;
|
|
202
|
+
}
|
|
203
|
+
.media-control-audiotracks li.current a {
|
|
204
|
+
color: #f00;
|
|
205
|
+
}
|
|
206
|
+
.media-control-audiotracks li:first-child a {
|
|
207
|
+
border-bottom-left-radius: 4px;
|
|
208
|
+
border-bottom-right-radius: 4px;
|
|
209
|
+
}
|
|
210
|
+
.media-control-audiotracks li:last-child a {
|
|
211
|
+
border-top-left-radius: 4px;
|
|
212
|
+
border-top-right-radius: 4px;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
@keyframes pulse {
|
|
216
|
+
0% {
|
|
217
|
+
color: #fff;
|
|
218
|
+
}
|
|
219
|
+
50% {
|
|
220
|
+
color: #ff0101;
|
|
221
|
+
}
|
|
222
|
+
100% {
|
|
223
|
+
color: #B80000;
|
|
224
|
+
}
|
|
125
225
|
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
126
226
|
order: 99;
|
|
127
227
|
height: 20px;
|
|
@@ -221,106 +321,55 @@
|
|
|
221
321
|
}
|
|
222
322
|
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
223
323
|
display: inline;
|
|
224
|
-
}
|
|
225
|
-
:
|
|
226
|
-
:
|
|
227
|
-
outline: none !important;
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
.media-control-audiotracks {
|
|
231
|
-
position: relative;
|
|
232
|
-
}
|
|
233
|
-
.media-control-audiotracks button {
|
|
324
|
+
}.big-mute-icon-wrapper[data-big-mute] {
|
|
325
|
+
position: absolute;
|
|
326
|
+
z-index: 9998;
|
|
234
327
|
background-color: transparent;
|
|
235
|
-
color: #fff;
|
|
236
|
-
-webkit-font-smoothing: antialiased;
|
|
237
|
-
border: none;
|
|
238
|
-
cursor: pointer;
|
|
239
328
|
display: flex;
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
max-width: 100px;
|
|
248
|
-
background-color: transparent;
|
|
249
|
-
-webkit-font-smoothing: antialiased;
|
|
250
|
-
border: none;
|
|
251
|
-
cursor: pointer;
|
|
252
|
-
}
|
|
253
|
-
.media-control-audiotracks button:hover {
|
|
254
|
-
color: white;
|
|
255
|
-
}
|
|
256
|
-
.media-control-audiotracks button.changing {
|
|
257
|
-
animation: pulse 0.5s infinite alternate;
|
|
258
|
-
}
|
|
259
|
-
.media-control-audiotracks button span.audio-arrow {
|
|
260
|
-
width: 9px;
|
|
261
|
-
height: 6px;
|
|
262
|
-
margin-left: 5px;
|
|
263
|
-
}
|
|
264
|
-
.media-control-audiotracks .menu {
|
|
265
|
-
max-width: 114px;
|
|
266
|
-
list-style-type: none;
|
|
267
|
-
position: absolute;
|
|
268
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
269
|
-
border: none;
|
|
270
|
-
min-width: 60px;
|
|
271
|
-
border-radius: 4px;
|
|
272
|
-
bottom: 40px;
|
|
273
|
-
right: -2px;
|
|
329
|
+
justify-content: center;
|
|
330
|
+
width: 100%;
|
|
331
|
+
height: calc(100% - 50px);
|
|
332
|
+
margin: 0 auto;
|
|
333
|
+
opacity: 0.75;
|
|
334
|
+
transition: opacity 0.1s ease;
|
|
335
|
+
pointer-events: auto;
|
|
274
336
|
}
|
|
275
|
-
.
|
|
337
|
+
.big-mute-icon-wrapper[data-big-mute].hide {
|
|
276
338
|
display: none;
|
|
277
339
|
}
|
|
278
|
-
.
|
|
279
|
-
|
|
280
|
-
text-align: right;
|
|
281
|
-
height: 30px;
|
|
282
|
-
}
|
|
283
|
-
.media-control-audiotracks li[data-title] {
|
|
284
|
-
background-color: #c3c2c2;
|
|
285
|
-
padding: 5px;
|
|
286
|
-
}
|
|
287
|
-
.media-control-audiotracks li a {
|
|
288
|
-
display: block;
|
|
289
|
-
text-decoration: none;
|
|
290
|
-
text-overflow: ellipsis;
|
|
291
|
-
overflow: hidden;
|
|
292
|
-
white-space: nowrap;
|
|
293
|
-
height: 30px;
|
|
294
|
-
padding: 5px 10px;
|
|
295
|
-
color: #fffffe;
|
|
340
|
+
.big-mute-icon-wrapper[data-big-mute]:hover {
|
|
341
|
+
cursor: pointer;
|
|
296
342
|
}
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
343
|
+
|
|
344
|
+
.big-mute-icon[data-big-mute-icon] {
|
|
345
|
+
display: flex;
|
|
346
|
+
align-items: center;
|
|
347
|
+
justify-content: center;
|
|
348
|
+
align-self: center;
|
|
349
|
+
width: 120px;
|
|
350
|
+
height: 120px;
|
|
351
|
+
border: 2px solid white;
|
|
352
|
+
border-radius: 50%;
|
|
353
|
+
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
354
|
+
filter: alpha(opacity=60);
|
|
355
|
+
opacity: 1;
|
|
356
|
+
box-shadow: 0 0 1px 0 white;
|
|
357
|
+
background: rgba(240, 243, 247, 0.9411764706);
|
|
358
|
+
z-index: 10000;
|
|
301
359
|
}
|
|
302
|
-
.
|
|
303
|
-
|
|
360
|
+
.big-mute-icon[data-big-mute-icon] svg {
|
|
361
|
+
margin-left: 5px;
|
|
362
|
+
width: 80px;
|
|
363
|
+
height: 80px;
|
|
304
364
|
}
|
|
305
|
-
.
|
|
306
|
-
|
|
307
|
-
border-bottom-right-radius: 4px;
|
|
365
|
+
.big-mute-icon[data-big-mute-icon] svg path {
|
|
366
|
+
fill: #1f1e1e !important;
|
|
308
367
|
}
|
|
309
|
-
.
|
|
310
|
-
|
|
311
|
-
border-top-right-radius: 4px;
|
|
368
|
+
.big-mute-icon[data-big-mute-icon]:hover {
|
|
369
|
+
background: rgba(240, 243, 247, 0.8784313725);
|
|
312
370
|
}
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
0% {
|
|
316
|
-
color: #fff;
|
|
317
|
-
}
|
|
318
|
-
50% {
|
|
319
|
-
color: #ff0101;
|
|
320
|
-
}
|
|
321
|
-
100% {
|
|
322
|
-
color: #B80000;
|
|
323
|
-
}
|
|
371
|
+
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
372
|
+
fill: #151515 !important;
|
|
324
373
|
}:root {
|
|
325
374
|
--primary-background-color: #000;
|
|
326
375
|
--secondary-background-color: #262626;
|
|
@@ -703,130 +752,13 @@
|
|
|
703
752
|
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
|
|
704
753
|
width: 25%;
|
|
705
754
|
}
|
|
706
|
-
}
|
|
707
|
-
|
|
708
|
-
color: var(--player-dvr-color);
|
|
709
|
-
line-height: 32px;
|
|
710
|
-
font-size: 10px;
|
|
711
|
-
font-weight: bold;
|
|
712
|
-
margin-left: 6px;
|
|
713
|
-
height: 40px;
|
|
714
|
-
line-height: 40px;
|
|
715
|
-
margin-left: 0;
|
|
716
|
-
}
|
|
717
|
-
.dvr-controls[data-dvr] .live-info {
|
|
718
|
-
cursor: default;
|
|
719
|
-
text-transform: uppercase;
|
|
755
|
+
}*, :focus, :visited {
|
|
756
|
+
outline: none !important;
|
|
720
757
|
}
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
width: 7px;
|
|
726
|
-
height: 7px;
|
|
727
|
-
border-radius: 3.5px;
|
|
728
|
-
margin-right: 3.5px;
|
|
729
|
-
background-color: var(--player-live-color);
|
|
730
|
-
}
|
|
731
|
-
.dvr-controls[data-dvr] .live-info.disabled {
|
|
732
|
-
opacity: 0.3;
|
|
733
|
-
}
|
|
734
|
-
.dvr-controls[data-dvr] .live-info.disabled:before {
|
|
735
|
-
background-color: var(--player-dvr-color);
|
|
736
|
-
}
|
|
737
|
-
.dvr-controls[data-dvr] .live-button {
|
|
738
|
-
cursor: pointer;
|
|
739
|
-
outline: none;
|
|
740
|
-
display: none;
|
|
741
|
-
border: 0;
|
|
742
|
-
color: var(--player-dvr-color);
|
|
743
|
-
background-color: transparent;
|
|
744
|
-
height: 32px;
|
|
745
|
-
padding: 0;
|
|
746
|
-
opacity: 0.7;
|
|
747
|
-
text-transform: uppercase;
|
|
748
|
-
transition: all 0.1s ease;
|
|
749
|
-
}
|
|
750
|
-
.dvr-controls[data-dvr] .live-button:before {
|
|
751
|
-
content: "";
|
|
752
|
-
display: inline-block;
|
|
753
|
-
position: relative;
|
|
754
|
-
width: 7px;
|
|
755
|
-
height: 7px;
|
|
756
|
-
border-radius: 3.5px;
|
|
757
|
-
margin-right: 3.5px;
|
|
758
|
-
background-color: var(--player-dvr-color);
|
|
759
|
-
}
|
|
760
|
-
.dvr-controls[data-dvr] .live-button:hover {
|
|
761
|
-
opacity: 1;
|
|
762
|
-
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
763
|
-
}
|
|
764
|
-
.dvr-controls[data-dvr] .live-info {
|
|
765
|
-
font-size: 14px;
|
|
766
|
-
letter-spacing: 0.8px;
|
|
767
|
-
font-weight: 500;
|
|
768
|
-
color: #fffffe;
|
|
769
|
-
margin-left: 21px;
|
|
770
|
-
}
|
|
771
|
-
.dvr-controls[data-dvr] .live-info::before {
|
|
772
|
-
width: 10px;
|
|
773
|
-
height: 10px;
|
|
774
|
-
border-radius: 50%;
|
|
775
|
-
margin-right: 8px;
|
|
776
|
-
background-color: #ed4f4a;
|
|
777
|
-
}
|
|
778
|
-
.dvr-controls[data-dvr] .live-button {
|
|
779
|
-
height: 40px;
|
|
780
|
-
opacity: 1;
|
|
781
|
-
font-size: 14px;
|
|
782
|
-
letter-spacing: 0.8px;
|
|
783
|
-
font-weight: 500;
|
|
784
|
-
margin-left: 20px;
|
|
785
|
-
}
|
|
786
|
-
.dvr-controls[data-dvr] .live-button::before {
|
|
787
|
-
width: 10px;
|
|
788
|
-
height: 10px;
|
|
789
|
-
border-radius: 50%;
|
|
790
|
-
margin-right: 8px;
|
|
791
|
-
background-color: #cacaca;
|
|
792
|
-
}
|
|
793
|
-
|
|
794
|
-
.dvr .dvr-controls[data-dvr] .live-info {
|
|
795
|
-
display: none;
|
|
796
|
-
}
|
|
797
|
-
.dvr .dvr-controls[data-dvr] .live-button {
|
|
798
|
-
display: block;
|
|
799
|
-
}.context-menu {
|
|
800
|
-
z-index: 999;
|
|
801
|
-
position: absolute;
|
|
802
|
-
top: 0;
|
|
803
|
-
left: 0;
|
|
804
|
-
text-align: center;
|
|
805
|
-
}
|
|
806
|
-
.context-menu .context-menu-list {
|
|
807
|
-
font-family: "Proxima Nova", sans-serif;
|
|
808
|
-
font-size: 12px;
|
|
809
|
-
line-height: 12px;
|
|
810
|
-
list-style-type: none;
|
|
811
|
-
text-align: left;
|
|
812
|
-
padding: 5px;
|
|
813
|
-
margin-left: auto;
|
|
814
|
-
margin-right: auto;
|
|
815
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
816
|
-
border: 1px solid #666;
|
|
817
|
-
border-radius: 4px;
|
|
818
|
-
}
|
|
819
|
-
.context-menu .context-menu-list .context-menu-list-item {
|
|
820
|
-
color: white;
|
|
821
|
-
padding: 5px;
|
|
822
|
-
cursor: pointer;
|
|
823
|
-
}*, :focus, :visited {
|
|
824
|
-
outline: none !important;
|
|
825
|
-
}
|
|
826
|
-
|
|
827
|
-
.multicamera[data-multicamera] {
|
|
828
|
-
float: right;
|
|
829
|
-
margin-top: 4px;
|
|
758
|
+
|
|
759
|
+
.multicamera[data-multicamera] {
|
|
760
|
+
float: right;
|
|
761
|
+
margin-top: 4px;
|
|
830
762
|
position: relative;
|
|
831
763
|
margin-right: 20px;
|
|
832
764
|
width: 20px;
|
|
@@ -968,117 +900,391 @@
|
|
|
968
900
|
100% {
|
|
969
901
|
color: #B80000;
|
|
970
902
|
}
|
|
971
|
-
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
972
|
-
color: #CCCACA;
|
|
973
|
-
position: absolute;
|
|
974
|
-
top: 0;
|
|
975
|
-
height: 100%;
|
|
976
|
-
width: 100%;
|
|
977
|
-
background-color: rgba(0, 0, 0, 0.7);
|
|
978
|
-
z-index: 2000;
|
|
979
|
-
display: flex;
|
|
980
|
-
flex-direction: column;
|
|
981
|
-
justify-content: center;
|
|
982
|
-
}
|
|
983
|
-
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
984
|
-
font-size: 14px;
|
|
985
|
-
color: #CCCACA;
|
|
986
|
-
margin-top: 45px;
|
|
987
|
-
}
|
|
988
|
-
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
989
|
-
font-weight: bold;
|
|
990
|
-
line-height: 30px;
|
|
991
|
-
font-size: 18px;
|
|
992
|
-
}
|
|
993
|
-
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
994
|
-
width: 90%;
|
|
995
|
-
margin: 0 auto;
|
|
996
|
-
}
|
|
997
|
-
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
998
|
-
font-size: 13px;
|
|
999
|
-
margin-top: 15px;
|
|
1000
|
-
}
|
|
1001
|
-
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
1002
|
-
cursor: pointer;
|
|
1003
|
-
width: 30px;
|
|
1004
|
-
margin: 15px auto 0;
|
|
1005
903
|
}.clips.bar-container[data-seekbar] {
|
|
1006
904
|
clip-path: url("#myClip");
|
|
1007
|
-
}
|
|
1008
|
-
|
|
905
|
+
}.gear-option_hd-icon.hidden {
|
|
906
|
+
display: none;
|
|
1009
907
|
}
|
|
1010
908
|
|
|
1011
|
-
.
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
.container .player-poster[data-poster] .play-wrapper[data-poster] {
|
|
1015
|
-
opacity: 1;
|
|
1016
|
-
}
|
|
1017
|
-
.container.crop-video [data-html5-video] {
|
|
1018
|
-
object-fit: cover;
|
|
909
|
+
.quality-levels li.disabled {
|
|
910
|
+
opacity: 0.5;
|
|
911
|
+
pointer-events: none;
|
|
1019
912
|
}
|
|
1020
|
-
.
|
|
913
|
+
.quality-levels li.current {
|
|
914
|
+
background-color: #000;
|
|
915
|
+
}.seek-time[data-seek-time] {
|
|
1021
916
|
position: absolute;
|
|
1022
|
-
|
|
1023
|
-
|
|
917
|
+
white-space: nowrap;
|
|
918
|
+
height: 20px;
|
|
919
|
+
line-height: 20px;
|
|
920
|
+
font-size: 0;
|
|
921
|
+
left: -100%;
|
|
922
|
+
bottom: 55px;
|
|
923
|
+
background-color: rgba(2, 2, 2, 0.5);
|
|
924
|
+
z-index: 9999;
|
|
925
|
+
transition: opacity 0.1s ease;
|
|
1024
926
|
}
|
|
1025
|
-
.
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
927
|
+
.seek-time[data-seek-time].hidden[data-seek-time] {
|
|
928
|
+
opacity: 0;
|
|
929
|
+
}
|
|
930
|
+
.seek-time[data-seek-time] [data-seek-time] {
|
|
1029
931
|
display: inline-block;
|
|
932
|
+
color: white;
|
|
933
|
+
font-size: 10px;
|
|
934
|
+
padding-left: 7px;
|
|
935
|
+
padding-right: 7px;
|
|
936
|
+
vertical-align: top;
|
|
1030
937
|
}
|
|
1031
|
-
.
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
width: 120px;
|
|
1038
|
-
height: 120px;
|
|
1039
|
-
border: 2px solid white;
|
|
1040
|
-
border-radius: 50%;
|
|
1041
|
-
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
1042
|
-
filter: alpha(opacity=60);
|
|
1043
|
-
opacity: 1;
|
|
1044
|
-
box-shadow: 0 0 1px 0 white;
|
|
938
|
+
.seek-time[data-seek-time] [data-duration] {
|
|
939
|
+
display: inline-block;
|
|
940
|
+
color: rgba(255, 255, 255, 0.5);
|
|
941
|
+
font-size: 10px;
|
|
942
|
+
padding-right: 7px;
|
|
943
|
+
vertical-align: top;
|
|
1045
944
|
}
|
|
1046
|
-
.
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
945
|
+
.seek-time[data-seek-time] [data-duration]::before {
|
|
946
|
+
content: "|";
|
|
947
|
+
margin-right: 7px;
|
|
948
|
+
}.dvr-controls[data-dvr] {
|
|
949
|
+
display: inline-block;
|
|
950
|
+
color: var(--player-dvr-color);
|
|
951
|
+
line-height: 32px;
|
|
952
|
+
font-size: 10px;
|
|
953
|
+
font-weight: bold;
|
|
954
|
+
margin-left: 6px;
|
|
955
|
+
height: 40px;
|
|
956
|
+
line-height: 40px;
|
|
957
|
+
margin-left: 0;
|
|
1050
958
|
}
|
|
1051
|
-
.
|
|
1052
|
-
|
|
959
|
+
.dvr-controls[data-dvr] .live-info {
|
|
960
|
+
cursor: default;
|
|
961
|
+
text-transform: uppercase;
|
|
1053
962
|
}
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
963
|
+
.dvr-controls[data-dvr] .live-info:before {
|
|
964
|
+
content: "";
|
|
965
|
+
display: inline-block;
|
|
966
|
+
position: relative;
|
|
967
|
+
width: 7px;
|
|
968
|
+
height: 7px;
|
|
969
|
+
border-radius: 3.5px;
|
|
970
|
+
margin-right: 3.5px;
|
|
971
|
+
background-color: var(--player-live-color);
|
|
1058
972
|
}
|
|
1059
|
-
.
|
|
1060
|
-
|
|
1061
|
-
float: none;
|
|
1062
|
-
display: block;
|
|
1063
|
-
position: absolute;
|
|
1064
|
-
/* bottom: 12px; */
|
|
1065
|
-
margin: 0;
|
|
1066
|
-
top: -40px;
|
|
1067
|
-
padding: 0;
|
|
1068
|
-
/* right: 20px; */
|
|
1069
|
-
margin-left: -32px;
|
|
1070
|
-
margin-top: -3px;
|
|
1071
|
-
width: 80px;
|
|
1072
|
-
/* padding-left: 12px; */
|
|
973
|
+
.dvr-controls[data-dvr] .live-info.disabled {
|
|
974
|
+
opacity: 0.3;
|
|
1073
975
|
}
|
|
1074
|
-
.
|
|
1075
|
-
|
|
1076
|
-
width: 100%;
|
|
1077
|
-
height: 100%;
|
|
1078
|
-
left: -5px;
|
|
976
|
+
.dvr-controls[data-dvr] .live-info.disabled:before {
|
|
977
|
+
background-color: var(--player-dvr-color);
|
|
1079
978
|
}
|
|
1080
|
-
.
|
|
1081
|
-
|
|
979
|
+
.dvr-controls[data-dvr] .live-button {
|
|
980
|
+
cursor: pointer;
|
|
981
|
+
outline: none;
|
|
982
|
+
display: none;
|
|
983
|
+
border: 0;
|
|
984
|
+
color: var(--player-dvr-color);
|
|
985
|
+
background-color: transparent;
|
|
986
|
+
height: 32px;
|
|
987
|
+
padding: 0;
|
|
988
|
+
opacity: 0.7;
|
|
989
|
+
text-transform: uppercase;
|
|
990
|
+
transition: all 0.1s ease;
|
|
991
|
+
}
|
|
992
|
+
.dvr-controls[data-dvr] .live-button:before {
|
|
993
|
+
content: "";
|
|
994
|
+
display: inline-block;
|
|
995
|
+
position: relative;
|
|
996
|
+
width: 7px;
|
|
997
|
+
height: 7px;
|
|
998
|
+
border-radius: 3.5px;
|
|
999
|
+
margin-right: 3.5px;
|
|
1000
|
+
background-color: var(--player-dvr-color);
|
|
1001
|
+
}
|
|
1002
|
+
.dvr-controls[data-dvr] .live-button:hover {
|
|
1003
|
+
opacity: 1;
|
|
1004
|
+
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
1005
|
+
}
|
|
1006
|
+
.dvr-controls[data-dvr] .live-info {
|
|
1007
|
+
font-size: 14px;
|
|
1008
|
+
letter-spacing: 0.8px;
|
|
1009
|
+
font-weight: 500;
|
|
1010
|
+
color: #fffffe;
|
|
1011
|
+
margin-left: 21px;
|
|
1012
|
+
}
|
|
1013
|
+
.dvr-controls[data-dvr] .live-info::before {
|
|
1014
|
+
width: 10px;
|
|
1015
|
+
height: 10px;
|
|
1016
|
+
border-radius: 50%;
|
|
1017
|
+
margin-right: 8px;
|
|
1018
|
+
background-color: #ed4f4a;
|
|
1019
|
+
}
|
|
1020
|
+
.dvr-controls[data-dvr] .live-button {
|
|
1021
|
+
height: 40px;
|
|
1022
|
+
opacity: 1;
|
|
1023
|
+
font-size: 14px;
|
|
1024
|
+
letter-spacing: 0.8px;
|
|
1025
|
+
font-weight: 500;
|
|
1026
|
+
margin-left: 20px;
|
|
1027
|
+
}
|
|
1028
|
+
.dvr-controls[data-dvr] .live-button::before {
|
|
1029
|
+
width: 10px;
|
|
1030
|
+
height: 10px;
|
|
1031
|
+
border-radius: 50%;
|
|
1032
|
+
margin-right: 8px;
|
|
1033
|
+
background-color: #cacaca;
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
.dvr .dvr-controls[data-dvr] .live-info {
|
|
1037
|
+
display: none;
|
|
1038
|
+
}
|
|
1039
|
+
.dvr .dvr-controls[data-dvr] .live-button {
|
|
1040
|
+
display: block;
|
|
1041
|
+
}.player-poster[data-poster] {
|
|
1042
|
+
display: flex;
|
|
1043
|
+
justify-content: center;
|
|
1044
|
+
align-items: center;
|
|
1045
|
+
position: absolute;
|
|
1046
|
+
height: 100%;
|
|
1047
|
+
width: 100%;
|
|
1048
|
+
z-index: 998;
|
|
1049
|
+
top: 0;
|
|
1050
|
+
left: 0;
|
|
1051
|
+
background-color: #000;
|
|
1052
|
+
background-size: cover;
|
|
1053
|
+
background-repeat: no-repeat;
|
|
1054
|
+
background-position: 50% 50%;
|
|
1055
|
+
}
|
|
1056
|
+
.player-poster[data-poster].clickable {
|
|
1057
|
+
cursor: pointer;
|
|
1058
|
+
}
|
|
1059
|
+
.player-poster[data-poster]:hover .play-wrapper[data-poster] {
|
|
1060
|
+
opacity: 1;
|
|
1061
|
+
}
|
|
1062
|
+
.player-poster[data-poster] .play-wrapper[data-poster] {
|
|
1063
|
+
width: 100%;
|
|
1064
|
+
height: 25%;
|
|
1065
|
+
margin: 0 auto;
|
|
1066
|
+
opacity: 0.75;
|
|
1067
|
+
transition: opacity 0.1s ease;
|
|
1068
|
+
}
|
|
1069
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg {
|
|
1070
|
+
height: 100%;
|
|
1071
|
+
display: inline;
|
|
1072
|
+
}
|
|
1073
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg path {
|
|
1074
|
+
fill: #fff;
|
|
1075
|
+
}.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
|
|
1076
|
+
height: 0;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
.skip_time_plugin[data-skip-time] {
|
|
1080
|
+
position: absolute;
|
|
1081
|
+
width: 100%;
|
|
1082
|
+
height: calc(100% - 50px);
|
|
1083
|
+
z-index: 9998;
|
|
1084
|
+
background-color: transparent;
|
|
1085
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1086
|
+
}
|
|
1087
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
|
|
1088
|
+
width: 100%;
|
|
1089
|
+
height: 100%;
|
|
1090
|
+
display: flex;
|
|
1091
|
+
justify-content: space-between;
|
|
1092
|
+
}
|
|
1093
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
|
|
1094
|
+
width: 33.3%;
|
|
1095
|
+
height: 100%;
|
|
1096
|
+
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
1097
|
+
color: #CCCACA;
|
|
1098
|
+
position: absolute;
|
|
1099
|
+
top: 0;
|
|
1100
|
+
height: 100%;
|
|
1101
|
+
width: 100%;
|
|
1102
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
1103
|
+
z-index: 2000;
|
|
1104
|
+
display: flex;
|
|
1105
|
+
flex-direction: column;
|
|
1106
|
+
justify-content: center;
|
|
1107
|
+
}
|
|
1108
|
+
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
1109
|
+
font-size: 14px;
|
|
1110
|
+
color: #CCCACA;
|
|
1111
|
+
margin-top: 45px;
|
|
1112
|
+
}
|
|
1113
|
+
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
1114
|
+
font-weight: bold;
|
|
1115
|
+
line-height: 30px;
|
|
1116
|
+
font-size: 18px;
|
|
1117
|
+
}
|
|
1118
|
+
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
1119
|
+
width: 90%;
|
|
1120
|
+
margin: 0 auto;
|
|
1121
|
+
}
|
|
1122
|
+
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
1123
|
+
font-size: 13px;
|
|
1124
|
+
margin-top: 15px;
|
|
1125
|
+
}
|
|
1126
|
+
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
1127
|
+
cursor: pointer;
|
|
1128
|
+
width: 30px;
|
|
1129
|
+
margin: 15px auto 0;
|
|
1130
|
+
}*,
|
|
1131
|
+
:focus,
|
|
1132
|
+
:visited {
|
|
1133
|
+
outline: none !important;
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
.media-control-cc[data-cc] {
|
|
1137
|
+
position: relative;
|
|
1138
|
+
order: 85;
|
|
1139
|
+
}
|
|
1140
|
+
.media-control-cc[data-cc] button {
|
|
1141
|
+
background-color: transparent;
|
|
1142
|
+
color: #fff;
|
|
1143
|
+
-webkit-font-smoothing: antialiased;
|
|
1144
|
+
border: none;
|
|
1145
|
+
cursor: pointer;
|
|
1146
|
+
}
|
|
1147
|
+
.media-control-cc[data-cc] button .cc-text svg {
|
|
1148
|
+
fill: white;
|
|
1149
|
+
}
|
|
1150
|
+
.media-control-cc[data-cc] button:hover {
|
|
1151
|
+
color: #c9c9c9;
|
|
1152
|
+
}
|
|
1153
|
+
.media-control-cc[data-cc] button.changing {
|
|
1154
|
+
animation: pulse 0.5s infinite alternate;
|
|
1155
|
+
}
|
|
1156
|
+
.media-control-cc[data-cc] ul {
|
|
1157
|
+
width: 80px;
|
|
1158
|
+
list-style-type: none;
|
|
1159
|
+
position: absolute;
|
|
1160
|
+
bottom: 25px;
|
|
1161
|
+
border: 1px solid black;
|
|
1162
|
+
display: none;
|
|
1163
|
+
background-color: #e6e6e6;
|
|
1164
|
+
padding: 8px 0;
|
|
1165
|
+
}
|
|
1166
|
+
.media-control-cc[data-cc] li a {
|
|
1167
|
+
color: #444;
|
|
1168
|
+
padding: 2px 10px;
|
|
1169
|
+
display: block;
|
|
1170
|
+
text-decoration: none;
|
|
1171
|
+
}
|
|
1172
|
+
.media-control-cc[data-cc] li a:hover {
|
|
1173
|
+
background-color: #555;
|
|
1174
|
+
color: white;
|
|
1175
|
+
}
|
|
1176
|
+
.media-control-cc[data-cc] li a:hover a {
|
|
1177
|
+
color: white;
|
|
1178
|
+
text-decoration: none;
|
|
1179
|
+
}
|
|
1180
|
+
.media-control-cc[data-cc] li.current a {
|
|
1181
|
+
color: #f00;
|
|
1182
|
+
background-color: #555;
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1185
|
+
@keyframes pulse {
|
|
1186
|
+
0% {
|
|
1187
|
+
color: #fff;
|
|
1188
|
+
}
|
|
1189
|
+
50% {
|
|
1190
|
+
color: #ff0101;
|
|
1191
|
+
}
|
|
1192
|
+
100% {
|
|
1193
|
+
color: #B80000;
|
|
1194
|
+
}
|
|
1195
|
+
}
|
|
1196
|
+
::cue {
|
|
1197
|
+
visibility: hidden !important;
|
|
1198
|
+
font-size: 0 !important;
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
.ios-fullscreen::cue {
|
|
1202
|
+
visibility: visible !important;
|
|
1203
|
+
font-size: 1em !important;
|
|
1204
|
+
}.media-control-pip {
|
|
1205
|
+
order: 95;
|
|
1206
|
+
display: flex;
|
|
1207
|
+
}
|
|
1208
|
+
.media-control-pip button {
|
|
1209
|
+
height: 20px;
|
|
1210
|
+
}
|
|
1211
|
+
.media-control-pip button svg {
|
|
1212
|
+
height: 20px;
|
|
1213
|
+
}[data-player] {
|
|
1214
|
+
--bottom-panel: 40px;
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1217
|
+
.container .media-control-notransition {
|
|
1218
|
+
transition: none !important;
|
|
1219
|
+
}
|
|
1220
|
+
.container .player-poster[data-poster] .play-wrapper[data-poster] {
|
|
1221
|
+
opacity: 1;
|
|
1222
|
+
}
|
|
1223
|
+
.container.crop-video [data-html5-video] {
|
|
1224
|
+
object-fit: cover;
|
|
1225
|
+
}
|
|
1226
|
+
.container .cc-line {
|
|
1227
|
+
position: absolute;
|
|
1228
|
+
bottom: calc(var(--bottom-panel) + 5px);
|
|
1229
|
+
width: 100%;
|
|
1230
|
+
}
|
|
1231
|
+
.container .cc-line p {
|
|
1232
|
+
width: auto;
|
|
1233
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
1234
|
+
color: white;
|
|
1235
|
+
display: inline-block;
|
|
1236
|
+
}
|
|
1237
|
+
.container .circle-poster[data-poster] {
|
|
1238
|
+
top: 50%;
|
|
1239
|
+
margin-top: -60px;
|
|
1240
|
+
left: 50%;
|
|
1241
|
+
margin-left: -60px;
|
|
1242
|
+
position: absolute;
|
|
1243
|
+
width: 120px;
|
|
1244
|
+
height: 120px;
|
|
1245
|
+
border: 2px solid white;
|
|
1246
|
+
border-radius: 50%;
|
|
1247
|
+
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
1248
|
+
filter: alpha(opacity=60);
|
|
1249
|
+
opacity: 1;
|
|
1250
|
+
box-shadow: 0 0 1px 0 white;
|
|
1251
|
+
}
|
|
1252
|
+
.container .circle-poster[data-poster] svg {
|
|
1253
|
+
margin-left: 5px;
|
|
1254
|
+
width: 80px;
|
|
1255
|
+
height: 80px;
|
|
1256
|
+
}
|
|
1257
|
+
.container .spinner-three-bounce[data-spinner] > div {
|
|
1258
|
+
background-color: #ff5700;
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
.media-control-skin-1[data-media-control-skin-1].w270 .media-control-quality,
|
|
1262
|
+
.media-control-skin-1[data-media-control-skin-1].w270 .media-control-audiotracks {
|
|
1263
|
+
display: none;
|
|
1264
|
+
}
|
|
1265
|
+
.media-control-skin-1[data-media-control-skin-1].w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] {
|
|
1266
|
+
transform: rotate(270deg);
|
|
1267
|
+
float: none;
|
|
1268
|
+
display: block;
|
|
1269
|
+
position: absolute;
|
|
1270
|
+
/* bottom: 12px; */
|
|
1271
|
+
margin: 0;
|
|
1272
|
+
top: -40px;
|
|
1273
|
+
padding: 0;
|
|
1274
|
+
/* right: 20px; */
|
|
1275
|
+
margin-left: -32px;
|
|
1276
|
+
margin-top: -3px;
|
|
1277
|
+
width: 80px;
|
|
1278
|
+
/* padding-left: 12px; */
|
|
1279
|
+
}
|
|
1280
|
+
.media-control-skin-1[data-media-control-skin-1].w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background-mask {
|
|
1281
|
+
position: absolute;
|
|
1282
|
+
width: 100%;
|
|
1283
|
+
height: 100%;
|
|
1284
|
+
left: -5px;
|
|
1285
|
+
}
|
|
1286
|
+
.media-control-skin-1[data-media-control-skin-1].w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume].volume-bar-hide {
|
|
1287
|
+
display: none;
|
|
1082
1288
|
}
|
|
1083
1289
|
.media-control-skin-1[data-media-control-skin-1].w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background {
|
|
1084
1290
|
margin-left: 11px;
|
|
@@ -1641,103 +1847,138 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1641
1847
|
}
|
|
1642
1848
|
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
|
|
1643
1849
|
display: none !important;
|
|
1644
|
-
}.
|
|
1850
|
+
}.spinner-three-bounce[data-spinner] {
|
|
1645
1851
|
position: absolute;
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
opacity: 0;
|
|
1852
|
+
width: 70px;
|
|
1853
|
+
text-align: center;
|
|
1854
|
+
z-index: 999;
|
|
1855
|
+
left: 0;
|
|
1856
|
+
right: 0;
|
|
1857
|
+
margin: 0 auto;
|
|
1858
|
+
margin-left: auto;
|
|
1859
|
+
margin-right: auto;
|
|
1860
|
+
/* center vertically */
|
|
1861
|
+
top: 50%;
|
|
1862
|
+
transform: translateY(-50%);
|
|
1658
1863
|
}
|
|
1659
|
-
.
|
|
1864
|
+
.spinner-three-bounce[data-spinner] > div {
|
|
1865
|
+
width: 18px;
|
|
1866
|
+
height: 18px;
|
|
1867
|
+
background-color: #FFF;
|
|
1868
|
+
border-radius: 100%;
|
|
1660
1869
|
display: inline-block;
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
padding-right: 7px;
|
|
1665
|
-
vertical-align: top;
|
|
1870
|
+
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
1871
|
+
/* Prevent first frame from flickering when animation starts */
|
|
1872
|
+
animation-fill-mode: both;
|
|
1666
1873
|
}
|
|
1667
|
-
.
|
|
1668
|
-
|
|
1669
|
-
color: rgba(255, 255, 255, 0.5);
|
|
1670
|
-
font-size: 10px;
|
|
1671
|
-
padding-right: 7px;
|
|
1672
|
-
vertical-align: top;
|
|
1874
|
+
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
1875
|
+
animation-delay: -0.32s;
|
|
1673
1876
|
}
|
|
1674
|
-
.
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1877
|
+
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
1878
|
+
animation-delay: -0.16s;
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1881
|
+
@keyframes bouncedelay {
|
|
1882
|
+
0%, 80%, 100% {
|
|
1883
|
+
transform: scale(0);
|
|
1884
|
+
}
|
|
1885
|
+
40% {
|
|
1886
|
+
transform: scale(1);
|
|
1887
|
+
}
|
|
1888
|
+
}.context-menu {
|
|
1889
|
+
z-index: 999;
|
|
1681
1890
|
position: absolute;
|
|
1682
|
-
height: 100%;
|
|
1683
|
-
width: 100%;
|
|
1684
|
-
z-index: 998;
|
|
1685
1891
|
top: 0;
|
|
1686
1892
|
left: 0;
|
|
1687
|
-
|
|
1688
|
-
background-size: cover;
|
|
1689
|
-
background-repeat: no-repeat;
|
|
1690
|
-
background-position: 50% 50%;
|
|
1893
|
+
text-align: center;
|
|
1691
1894
|
}
|
|
1692
|
-
.
|
|
1895
|
+
.context-menu .context-menu-list {
|
|
1896
|
+
font-family: "Proxima Nova", sans-serif;
|
|
1897
|
+
font-size: 12px;
|
|
1898
|
+
line-height: 12px;
|
|
1899
|
+
list-style-type: none;
|
|
1900
|
+
text-align: left;
|
|
1901
|
+
padding: 5px;
|
|
1902
|
+
margin-left: auto;
|
|
1903
|
+
margin-right: auto;
|
|
1904
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
1905
|
+
border: 1px solid #666;
|
|
1906
|
+
border-radius: 4px;
|
|
1907
|
+
}
|
|
1908
|
+
.context-menu .context-menu-list .context-menu-list-item {
|
|
1909
|
+
color: white;
|
|
1910
|
+
padding: 5px;
|
|
1693
1911
|
cursor: pointer;
|
|
1912
|
+
}.scrub-thumbnails {
|
|
1913
|
+
position: absolute;
|
|
1914
|
+
bottom: 52px;
|
|
1915
|
+
width: 100%;
|
|
1916
|
+
transition: opacity 0.3s ease;
|
|
1694
1917
|
}
|
|
1695
|
-
.
|
|
1696
|
-
opacity:
|
|
1918
|
+
.scrub-thumbnails.hidden {
|
|
1919
|
+
opacity: 0;
|
|
1697
1920
|
}
|
|
1698
|
-
.
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
transition: opacity 0.1s ease;
|
|
1921
|
+
.scrub-thumbnails .thumbnail-container {
|
|
1922
|
+
display: inline-block;
|
|
1923
|
+
position: relative;
|
|
1924
|
+
overflow: hidden;
|
|
1925
|
+
background-color: #000;
|
|
1704
1926
|
}
|
|
1705
|
-
.
|
|
1706
|
-
|
|
1707
|
-
|
|
1927
|
+
.scrub-thumbnails .thumbnail-container .thumbnail-img {
|
|
1928
|
+
position: absolute;
|
|
1929
|
+
width: auto;
|
|
1708
1930
|
}
|
|
1709
|
-
.
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1931
|
+
.scrub-thumbnails .thumbnails-text {
|
|
1932
|
+
background-color: rgba(74, 74, 74, 0.7);
|
|
1933
|
+
border-radius: 3px;
|
|
1934
|
+
white-space: nowrap;
|
|
1935
|
+
overflow: hidden;
|
|
1936
|
+
text-overflow: ellipsis;
|
|
1937
|
+
color: white;
|
|
1938
|
+
position: absolute;
|
|
1939
|
+
bottom: 23px;
|
|
1940
|
+
width: 100px;
|
|
1713
1941
|
}
|
|
1714
|
-
|
|
1715
|
-
|
|
1942
|
+
.scrub-thumbnails .spotlight {
|
|
1943
|
+
background-color: #4a4a4a;
|
|
1944
|
+
overflow: hidden;
|
|
1716
1945
|
position: absolute;
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1946
|
+
bottom: 0;
|
|
1947
|
+
left: 0;
|
|
1948
|
+
border-color: #4a4a4a;
|
|
1949
|
+
border-style: solid;
|
|
1950
|
+
border-width: 3px;
|
|
1951
|
+
border-radius: 3px;
|
|
1722
1952
|
}
|
|
1723
|
-
.
|
|
1724
|
-
width:
|
|
1725
|
-
height: 100%;
|
|
1726
|
-
display: flex;
|
|
1727
|
-
justify-content: space-between;
|
|
1953
|
+
.scrub-thumbnails .spotlight img {
|
|
1954
|
+
width: auto;
|
|
1728
1955
|
}
|
|
1729
|
-
.
|
|
1730
|
-
|
|
1956
|
+
.scrub-thumbnails .backdrop {
|
|
1957
|
+
position: absolute;
|
|
1958
|
+
left: 0;
|
|
1959
|
+
bottom: 0;
|
|
1960
|
+
right: 0;
|
|
1961
|
+
background-color: #000;
|
|
1962
|
+
overflow: hidden;
|
|
1963
|
+
}
|
|
1964
|
+
.scrub-thumbnails .backdrop .carousel {
|
|
1965
|
+
position: absolute;
|
|
1966
|
+
top: 0;
|
|
1967
|
+
left: 0;
|
|
1731
1968
|
height: 100%;
|
|
1732
|
-
|
|
1733
|
-
order: 95;
|
|
1734
|
-
display: flex;
|
|
1969
|
+
white-space: nowrap;
|
|
1735
1970
|
}
|
|
1736
|
-
.
|
|
1737
|
-
|
|
1971
|
+
.scrub-thumbnails .backdrop .carousel img {
|
|
1972
|
+
width: auto;
|
|
1973
|
+
}.player-logo[data-logo] {
|
|
1974
|
+
position: absolute;
|
|
1975
|
+
z-index: 2;
|
|
1976
|
+
width: 100%;
|
|
1977
|
+
height: 100%;
|
|
1738
1978
|
}
|
|
1739
|
-
|
|
1740
|
-
|
|
1979
|
+
|
|
1980
|
+
.clappr-logo {
|
|
1981
|
+
position: absolute;
|
|
1741
1982
|
}.share_plugin[data-share] {
|
|
1742
1983
|
pointer-events: auto;
|
|
1743
1984
|
z-index: 5;
|
|
@@ -1821,241 +2062,4 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1821
2062
|
display: inline-block;
|
|
1822
2063
|
margin-right: 5px;
|
|
1823
2064
|
cursor: pointer;
|
|
1824
|
-
}.big-mute-icon-wrapper[data-big-mute] {
|
|
1825
|
-
position: absolute;
|
|
1826
|
-
z-index: 9998;
|
|
1827
|
-
background-color: transparent;
|
|
1828
|
-
display: flex;
|
|
1829
|
-
justify-content: center;
|
|
1830
|
-
width: 100%;
|
|
1831
|
-
height: calc(100% - 50px);
|
|
1832
|
-
margin: 0 auto;
|
|
1833
|
-
opacity: 0.75;
|
|
1834
|
-
transition: opacity 0.1s ease;
|
|
1835
|
-
pointer-events: auto;
|
|
1836
|
-
}
|
|
1837
|
-
.big-mute-icon-wrapper[data-big-mute].hide {
|
|
1838
|
-
display: none;
|
|
1839
|
-
}
|
|
1840
|
-
.big-mute-icon-wrapper[data-big-mute]:hover {
|
|
1841
|
-
cursor: pointer;
|
|
1842
|
-
}
|
|
1843
|
-
|
|
1844
|
-
.big-mute-icon[data-big-mute-icon] {
|
|
1845
|
-
display: flex;
|
|
1846
|
-
align-items: center;
|
|
1847
|
-
justify-content: center;
|
|
1848
|
-
align-self: center;
|
|
1849
|
-
width: 120px;
|
|
1850
|
-
height: 120px;
|
|
1851
|
-
border: 2px solid white;
|
|
1852
|
-
border-radius: 50%;
|
|
1853
|
-
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
1854
|
-
filter: alpha(opacity=60);
|
|
1855
|
-
opacity: 1;
|
|
1856
|
-
box-shadow: 0 0 1px 0 white;
|
|
1857
|
-
background: rgba(240, 243, 247, 0.9411764706);
|
|
1858
|
-
z-index: 10000;
|
|
1859
|
-
}
|
|
1860
|
-
.big-mute-icon[data-big-mute-icon] svg {
|
|
1861
|
-
margin-left: 5px;
|
|
1862
|
-
width: 80px;
|
|
1863
|
-
height: 80px;
|
|
1864
|
-
}
|
|
1865
|
-
.big-mute-icon[data-big-mute-icon] svg path {
|
|
1866
|
-
fill: #1f1e1e !important;
|
|
1867
|
-
}
|
|
1868
|
-
.big-mute-icon[data-big-mute-icon]:hover {
|
|
1869
|
-
background: rgba(240, 243, 247, 0.8784313725);
|
|
1870
|
-
}
|
|
1871
|
-
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
1872
|
-
fill: #151515 !important;
|
|
1873
|
-
}.gear-option_hd-icon.disabled {
|
|
1874
|
-
opacity: 0.5;
|
|
1875
|
-
pointer-events: none;
|
|
1876
|
-
}
|
|
1877
|
-
.gear-option_hd-icon.hidden {
|
|
1878
|
-
display: none;
|
|
1879
|
-
}.scrub-thumbnails {
|
|
1880
|
-
position: absolute;
|
|
1881
|
-
bottom: 52px;
|
|
1882
|
-
width: 100%;
|
|
1883
|
-
transition: opacity 0.3s ease;
|
|
1884
|
-
}
|
|
1885
|
-
.scrub-thumbnails.hidden {
|
|
1886
|
-
opacity: 0;
|
|
1887
|
-
}
|
|
1888
|
-
.scrub-thumbnails .thumbnail-container {
|
|
1889
|
-
display: inline-block;
|
|
1890
|
-
position: relative;
|
|
1891
|
-
overflow: hidden;
|
|
1892
|
-
background-color: #000;
|
|
1893
|
-
}
|
|
1894
|
-
.scrub-thumbnails .thumbnail-container .thumbnail-img {
|
|
1895
|
-
position: absolute;
|
|
1896
|
-
width: auto;
|
|
1897
|
-
}
|
|
1898
|
-
.scrub-thumbnails .thumbnails-text {
|
|
1899
|
-
background-color: rgba(74, 74, 74, 0.7);
|
|
1900
|
-
border-radius: 3px;
|
|
1901
|
-
white-space: nowrap;
|
|
1902
|
-
overflow: hidden;
|
|
1903
|
-
text-overflow: ellipsis;
|
|
1904
|
-
color: white;
|
|
1905
|
-
position: absolute;
|
|
1906
|
-
bottom: 23px;
|
|
1907
|
-
width: 100px;
|
|
1908
|
-
}
|
|
1909
|
-
.scrub-thumbnails .spotlight {
|
|
1910
|
-
background-color: #4a4a4a;
|
|
1911
|
-
overflow: hidden;
|
|
1912
|
-
position: absolute;
|
|
1913
|
-
bottom: 0;
|
|
1914
|
-
left: 0;
|
|
1915
|
-
border-color: #4a4a4a;
|
|
1916
|
-
border-style: solid;
|
|
1917
|
-
border-width: 3px;
|
|
1918
|
-
border-radius: 3px;
|
|
1919
|
-
}
|
|
1920
|
-
.scrub-thumbnails .spotlight img {
|
|
1921
|
-
width: auto;
|
|
1922
|
-
}
|
|
1923
|
-
.scrub-thumbnails .backdrop {
|
|
1924
|
-
position: absolute;
|
|
1925
|
-
left: 0;
|
|
1926
|
-
bottom: 0;
|
|
1927
|
-
right: 0;
|
|
1928
|
-
background-color: #000;
|
|
1929
|
-
overflow: hidden;
|
|
1930
|
-
}
|
|
1931
|
-
.scrub-thumbnails .backdrop .carousel {
|
|
1932
|
-
position: absolute;
|
|
1933
|
-
top: 0;
|
|
1934
|
-
left: 0;
|
|
1935
|
-
height: 100%;
|
|
1936
|
-
white-space: nowrap;
|
|
1937
|
-
}
|
|
1938
|
-
.scrub-thumbnails .backdrop .carousel img {
|
|
1939
|
-
width: auto;
|
|
1940
|
-
}*,
|
|
1941
|
-
:focus,
|
|
1942
|
-
:visited {
|
|
1943
|
-
outline: none !important;
|
|
1944
|
-
}
|
|
1945
|
-
|
|
1946
|
-
.media-control-cc[data-cc] {
|
|
1947
|
-
position: relative;
|
|
1948
|
-
order: 85;
|
|
1949
|
-
}
|
|
1950
|
-
.media-control-cc[data-cc] button {
|
|
1951
|
-
background-color: transparent;
|
|
1952
|
-
color: #fff;
|
|
1953
|
-
-webkit-font-smoothing: antialiased;
|
|
1954
|
-
border: none;
|
|
1955
|
-
cursor: pointer;
|
|
1956
|
-
}
|
|
1957
|
-
.media-control-cc[data-cc] button .cc-text svg {
|
|
1958
|
-
fill: white;
|
|
1959
|
-
}
|
|
1960
|
-
.media-control-cc[data-cc] button:hover {
|
|
1961
|
-
color: #c9c9c9;
|
|
1962
|
-
}
|
|
1963
|
-
.media-control-cc[data-cc] button.changing {
|
|
1964
|
-
animation: pulse 0.5s infinite alternate;
|
|
1965
|
-
}
|
|
1966
|
-
.media-control-cc[data-cc] ul {
|
|
1967
|
-
width: 80px;
|
|
1968
|
-
list-style-type: none;
|
|
1969
|
-
position: absolute;
|
|
1970
|
-
bottom: 25px;
|
|
1971
|
-
border: 1px solid black;
|
|
1972
|
-
display: none;
|
|
1973
|
-
background-color: #e6e6e6;
|
|
1974
|
-
padding: 8px 0;
|
|
1975
|
-
}
|
|
1976
|
-
.media-control-cc[data-cc] li a {
|
|
1977
|
-
color: #444;
|
|
1978
|
-
padding: 2px 10px;
|
|
1979
|
-
display: block;
|
|
1980
|
-
text-decoration: none;
|
|
1981
|
-
}
|
|
1982
|
-
.media-control-cc[data-cc] li a:hover {
|
|
1983
|
-
background-color: #555;
|
|
1984
|
-
color: white;
|
|
1985
|
-
}
|
|
1986
|
-
.media-control-cc[data-cc] li a:hover a {
|
|
1987
|
-
color: white;
|
|
1988
|
-
text-decoration: none;
|
|
1989
|
-
}
|
|
1990
|
-
.media-control-cc[data-cc] li.current a {
|
|
1991
|
-
color: #f00;
|
|
1992
|
-
background-color: #555;
|
|
1993
|
-
}
|
|
1994
|
-
|
|
1995
|
-
@keyframes pulse {
|
|
1996
|
-
0% {
|
|
1997
|
-
color: #fff;
|
|
1998
|
-
}
|
|
1999
|
-
50% {
|
|
2000
|
-
color: #ff0101;
|
|
2001
|
-
}
|
|
2002
|
-
100% {
|
|
2003
|
-
color: #B80000;
|
|
2004
|
-
}
|
|
2005
|
-
}
|
|
2006
|
-
::cue {
|
|
2007
|
-
visibility: hidden !important;
|
|
2008
|
-
font-size: 0 !important;
|
|
2009
|
-
}
|
|
2010
|
-
|
|
2011
|
-
.ios-fullscreen::cue {
|
|
2012
|
-
visibility: visible !important;
|
|
2013
|
-
font-size: 1em !important;
|
|
2014
|
-
}.spinner-three-bounce[data-spinner] {
|
|
2015
|
-
position: absolute;
|
|
2016
|
-
width: 70px;
|
|
2017
|
-
text-align: center;
|
|
2018
|
-
z-index: 999;
|
|
2019
|
-
left: 0;
|
|
2020
|
-
right: 0;
|
|
2021
|
-
margin: 0 auto;
|
|
2022
|
-
margin-left: auto;
|
|
2023
|
-
margin-right: auto;
|
|
2024
|
-
/* center vertically */
|
|
2025
|
-
top: 50%;
|
|
2026
|
-
transform: translateY(-50%);
|
|
2027
|
-
}
|
|
2028
|
-
.spinner-three-bounce[data-spinner] > div {
|
|
2029
|
-
width: 18px;
|
|
2030
|
-
height: 18px;
|
|
2031
|
-
background-color: #FFF;
|
|
2032
|
-
border-radius: 100%;
|
|
2033
|
-
display: inline-block;
|
|
2034
|
-
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
2035
|
-
/* Prevent first frame from flickering when animation starts */
|
|
2036
|
-
animation-fill-mode: both;
|
|
2037
|
-
}
|
|
2038
|
-
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
2039
|
-
animation-delay: -0.32s;
|
|
2040
|
-
}
|
|
2041
|
-
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
2042
|
-
animation-delay: -0.16s;
|
|
2043
|
-
}
|
|
2044
|
-
|
|
2045
|
-
@keyframes bouncedelay {
|
|
2046
|
-
0%, 80%, 100% {
|
|
2047
|
-
transform: scale(0);
|
|
2048
|
-
}
|
|
2049
|
-
40% {
|
|
2050
|
-
transform: scale(1);
|
|
2051
|
-
}
|
|
2052
|
-
}.player-logo[data-logo] {
|
|
2053
|
-
position: absolute;
|
|
2054
|
-
z-index: 2;
|
|
2055
|
-
width: 100%;
|
|
2056
|
-
height: 100%;
|
|
2057
|
-
}
|
|
2058
|
-
|
|
2059
|
-
.clappr-logo {
|
|
2060
|
-
position: absolute;
|
|
2061
2065
|
}
|