@gcorevideo/player 2.22.23 → 2.22.24

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.
Files changed (32) hide show
  1. package/assets/subtitles/combobox.ejs +1 -1
  2. package/assets/subtitles/style.scss +0 -1
  3. package/dist/core.js +1 -1
  4. package/dist/index.css +816 -817
  5. package/dist/index.js +48 -31
  6. package/dist/plugins/index.css +848 -849
  7. package/dist/plugins/index.js +47 -29
  8. package/lib/plugins/audio-selector/AudioTracks.d.ts +2 -2
  9. package/lib/plugins/audio-selector/AudioTracks.d.ts.map +1 -1
  10. package/lib/plugins/audio-selector/AudioTracks.js +12 -7
  11. package/lib/plugins/bottom-gear/BottomGear.d.ts +1 -1
  12. package/lib/plugins/bottom-gear/BottomGear.d.ts.map +1 -1
  13. package/lib/plugins/bottom-gear/BottomGear.js +9 -5
  14. package/lib/plugins/subtitles/ClosedCaptions.d.ts +3 -3
  15. package/lib/plugins/subtitles/ClosedCaptions.d.ts.map +1 -1
  16. package/lib/plugins/subtitles/ClosedCaptions.js +27 -19
  17. package/lib/testUtils.d.ts.map +1 -1
  18. package/lib/testUtils.js +1 -0
  19. package/package.json +1 -1
  20. package/src/plugins/audio-selector/AudioTracks.ts +12 -7
  21. package/src/plugins/audio-selector/__tests__/AudioTracks.test.ts +18 -1
  22. package/src/plugins/audio-selector/__tests__/__snapshots__/AudioTracks.test.ts.snap +1 -1
  23. package/src/plugins/bottom-gear/BottomGear.ts +9 -5
  24. package/src/plugins/bottom-gear/__tests__/BottomGear.test.ts +22 -1
  25. package/src/plugins/subtitles/ClosedCaptions.ts +27 -20
  26. package/src/plugins/subtitles/__tests__/ClosedCaptions.test.ts +51 -13
  27. package/src/plugins/subtitles/__tests__/__snapshots__/ClosedCaptions.test.ts.snap +4 -4
  28. package/src/testUtils.ts +1 -0
  29. package/tsconfig.tsbuildinfo +1 -1
  30. package/assets/subtitles/combobox copy.ejs +0 -16
  31. /package/assets/{audio-selector → audio-tracks}/style.scss +0 -0
  32. /package/assets/{audio-selector/track-selector.ejs → audio-tracks/template.ejs} +0 -0
@@ -122,277 +122,12 @@
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
- }
225
- }.dvr-controls[data-dvr] {
226
- display: inline-block;
227
- color: var(--player-dvr-color);
228
- line-height: 32px;
229
- font-size: 10px;
230
- font-weight: bold;
231
- margin-left: 6px;
232
- height: 40px;
233
- line-height: 40px;
234
- margin-left: 0;
235
- }
236
- .dvr-controls[data-dvr] .live-info {
237
- cursor: default;
238
- text-transform: uppercase;
239
- }
240
- .dvr-controls[data-dvr] .live-info:before {
241
- content: "";
242
- display: inline-block;
243
- position: relative;
244
- width: 7px;
245
- height: 7px;
246
- border-radius: 3.5px;
247
- margin-right: 3.5px;
248
- background-color: var(--player-live-color);
249
- }
250
- .dvr-controls[data-dvr] .live-info.disabled {
251
- opacity: 0.3;
252
- }
253
- .dvr-controls[data-dvr] .live-info.disabled:before {
254
- background-color: var(--player-dvr-color);
255
- }
256
- .dvr-controls[data-dvr] .live-button {
257
- cursor: pointer;
258
- outline: none;
259
- display: none;
260
- border: 0;
261
- color: var(--player-dvr-color);
262
- background-color: transparent;
263
- height: 32px;
264
- padding: 0;
265
- opacity: 0.7;
266
- text-transform: uppercase;
267
- transition: all 0.1s ease;
268
- }
269
- .dvr-controls[data-dvr] .live-button:before {
270
- content: "";
271
- display: inline-block;
272
- position: relative;
273
- width: 7px;
274
- height: 7px;
275
- border-radius: 3.5px;
276
- margin-right: 3.5px;
277
- background-color: var(--player-dvr-color);
278
- }
279
- .dvr-controls[data-dvr] .live-button:hover {
280
- opacity: 1;
281
- text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
282
- }
283
- .dvr-controls[data-dvr] .live-info {
284
- font-size: 14px;
285
- letter-spacing: 0.8px;
286
- font-weight: 500;
287
- color: #fffffe;
288
- margin-left: 21px;
289
- }
290
- .dvr-controls[data-dvr] .live-info::before {
291
- width: 10px;
292
- height: 10px;
293
- border-radius: 50%;
294
- margin-right: 8px;
295
- background-color: #ed4f4a;
296
- }
297
- .dvr-controls[data-dvr] .live-button {
298
- height: 40px;
299
- opacity: 1;
300
- font-size: 14px;
301
- letter-spacing: 0.8px;
302
- font-weight: 500;
303
- margin-left: 20px;
304
- }
305
- .dvr-controls[data-dvr] .live-button::before {
306
- width: 10px;
307
- height: 10px;
308
- border-radius: 50%;
309
- margin-right: 8px;
310
- background-color: #cacaca;
311
- }.big-mute-icon-wrapper[data-big-mute] {
312
- position: absolute;
313
- z-index: 9998;
314
- background-color: transparent;
315
- display: flex;
316
- justify-content: center;
317
- width: 100%;
318
- height: calc(100% - 50px);
319
- margin: 0 auto;
320
- opacity: 0.75;
321
- transition: opacity 0.1s ease;
322
- pointer-events: auto;
323
- }
324
- .big-mute-icon-wrapper[data-big-mute].hide {
325
- display: none;
326
- }
327
- .big-mute-icon-wrapper[data-big-mute]:hover {
328
- cursor: pointer;
329
- }
330
-
331
- .big-mute-icon[data-big-mute-icon] {
332
- display: flex;
333
- align-items: center;
334
- justify-content: center;
335
- align-self: center;
336
- width: 120px;
337
- height: 120px;
338
- border: 2px solid white;
339
- border-radius: 50%;
340
- filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
341
- filter: alpha(opacity=60);
342
- opacity: 1;
343
- box-shadow: 0 0 1px 0 white;
344
- background: rgba(240, 243, 247, 0.9411764706);
345
- z-index: 10000;
346
- }
347
- .big-mute-icon[data-big-mute-icon] svg {
348
- margin-left: 5px;
349
- width: 80px;
350
- height: 80px;
351
- }
352
- .big-mute-icon[data-big-mute-icon] svg path {
353
- fill: #1f1e1e !important;
354
- }
355
- .big-mute-icon[data-big-mute-icon]:hover {
356
- background: rgba(240, 243, 247, 0.8784313725);
357
- }
358
- .big-mute-icon[data-big-mute-icon]:hover svg path {
359
- fill: #151515 !important;
360
- }.context-menu {
361
- z-index: 999;
362
- position: absolute;
363
- top: 0;
364
- left: 0;
365
- text-align: center;
366
- }
367
- .context-menu .context-menu-list {
368
- font-family: "Proxima Nova", sans-serif;
369
- font-size: 12px;
370
- line-height: 12px;
371
- list-style-type: none;
372
- text-align: left;
373
- padding: 5px;
374
- margin-left: auto;
375
- margin-right: auto;
376
- background-color: rgba(0, 0, 0, 0.75);
377
- border: 1px solid #666;
378
- border-radius: 4px;
379
- }
380
- .context-menu .context-menu-list-item button {
381
- border: none;
382
- background-color: transparent;
383
- padding: 0;
384
- color: white;
385
- display: flex;
386
- gap: 8px;
387
- align-items: center;
388
- justify-content: center;
389
- cursor: pointer;
390
- padding: 5px;
391
- width: 100%;
125
+ }.quality-levels li.disabled {
126
+ opacity: 0.5;
127
+ pointer-events: none;
392
128
  }
393
- .context-menu .context-menu-list-item_icon {
394
- width: 20px;
395
- height: 20px;
129
+ .quality-levels li.current {
130
+ background-color: #000;
396
131
  }div.player-error-screen, [data-player] div.player-error-screen {
397
132
  color: #CCCACA;
398
133
  position: absolute;
@@ -427,6 +162,89 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
427
162
  cursor: pointer;
428
163
  width: 30px;
429
164
  margin: 15px auto 0;
165
+ }.share_plugin[data-share] {
166
+ pointer-events: auto;
167
+ z-index: 5;
168
+ font-family: Roboto, "Open Sans", Arial, sans-serif !important;
169
+ }
170
+ .share_plugin[data-share].share-hide .share-button-container {
171
+ right: -50px;
172
+ }
173
+ .share_plugin[data-share] .share-button-container {
174
+ cursor: pointer;
175
+ width: 36px;
176
+ height: 36px;
177
+ background-color: rgba(74, 74, 74, 0.6);
178
+ border-radius: 4px;
179
+ position: absolute;
180
+ right: 10px;
181
+ top: 10px;
182
+ padding-top: 6px;
183
+ transition: all 0.3s ease-out;
184
+ }
185
+ .share_plugin[data-share] .share-button-container button[data-share-button] {
186
+ background-color: transparent;
187
+ border: 0;
188
+ margin: 0 6px;
189
+ padding: 0;
190
+ cursor: pointer;
191
+ display: inline-block;
192
+ width: 19px;
193
+ height: 20px;
194
+ }
195
+ .share_plugin[data-share] .share-container {
196
+ pointer-events: auto;
197
+ position: absolute;
198
+ width: 280px;
199
+ background-color: white;
200
+ transform: translate(0, 50%);
201
+ transform: translate(-50%, -50%);
202
+ left: 50%;
203
+ /* margin-left: -140px; */
204
+ top: calc(50% - 20px);
205
+ /* margin-top: -170px; */
206
+ }
207
+ .share_plugin[data-share] .share-container .share-container-header {
208
+ text-align: left;
209
+ border-bottom: 1px solid rgba(155, 155, 155, 0.25);
210
+ }
211
+ .share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
212
+ display: inline-block;
213
+ font-size: 16px;
214
+ margin: 5px;
215
+ }
216
+ .share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
217
+ display: inline-block;
218
+ width: 24px;
219
+ float: right;
220
+ margin: 5px;
221
+ cursor: pointer;
222
+ }
223
+ .share_plugin[data-share] .share-container .share-container-main {
224
+ margin-bottom: 8px;
225
+ }
226
+ .share_plugin[data-share] .share-container .share-container-main > div {
227
+ text-align: left;
228
+ font-size: 14px;
229
+ padding: 5px;
230
+ }
231
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--link, .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
232
+ overflow: hidden;
233
+ text-overflow: ellipsis;
234
+ color: #818181;
235
+ border: solid 1px #d3d3d3;
236
+ width: calc(100% - 10px);
237
+ padding: 5px;
238
+ }
239
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
240
+ max-height: 90px;
241
+ resize: none;
242
+ }
243
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
244
+ width: 32px;
245
+ display: inline-block;
246
+ margin-right: 5px;
247
+ cursor: pointer;
430
248
  }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
431
249
  order: 99;
432
250
  height: 20px;
@@ -455,23 +273,93 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
455
273
  justify-content: flex-start;
456
274
  gap: 8px;
457
275
  }
458
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
459
- flex: 24px 0 0;
460
- height: 24px;
276
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
277
+ flex: 24px 0 0;
278
+ height: 24px;
279
+ }
280
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
281
+ visibility: hidden;
282
+ display: inline-block;
283
+ }
284
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
285
+ flex: 0 1 100%;
286
+ }
287
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
288
+ flex: 0 0 14px;
289
+ height: 24px;
290
+ }
291
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
292
+ flex: 1 0 auto;
293
+ }*, :focus, :visited {
294
+ outline: none !important;
295
+ }
296
+
297
+ .gear-wrapper .go-back {
298
+ font-weight: 600;
299
+ font-size: 14px;
300
+ line-height: 20px;
301
+ width: 100%;
302
+ text-align: left;
303
+ padding: 12px;
304
+ }
305
+ .gear-wrapper .go-back .arrow-left-icon {
306
+ float: left;
307
+ padding-top: 2px;
308
+ padding-right: 2px;
309
+ }
310
+ .gear-wrapper .go-back .arrow-left-icon svg {
311
+ height: 16px;
312
+ }
313
+ .gear-wrapper ul.gear-sub-menu {
314
+ width: 100%;
315
+ list-style-type: none;
316
+ min-width: 60px;
317
+ border-top: 2px solid rgb(36, 36, 36);
318
+ }
319
+ .gear-wrapper ul.gear-sub-menu li {
320
+ font-size: 12px;
321
+ text-align: left;
322
+ }
323
+ .gear-wrapper ul.gear-sub-menu li[data-title] {
324
+ background-color: #c3c2c2;
325
+ padding: 5px;
326
+ }
327
+ .gear-wrapper ul.gear-sub-menu li a {
328
+ display: block;
329
+ text-decoration: none;
330
+ height: 32px;
331
+ padding: 5px 10px;
332
+ line-height: 22px;
333
+ color: #fffffe;
334
+ }
335
+ .gear-wrapper ul.gear-sub-menu li a:hover {
336
+ color: white;
337
+ background-color: rgba(0, 0, 0, 0.4);
461
338
  }
462
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
463
- visibility: hidden;
464
- display: inline-block;
339
+ .gear-wrapper ul.gear-sub-menu li a:hover a {
340
+ color: white;
341
+ text-decoration: none;
465
342
  }
466
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
467
- flex: 0 1 100%;
343
+ .gear-wrapper ul.gear-sub-menu li a .check-icon {
344
+ width: 30px;
345
+ height: 20px;
346
+ float: left;
347
+ display: block;
468
348
  }
469
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
470
- flex: 0 0 14px;
471
- height: 24px;
349
+ .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
350
+ display: none;
472
351
  }
473
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
474
- flex: 1 0 auto;
352
+ .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
353
+ display: inline;
354
+ }.media-control-pip {
355
+ order: 95;
356
+ display: flex;
357
+ }
358
+ .media-control-pip button {
359
+ height: 20px;
360
+ }
361
+ .media-control-pip button svg {
362
+ height: 20px;
475
363
  }:root {
476
364
  --primary-background-color: #000;
477
365
  --secondary-background-color: #262626;
@@ -724,236 +612,438 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
724
612
  width: 18.8%;
725
613
  background-color: #fff;
726
614
  }
727
- .speedtest-quality-content-item.speedtest-quality-value-1 {
728
- background-color: var(--speedtest-red);
615
+ .speedtest-quality-content-item.speedtest-quality-value-1 {
616
+ background-color: var(--speedtest-red);
617
+ }
618
+ .speedtest-quality-content-item.speedtest-quality-value-2 {
619
+ background-color: var(--speedtest-orange);
620
+ }
621
+ .speedtest-quality-content-item.speedtest-quality-value-3 {
622
+ background-color: var(--speedtest-yellow);
623
+ }
624
+ .speedtest-quality-content-item.speedtest-quality-value-4 {
625
+ background-color: var(--speedtest-light-green);
626
+ }
627
+ .speedtest-quality-content-item.speedtest-quality-value-5 {
628
+ background-color: var(--speedtest-green);
629
+ }
630
+
631
+ .speedtest-footer {
632
+ position: relative;
633
+ float: left;
634
+ width: 100%;
635
+ height: 30px;
636
+ line-height: 16px;
637
+ }
638
+ .speedtest-footer-about-link {
639
+ position: absolute;
640
+ bottom: 0;
641
+ left: 0;
642
+ color: var(--secondary-text-color);
643
+ text-decoration: underline !important;
644
+ }
645
+ .speedtest-footer-about-link:hover {
646
+ color: var(--hover-text-color);
647
+ }
648
+ .speedtest-footer .speedtest-footer-refresh {
649
+ position: absolute;
650
+ bottom: 0;
651
+ right: 0;
652
+ color: var(--secondary-text-color);
653
+ font-size: 14px;
654
+ font-weight: 400;
655
+ line-height: 16px;
656
+ height: 16px;
657
+ display: flex;
658
+ align-items: center;
659
+ gap: 4px;
660
+ }
661
+ .speedtest-footer .speedtest-footer-refresh svg path {
662
+ fill: var(--secondary-text-color);
663
+ }
664
+ .speedtest-footer .speedtest-footer-refresh:hover {
665
+ color: var(--hover-text-color);
666
+ }
667
+ .speedtest-footer .speedtest-footer-refresh:hover svg path {
668
+ fill: var(--hover-text-color);
669
+ }
670
+
671
+ .mobile .clappr-nerd-stats .stats-box {
672
+ position: fixed;
673
+ height: auto;
674
+ width: auto;
675
+ inset: 0;
676
+ min-width: 100vw;
677
+ padding-bottom: 4px;
678
+ padding-left: 4px;
679
+ padding-right: 4px;
680
+ }
681
+ .mobile .clappr-nerd-stats .stats-box-top {
682
+ position: fixed;
683
+ }
684
+ .mobile .clappr-nerd-stats .stats-box-main ul {
685
+ flex: 0 1 50%;
686
+ }
687
+
688
+ @media only screen and (orientation: portrait) {
689
+ .mobile .speedtest-summary {
690
+ padding: 0 5px;
691
+ height: auto;
692
+ }
693
+ .mobile .speedtest-summary-block {
694
+ width: 100%;
695
+ flex-direction: column;
696
+ }
697
+ .mobile .speedtest-summary-block .speedtest-summary-subblock {
698
+ width: 100%;
699
+ }
700
+ .mobile .speedtest-summary-block .speedtest-summary-subblock-content {
701
+ width: 100%;
702
+ }
703
+ .mobile .speedtest-summary-header {
704
+ padding-top: 12px;
705
+ height: 38px;
706
+ text-align: center;
707
+ }
708
+ .mobile .speedtest-quality-header {
709
+ text-align: center;
710
+ }
711
+ .mobile .speedtest-footer .speedtest-footer-refresh {
712
+ inset: 50% auto auto 50%;
713
+ transform: translate(-50%, -50%);
714
+ }
715
+ }
716
+ @media only screen and (orientation: landscape) {
717
+ .mobile .clappr-nerd-stats .stats-box-main ul {
718
+ flex-basis: 1fr;
719
+ }
720
+ }.context-menu {
721
+ z-index: 999;
722
+ position: absolute;
723
+ top: 0;
724
+ left: 0;
725
+ text-align: center;
726
+ }
727
+ .context-menu .context-menu-list {
728
+ font-family: "Proxima Nova", sans-serif;
729
+ font-size: 12px;
730
+ line-height: 12px;
731
+ list-style-type: none;
732
+ text-align: left;
733
+ padding: 5px;
734
+ margin-left: auto;
735
+ margin-right: auto;
736
+ background-color: rgba(0, 0, 0, 0.75);
737
+ border: 1px solid #666;
738
+ border-radius: 4px;
739
+ }
740
+ .context-menu .context-menu-list-item button {
741
+ border: none;
742
+ background-color: transparent;
743
+ padding: 0;
744
+ color: white;
745
+ display: flex;
746
+ gap: 8px;
747
+ align-items: center;
748
+ justify-content: center;
749
+ cursor: pointer;
750
+ padding: 5px;
751
+ width: 100%;
752
+ }
753
+ .context-menu .context-menu-list-item_icon {
754
+ width: 20px;
755
+ height: 20px;
756
+ }@charset "UTF-8";
757
+ .media-control-clips {
758
+ display: flex;
759
+ gap: 6px;
760
+ }
761
+ .media-control-clips .media-clip-text {
762
+ text-overflow: ellipsis;
763
+ white-space: nowrap;
764
+ overflow: hidden;
765
+ display: inline-block;
766
+ text-overflow: ellipsis;
767
+ color: white;
768
+ cursor: default;
769
+ line-height: var(--bottom-panel);
770
+ position: relative;
771
+ }
772
+ .media-control-clips .media-clip-text::before {
773
+ content: "•";
774
+ padding-right: 6px;
775
+ }
776
+ .media-control-clips .media-clip-text {
777
+ max-width: 100px;
778
+ }.player-poster[data-poster] {
779
+ display: flex;
780
+ justify-content: center;
781
+ align-items: center;
782
+ position: absolute;
783
+ height: 100%;
784
+ width: 100%;
785
+ z-index: 998;
786
+ top: 0;
787
+ left: 0;
788
+ background-color: #000;
789
+ background-size: cover;
790
+ background-repeat: no-repeat;
791
+ background-position: 50% 50%;
792
+ }
793
+ .player-poster[data-poster].clickable {
794
+ cursor: pointer;
795
+ }
796
+ .player-poster[data-poster]:hover .play-wrapper[data-poster] {
797
+ opacity: 1;
798
+ }
799
+ .player-poster[data-poster] .play-wrapper[data-poster] {
800
+ width: 100%;
801
+ height: 25%;
802
+ margin: 0 auto;
803
+ opacity: 0.75;
804
+ transition: opacity 0.1s ease;
805
+ }
806
+ .player-poster[data-poster] .play-wrapper[data-poster] svg {
807
+ height: 100%;
808
+ display: inline;
809
+ }
810
+ .player-poster[data-poster] .play-wrapper[data-poster] svg path {
811
+ fill: #fff;
812
+ }.big-mute-icon-wrapper[data-big-mute] {
813
+ position: absolute;
814
+ z-index: 9998;
815
+ background-color: transparent;
816
+ display: flex;
817
+ justify-content: center;
818
+ width: 100%;
819
+ height: calc(100% - 50px);
820
+ margin: 0 auto;
821
+ opacity: 0.75;
822
+ transition: opacity 0.1s ease;
823
+ pointer-events: auto;
824
+ }
825
+ .big-mute-icon-wrapper[data-big-mute].hide {
826
+ display: none;
827
+ }
828
+ .big-mute-icon-wrapper[data-big-mute]:hover {
829
+ cursor: pointer;
830
+ }
831
+
832
+ .big-mute-icon[data-big-mute-icon] {
833
+ display: flex;
834
+ align-items: center;
835
+ justify-content: center;
836
+ align-self: center;
837
+ width: 120px;
838
+ height: 120px;
839
+ border: 2px solid white;
840
+ border-radius: 50%;
841
+ filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
842
+ filter: alpha(opacity=60);
843
+ opacity: 1;
844
+ box-shadow: 0 0 1px 0 white;
845
+ background: rgba(240, 243, 247, 0.9411764706);
846
+ z-index: 10000;
847
+ }
848
+ .big-mute-icon[data-big-mute-icon] svg {
849
+ margin-left: 5px;
850
+ width: 80px;
851
+ height: 80px;
729
852
  }
730
- .speedtest-quality-content-item.speedtest-quality-value-2 {
731
- background-color: var(--speedtest-orange);
853
+ .big-mute-icon[data-big-mute-icon] svg path {
854
+ fill: #1f1e1e !important;
732
855
  }
733
- .speedtest-quality-content-item.speedtest-quality-value-3 {
734
- background-color: var(--speedtest-yellow);
856
+ .big-mute-icon[data-big-mute-icon]:hover {
857
+ background: rgba(240, 243, 247, 0.8784313725);
735
858
  }
736
- .speedtest-quality-content-item.speedtest-quality-value-4 {
737
- background-color: var(--speedtest-light-green);
859
+ .big-mute-icon[data-big-mute-icon]:hover svg path {
860
+ fill: #151515 !important;
861
+ }.dvr-controls[data-dvr] {
862
+ display: inline-block;
863
+ color: var(--player-dvr-color);
864
+ line-height: 32px;
865
+ font-size: 10px;
866
+ font-weight: bold;
867
+ margin-left: 6px;
868
+ height: 40px;
869
+ line-height: 40px;
870
+ margin-left: 0;
738
871
  }
739
- .speedtest-quality-content-item.speedtest-quality-value-5 {
740
- background-color: var(--speedtest-green);
872
+ .dvr-controls[data-dvr] .live-info {
873
+ cursor: default;
874
+ text-transform: uppercase;
741
875
  }
742
-
743
- .speedtest-footer {
876
+ .dvr-controls[data-dvr] .live-info:before {
877
+ content: "";
878
+ display: inline-block;
744
879
  position: relative;
745
- float: left;
746
- width: 100%;
747
- height: 30px;
748
- line-height: 16px;
880
+ width: 7px;
881
+ height: 7px;
882
+ border-radius: 3.5px;
883
+ margin-right: 3.5px;
884
+ background-color: var(--player-live-color);
749
885
  }
750
- .speedtest-footer-about-link {
751
- position: absolute;
752
- bottom: 0;
753
- left: 0;
754
- color: var(--secondary-text-color);
755
- text-decoration: underline !important;
886
+ .dvr-controls[data-dvr] .live-info.disabled {
887
+ opacity: 0.3;
756
888
  }
757
- .speedtest-footer-about-link:hover {
758
- color: var(--hover-text-color);
889
+ .dvr-controls[data-dvr] .live-info.disabled:before {
890
+ background-color: var(--player-dvr-color);
759
891
  }
760
- .speedtest-footer .speedtest-footer-refresh {
761
- position: absolute;
762
- bottom: 0;
763
- right: 0;
764
- color: var(--secondary-text-color);
765
- font-size: 14px;
766
- font-weight: 400;
767
- line-height: 16px;
768
- height: 16px;
769
- display: flex;
770
- align-items: center;
771
- gap: 4px;
892
+ .dvr-controls[data-dvr] .live-button {
893
+ cursor: pointer;
894
+ outline: none;
895
+ display: none;
896
+ border: 0;
897
+ color: var(--player-dvr-color);
898
+ background-color: transparent;
899
+ height: 32px;
900
+ padding: 0;
901
+ opacity: 0.7;
902
+ text-transform: uppercase;
903
+ transition: all 0.1s ease;
772
904
  }
773
- .speedtest-footer .speedtest-footer-refresh svg path {
774
- fill: var(--secondary-text-color);
905
+ .dvr-controls[data-dvr] .live-button:before {
906
+ content: "";
907
+ display: inline-block;
908
+ position: relative;
909
+ width: 7px;
910
+ height: 7px;
911
+ border-radius: 3.5px;
912
+ margin-right: 3.5px;
913
+ background-color: var(--player-dvr-color);
775
914
  }
776
- .speedtest-footer .speedtest-footer-refresh:hover {
777
- color: var(--hover-text-color);
915
+ .dvr-controls[data-dvr] .live-button:hover {
916
+ opacity: 1;
917
+ text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
778
918
  }
779
- .speedtest-footer .speedtest-footer-refresh:hover svg path {
780
- fill: var(--hover-text-color);
919
+ .dvr-controls[data-dvr] .live-info {
920
+ font-size: 14px;
921
+ letter-spacing: 0.8px;
922
+ font-weight: 500;
923
+ color: #fffffe;
924
+ margin-left: 21px;
781
925
  }
782
-
783
- .mobile .clappr-nerd-stats .stats-box {
784
- position: fixed;
785
- height: auto;
786
- width: auto;
787
- inset: 0;
788
- min-width: 100vw;
789
- padding-bottom: 4px;
790
- padding-left: 4px;
791
- padding-right: 4px;
926
+ .dvr-controls[data-dvr] .live-info::before {
927
+ width: 10px;
928
+ height: 10px;
929
+ border-radius: 50%;
930
+ margin-right: 8px;
931
+ background-color: #ed4f4a;
792
932
  }
793
- .mobile .clappr-nerd-stats .stats-box-top {
794
- position: fixed;
933
+ .dvr-controls[data-dvr] .live-button {
934
+ height: 40px;
935
+ opacity: 1;
936
+ font-size: 14px;
937
+ letter-spacing: 0.8px;
938
+ font-weight: 500;
939
+ margin-left: 20px;
795
940
  }
796
- .mobile .clappr-nerd-stats .stats-box-main ul {
797
- flex: 0 1 50%;
941
+ .dvr-controls[data-dvr] .live-button::before {
942
+ width: 10px;
943
+ height: 10px;
944
+ border-radius: 50%;
945
+ margin-right: 8px;
946
+ background-color: #cacaca;
947
+ }*,
948
+ :focus,
949
+ :visited {
950
+ outline: none !important;
798
951
  }
799
952
 
800
- @media only screen and (orientation: portrait) {
801
- .mobile .speedtest-summary {
802
- padding: 0 5px;
803
- height: auto;
804
- }
805
- .mobile .speedtest-summary-block {
806
- width: 100%;
807
- flex-direction: column;
808
- }
809
- .mobile .speedtest-summary-block .speedtest-summary-subblock {
810
- width: 100%;
811
- }
812
- .mobile .speedtest-summary-block .speedtest-summary-subblock-content {
813
- width: 100%;
814
- }
815
- .mobile .speedtest-summary-header {
816
- padding-top: 12px;
817
- height: 38px;
818
- text-align: center;
819
- }
820
- .mobile .speedtest-quality-header {
821
- text-align: center;
822
- }
823
- .mobile .speedtest-footer .speedtest-footer-refresh {
824
- inset: 50% auto auto 50%;
825
- transform: translate(-50%, -50%);
826
- }
953
+ .media-control-audiotracks {
954
+ position: relative;
827
955
  }
828
- @media only screen and (orientation: landscape) {
829
- .mobile .clappr-nerd-stats .stats-box-main ul {
830
- flex-basis: 1fr;
831
- }
832
- }.media-control-pip {
833
- order: 95;
956
+ .media-control-audiotracks button {
957
+ background-color: transparent;
958
+ color: #fff;
959
+ -webkit-font-smoothing: antialiased;
960
+ border: none;
961
+ cursor: pointer;
834
962
  display: flex;
963
+ align-items: center;
964
+ padding: 0;
835
965
  }
836
- .media-control-pip button {
837
- height: 20px;
838
- }
839
- .media-control-pip button svg {
840
- height: 20px;
841
- }*, :focus, :visited {
842
- outline: none !important;
966
+ .media-control-audiotracks button .audio-text {
967
+ text-overflow: ellipsis;
968
+ overflow: hidden;
969
+ white-space: nowrap;
970
+ max-width: 100px;
971
+ background-color: transparent;
972
+ -webkit-font-smoothing: antialiased;
973
+ border: none;
974
+ cursor: pointer;
843
975
  }
844
-
845
- .gear-wrapper .go-back {
846
- font-weight: 600;
847
- font-size: 14px;
848
- line-height: 20px;
849
- width: 100%;
850
- text-align: left;
851
- padding: 12px;
976
+ .media-control-audiotracks button:hover {
977
+ color: white;
852
978
  }
853
- .gear-wrapper .go-back .arrow-left-icon {
854
- float: left;
855
- padding-top: 2px;
856
- padding-right: 2px;
979
+ .media-control-audiotracks button.changing {
980
+ animation: pulse 0.5s infinite alternate;
857
981
  }
858
- .gear-wrapper .go-back .arrow-left-icon svg {
859
- height: 16px;
982
+ .media-control-audiotracks button span.audio-arrow {
983
+ width: 9px;
984
+ height: 6px;
985
+ margin-left: 5px;
860
986
  }
861
- .gear-wrapper ul.gear-sub-menu {
862
- width: 100%;
987
+ .media-control-audiotracks .menu {
988
+ max-width: 114px;
863
989
  list-style-type: none;
990
+ position: absolute;
991
+ background-color: rgba(74, 74, 74, 0.6);
992
+ border: none;
864
993
  min-width: 60px;
865
- border-top: 2px solid rgb(36, 36, 36);
994
+ border-radius: 4px;
995
+ bottom: 40px;
996
+ right: -2px;
866
997
  }
867
- .gear-wrapper ul.gear-sub-menu li {
868
- font-size: 12px;
869
- text-align: left;
998
+ .media-control-audiotracks .menu.hidden {
999
+ display: none;
1000
+ }
1001
+ .media-control-audiotracks li {
1002
+ font-size: var(--font-size-media-controls-dropdown);
1003
+ text-align: right;
1004
+ height: 30px;
870
1005
  }
871
- .gear-wrapper ul.gear-sub-menu li[data-title] {
1006
+ .media-control-audiotracks li[data-title] {
872
1007
  background-color: #c3c2c2;
873
1008
  padding: 5px;
874
1009
  }
875
- .gear-wrapper ul.gear-sub-menu li a {
1010
+ .media-control-audiotracks li a {
876
1011
  display: block;
877
1012
  text-decoration: none;
878
- height: 32px;
1013
+ text-overflow: ellipsis;
1014
+ overflow: hidden;
1015
+ white-space: nowrap;
1016
+ height: 30px;
879
1017
  padding: 5px 10px;
880
- line-height: 22px;
881
1018
  color: #fffffe;
882
1019
  }
883
- .gear-wrapper ul.gear-sub-menu li a:hover {
884
- color: white;
885
- background-color: rgba(0, 0, 0, 0.4);
886
- }
887
- .gear-wrapper ul.gear-sub-menu li a:hover a {
888
- color: white;
1020
+ .media-control-audiotracks li a:hover {
889
1021
  text-decoration: none;
890
- }
891
- .gear-wrapper ul.gear-sub-menu li a .check-icon {
892
- width: 30px;
893
- height: 20px;
894
- float: left;
895
- display: block;
896
- }
897
- .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
898
- display: none;
899
- }
900
- .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
901
- display: inline;
902
- }.seek-time[data-seek-time] {
903
- position: absolute;
904
- white-space: nowrap;
905
- height: 20px;
906
- line-height: 20px;
907
- font-size: 0;
908
- left: -100%;
909
- bottom: 55px;
910
- background-color: rgba(2, 2, 2, 0.5);
911
- z-index: 9999;
912
- transition: opacity 0.1s ease;
913
- }
914
- .seek-time[data-seek-time].hidden[data-seek-time] {
915
- opacity: 0;
916
- }
917
- .seek-time[data-seek-time] [data-seek-time] {
918
- display: inline-block;
1022
+ background-color: rgba(0, 0, 0, 0.4);
919
1023
  color: white;
920
- font-size: 10px;
921
- padding-left: 7px;
922
- padding-right: 7px;
923
- vertical-align: top;
924
- }
925
- .seek-time[data-seek-time] [data-duration] {
926
- display: inline-block;
927
- color: rgba(255, 255, 255, 0.5);
928
- font-size: 10px;
929
- padding-right: 7px;
930
- vertical-align: top;
931
1024
  }
932
- .seek-time[data-seek-time] [data-duration]::before {
933
- content: "|";
934
- margin-right: 7px;
935
- }@charset "UTF-8";
936
- .media-control-clips {
937
- display: flex;
938
- gap: 6px;
1025
+ .media-control-audiotracks li.current a {
1026
+ color: #f00;
939
1027
  }
940
- .media-control-clips .media-clip-text {
941
- text-overflow: ellipsis;
942
- white-space: nowrap;
943
- overflow: hidden;
944
- display: inline-block;
945
- text-overflow: ellipsis;
946
- color: white;
947
- cursor: default;
948
- line-height: var(--bottom-panel);
949
- position: relative;
1028
+ .media-control-audiotracks li:first-child a {
1029
+ border-bottom-left-radius: 4px;
1030
+ border-bottom-right-radius: 4px;
950
1031
  }
951
- .media-control-clips .media-clip-text::before {
952
- content: "•";
953
- padding-right: 6px;
1032
+ .media-control-audiotracks li:last-child a {
1033
+ border-top-left-radius: 4px;
1034
+ border-top-right-radius: 4px;
954
1035
  }
955
- .media-control-clips .media-clip-text {
956
- max-width: 100px;
1036
+
1037
+ @keyframes pulse {
1038
+ 0% {
1039
+ color: #fff;
1040
+ }
1041
+ 50% {
1042
+ color: #ff0101;
1043
+ }
1044
+ 100% {
1045
+ color: #B80000;
1046
+ }
957
1047
  }[data-player] {
958
1048
  --bottom-panel: 40px;
959
1049
  }
@@ -1534,252 +1624,137 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1534
1624
  white-space: nowrap;
1535
1625
  height: 30px;
1536
1626
  }
1537
- .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li a {
1538
- height: 30px;
1539
- padding: 5px 10px;
1540
- color: #fffffe;
1541
- }
1542
- .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li a:hover {
1543
- background-color: rgba(0, 0, 0, 0.4);
1544
- }
1545
- .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li.current a {
1546
- background-color: rgba(0, 0, 0, 0.4);
1547
- }
1548
- .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li:first-child a {
1549
- border-bottom-left-radius: 4px;
1550
- border-bottom-right-radius: 4px;
1551
- }
1552
- .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li:last-child a {
1553
- border-top-left-radius: 4px;
1554
- border-top-right-radius: 4px;
1555
- }
1556
- .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] {
1557
- height: 26px;
1558
- line-height: 26px;
1559
- bottom: 52px;
1560
- border-radius: 3px;
1561
- background-color: rgba(74, 74, 74, 0.7);
1562
- }
1563
- .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span {
1564
- letter-spacing: 0.8px;
1565
- font-size: 14px;
1566
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1567
- }
1568
- .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-seek-time] {
1569
- padding-left: 8px;
1570
- padding-right: 8px;
1571
- }
1572
- .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
1573
- display: none !important;
1574
- }.player-poster[data-poster] {
1575
- display: flex;
1576
- justify-content: center;
1577
- align-items: center;
1578
- position: absolute;
1579
- height: 100%;
1580
- width: 100%;
1581
- z-index: 998;
1582
- top: 0;
1583
- left: 0;
1584
- background-color: #000;
1585
- background-size: cover;
1586
- background-repeat: no-repeat;
1587
- background-position: 50% 50%;
1588
- }
1589
- .player-poster[data-poster].clickable {
1590
- cursor: pointer;
1591
- }
1592
- .player-poster[data-poster]:hover .play-wrapper[data-poster] {
1593
- opacity: 1;
1594
- }
1595
- .player-poster[data-poster] .play-wrapper[data-poster] {
1596
- width: 100%;
1597
- height: 25%;
1598
- margin: 0 auto;
1599
- opacity: 0.75;
1600
- transition: opacity 0.1s ease;
1601
- }
1602
- .player-poster[data-poster] .play-wrapper[data-poster] svg {
1603
- height: 100%;
1604
- display: inline;
1605
- }
1606
- .player-poster[data-poster] .play-wrapper[data-poster] svg path {
1607
- fill: #fff;
1608
- }.quality-levels li.disabled {
1609
- opacity: 0.5;
1610
- pointer-events: none;
1611
- }
1612
- .quality-levels li.current {
1613
- background-color: #000;
1614
- }*, :focus, :visited {
1615
- outline: none !important;
1616
- }
1617
-
1618
- .multicamera[data-multicamera] {
1619
- float: right;
1620
- margin-top: 4px;
1621
- position: relative;
1622
- margin-right: 20px;
1623
- width: 20px;
1624
- }
1625
- .multicamera[data-multicamera] button {
1626
- background-color: transparent;
1627
- color: #fff;
1628
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1629
- -webkit-font-smoothing: antialiased;
1630
- border: none;
1631
- font-size: 14px;
1632
- padding: 0;
1633
- }
1634
- .multicamera[data-multicamera] button svg {
1635
- height: 20px;
1636
- position: relative;
1637
- margin-top: 6px;
1638
- }
1639
- .multicamera[data-multicamera] button:hover {
1640
- color: #c9c9c9;
1641
- }
1642
- .multicamera[data-multicamera] button.changing {
1643
- animation: pulse 0.5s infinite alternate;
1644
- }
1645
- .multicamera[data-multicamera] button span.quality-arrow {
1646
- width: 9px;
1647
- height: 6px;
1648
- margin-top: 11px;
1649
- margin-left: 5px;
1650
- }
1651
- .multicamera[data-multicamera] > ul {
1652
- padding: 6px 0;
1653
- right: -24px;
1654
- width: 245px;
1655
- list-style-type: none;
1656
- position: absolute;
1657
- bottom: 48px;
1658
- border-radius: 4px;
1659
- display: none;
1660
- background-color: rgba(74, 74, 74, 0.9);
1661
- }
1662
- .multicamera[data-multicamera] > ul::after {
1663
- content: "";
1664
- position: absolute;
1665
- top: 100%;
1666
- left: 85%;
1667
- margin-left: -10px;
1668
- width: 0;
1669
- height: 0;
1670
- border-top: 10px solid rgba(74, 74, 74, 0.9);
1671
- border-right: 10px solid transparent;
1672
- border-left: 10px solid transparent;
1673
- }
1674
- .multicamera[data-multicamera] li {
1675
- font-size: 10px;
1676
- cursor: pointer;
1677
- }
1678
- .multicamera[data-multicamera] li .multicamera-item {
1679
- display: flex;
1680
- padding: 10px 0;
1681
- justify-content: center;
1682
- position: relative;
1683
- }
1684
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
1685
- pointer-events: none;
1686
- }
1687
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
1688
- opacity: 0.5;
1689
- }
1690
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
1691
- opacity: 0.5;
1627
+ .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li a {
1628
+ height: 30px;
1629
+ padding: 5px 10px;
1630
+ color: #fffffe;
1692
1631
  }
1693
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
1694
- background-color: rgba(0, 0, 0, 0);
1632
+ .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li a:hover {
1633
+ background-color: rgba(0, 0, 0, 0.4);
1695
1634
  }
1696
- .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
1697
- background-color: rgba(0, 0, 0, 0.3);
1635
+ .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li.current a {
1636
+ background-color: rgba(0, 0, 0, 0.4);
1698
1637
  }
1699
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
1700
- width: 80px;
1701
- height: 60px;
1638
+ .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li:first-child a {
1639
+ border-bottom-left-radius: 4px;
1640
+ border-bottom-right-radius: 4px;
1702
1641
  }
1703
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
1704
- width: 80px;
1705
- height: 60px;
1642
+ .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li:last-child a {
1643
+ border-top-left-radius: 4px;
1644
+ border-top-right-radius: 4px;
1706
1645
  }
1707
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
1708
- width: 120px;
1709
- text-align: left;
1710
- margin-left: 15px;
1646
+ .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] {
1647
+ height: 26px;
1648
+ line-height: 26px;
1649
+ bottom: 52px;
1650
+ border-radius: 3px;
1651
+ background-color: rgba(74, 74, 74, 0.7);
1711
1652
  }
1712
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1713
- width: 120px;
1714
- height: 20px;
1715
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1653
+ .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span {
1654
+ letter-spacing: 0.8px;
1716
1655
  font-size: 14px;
1717
- font-weight: normal;
1718
- font-style: normal;
1719
- font-stretch: normal;
1720
- line-height: 1.43;
1721
- letter-spacing: normal;
1722
- text-align: left;
1723
- color: #fff;
1724
- text-overflow: ellipsis;
1725
- overflow: hidden;
1656
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1726
1657
  }
1727
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1728
- opacity: 0.6;
1658
+ .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-seek-time] {
1659
+ padding-left: 8px;
1660
+ padding-right: 8px;
1729
1661
  }
1730
- .multicamera[data-multicamera] li[data-title] {
1731
- background-color: #c3c2c2;
1732
- padding: 5px;
1662
+ .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
1663
+ display: none !important;
1664
+ }.seek-time[data-seek-time] {
1665
+ position: absolute;
1666
+ white-space: nowrap;
1667
+ height: 20px;
1668
+ line-height: 20px;
1669
+ font-size: 0;
1670
+ left: -100%;
1671
+ bottom: 55px;
1672
+ background-color: rgba(2, 2, 2, 0.5);
1673
+ z-index: 9999;
1674
+ transition: opacity 0.1s ease;
1733
1675
  }
1734
- .multicamera[data-multicamera] li a {
1735
- color: #444;
1736
- padding: 2px 10px;
1737
- display: block;
1738
- text-decoration: none;
1676
+ .seek-time[data-seek-time].hidden[data-seek-time] {
1677
+ opacity: 0;
1739
1678
  }
1740
- .multicamera[data-multicamera] li a:hover {
1741
- background-color: #555;
1679
+ .seek-time[data-seek-time] [data-seek-time] {
1680
+ display: inline-block;
1742
1681
  color: white;
1682
+ font-size: 10px;
1683
+ padding-left: 7px;
1684
+ padding-right: 7px;
1685
+ vertical-align: top;
1743
1686
  }
1744
- .multicamera[data-multicamera] li a:hover a {
1687
+ .seek-time[data-seek-time] [data-duration] {
1688
+ display: inline-block;
1689
+ color: rgba(255, 255, 255, 0.5);
1690
+ font-size: 10px;
1691
+ padding-right: 7px;
1692
+ vertical-align: top;
1693
+ }
1694
+ .seek-time[data-seek-time] [data-duration]::before {
1695
+ content: "|";
1696
+ margin-right: 7px;
1697
+ }.scrub-thumbnails {
1698
+ position: absolute;
1699
+ bottom: 52px;
1700
+ width: 100%;
1701
+ transition: opacity 0.3s ease;
1702
+ }
1703
+ .scrub-thumbnails.hidden {
1704
+ opacity: 0;
1705
+ }
1706
+ .scrub-thumbnails .thumbnail-container {
1707
+ display: inline-block;
1708
+ position: relative;
1709
+ overflow: hidden;
1710
+ background-color: #000;
1711
+ }
1712
+ .scrub-thumbnails .thumbnail-container .thumbnail-img {
1713
+ position: absolute;
1714
+ width: auto;
1715
+ }
1716
+ .scrub-thumbnails .thumbnails-text {
1717
+ background-color: rgba(74, 74, 74, 0.7);
1718
+ border-radius: 3px;
1719
+ white-space: nowrap;
1720
+ overflow: hidden;
1721
+ text-overflow: ellipsis;
1745
1722
  color: white;
1746
- text-decoration: none;
1723
+ position: absolute;
1724
+ bottom: 23px;
1725
+ width: 100px;
1747
1726
  }
1748
- .multicamera[data-multicamera] li.current a {
1749
- color: #f00;
1727
+ .scrub-thumbnails .spotlight {
1728
+ background-color: #4a4a4a;
1729
+ overflow: hidden;
1730
+ position: absolute;
1731
+ bottom: 0;
1732
+ left: 0;
1733
+ border-color: #4a4a4a;
1734
+ border-style: solid;
1735
+ border-width: 3px;
1736
+ border-radius: 3px;
1750
1737
  }
1751
-
1752
- @keyframes pulse {
1753
- 0% {
1754
- color: #fff;
1755
- }
1756
- 50% {
1757
- color: #ff0101;
1758
- }
1759
- 100% {
1760
- color: #B80000;
1761
- }
1762
- }.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
1763
- height: 0;
1738
+ .scrub-thumbnails .spotlight img {
1739
+ width: auto;
1764
1740
  }
1765
-
1766
- .skip_time_plugin[data-skip-time] {
1741
+ .scrub-thumbnails .backdrop {
1767
1742
  position: absolute;
1768
- width: 100%;
1769
- height: calc(100% - 50px);
1770
- z-index: 9998;
1771
- background-color: transparent;
1772
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1743
+ left: 0;
1744
+ bottom: 0;
1745
+ right: 0;
1746
+ background-color: #000;
1747
+ overflow: hidden;
1773
1748
  }
1774
- .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
1775
- width: 100%;
1749
+ .scrub-thumbnails .backdrop .carousel {
1750
+ position: absolute;
1751
+ top: 0;
1752
+ left: 0;
1776
1753
  height: 100%;
1777
- display: flex;
1778
- justify-content: space-between;
1754
+ white-space: nowrap;
1779
1755
  }
1780
- .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
1781
- width: 33.3%;
1782
- height: 100%;
1756
+ .scrub-thumbnails .backdrop .carousel img {
1757
+ width: auto;
1783
1758
  }.spinner-three-bounce[data-spinner] {
1784
1759
  position: absolute;
1785
1760
  width: 70px;
@@ -1789,118 +1764,56 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1789
1764
  right: 0;
1790
1765
  margin: 0 auto;
1791
1766
  margin-left: auto;
1792
- margin-right: auto;
1793
- /* center vertically */
1794
- top: 50%;
1795
- transform: translateY(-50%);
1796
- }
1797
- .spinner-three-bounce[data-spinner] > div {
1798
- width: 18px;
1799
- height: 18px;
1800
- background-color: #FFF;
1801
- border-radius: 100%;
1802
- display: inline-block;
1803
- animation: bouncedelay 1.4s infinite ease-in-out;
1804
- /* Prevent first frame from flickering when animation starts */
1805
- animation-fill-mode: both;
1806
- }
1807
- .spinner-three-bounce[data-spinner] [data-bounce1] {
1808
- animation-delay: -0.32s;
1809
- }
1810
- .spinner-three-bounce[data-spinner] [data-bounce2] {
1811
- animation-delay: -0.16s;
1812
- }
1813
-
1814
- @keyframes bouncedelay {
1815
- 0%, 80%, 100% {
1816
- transform: scale(0);
1817
- }
1818
- 40% {
1819
- transform: scale(1);
1820
- }
1821
- }.share_plugin[data-share] {
1822
- pointer-events: auto;
1823
- z-index: 5;
1824
- font-family: Roboto, "Open Sans", Arial, sans-serif !important;
1825
- }
1826
- .share_plugin[data-share].share-hide .share-button-container {
1827
- right: -50px;
1828
- }
1829
- .share_plugin[data-share] .share-button-container {
1830
- cursor: pointer;
1831
- width: 36px;
1832
- height: 36px;
1833
- background-color: rgba(74, 74, 74, 0.6);
1834
- border-radius: 4px;
1835
- position: absolute;
1836
- right: 10px;
1837
- top: 10px;
1838
- padding-top: 6px;
1839
- transition: all 0.3s ease-out;
1840
- }
1841
- .share_plugin[data-share] .share-button-container button[data-share-button] {
1842
- background-color: transparent;
1843
- border: 0;
1844
- margin: 0 6px;
1845
- padding: 0;
1846
- cursor: pointer;
1847
- display: inline-block;
1848
- width: 19px;
1849
- height: 20px;
1850
- }
1851
- .share_plugin[data-share] .share-container {
1852
- pointer-events: auto;
1853
- position: absolute;
1854
- width: 280px;
1855
- background-color: white;
1856
- transform: translate(0, 50%);
1857
- transform: translate(-50%, -50%);
1858
- left: 50%;
1859
- /* margin-left: -140px; */
1860
- top: calc(50% - 20px);
1861
- /* margin-top: -170px; */
1862
- }
1863
- .share_plugin[data-share] .share-container .share-container-header {
1864
- text-align: left;
1865
- border-bottom: 1px solid rgba(155, 155, 155, 0.25);
1767
+ margin-right: auto;
1768
+ /* center vertically */
1769
+ top: 50%;
1770
+ transform: translateY(-50%);
1866
1771
  }
1867
- .share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
1772
+ .spinner-three-bounce[data-spinner] > div {
1773
+ width: 18px;
1774
+ height: 18px;
1775
+ background-color: #FFF;
1776
+ border-radius: 100%;
1868
1777
  display: inline-block;
1869
- font-size: 16px;
1870
- margin: 5px;
1778
+ animation: bouncedelay 1.4s infinite ease-in-out;
1779
+ /* Prevent first frame from flickering when animation starts */
1780
+ animation-fill-mode: both;
1871
1781
  }
1872
- .share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
1873
- display: inline-block;
1874
- width: 24px;
1875
- float: right;
1876
- margin: 5px;
1877
- cursor: pointer;
1782
+ .spinner-three-bounce[data-spinner] [data-bounce1] {
1783
+ animation-delay: -0.32s;
1878
1784
  }
1879
- .share_plugin[data-share] .share-container .share-container-main {
1880
- margin-bottom: 8px;
1785
+ .spinner-three-bounce[data-spinner] [data-bounce2] {
1786
+ animation-delay: -0.16s;
1881
1787
  }
1882
- .share_plugin[data-share] .share-container .share-container-main > div {
1883
- text-align: left;
1884
- font-size: 14px;
1885
- padding: 5px;
1788
+
1789
+ @keyframes bouncedelay {
1790
+ 0%, 80%, 100% {
1791
+ transform: scale(0);
1792
+ }
1793
+ 40% {
1794
+ transform: scale(1);
1795
+ }
1796
+ }.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
1797
+ height: 0;
1886
1798
  }
1887
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--link, .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
1888
- overflow: hidden;
1889
- text-overflow: ellipsis;
1890
- color: #818181;
1891
- border: solid 1px #d3d3d3;
1892
- width: calc(100% - 10px);
1893
- padding: 5px;
1799
+
1800
+ .skip_time_plugin[data-skip-time] {
1801
+ position: absolute;
1802
+ width: 100%;
1803
+ height: calc(100% - 50px);
1804
+ z-index: 9998;
1805
+ background-color: transparent;
1806
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1894
1807
  }
1895
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
1896
- max-height: 90px;
1897
- resize: none;
1808
+ .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
1809
+ width: 100%;
1810
+ height: 100%;
1811
+ display: flex;
1812
+ justify-content: space-between;
1898
1813
  }
1899
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
1900
- width: 32px;
1901
- display: inline-block;
1902
- margin-right: 5px;
1903
- cursor: pointer;
1814
+ .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
1815
+ width: 33.3%;
1816
+ height: 100%;
1904
1817
  }*,
1905
1818
  :focus,
1906
1819
  :visited {
@@ -1933,7 +1846,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1933
1846
  position: absolute;
1934
1847
  bottom: 25px;
1935
1848
  border: 1px solid black;
1936
- display: none;
1937
1849
  background-color: #e6e6e6;
1938
1850
  padding: 8px 0;
1939
1851
  }
@@ -1975,67 +1887,154 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1975
1887
  .ios-fullscreen::cue {
1976
1888
  visibility: visible !important;
1977
1889
  font-size: 1em !important;
1978
- }.scrub-thumbnails {
1979
- position: absolute;
1980
- bottom: 52px;
1981
- width: 100%;
1982
- transition: opacity 0.3s ease;
1890
+ }*, :focus, :visited {
1891
+ outline: none !important;
1983
1892
  }
1984
- .scrub-thumbnails.hidden {
1985
- opacity: 0;
1893
+
1894
+ .multicamera[data-multicamera] {
1895
+ float: right;
1896
+ margin-top: 4px;
1897
+ position: relative;
1898
+ margin-right: 20px;
1899
+ width: 20px;
1986
1900
  }
1987
- .scrub-thumbnails .thumbnail-container {
1988
- display: inline-block;
1901
+ .multicamera[data-multicamera] button {
1902
+ background-color: transparent;
1903
+ color: #fff;
1904
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1905
+ -webkit-font-smoothing: antialiased;
1906
+ border: none;
1907
+ font-size: 14px;
1908
+ padding: 0;
1909
+ }
1910
+ .multicamera[data-multicamera] button svg {
1911
+ height: 20px;
1989
1912
  position: relative;
1990
- overflow: hidden;
1991
- background-color: #000;
1913
+ margin-top: 6px;
1992
1914
  }
1993
- .scrub-thumbnails .thumbnail-container .thumbnail-img {
1994
- position: absolute;
1995
- width: auto;
1915
+ .multicamera[data-multicamera] button:hover {
1916
+ color: #c9c9c9;
1996
1917
  }
1997
- .scrub-thumbnails .thumbnails-text {
1998
- background-color: rgba(74, 74, 74, 0.7);
1999
- border-radius: 3px;
2000
- white-space: nowrap;
2001
- overflow: hidden;
2002
- text-overflow: ellipsis;
2003
- color: white;
1918
+ .multicamera[data-multicamera] button.changing {
1919
+ animation: pulse 0.5s infinite alternate;
1920
+ }
1921
+ .multicamera[data-multicamera] button span.quality-arrow {
1922
+ width: 9px;
1923
+ height: 6px;
1924
+ margin-top: 11px;
1925
+ margin-left: 5px;
1926
+ }
1927
+ .multicamera[data-multicamera] > ul {
1928
+ padding: 6px 0;
1929
+ right: -24px;
1930
+ width: 245px;
1931
+ list-style-type: none;
2004
1932
  position: absolute;
2005
- bottom: 23px;
2006
- width: 100px;
1933
+ bottom: 48px;
1934
+ border-radius: 4px;
1935
+ display: none;
1936
+ background-color: rgba(74, 74, 74, 0.9);
2007
1937
  }
2008
- .scrub-thumbnails .spotlight {
2009
- background-color: #4a4a4a;
2010
- overflow: hidden;
1938
+ .multicamera[data-multicamera] > ul::after {
1939
+ content: "";
2011
1940
  position: absolute;
2012
- bottom: 0;
2013
- left: 0;
2014
- border-color: #4a4a4a;
2015
- border-style: solid;
2016
- border-width: 3px;
2017
- border-radius: 3px;
1941
+ top: 100%;
1942
+ left: 85%;
1943
+ margin-left: -10px;
1944
+ width: 0;
1945
+ height: 0;
1946
+ border-top: 10px solid rgba(74, 74, 74, 0.9);
1947
+ border-right: 10px solid transparent;
1948
+ border-left: 10px solid transparent;
2018
1949
  }
2019
- .scrub-thumbnails .spotlight img {
2020
- width: auto;
1950
+ .multicamera[data-multicamera] li {
1951
+ font-size: 10px;
1952
+ cursor: pointer;
2021
1953
  }
2022
- .scrub-thumbnails .backdrop {
2023
- position: absolute;
2024
- left: 0;
2025
- bottom: 0;
2026
- right: 0;
2027
- background-color: #000;
1954
+ .multicamera[data-multicamera] li .multicamera-item {
1955
+ display: flex;
1956
+ padding: 10px 0;
1957
+ justify-content: center;
1958
+ position: relative;
1959
+ }
1960
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
1961
+ pointer-events: none;
1962
+ }
1963
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
1964
+ opacity: 0.5;
1965
+ }
1966
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
1967
+ opacity: 0.5;
1968
+ }
1969
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
1970
+ background-color: rgba(0, 0, 0, 0);
1971
+ }
1972
+ .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
1973
+ background-color: rgba(0, 0, 0, 0.3);
1974
+ }
1975
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
1976
+ width: 80px;
1977
+ height: 60px;
1978
+ }
1979
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
1980
+ width: 80px;
1981
+ height: 60px;
1982
+ }
1983
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
1984
+ width: 120px;
1985
+ text-align: left;
1986
+ margin-left: 15px;
1987
+ }
1988
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1989
+ width: 120px;
1990
+ height: 20px;
1991
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1992
+ font-size: 14px;
1993
+ font-weight: normal;
1994
+ font-style: normal;
1995
+ font-stretch: normal;
1996
+ line-height: 1.43;
1997
+ letter-spacing: normal;
1998
+ text-align: left;
1999
+ color: #fff;
2000
+ text-overflow: ellipsis;
2028
2001
  overflow: hidden;
2029
2002
  }
2030
- .scrub-thumbnails .backdrop .carousel {
2031
- position: absolute;
2032
- top: 0;
2033
- left: 0;
2034
- height: 100%;
2035
- white-space: nowrap;
2003
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
2004
+ opacity: 0.6;
2036
2005
  }
2037
- .scrub-thumbnails .backdrop .carousel img {
2038
- width: auto;
2006
+ .multicamera[data-multicamera] li[data-title] {
2007
+ background-color: #c3c2c2;
2008
+ padding: 5px;
2009
+ }
2010
+ .multicamera[data-multicamera] li a {
2011
+ color: #444;
2012
+ padding: 2px 10px;
2013
+ display: block;
2014
+ text-decoration: none;
2015
+ }
2016
+ .multicamera[data-multicamera] li a:hover {
2017
+ background-color: #555;
2018
+ color: white;
2019
+ }
2020
+ .multicamera[data-multicamera] li a:hover a {
2021
+ color: white;
2022
+ text-decoration: none;
2023
+ }
2024
+ .multicamera[data-multicamera] li.current a {
2025
+ color: #f00;
2026
+ }
2027
+
2028
+ @keyframes pulse {
2029
+ 0% {
2030
+ color: #fff;
2031
+ }
2032
+ 50% {
2033
+ color: #ff0101;
2034
+ }
2035
+ 100% {
2036
+ color: #B80000;
2037
+ }
2039
2038
  }.player-logo[data-logo] {
2040
2039
  position: absolute;
2041
2040
  z-index: 2;