@gcorevideo/player 2.23.2 → 2.24.0

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 (38) hide show
  1. package/dist/core.js +1 -1
  2. package/dist/index.css +747 -747
  3. package/dist/index.js +149 -18
  4. package/dist/player.d.ts +6 -3
  5. package/lib/index.plugins.d.ts +1 -0
  6. package/lib/index.plugins.d.ts.map +1 -1
  7. package/lib/index.plugins.js +1 -0
  8. package/lib/plugins/big-mute-button/BigMuteButton.d.ts +1 -1
  9. package/lib/plugins/big-mute-button/BigMuteButton.d.ts.map +1 -1
  10. package/lib/plugins/big-mute-button/BigMuteButton.js +3 -2
  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 +15 -8
  14. package/lib/plugins/cmcd-config/CmcdConfig.d.ts +45 -0
  15. package/lib/plugins/cmcd-config/CmcdConfig.d.ts.map +1 -0
  16. package/lib/plugins/cmcd-config/CmcdConfig.js +114 -0
  17. package/lib/plugins/cmcd-config/utils.d.ts +3 -0
  18. package/lib/plugins/cmcd-config/utils.d.ts.map +1 -0
  19. package/lib/plugins/cmcd-config/utils.js +12 -0
  20. package/lib/plugins/thumbnails/Thumbnails.d.ts.map +1 -1
  21. package/lib/plugins/thumbnails/Thumbnails.js +3 -6
  22. package/lib/testUtils.d.ts +5 -1
  23. package/lib/testUtils.d.ts.map +1 -1
  24. package/lib/testUtils.js +6 -2
  25. package/package.json +1 -1
  26. package/src/index.plugins.ts +1 -0
  27. package/src/plugins/big-mute-button/BigMuteButton.ts +3 -2
  28. package/src/plugins/bottom-gear/BottomGear.ts +17 -14
  29. package/src/plugins/bottom-gear/__tests__/BottomGear.test.ts +51 -14
  30. package/src/plugins/cmcd-config/CmcdConfig.ts +148 -0
  31. package/src/plugins/cmcd-config/__tests__/CmcdConfig.test.ts +162 -0
  32. package/src/plugins/cmcd-config/utils.ts +13 -0
  33. package/src/plugins/media-control/__tests__/MediaControl.test.ts +4 -3
  34. package/src/plugins/thumbnails/Thumbnails.ts +3 -6
  35. package/src/plugins/thumbnails/__tests__/Thumbnails.test.ts +20 -3
  36. package/src/plugins/thumbnails/__tests__/__snapshots__/Thumbnails.test.ts.snap +1 -1
  37. package/src/testUtils.ts +6 -2
  38. package/tsconfig.tsbuildinfo +1 -1
package/dist/index.css CHANGED
@@ -122,6 +122,28 @@
122
122
  .gplayer-lite-btn::-moz-focus-inner {
123
123
  border: 0;
124
124
  padding: 0;
125
+ }@charset "UTF-8";
126
+ .media-control-clips {
127
+ display: flex;
128
+ gap: 6px;
129
+ }
130
+ .media-control-clips .media-clip-text {
131
+ text-overflow: ellipsis;
132
+ white-space: nowrap;
133
+ overflow: hidden;
134
+ display: inline-block;
135
+ text-overflow: ellipsis;
136
+ color: white;
137
+ cursor: default;
138
+ line-height: var(--bottom-panel);
139
+ position: relative;
140
+ }
141
+ .media-control-clips .media-clip-text::before {
142
+ content: "•";
143
+ padding-right: 6px;
144
+ }
145
+ .media-control-clips .media-clip-text {
146
+ max-width: 100px;
125
147
  }*,
126
148
  :focus,
127
149
  :visited {
@@ -222,136 +244,377 @@
222
244
  100% {
223
245
  color: #B80000;
224
246
  }
225
- }:root {
226
- --primary-background-color: #000;
227
- --secondary-background-color: #262626;
228
- --primary-text-color: #fff;
229
- --secondary-text-color: #fff4f2;
230
- --hover-text-color: #f9b090;
231
- --speedtest-red: #df564d;
232
- --speedtest-orange: #df934d;
233
- --speedtest-yellow: #dfd04d;
234
- --speedtest-light-green: #c2df4d;
235
- --speedtest-green: #73df4d;
247
+ }.dvr-controls[data-dvr] {
248
+ display: inline-block;
249
+ color: var(--player-dvr-color);
250
+ line-height: 32px;
251
+ font-size: 10px;
252
+ font-weight: bold;
253
+ margin-left: 6px;
254
+ height: 40px;
255
+ line-height: 40px;
256
+ margin-left: 0;
236
257
  }
237
-
238
- .clappr-nerd-stats {
258
+ .dvr-controls[data-dvr] .live-info {
239
259
  cursor: default;
260
+ text-transform: uppercase;
240
261
  }
241
- .clappr-nerd-stats .stats-box {
242
- position: absolute;
262
+ .dvr-controls[data-dvr] .live-info:before {
263
+ content: "";
243
264
  display: inline-block;
244
- bottom: 52px;
245
- right: 0;
246
- top: 0;
247
- left: 0;
248
- bottom: 0;
249
- padding: 0 10px 12px;
250
- margin: 0;
251
- line-height: 20px;
252
- font-size: 12px;
253
- font-weight: 500;
254
- background: var(--primary-background-color);
255
- color: #fff;
256
- z-index: 20000;
257
- overflow: auto;
258
- max-width: 100%;
259
- }
260
- .clappr-nerd-stats .stats-box-top {
261
- position: absolute;
262
- top: 0;
263
- left: 0;
264
- z-index: 9999;
265
- width: 100%;
266
- height: 32px;
267
- background: var(--primary-background-color);
265
+ position: relative;
266
+ width: 7px;
267
+ height: 7px;
268
+ border-radius: 3.5px;
269
+ margin-right: 3.5px;
270
+ background-color: var(--player-live-color);
268
271
  }
269
- .clappr-nerd-stats .stats-box-top .close-button {
270
- position: absolute;
271
- right: 12px;
272
- top: 10px;
273
- display: block;
274
- width: 12px;
275
- height: 12px;
272
+ .dvr-controls[data-dvr] .live-info.disabled {
273
+ opacity: 0.3;
276
274
  }
277
- .clappr-nerd-stats .stats-box-top .close-button svg path {
278
- fill: var(--primary-text-color);
275
+ .dvr-controls[data-dvr] .live-info.disabled:before {
276
+ background-color: var(--player-dvr-color);
279
277
  }
280
- .clappr-nerd-stats .stats-box-top .close-button:hover svg path {
281
- fill: var(--hover-text-color);
278
+ .dvr-controls[data-dvr] .live-button {
279
+ cursor: pointer;
280
+ outline: none;
281
+ display: none;
282
+ border: 0;
283
+ color: var(--player-dvr-color);
284
+ background-color: transparent;
285
+ height: 32px;
286
+ padding: 0;
287
+ opacity: 0.7;
288
+ text-transform: uppercase;
289
+ transition: all 0.1s ease;
282
290
  }
283
- .clappr-nerd-stats .stats-box-main {
284
- overflow: hidden;
285
- margin-top: 44px;
286
- display: flex;
287
- flex-wrap: wrap;
291
+ .dvr-controls[data-dvr] .live-button:before {
292
+ content: "";
293
+ display: inline-block;
294
+ position: relative;
295
+ width: 7px;
296
+ height: 7px;
297
+ border-radius: 3.5px;
298
+ margin-right: 3.5px;
299
+ background-color: var(--player-dvr-color);
288
300
  }
289
- .clappr-nerd-stats .stats-box-main ul {
290
- flex: 0 1 1fr;
291
- min-width: 200px;
301
+ .dvr-controls[data-dvr] .live-button:hover {
302
+ opacity: 1;
303
+ text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
292
304
  }
293
- .clappr-nerd-stats .stats-box.wide {
294
- width: 820px;
305
+ .dvr-controls[data-dvr] .live-info {
306
+ font-size: 14px;
307
+ letter-spacing: 0.8px;
308
+ font-weight: 500;
309
+ color: #fffffe;
310
+ margin-left: 21px;
295
311
  }
296
- .clappr-nerd-stats .stats-box ul, .clappr-nerd-stats .stats-box li {
297
- list-style-type: none;
312
+ .dvr-controls[data-dvr] .live-info::before {
313
+ width: 10px;
314
+ height: 10px;
315
+ border-radius: 50%;
316
+ margin-right: 8px;
317
+ background-color: #ed4f4a;
298
318
  }
299
- .clappr-nerd-stats .stats-box ul div, .clappr-nerd-stats .stats-box li div {
300
- padding-left: 2px;
301
- padding-right: 2px;
302
- background: var(--primary-background-color);
303
- gap: 10px;
319
+ .dvr-controls[data-dvr] .live-button {
320
+ height: 40px;
321
+ opacity: 1;
322
+ font-size: 14px;
323
+ letter-spacing: 0.8px;
324
+ font-weight: 500;
325
+ margin-left: 20px;
304
326
  }
305
- .clappr-nerd-stats .stats-box ul {
306
- padding: 5px;
307
- width: 200px;
308
- flex: 0 1 50%;
327
+ .dvr-controls[data-dvr] .live-button::before {
328
+ width: 10px;
329
+ height: 10px;
330
+ border-radius: 50%;
331
+ margin-right: 8px;
332
+ background-color: #cacaca;
333
+ }.big-mute-icon-wrapper[data-big-mute] {
334
+ position: absolute;
335
+ z-index: 9998;
336
+ background-color: transparent;
337
+ display: flex;
338
+ justify-content: center;
339
+ width: 100%;
340
+ height: calc(100% - 50px);
341
+ margin: 0 auto;
342
+ opacity: 0.75;
343
+ transition: opacity 0.1s ease;
344
+ pointer-events: auto;
309
345
  }
310
- .clappr-nerd-stats .stats-box ul li {
311
- position: relative;
312
- padding: 0 5px;
313
- text-align: left;
346
+ .big-mute-icon-wrapper[data-big-mute].hide {
347
+ display: none;
314
348
  }
315
- .clappr-nerd-stats .stats-box ul li.canvas-wrapper {
316
- padding: 0;
349
+ .big-mute-icon-wrapper[data-big-mute]:hover {
350
+ cursor: pointer;
317
351
  }
318
- .clappr-nerd-stats .stats-box ul li.canvas-wrapper canvas {
319
- width: 100%;
352
+
353
+ .big-mute-icon[data-big-mute-icon] {
354
+ display: flex;
355
+ align-items: center;
356
+ justify-content: center;
357
+ align-self: center;
358
+ width: 120px;
359
+ height: 120px;
360
+ border: 2px solid white;
361
+ border-radius: 50%;
362
+ filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
363
+ filter: alpha(opacity=60);
364
+ opacity: 1;
365
+ box-shadow: 0 0 1px 0 white;
366
+ background: rgba(240, 243, 247, 0.9411764706);
367
+ z-index: 10000;
320
368
  }
321
- .clappr-nerd-stats .stats-box ul li:nth-child(2n) {
322
- background: var(--secondary-background-color);
369
+ .big-mute-icon[data-big-mute-icon] svg {
370
+ margin-left: 5px;
371
+ width: 80px;
372
+ height: 80px;
323
373
  }
324
- .clappr-nerd-stats .stats-box ul li:nth-child(2n) div {
325
- background: var(--secondary-background-color);
374
+ .big-mute-icon[data-big-mute-icon] svg path {
375
+ fill: #1f1e1e !important;
326
376
  }
327
- .clappr-nerd-stats .stats-box ul li.title {
328
- text-align: center;
329
- font-weight: bold;
330
- padding-bottom: 4px;
331
- font-size: 14px;
377
+ .big-mute-icon[data-big-mute-icon]:hover {
378
+ background: rgba(240, 243, 247, 0.8784313725);
332
379
  }
333
- .clappr-nerd-stats .stats-box ul li div {
334
- margin: 0;
335
- position: absolute;
336
- right: 0;
337
- top: 0;
380
+ .big-mute-icon[data-big-mute-icon]:hover svg path {
381
+ fill: #151515 !important;
382
+ }*, :focus, :visited {
383
+ outline: none !important;
338
384
  }
339
385
 
340
- .desktop .clappr-nerd-stats .stats-box.narrow {
341
- width: 250px;
342
- }
343
- .desktop .clappr-nerd-stats .stats-box.narrow ul {
386
+ .gear-wrapper .go-back {
387
+ font-weight: 600;
388
+ font-size: 14px;
389
+ line-height: 20px;
344
390
  width: 100%;
391
+ text-align: left;
392
+ padding: 12px;
345
393
  }
346
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary {
347
- padding: 0 5px;
348
- height: auto;
394
+ .gear-wrapper .go-back .arrow-left-icon {
395
+ float: left;
396
+ padding-top: 2px;
397
+ padding-right: 2px;
349
398
  }
350
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block {
351
- width: 100%;
352
- flex-direction: column;
399
+ .gear-wrapper .go-back .arrow-left-icon svg {
400
+ height: 16px;
353
401
  }
354
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock {
402
+ .gear-wrapper ul.gear-sub-menu {
403
+ width: 100%;
404
+ list-style-type: none;
405
+ min-width: 60px;
406
+ border-top: 2px solid rgb(36, 36, 36);
407
+ }
408
+ .gear-wrapper ul.gear-sub-menu li {
409
+ font-size: 12px;
410
+ text-align: left;
411
+ }
412
+ .gear-wrapper ul.gear-sub-menu li[data-title] {
413
+ background-color: #c3c2c2;
414
+ padding: 5px;
415
+ }
416
+ .gear-wrapper ul.gear-sub-menu li a {
417
+ display: block;
418
+ text-decoration: none;
419
+ height: 32px;
420
+ padding: 5px 10px;
421
+ line-height: 22px;
422
+ color: #fffffe;
423
+ }
424
+ .gear-wrapper ul.gear-sub-menu li a:hover {
425
+ color: white;
426
+ background-color: rgba(0, 0, 0, 0.4);
427
+ }
428
+ .gear-wrapper ul.gear-sub-menu li a:hover a {
429
+ color: white;
430
+ text-decoration: none;
431
+ }
432
+ .gear-wrapper ul.gear-sub-menu li a .check-icon {
433
+ width: 30px;
434
+ height: 20px;
435
+ float: left;
436
+ display: block;
437
+ }
438
+ .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
439
+ display: none;
440
+ }
441
+ .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
442
+ display: inline;
443
+ }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
444
+ order: 99;
445
+ height: 20px;
446
+ }
447
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
448
+ position: absolute;
449
+ right: 16px;
450
+ bottom: 52px;
451
+ width: 250px;
452
+ min-height: 48px;
453
+ z-index: 9999;
454
+ border-radius: 4px;
455
+ }
456
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
457
+ padding: 8px 0;
458
+ }
459
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
460
+ margin: 0;
461
+ text-align: left;
462
+ line-height: 22px;
463
+ padding: 5px 14px;
464
+ width: 250px;
465
+ font-size: 12px;
466
+ display: flex;
467
+ align-items: center;
468
+ justify-content: flex-start;
469
+ gap: 8px;
470
+ }
471
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
472
+ flex: 24px 0 0;
473
+ height: 24px;
474
+ }
475
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
476
+ visibility: hidden;
477
+ display: inline-block;
478
+ }
479
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
480
+ flex: 0 1 100%;
481
+ }
482
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
483
+ flex: 0 0 14px;
484
+ height: 24px;
485
+ }
486
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
487
+ flex: 1 0 auto;
488
+ }:root {
489
+ --primary-background-color: #000;
490
+ --secondary-background-color: #262626;
491
+ --primary-text-color: #fff;
492
+ --secondary-text-color: #fff4f2;
493
+ --hover-text-color: #f9b090;
494
+ --speedtest-red: #df564d;
495
+ --speedtest-orange: #df934d;
496
+ --speedtest-yellow: #dfd04d;
497
+ --speedtest-light-green: #c2df4d;
498
+ --speedtest-green: #73df4d;
499
+ }
500
+
501
+ .clappr-nerd-stats {
502
+ cursor: default;
503
+ }
504
+ .clappr-nerd-stats .stats-box {
505
+ position: absolute;
506
+ display: inline-block;
507
+ bottom: 52px;
508
+ right: 0;
509
+ top: 0;
510
+ left: 0;
511
+ bottom: 0;
512
+ padding: 0 10px 12px;
513
+ margin: 0;
514
+ line-height: 20px;
515
+ font-size: 12px;
516
+ font-weight: 500;
517
+ background: var(--primary-background-color);
518
+ color: #fff;
519
+ z-index: 20000;
520
+ overflow: auto;
521
+ max-width: 100%;
522
+ }
523
+ .clappr-nerd-stats .stats-box-top {
524
+ position: absolute;
525
+ top: 0;
526
+ left: 0;
527
+ z-index: 9999;
528
+ width: 100%;
529
+ height: 32px;
530
+ background: var(--primary-background-color);
531
+ }
532
+ .clappr-nerd-stats .stats-box-top .close-button {
533
+ position: absolute;
534
+ right: 12px;
535
+ top: 10px;
536
+ display: block;
537
+ width: 12px;
538
+ height: 12px;
539
+ }
540
+ .clappr-nerd-stats .stats-box-top .close-button svg path {
541
+ fill: var(--primary-text-color);
542
+ }
543
+ .clappr-nerd-stats .stats-box-top .close-button:hover svg path {
544
+ fill: var(--hover-text-color);
545
+ }
546
+ .clappr-nerd-stats .stats-box-main {
547
+ overflow: hidden;
548
+ margin-top: 44px;
549
+ display: flex;
550
+ flex-wrap: wrap;
551
+ }
552
+ .clappr-nerd-stats .stats-box-main ul {
553
+ flex: 0 1 1fr;
554
+ min-width: 200px;
555
+ }
556
+ .clappr-nerd-stats .stats-box.wide {
557
+ width: 820px;
558
+ }
559
+ .clappr-nerd-stats .stats-box ul, .clappr-nerd-stats .stats-box li {
560
+ list-style-type: none;
561
+ }
562
+ .clappr-nerd-stats .stats-box ul div, .clappr-nerd-stats .stats-box li div {
563
+ padding-left: 2px;
564
+ padding-right: 2px;
565
+ background: var(--primary-background-color);
566
+ gap: 10px;
567
+ }
568
+ .clappr-nerd-stats .stats-box ul {
569
+ padding: 5px;
570
+ width: 200px;
571
+ flex: 0 1 50%;
572
+ }
573
+ .clappr-nerd-stats .stats-box ul li {
574
+ position: relative;
575
+ padding: 0 5px;
576
+ text-align: left;
577
+ }
578
+ .clappr-nerd-stats .stats-box ul li.canvas-wrapper {
579
+ padding: 0;
580
+ }
581
+ .clappr-nerd-stats .stats-box ul li.canvas-wrapper canvas {
582
+ width: 100%;
583
+ }
584
+ .clappr-nerd-stats .stats-box ul li:nth-child(2n) {
585
+ background: var(--secondary-background-color);
586
+ }
587
+ .clappr-nerd-stats .stats-box ul li:nth-child(2n) div {
588
+ background: var(--secondary-background-color);
589
+ }
590
+ .clappr-nerd-stats .stats-box ul li.title {
591
+ text-align: center;
592
+ font-weight: bold;
593
+ padding-bottom: 4px;
594
+ font-size: 14px;
595
+ }
596
+ .clappr-nerd-stats .stats-box ul li div {
597
+ margin: 0;
598
+ position: absolute;
599
+ right: 0;
600
+ top: 0;
601
+ }
602
+
603
+ .desktop .clappr-nerd-stats .stats-box.narrow {
604
+ width: 250px;
605
+ }
606
+ .desktop .clappr-nerd-stats .stats-box.narrow ul {
607
+ width: 100%;
608
+ }
609
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary {
610
+ padding: 0 5px;
611
+ height: auto;
612
+ }
613
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block {
614
+ width: 100%;
615
+ flex-direction: column;
616
+ }
617
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock {
355
618
  width: 100%;
356
619
  }
357
620
  .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock-content {
@@ -586,6 +849,40 @@
586
849
  .fullscreen .clappr-nerd-stats .stats-box {
587
850
  top: unset;
588
851
  }
852
+ }.player-poster {
853
+ display: flex;
854
+ justify-content: center;
855
+ align-items: center;
856
+ position: absolute;
857
+ height: 100%;
858
+ width: 100%;
859
+ z-index: 998;
860
+ top: 0;
861
+ left: 0;
862
+ background-color: #000;
863
+ background-size: cover;
864
+ background-repeat: no-repeat;
865
+ background-position: 50% 50%;
866
+ }
867
+ .player-poster.clickable {
868
+ cursor: pointer;
869
+ }
870
+ .player-poster:hover .play-wrapper {
871
+ opacity: 1;
872
+ }
873
+ .player-poster .play-wrapper {
874
+ width: 100%;
875
+ height: 25%;
876
+ margin: 0 auto;
877
+ opacity: 0.75;
878
+ transition: opacity 0.1s ease;
879
+ }
880
+ .player-poster .play-wrapper svg {
881
+ height: 100%;
882
+ display: inline;
883
+ }
884
+ .player-poster .play-wrapper svg path {
885
+ fill: #fff;
589
886
  }.context-menu {
590
887
  z-index: 999;
591
888
  position: absolute;
@@ -622,207 +919,339 @@
622
919
  .context-menu .context-menu-list-item_icon {
623
920
  width: 20px;
624
921
  height: 20px;
625
- }div.player-error-screen, [data-player] div.player-error-screen {
626
- color: #CCCACA;
627
- position: absolute;
628
- top: 0;
629
- height: 100%;
630
- width: 100%;
631
- background-color: rgba(0, 0, 0, 0.7);
632
- z-index: 2000;
922
+ }.media-control-pip {
923
+ order: 95;
633
924
  display: flex;
634
- flex-direction: column;
635
- justify-content: center;
636
- }
637
- div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
638
- font-size: 14px;
639
- color: #CCCACA;
640
- margin-top: 45px;
641
925
  }
642
- div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
643
- font-weight: bold;
644
- line-height: 30px;
645
- font-size: 18px;
926
+ .media-control-pip button {
927
+ height: 20px;
646
928
  }
647
- div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
648
- width: 90%;
929
+ .media-control-pip button svg {
930
+ height: 20px;
931
+ }.spinner-three-bounce[data-spinner] {
932
+ position: absolute;
933
+ width: 70px;
934
+ text-align: center;
935
+ z-index: 999;
936
+ left: 0;
937
+ right: 0;
649
938
  margin: 0 auto;
939
+ margin-left: auto;
940
+ margin-right: auto;
941
+ /* center vertically */
942
+ top: 50%;
943
+ transform: translateY(-50%);
650
944
  }
651
- div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
652
- font-size: 13px;
653
- margin-top: 15px;
654
- }
655
- div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
656
- cursor: pointer;
657
- width: 30px;
658
- margin: 15px auto 0;
659
- }.dvr-controls[data-dvr] {
660
- display: inline-block;
661
- color: var(--player-dvr-color);
662
- line-height: 32px;
663
- font-size: 10px;
664
- font-weight: bold;
665
- margin-left: 6px;
666
- height: 40px;
667
- line-height: 40px;
668
- margin-left: 0;
669
- }
670
- .dvr-controls[data-dvr] .live-info {
671
- cursor: default;
672
- text-transform: uppercase;
673
- }
674
- .dvr-controls[data-dvr] .live-info:before {
675
- content: "";
676
- display: inline-block;
677
- position: relative;
678
- width: 7px;
679
- height: 7px;
680
- border-radius: 3.5px;
681
- margin-right: 3.5px;
682
- background-color: var(--player-live-color);
683
- }
684
- .dvr-controls[data-dvr] .live-info.disabled {
685
- opacity: 0.3;
686
- }
687
- .dvr-controls[data-dvr] .live-info.disabled:before {
688
- background-color: var(--player-dvr-color);
689
- }
690
- .dvr-controls[data-dvr] .live-button {
691
- cursor: pointer;
692
- outline: none;
693
- display: none;
694
- border: 0;
695
- color: var(--player-dvr-color);
696
- background-color: transparent;
697
- height: 32px;
698
- padding: 0;
699
- opacity: 0.7;
700
- text-transform: uppercase;
701
- transition: all 0.1s ease;
702
- }
703
- .dvr-controls[data-dvr] .live-button:before {
704
- content: "";
945
+ .spinner-three-bounce[data-spinner] > div {
946
+ width: 18px;
947
+ height: 18px;
948
+ background-color: #FFF;
949
+ border-radius: 100%;
705
950
  display: inline-block;
706
- position: relative;
707
- width: 7px;
708
- height: 7px;
709
- border-radius: 3.5px;
710
- margin-right: 3.5px;
711
- background-color: var(--player-dvr-color);
712
- }
713
- .dvr-controls[data-dvr] .live-button:hover {
714
- opacity: 1;
715
- text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
716
- }
717
- .dvr-controls[data-dvr] .live-info {
718
- font-size: 14px;
719
- letter-spacing: 0.8px;
720
- font-weight: 500;
721
- color: #fffffe;
722
- margin-left: 21px;
951
+ animation: bouncedelay 1.4s infinite ease-in-out;
952
+ /* Prevent first frame from flickering when animation starts */
953
+ animation-fill-mode: both;
723
954
  }
724
- .dvr-controls[data-dvr] .live-info::before {
725
- width: 10px;
726
- height: 10px;
727
- border-radius: 50%;
728
- margin-right: 8px;
729
- background-color: #ed4f4a;
955
+ .spinner-three-bounce[data-spinner] [data-bounce1] {
956
+ animation-delay: -0.32s;
730
957
  }
731
- .dvr-controls[data-dvr] .live-button {
732
- height: 40px;
733
- opacity: 1;
734
- font-size: 14px;
735
- letter-spacing: 0.8px;
736
- font-weight: 500;
737
- margin-left: 20px;
958
+ .spinner-three-bounce[data-spinner] [data-bounce2] {
959
+ animation-delay: -0.16s;
738
960
  }
739
- .dvr-controls[data-dvr] .live-button::before {
740
- width: 10px;
741
- height: 10px;
742
- border-radius: 50%;
743
- margin-right: 8px;
744
- background-color: #cacaca;
745
- }*,
746
- :focus,
747
- :visited {
961
+
962
+ @keyframes bouncedelay {
963
+ 0%, 80%, 100% {
964
+ transform: scale(0);
965
+ }
966
+ 40% {
967
+ transform: scale(1);
968
+ }
969
+ }*, :focus, :visited {
748
970
  outline: none !important;
749
971
  }
750
972
 
751
- .media-control-cc[data-cc] {
973
+ .multicamera[data-multicamera] {
974
+ float: right;
975
+ margin-top: 4px;
752
976
  position: relative;
753
- order: 85;
977
+ margin-right: 20px;
978
+ width: 20px;
754
979
  }
755
- .media-control-cc[data-cc] button {
980
+ .multicamera[data-multicamera] button {
756
981
  background-color: transparent;
757
982
  color: #fff;
983
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
758
984
  -webkit-font-smoothing: antialiased;
759
985
  border: none;
760
- cursor: pointer;
986
+ font-size: 14px;
987
+ padding: 0;
761
988
  }
762
- .media-control-cc[data-cc] button .cc-text svg {
763
- fill: white;
989
+ .multicamera[data-multicamera] button svg {
990
+ height: 20px;
991
+ position: relative;
992
+ margin-top: 6px;
764
993
  }
765
- .media-control-cc[data-cc] button:hover {
994
+ .multicamera[data-multicamera] button:hover {
766
995
  color: #c9c9c9;
767
996
  }
768
- .media-control-cc[data-cc] button.changing {
997
+ .multicamera[data-multicamera] button.changing {
769
998
  animation: pulse 0.5s infinite alternate;
770
999
  }
771
- .media-control-cc[data-cc] ul {
772
- width: 80px;
1000
+ .multicamera[data-multicamera] button span.quality-arrow {
1001
+ width: 9px;
1002
+ height: 6px;
1003
+ margin-top: 11px;
1004
+ margin-left: 5px;
1005
+ }
1006
+ .multicamera[data-multicamera] > ul {
1007
+ padding: 6px 0;
1008
+ right: -24px;
1009
+ width: 245px;
773
1010
  list-style-type: none;
774
1011
  position: absolute;
775
- bottom: 25px;
776
- border: 1px solid black;
777
- background-color: #e6e6e6;
778
- padding: 8px 0;
1012
+ bottom: 48px;
1013
+ border-radius: 4px;
1014
+ display: none;
1015
+ background-color: rgba(74, 74, 74, 0.9);
779
1016
  }
780
- .media-control-cc[data-cc] li a {
781
- color: #444;
782
- padding: 2px 10px;
783
- display: block;
784
- text-decoration: none;
1017
+ .multicamera[data-multicamera] > ul::after {
1018
+ content: "";
1019
+ position: absolute;
1020
+ top: 100%;
1021
+ left: 85%;
1022
+ margin-left: -10px;
1023
+ width: 0;
1024
+ height: 0;
1025
+ border-top: 10px solid rgba(74, 74, 74, 0.9);
1026
+ border-right: 10px solid transparent;
1027
+ border-left: 10px solid transparent;
785
1028
  }
786
- .media-control-cc[data-cc] li a:hover {
787
- background-color: #555;
788
- color: white;
1029
+ .multicamera[data-multicamera] li {
1030
+ font-size: 10px;
1031
+ cursor: pointer;
789
1032
  }
790
- .media-control-cc[data-cc] li a:hover a {
791
- color: white;
792
- text-decoration: none;
1033
+ .multicamera[data-multicamera] li .multicamera-item {
1034
+ display: flex;
1035
+ padding: 10px 0;
1036
+ justify-content: center;
1037
+ position: relative;
793
1038
  }
794
- .media-control-cc[data-cc] li.current a {
795
- color: #f00;
796
- background-color: #555;
1039
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
1040
+ pointer-events: none;
797
1041
  }
798
-
799
- @keyframes pulse {
800
- 0% {
801
- color: #fff;
802
- }
803
- 50% {
804
- color: #ff0101;
805
- }
806
- 100% {
807
- color: #B80000;
808
- }
1042
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
1043
+ opacity: 0.5;
809
1044
  }
810
- ::cue {
811
- visibility: hidden !important;
812
- font-size: 0 !important;
1045
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
1046
+ opacity: 0.5;
813
1047
  }
814
-
815
- .ios-fullscreen::cue {
816
- visibility: visible !important;
817
- font-size: 1em !important;
818
- }[data-player] {
819
- --bottom-panel: 40px;
1048
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
1049
+ background-color: rgba(0, 0, 0, 0);
820
1050
  }
821
-
822
- .container .media-control-notransition {
823
- transition: none !important;
1051
+ .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
1052
+ background-color: rgba(0, 0, 0, 0.3);
824
1053
  }
825
- .container .player-poster .play-wrapper {
1054
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
1055
+ width: 80px;
1056
+ height: 60px;
1057
+ }
1058
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
1059
+ width: 80px;
1060
+ height: 60px;
1061
+ }
1062
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
1063
+ width: 120px;
1064
+ text-align: left;
1065
+ margin-left: 15px;
1066
+ }
1067
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1068
+ width: 120px;
1069
+ height: 20px;
1070
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1071
+ font-size: 14px;
1072
+ font-weight: normal;
1073
+ font-style: normal;
1074
+ font-stretch: normal;
1075
+ line-height: 1.43;
1076
+ letter-spacing: normal;
1077
+ text-align: left;
1078
+ color: #fff;
1079
+ text-overflow: ellipsis;
1080
+ overflow: hidden;
1081
+ }
1082
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1083
+ opacity: 0.6;
1084
+ }
1085
+ .multicamera[data-multicamera] li[data-title] {
1086
+ background-color: #c3c2c2;
1087
+ padding: 5px;
1088
+ }
1089
+ .multicamera[data-multicamera] li a {
1090
+ color: #444;
1091
+ padding: 2px 10px;
1092
+ display: block;
1093
+ text-decoration: none;
1094
+ }
1095
+ .multicamera[data-multicamera] li a:hover {
1096
+ background-color: #555;
1097
+ color: white;
1098
+ }
1099
+ .multicamera[data-multicamera] li a:hover a {
1100
+ color: white;
1101
+ text-decoration: none;
1102
+ }
1103
+ .multicamera[data-multicamera] li.current a {
1104
+ color: #f00;
1105
+ }
1106
+
1107
+ @keyframes pulse {
1108
+ 0% {
1109
+ color: #fff;
1110
+ }
1111
+ 50% {
1112
+ color: #ff0101;
1113
+ }
1114
+ 100% {
1115
+ color: #B80000;
1116
+ }
1117
+ }.scrub-thumbnails {
1118
+ position: absolute;
1119
+ bottom: 52px;
1120
+ width: 100%;
1121
+ transition: opacity 0.3s ease;
1122
+ }
1123
+ .scrub-thumbnails.hidden {
1124
+ opacity: 0;
1125
+ }
1126
+ .scrub-thumbnails .thumbnail-container {
1127
+ display: inline-block;
1128
+ position: relative;
1129
+ overflow: hidden;
1130
+ background-color: #000;
1131
+ }
1132
+ .scrub-thumbnails .thumbnail-container .thumbnail-img {
1133
+ position: absolute;
1134
+ width: auto;
1135
+ }
1136
+ .scrub-thumbnails .thumbnails-text {
1137
+ background-color: rgba(74, 74, 74, 0.7);
1138
+ border-radius: 3px;
1139
+ white-space: nowrap;
1140
+ overflow: hidden;
1141
+ text-overflow: ellipsis;
1142
+ color: white;
1143
+ position: absolute;
1144
+ bottom: 23px;
1145
+ width: 100px;
1146
+ padding: 0 4px;
1147
+ font-size: 12px;
1148
+ }
1149
+ .scrub-thumbnails .spotlight {
1150
+ background-color: #4a4a4a;
1151
+ overflow: hidden;
1152
+ position: absolute;
1153
+ bottom: 0;
1154
+ left: 0;
1155
+ border-color: #4a4a4a;
1156
+ border-style: solid;
1157
+ border-width: 3px;
1158
+ border-radius: 3px;
1159
+ }
1160
+ .scrub-thumbnails .spotlight img {
1161
+ width: auto;
1162
+ }
1163
+ .scrub-thumbnails .backdrop {
1164
+ position: absolute;
1165
+ left: 0;
1166
+ bottom: 0;
1167
+ right: 0;
1168
+ background-color: #000;
1169
+ overflow: hidden;
1170
+ }
1171
+ .scrub-thumbnails .backdrop .carousel {
1172
+ position: absolute;
1173
+ top: 0;
1174
+ left: 0;
1175
+ height: 100%;
1176
+ white-space: nowrap;
1177
+ }
1178
+ .scrub-thumbnails .backdrop .carousel img {
1179
+ width: auto;
1180
+ }div.player-error-screen, [data-player] div.player-error-screen {
1181
+ color: #CCCACA;
1182
+ position: absolute;
1183
+ top: 0;
1184
+ height: 100%;
1185
+ width: 100%;
1186
+ background-color: rgba(0, 0, 0, 0.7);
1187
+ z-index: 2000;
1188
+ display: flex;
1189
+ flex-direction: column;
1190
+ justify-content: center;
1191
+ }
1192
+ div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
1193
+ font-size: 14px;
1194
+ color: #CCCACA;
1195
+ margin-top: 45px;
1196
+ }
1197
+ div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
1198
+ font-weight: bold;
1199
+ line-height: 30px;
1200
+ font-size: 18px;
1201
+ }
1202
+ div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
1203
+ width: 90%;
1204
+ margin: 0 auto;
1205
+ }
1206
+ div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
1207
+ font-size: 13px;
1208
+ margin-top: 15px;
1209
+ }
1210
+ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1211
+ cursor: pointer;
1212
+ width: 30px;
1213
+ margin: 15px auto 0;
1214
+ }.seek-time {
1215
+ position: absolute;
1216
+ white-space: nowrap;
1217
+ height: 20px;
1218
+ line-height: 20px;
1219
+ font-size: 0;
1220
+ left: -100%;
1221
+ bottom: 55px;
1222
+ background-color: rgba(2, 2, 2, 0.5);
1223
+ z-index: 9999;
1224
+ transition: opacity 0.1s ease;
1225
+ }
1226
+ .seek-time.hidden {
1227
+ opacity: 0;
1228
+ }
1229
+ .seek-time .seek-time__pos {
1230
+ display: inline-block;
1231
+ color: white;
1232
+ font-size: 10px;
1233
+ padding-left: 7px;
1234
+ padding-right: 7px;
1235
+ vertical-align: top;
1236
+ }
1237
+ .seek-time .seek-time__duration {
1238
+ display: inline-block;
1239
+ color: rgba(255, 255, 255, 0.5);
1240
+ font-size: 10px;
1241
+ padding-right: 7px;
1242
+ vertical-align: top;
1243
+ }
1244
+ .seek-time .seek-time__duration::before {
1245
+ content: "|";
1246
+ margin-right: 7px;
1247
+ }[data-player] {
1248
+ --bottom-panel: 40px;
1249
+ }
1250
+
1251
+ .container .media-control-notransition {
1252
+ transition: none !important;
1253
+ }
1254
+ .container .player-poster .play-wrapper {
826
1255
  opacity: 1;
827
1256
  }
828
1257
  .container.crop-video [data-html5-video] {
@@ -1511,302 +1940,58 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1511
1940
  display: inline-block;
1512
1941
  margin-right: 5px;
1513
1942
  cursor: pointer;
1514
- }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
1515
- order: 99;
1516
- height: 20px;
1517
- }
1518
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
1519
- position: absolute;
1520
- right: 16px;
1521
- bottom: 52px;
1522
- width: 250px;
1523
- min-height: 48px;
1524
- z-index: 9999;
1525
- border-radius: 4px;
1526
- }
1527
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
1528
- padding: 8px 0;
1529
- }
1530
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
1531
- margin: 0;
1532
- text-align: left;
1533
- line-height: 22px;
1534
- padding: 5px 14px;
1535
- width: 250px;
1536
- font-size: 12px;
1537
- display: flex;
1538
- align-items: center;
1539
- justify-content: flex-start;
1540
- gap: 8px;
1541
- }
1542
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
1543
- flex: 24px 0 0;
1544
- height: 24px;
1545
- }
1546
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
1547
- visibility: hidden;
1548
- display: inline-block;
1549
- }
1550
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
1551
- flex: 0 1 100%;
1552
- }
1553
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
1554
- flex: 0 0 14px;
1555
- height: 24px;
1556
- }
1557
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
1558
- flex: 1 0 auto;
1559
- }*, :focus, :visited {
1560
- outline: none !important;
1561
- }
1562
-
1563
- .gear-wrapper .go-back {
1564
- font-weight: 600;
1565
- font-size: 14px;
1566
- line-height: 20px;
1567
- width: 100%;
1568
- text-align: left;
1569
- padding: 12px;
1570
- }
1571
- .gear-wrapper .go-back .arrow-left-icon {
1572
- float: left;
1573
- padding-top: 2px;
1574
- padding-right: 2px;
1575
- }
1576
- .gear-wrapper .go-back .arrow-left-icon svg {
1577
- height: 16px;
1578
- }
1579
- .gear-wrapper ul.gear-sub-menu {
1580
- width: 100%;
1581
- list-style-type: none;
1582
- min-width: 60px;
1583
- border-top: 2px solid rgb(36, 36, 36);
1584
- }
1585
- .gear-wrapper ul.gear-sub-menu li {
1586
- font-size: 12px;
1587
- text-align: left;
1588
- }
1589
- .gear-wrapper ul.gear-sub-menu li[data-title] {
1590
- background-color: #c3c2c2;
1591
- padding: 5px;
1592
- }
1593
- .gear-wrapper ul.gear-sub-menu li a {
1594
- display: block;
1595
- text-decoration: none;
1596
- height: 32px;
1597
- padding: 5px 10px;
1598
- line-height: 22px;
1599
- color: #fffffe;
1600
- }
1601
- .gear-wrapper ul.gear-sub-menu li a:hover {
1602
- color: white;
1603
- background-color: rgba(0, 0, 0, 0.4);
1604
- }
1605
- .gear-wrapper ul.gear-sub-menu li a:hover a {
1606
- color: white;
1607
- text-decoration: none;
1608
- }
1609
- .gear-wrapper ul.gear-sub-menu li a .check-icon {
1610
- width: 30px;
1611
- height: 20px;
1612
- float: left;
1613
- display: block;
1614
- }
1615
- .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
1616
- display: none;
1617
- }
1618
- .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
1619
- display: inline;
1620
- }.seek-time {
1621
- position: absolute;
1622
- white-space: nowrap;
1623
- height: 20px;
1624
- line-height: 20px;
1625
- font-size: 0;
1626
- left: -100%;
1627
- bottom: 55px;
1628
- background-color: rgba(2, 2, 2, 0.5);
1629
- z-index: 9999;
1630
- transition: opacity 0.1s ease;
1631
- }
1632
- .seek-time.hidden {
1633
- opacity: 0;
1634
- }
1635
- .seek-time .seek-time__pos {
1636
- display: inline-block;
1637
- color: white;
1638
- font-size: 10px;
1639
- padding-left: 7px;
1640
- padding-right: 7px;
1641
- vertical-align: top;
1642
- }
1643
- .seek-time .seek-time__duration {
1644
- display: inline-block;
1645
- color: rgba(255, 255, 255, 0.5);
1646
- font-size: 10px;
1647
- padding-right: 7px;
1648
- vertical-align: top;
1649
- }
1650
- .seek-time .seek-time__duration::before {
1651
- content: "|";
1652
- margin-right: 7px;
1653
- }.container-with-poster-clickable .mc-skip-time {
1654
- height: 0;
1655
- }
1656
-
1657
- .mc-skip-time {
1658
- position: absolute;
1659
- width: 100%;
1660
- height: calc(100% - 50px);
1661
- z-index: 9998;
1662
- background-color: transparent;
1663
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1664
- }
1665
- .mc-skip-time .skip-container {
1666
- width: 100%;
1667
- height: 100%;
1668
- display: flex;
1669
- justify-content: space-between;
1670
- }
1671
- .mc-skip-time .skip-container .skip-item {
1672
- flex: 1 0 0px;
1673
- height: 100%;
1674
- }*, :focus, :visited {
1943
+ }*,
1944
+ :focus,
1945
+ :visited {
1675
1946
  outline: none !important;
1676
1947
  }
1677
1948
 
1678
- .multicamera[data-multicamera] {
1679
- float: right;
1680
- margin-top: 4px;
1949
+ .media-control-cc[data-cc] {
1681
1950
  position: relative;
1682
- margin-right: 20px;
1683
- width: 20px;
1951
+ order: 85;
1684
1952
  }
1685
- .multicamera[data-multicamera] button {
1953
+ .media-control-cc[data-cc] button {
1686
1954
  background-color: transparent;
1687
1955
  color: #fff;
1688
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1689
1956
  -webkit-font-smoothing: antialiased;
1690
1957
  border: none;
1691
- font-size: 14px;
1692
- padding: 0;
1693
- }
1694
- .multicamera[data-multicamera] button svg {
1695
- height: 20px;
1696
- position: relative;
1697
- margin-top: 6px;
1698
- }
1699
- .multicamera[data-multicamera] button:hover {
1700
- color: #c9c9c9;
1701
- }
1702
- .multicamera[data-multicamera] button.changing {
1703
- animation: pulse 0.5s infinite alternate;
1704
- }
1705
- .multicamera[data-multicamera] button span.quality-arrow {
1706
- width: 9px;
1707
- height: 6px;
1708
- margin-top: 11px;
1709
- margin-left: 5px;
1710
- }
1711
- .multicamera[data-multicamera] > ul {
1712
- padding: 6px 0;
1713
- right: -24px;
1714
- width: 245px;
1715
- list-style-type: none;
1716
- position: absolute;
1717
- bottom: 48px;
1718
- border-radius: 4px;
1719
- display: none;
1720
- background-color: rgba(74, 74, 74, 0.9);
1721
- }
1722
- .multicamera[data-multicamera] > ul::after {
1723
- content: "";
1724
- position: absolute;
1725
- top: 100%;
1726
- left: 85%;
1727
- margin-left: -10px;
1728
- width: 0;
1729
- height: 0;
1730
- border-top: 10px solid rgba(74, 74, 74, 0.9);
1731
- border-right: 10px solid transparent;
1732
- border-left: 10px solid transparent;
1733
- }
1734
- .multicamera[data-multicamera] li {
1735
- font-size: 10px;
1736
1958
  cursor: pointer;
1737
1959
  }
1738
- .multicamera[data-multicamera] li .multicamera-item {
1739
- display: flex;
1740
- padding: 10px 0;
1741
- justify-content: center;
1742
- position: relative;
1743
- }
1744
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
1745
- pointer-events: none;
1746
- }
1747
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
1748
- opacity: 0.5;
1749
- }
1750
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
1751
- opacity: 0.5;
1752
- }
1753
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
1754
- background-color: rgba(0, 0, 0, 0);
1755
- }
1756
- .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
1757
- background-color: rgba(0, 0, 0, 0.3);
1758
- }
1759
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
1760
- width: 80px;
1761
- height: 60px;
1762
- }
1763
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
1764
- width: 80px;
1765
- height: 60px;
1766
- }
1767
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
1768
- width: 120px;
1769
- text-align: left;
1770
- margin-left: 15px;
1771
- }
1772
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1773
- width: 120px;
1774
- height: 20px;
1775
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1776
- font-size: 14px;
1777
- font-weight: normal;
1778
- font-style: normal;
1779
- font-stretch: normal;
1780
- line-height: 1.43;
1781
- letter-spacing: normal;
1782
- text-align: left;
1783
- color: #fff;
1784
- text-overflow: ellipsis;
1785
- overflow: hidden;
1960
+ .media-control-cc[data-cc] button .cc-text svg {
1961
+ fill: white;
1786
1962
  }
1787
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1788
- opacity: 0.6;
1963
+ .media-control-cc[data-cc] button:hover {
1964
+ color: #c9c9c9;
1789
1965
  }
1790
- .multicamera[data-multicamera] li[data-title] {
1791
- background-color: #c3c2c2;
1792
- padding: 5px;
1966
+ .media-control-cc[data-cc] button.changing {
1967
+ animation: pulse 0.5s infinite alternate;
1793
1968
  }
1794
- .multicamera[data-multicamera] li a {
1969
+ .media-control-cc[data-cc] ul {
1970
+ width: 80px;
1971
+ list-style-type: none;
1972
+ position: absolute;
1973
+ bottom: 25px;
1974
+ border: 1px solid black;
1975
+ background-color: #e6e6e6;
1976
+ padding: 8px 0;
1977
+ }
1978
+ .media-control-cc[data-cc] li a {
1795
1979
  color: #444;
1796
1980
  padding: 2px 10px;
1797
1981
  display: block;
1798
1982
  text-decoration: none;
1799
1983
  }
1800
- .multicamera[data-multicamera] li a:hover {
1984
+ .media-control-cc[data-cc] li a:hover {
1801
1985
  background-color: #555;
1802
1986
  color: white;
1803
1987
  }
1804
- .multicamera[data-multicamera] li a:hover a {
1988
+ .media-control-cc[data-cc] li a:hover a {
1805
1989
  color: white;
1806
1990
  text-decoration: none;
1807
1991
  }
1808
- .multicamera[data-multicamera] li.current a {
1992
+ .media-control-cc[data-cc] li.current a {
1809
1993
  color: #f00;
1994
+ background-color: #555;
1810
1995
  }
1811
1996
 
1812
1997
  @keyframes pulse {
@@ -1819,193 +2004,42 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1819
2004
  100% {
1820
2005
  color: #B80000;
1821
2006
  }
1822
- }.scrub-thumbnails {
1823
- position: absolute;
1824
- bottom: 52px;
1825
- width: 100%;
1826
- transition: opacity 0.3s ease;
1827
- }
1828
- .scrub-thumbnails.hidden {
1829
- opacity: 0;
1830
- }
1831
- .scrub-thumbnails .thumbnail-container {
1832
- display: inline-block;
1833
- position: relative;
1834
- overflow: hidden;
1835
- background-color: #000;
1836
- }
1837
- .scrub-thumbnails .thumbnail-container .thumbnail-img {
1838
- position: absolute;
1839
- width: auto;
1840
- }
1841
- .scrub-thumbnails .thumbnails-text {
1842
- background-color: rgba(74, 74, 74, 0.7);
1843
- border-radius: 3px;
1844
- white-space: nowrap;
1845
- overflow: hidden;
1846
- text-overflow: ellipsis;
1847
- color: white;
1848
- position: absolute;
1849
- bottom: 23px;
1850
- width: 100px;
1851
- padding: 0 4px;
1852
- font-size: 12px;
1853
- }
1854
- .scrub-thumbnails .spotlight {
1855
- background-color: #4a4a4a;
1856
- overflow: hidden;
1857
- position: absolute;
1858
- bottom: 0;
1859
- left: 0;
1860
- border-color: #4a4a4a;
1861
- border-style: solid;
1862
- border-width: 3px;
1863
- border-radius: 3px;
1864
- }
1865
- .scrub-thumbnails .spotlight img {
1866
- width: auto;
1867
- }
1868
- .scrub-thumbnails .backdrop {
1869
- position: absolute;
1870
- left: 0;
1871
- bottom: 0;
1872
- right: 0;
1873
- background-color: #000;
1874
- overflow: hidden;
1875
2007
  }
1876
- .scrub-thumbnails .backdrop .carousel {
1877
- position: absolute;
1878
- top: 0;
1879
- left: 0;
1880
- height: 100%;
1881
- white-space: nowrap;
2008
+ ::cue {
2009
+ visibility: hidden !important;
2010
+ font-size: 0 !important;
1882
2011
  }
1883
- .scrub-thumbnails .backdrop .carousel img {
1884
- width: auto;
2012
+
2013
+ .ios-fullscreen::cue {
2014
+ visibility: visible !important;
2015
+ font-size: 1em !important;
1885
2016
  }.quality-levels li.disabled {
1886
2017
  opacity: 0.5;
1887
2018
  pointer-events: none;
1888
2019
  }
1889
2020
  .quality-levels li.current {
1890
2021
  background-color: #000;
1891
- }.big-mute-icon-wrapper[data-big-mute] {
1892
- position: absolute;
1893
- z-index: 9998;
1894
- background-color: transparent;
1895
- display: flex;
1896
- justify-content: center;
1897
- width: 100%;
1898
- height: calc(100% - 50px);
1899
- margin: 0 auto;
1900
- opacity: 0.75;
1901
- transition: opacity 0.1s ease;
1902
- pointer-events: auto;
1903
- }
1904
- .big-mute-icon-wrapper[data-big-mute].hide {
1905
- display: none;
1906
- }
1907
- .big-mute-icon-wrapper[data-big-mute]:hover {
1908
- cursor: pointer;
2022
+ }.container-with-poster-clickable .mc-skip-time {
2023
+ height: 0;
1909
2024
  }
1910
2025
 
1911
- .big-mute-icon[data-big-mute-icon] {
1912
- display: flex;
1913
- align-items: center;
1914
- justify-content: center;
1915
- align-self: center;
1916
- width: 120px;
1917
- height: 120px;
1918
- border: 2px solid white;
1919
- border-radius: 50%;
1920
- filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
1921
- filter: alpha(opacity=60);
1922
- opacity: 1;
1923
- box-shadow: 0 0 1px 0 white;
1924
- background: rgba(240, 243, 247, 0.9411764706);
1925
- z-index: 10000;
1926
- }
1927
- .big-mute-icon[data-big-mute-icon] svg {
1928
- margin-left: 5px;
1929
- width: 80px;
1930
- height: 80px;
1931
- }
1932
- .big-mute-icon[data-big-mute-icon] svg path {
1933
- fill: #1f1e1e !important;
1934
- }
1935
- .big-mute-icon[data-big-mute-icon]:hover {
1936
- background: rgba(240, 243, 247, 0.8784313725);
1937
- }
1938
- .big-mute-icon[data-big-mute-icon]:hover svg path {
1939
- fill: #151515 !important;
1940
- }.spinner-three-bounce[data-spinner] {
2026
+ .mc-skip-time {
1941
2027
  position: absolute;
1942
- width: 70px;
1943
- text-align: center;
1944
- z-index: 999;
1945
- left: 0;
1946
- right: 0;
1947
- margin: 0 auto;
1948
- margin-left: auto;
1949
- margin-right: auto;
1950
- /* center vertically */
1951
- top: 50%;
1952
- transform: translateY(-50%);
1953
- }
1954
- .spinner-three-bounce[data-spinner] > div {
1955
- width: 18px;
1956
- height: 18px;
1957
- background-color: #FFF;
1958
- border-radius: 100%;
1959
- display: inline-block;
1960
- animation: bouncedelay 1.4s infinite ease-in-out;
1961
- /* Prevent first frame from flickering when animation starts */
1962
- animation-fill-mode: both;
1963
- }
1964
- .spinner-three-bounce[data-spinner] [data-bounce1] {
1965
- animation-delay: -0.32s;
1966
- }
1967
- .spinner-three-bounce[data-spinner] [data-bounce2] {
1968
- animation-delay: -0.16s;
1969
- }
1970
-
1971
- @keyframes bouncedelay {
1972
- 0%, 80%, 100% {
1973
- transform: scale(0);
1974
- }
1975
- 40% {
1976
- transform: scale(1);
1977
- }
1978
- }.media-control-pip {
1979
- order: 95;
1980
- display: flex;
1981
- }
1982
- .media-control-pip button {
1983
- height: 20px;
2028
+ width: 100%;
2029
+ height: calc(100% - 50px);
2030
+ z-index: 9998;
2031
+ background-color: transparent;
2032
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1984
2033
  }
1985
- .media-control-pip button svg {
1986
- height: 20px;
1987
- }@charset "UTF-8";
1988
- .media-control-clips {
2034
+ .mc-skip-time .skip-container {
2035
+ width: 100%;
2036
+ height: 100%;
1989
2037
  display: flex;
1990
- gap: 6px;
1991
- }
1992
- .media-control-clips .media-clip-text {
1993
- text-overflow: ellipsis;
1994
- white-space: nowrap;
1995
- overflow: hidden;
1996
- display: inline-block;
1997
- text-overflow: ellipsis;
1998
- color: white;
1999
- cursor: default;
2000
- line-height: var(--bottom-panel);
2001
- position: relative;
2002
- }
2003
- .media-control-clips .media-clip-text::before {
2004
- content: "•";
2005
- padding-right: 6px;
2038
+ justify-content: space-between;
2006
2039
  }
2007
- .media-control-clips .media-clip-text {
2008
- max-width: 100px;
2040
+ .mc-skip-time .skip-container .skip-item {
2041
+ flex: 1 0 0px;
2042
+ height: 100%;
2009
2043
  }.player-logo[data-logo] {
2010
2044
  position: absolute;
2011
2045
  z-index: 2;
@@ -2015,38 +2049,4 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
2015
2049
 
2016
2050
  .clappr-logo {
2017
2051
  position: absolute;
2018
- }.player-poster {
2019
- display: flex;
2020
- justify-content: center;
2021
- align-items: center;
2022
- position: absolute;
2023
- height: 100%;
2024
- width: 100%;
2025
- z-index: 998;
2026
- top: 0;
2027
- left: 0;
2028
- background-color: #000;
2029
- background-size: cover;
2030
- background-repeat: no-repeat;
2031
- background-position: 50% 50%;
2032
- }
2033
- .player-poster.clickable {
2034
- cursor: pointer;
2035
- }
2036
- .player-poster:hover .play-wrapper {
2037
- opacity: 1;
2038
- }
2039
- .player-poster .play-wrapper {
2040
- width: 100%;
2041
- height: 25%;
2042
- margin: 0 auto;
2043
- opacity: 0.75;
2044
- transition: opacity 0.1s ease;
2045
- }
2046
- .player-poster .play-wrapper svg {
2047
- height: 100%;
2048
- display: inline;
2049
- }
2050
- .player-poster .play-wrapper svg path {
2051
- fill: #fff;
2052
2052
  }