@gcorevideo/player 2.22.21 → 2.22.22

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/assets/clappr-nerd-stats/clappr-nerd-stats.ejs +30 -30
  2. package/assets/clappr-nerd-stats/clappr-nerd-stats.scss +21 -14
  3. package/dist/core.js +1 -1
  4. package/dist/index.css +686 -678
  5. package/dist/index.js +49 -31
  6. package/dist/player.d.ts +32 -10
  7. package/dist/plugins/index.css +612 -604
  8. package/dist/plugins/index.js +48 -30
  9. package/docs/api/player.extendedevents.md +45 -0
  10. package/docs/api/player.md +21 -1
  11. package/docs/api/player.volumefade._constructor_.md +50 -0
  12. package/docs/api/player.volumefade.md +40 -1
  13. package/docs/api/player.volumefadesettings.md +18 -0
  14. package/lib/plugins/clappr-nerd-stats/NerdStats.d.ts +1 -0
  15. package/lib/plugins/clappr-nerd-stats/NerdStats.d.ts.map +1 -1
  16. package/lib/plugins/clappr-nerd-stats/NerdStats.js +13 -3
  17. package/lib/plugins/clappr-nerd-stats/speedtest/Speedtest.d.ts.map +1 -1
  18. package/lib/plugins/clappr-nerd-stats/speedtest/Speedtest.js +1 -0
  19. package/lib/plugins/clappr-nerd-stats/speedtest/index.js +1 -1
  20. package/lib/plugins/clappr-nerd-stats/utils.d.ts.map +1 -1
  21. package/lib/plugins/clappr-nerd-stats/utils.js +17 -15
  22. package/lib/plugins/clappr-stats/ClapprStats.d.ts +1 -0
  23. package/lib/plugins/clappr-stats/ClapprStats.d.ts.map +1 -1
  24. package/lib/plugins/clappr-stats/ClapprStats.js +3 -0
  25. package/lib/plugins/click-to-pause/ClickToPause.js +6 -7
  26. package/lib/plugins/volume-fade/VolumeFade.d.ts +3 -1
  27. package/lib/plugins/volume-fade/VolumeFade.d.ts.map +1 -1
  28. package/lib/plugins/volume-fade/VolumeFade.js +6 -3
  29. package/package.json +1 -1
  30. package/src/plugins/clappr-nerd-stats/NerdStats.ts +21 -8
  31. package/src/plugins/clappr-nerd-stats/speedtest/Speedtest.ts +1 -0
  32. package/src/plugins/clappr-nerd-stats/speedtest/index.ts +1 -1
  33. package/src/plugins/clappr-nerd-stats/utils.ts +23 -13
  34. package/src/plugins/clappr-stats/ClapprStats.ts +4 -0
  35. package/src/plugins/click-to-pause/ClickToPause.ts +6 -6
  36. package/src/plugins/volume-fade/VolumeFade.ts +6 -3
  37. package/temp/player.api.json +100 -2
  38. package/tsconfig.tsbuildinfo +1 -1
package/dist/index.css CHANGED
@@ -228,6 +228,254 @@
228
228
  }
229
229
  .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
230
230
  display: inline;
231
+ }.context-menu {
232
+ z-index: 999;
233
+ position: absolute;
234
+ top: 0;
235
+ left: 0;
236
+ text-align: center;
237
+ }
238
+ .context-menu .context-menu-list {
239
+ font-family: "Proxima Nova", sans-serif;
240
+ font-size: 12px;
241
+ line-height: 12px;
242
+ list-style-type: none;
243
+ text-align: left;
244
+ padding: 5px;
245
+ margin-left: auto;
246
+ margin-right: auto;
247
+ background-color: rgba(0, 0, 0, 0.75);
248
+ border: 1px solid #666;
249
+ border-radius: 4px;
250
+ }
251
+ .context-menu .context-menu-list-item button {
252
+ border: none;
253
+ background-color: transparent;
254
+ padding: 0;
255
+ color: white;
256
+ display: flex;
257
+ gap: 8px;
258
+ align-items: center;
259
+ justify-content: center;
260
+ cursor: pointer;
261
+ padding: 5px;
262
+ width: 100%;
263
+ }
264
+ .context-menu .context-menu-list-item_icon {
265
+ width: 20px;
266
+ height: 20px;
267
+ }.big-mute-icon-wrapper[data-big-mute] {
268
+ position: absolute;
269
+ z-index: 9998;
270
+ background-color: transparent;
271
+ display: flex;
272
+ justify-content: center;
273
+ width: 100%;
274
+ height: calc(100% - 50px);
275
+ margin: 0 auto;
276
+ opacity: 0.75;
277
+ transition: opacity 0.1s ease;
278
+ pointer-events: auto;
279
+ }
280
+ .big-mute-icon-wrapper[data-big-mute].hide {
281
+ display: none;
282
+ }
283
+ .big-mute-icon-wrapper[data-big-mute]:hover {
284
+ cursor: pointer;
285
+ }
286
+
287
+ .big-mute-icon[data-big-mute-icon] {
288
+ display: flex;
289
+ align-items: center;
290
+ justify-content: center;
291
+ align-self: center;
292
+ width: 120px;
293
+ height: 120px;
294
+ border: 2px solid white;
295
+ border-radius: 50%;
296
+ filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
297
+ filter: alpha(opacity=60);
298
+ opacity: 1;
299
+ box-shadow: 0 0 1px 0 white;
300
+ background: rgba(240, 243, 247, 0.9411764706);
301
+ z-index: 10000;
302
+ }
303
+ .big-mute-icon[data-big-mute-icon] svg {
304
+ margin-left: 5px;
305
+ width: 80px;
306
+ height: 80px;
307
+ }
308
+ .big-mute-icon[data-big-mute-icon] svg path {
309
+ fill: #1f1e1e !important;
310
+ }
311
+ .big-mute-icon[data-big-mute-icon]:hover {
312
+ background: rgba(240, 243, 247, 0.8784313725);
313
+ }
314
+ .big-mute-icon[data-big-mute-icon]:hover svg path {
315
+ fill: #151515 !important;
316
+ }.dvr-controls[data-dvr] {
317
+ display: inline-block;
318
+ color: var(--player-dvr-color);
319
+ line-height: 32px;
320
+ font-size: 10px;
321
+ font-weight: bold;
322
+ margin-left: 6px;
323
+ height: 40px;
324
+ line-height: 40px;
325
+ margin-left: 0;
326
+ }
327
+ .dvr-controls[data-dvr] .live-info {
328
+ cursor: default;
329
+ text-transform: uppercase;
330
+ }
331
+ .dvr-controls[data-dvr] .live-info:before {
332
+ content: "";
333
+ display: inline-block;
334
+ position: relative;
335
+ width: 7px;
336
+ height: 7px;
337
+ border-radius: 3.5px;
338
+ margin-right: 3.5px;
339
+ background-color: var(--player-live-color);
340
+ }
341
+ .dvr-controls[data-dvr] .live-info.disabled {
342
+ opacity: 0.3;
343
+ }
344
+ .dvr-controls[data-dvr] .live-info.disabled:before {
345
+ background-color: var(--player-dvr-color);
346
+ }
347
+ .dvr-controls[data-dvr] .live-button {
348
+ cursor: pointer;
349
+ outline: none;
350
+ display: none;
351
+ border: 0;
352
+ color: var(--player-dvr-color);
353
+ background-color: transparent;
354
+ height: 32px;
355
+ padding: 0;
356
+ opacity: 0.7;
357
+ text-transform: uppercase;
358
+ transition: all 0.1s ease;
359
+ }
360
+ .dvr-controls[data-dvr] .live-button:before {
361
+ content: "";
362
+ display: inline-block;
363
+ position: relative;
364
+ width: 7px;
365
+ height: 7px;
366
+ border-radius: 3.5px;
367
+ margin-right: 3.5px;
368
+ background-color: var(--player-dvr-color);
369
+ }
370
+ .dvr-controls[data-dvr] .live-button:hover {
371
+ opacity: 1;
372
+ text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
373
+ }
374
+ .dvr-controls[data-dvr] .live-info {
375
+ font-size: 14px;
376
+ letter-spacing: 0.8px;
377
+ font-weight: 500;
378
+ color: #fffffe;
379
+ margin-left: 21px;
380
+ }
381
+ .dvr-controls[data-dvr] .live-info::before {
382
+ width: 10px;
383
+ height: 10px;
384
+ border-radius: 50%;
385
+ margin-right: 8px;
386
+ background-color: #ed4f4a;
387
+ }
388
+ .dvr-controls[data-dvr] .live-button {
389
+ height: 40px;
390
+ opacity: 1;
391
+ font-size: 14px;
392
+ letter-spacing: 0.8px;
393
+ font-weight: 500;
394
+ margin-left: 20px;
395
+ }
396
+ .dvr-controls[data-dvr] .live-button::before {
397
+ width: 10px;
398
+ height: 10px;
399
+ border-radius: 50%;
400
+ margin-right: 8px;
401
+ background-color: #cacaca;
402
+ }div.player-error-screen, [data-player] div.player-error-screen {
403
+ color: #CCCACA;
404
+ position: absolute;
405
+ top: 0;
406
+ height: 100%;
407
+ width: 100%;
408
+ background-color: rgba(0, 0, 0, 0.7);
409
+ z-index: 2000;
410
+ display: flex;
411
+ flex-direction: column;
412
+ justify-content: center;
413
+ }
414
+ div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
415
+ font-size: 14px;
416
+ color: #CCCACA;
417
+ margin-top: 45px;
418
+ }
419
+ div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
420
+ font-weight: bold;
421
+ line-height: 30px;
422
+ font-size: 18px;
423
+ }
424
+ div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
425
+ width: 90%;
426
+ margin: 0 auto;
427
+ }
428
+ div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
429
+ font-size: 13px;
430
+ margin-top: 15px;
431
+ }
432
+ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
433
+ cursor: pointer;
434
+ width: 30px;
435
+ margin: 15px auto 0;
436
+ }.media-control-pip {
437
+ order: 95;
438
+ display: flex;
439
+ }
440
+ .media-control-pip button {
441
+ height: 20px;
442
+ }
443
+ .media-control-pip button svg {
444
+ height: 20px;
445
+ }.player-poster[data-poster] {
446
+ display: flex;
447
+ justify-content: center;
448
+ align-items: center;
449
+ position: absolute;
450
+ height: 100%;
451
+ width: 100%;
452
+ z-index: 998;
453
+ top: 0;
454
+ left: 0;
455
+ background-color: #000;
456
+ background-size: cover;
457
+ background-repeat: no-repeat;
458
+ background-position: 50% 50%;
459
+ }
460
+ .player-poster[data-poster].clickable {
461
+ cursor: pointer;
462
+ }
463
+ .player-poster[data-poster]:hover .play-wrapper[data-poster] {
464
+ opacity: 1;
465
+ }
466
+ .player-poster[data-poster] .play-wrapper[data-poster] {
467
+ width: 100%;
468
+ height: 25%;
469
+ margin: 0 auto;
470
+ opacity: 0.75;
471
+ transition: opacity 0.1s ease;
472
+ }
473
+ .player-poster[data-poster] .play-wrapper[data-poster] svg {
474
+ height: 100%;
475
+ display: inline;
476
+ }
477
+ .player-poster[data-poster] .play-wrapper[data-poster] svg path {
478
+ fill: #fff;
231
479
  }:root {
232
480
  --primary-background-color: #000;
233
481
  --secondary-background-color: #262626;
@@ -241,6 +489,9 @@
241
489
  --speedtest-green: #73df4d;
242
490
  }
243
491
 
492
+ .clappr-nerd-stats {
493
+ cursor: default;
494
+ }
244
495
  .clappr-nerd-stats .stats-box {
245
496
  position: absolute;
246
497
  display: inline-block;
@@ -263,15 +514,15 @@
263
514
  position: absolute;
264
515
  top: 0;
265
516
  left: 0;
266
- z-index: 99990;
517
+ z-index: 9999;
267
518
  width: 100%;
268
519
  height: 32px;
269
520
  background: var(--primary-background-color);
270
521
  }
271
522
  .clappr-nerd-stats .stats-box-top .close-button {
272
- float: right;
273
- margin-right: 12px;
274
- margin-top: 10px;
523
+ position: absolute;
524
+ right: 12px;
525
+ top: 10px;
275
526
  display: block;
276
527
  width: 12px;
277
528
  height: 12px;
@@ -285,6 +536,12 @@
285
536
  .clappr-nerd-stats .stats-box-main {
286
537
  overflow: hidden;
287
538
  margin-top: 44px;
539
+ display: flex;
540
+ flex-wrap: wrap;
541
+ }
542
+ .clappr-nerd-stats .stats-box-main ul {
543
+ flex: 0 1 1fr;
544
+ min-width: 200px;
288
545
  }
289
546
  .clappr-nerd-stats .stats-box.wide {
290
547
  width: 820px;
@@ -296,10 +553,9 @@
296
553
  padding-left: 2px;
297
554
  padding-right: 2px;
298
555
  background: var(--primary-background-color);
556
+ gap: 10px;
299
557
  }
300
558
  .clappr-nerd-stats .stats-box ul {
301
- display: inline-block;
302
- float: left;
303
559
  padding: 5px;
304
560
  width: 200px;
305
561
  }
@@ -541,8 +797,8 @@
541
797
  .mobile .clappr-nerd-stats .stats-box-top {
542
798
  position: fixed;
543
799
  }
544
- .mobile .clappr-nerd-stats .stats-box ul {
545
- width: 50%;
800
+ .mobile .clappr-nerd-stats .stats-box-main ul {
801
+ flex: 0 1 50%;
546
802
  }
547
803
 
548
804
  @media only screen and (orientation: portrait) {
@@ -574,236 +830,313 @@
574
830
  }
575
831
  }
576
832
  @media only screen and (orientation: landscape) {
577
- .mobile .clappr-nerd-stats .stats-box ul {
578
- width: 25%;
833
+ .mobile .clappr-nerd-stats .stats-box-main ul {
834
+ flex-basis: 1fr;
579
835
  }
580
- }@charset "UTF-8";
581
- .media-control-clips {
582
- display: flex;
583
- gap: 6px;
836
+ }*, :focus, :visited {
837
+ outline: none !important;
584
838
  }
585
- .media-control-clips .media-clip-text {
586
- text-overflow: ellipsis;
587
- white-space: nowrap;
588
- overflow: hidden;
589
- display: inline-block;
590
- text-overflow: ellipsis;
591
- color: white;
592
- cursor: default;
593
- line-height: var(--bottom-panel);
839
+
840
+ .multicamera[data-multicamera] {
841
+ float: right;
842
+ margin-top: 4px;
594
843
  position: relative;
844
+ margin-right: 20px;
845
+ width: 20px;
595
846
  }
596
- .media-control-clips .media-clip-text::before {
597
- content: "•";
598
- padding-right: 6px;
599
- }
600
- .media-control-clips .media-clip-text {
601
- max-width: 100px;
602
- }div.player-error-screen, [data-player] div.player-error-screen {
603
- color: #CCCACA;
604
- position: absolute;
605
- top: 0;
606
- height: 100%;
607
- width: 100%;
608
- background-color: rgba(0, 0, 0, 0.7);
609
- z-index: 2000;
610
- display: flex;
611
- flex-direction: column;
612
- justify-content: center;
613
- }
614
- div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
847
+ .multicamera[data-multicamera] button {
848
+ background-color: transparent;
849
+ color: #fff;
850
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
851
+ -webkit-font-smoothing: antialiased;
852
+ border: none;
615
853
  font-size: 14px;
616
- color: #CCCACA;
617
- margin-top: 45px;
854
+ padding: 0;
618
855
  }
619
- div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
620
- font-weight: bold;
621
- line-height: 30px;
622
- font-size: 18px;
856
+ .multicamera[data-multicamera] button svg {
857
+ height: 20px;
858
+ position: relative;
859
+ margin-top: 6px;
623
860
  }
624
- div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
625
- width: 90%;
626
- margin: 0 auto;
861
+ .multicamera[data-multicamera] button:hover {
862
+ color: #c9c9c9;
627
863
  }
628
- div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
629
- font-size: 13px;
630
- margin-top: 15px;
864
+ .multicamera[data-multicamera] button.changing {
865
+ animation: pulse 0.5s infinite alternate;
631
866
  }
632
- div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
633
- cursor: pointer;
634
- width: 30px;
635
- margin: 15px auto 0;
636
- }.big-mute-icon-wrapper[data-big-mute] {
637
- position: absolute;
638
- z-index: 9998;
639
- background-color: transparent;
640
- display: flex;
641
- justify-content: center;
642
- width: 100%;
643
- height: calc(100% - 50px);
644
- margin: 0 auto;
645
- opacity: 0.75;
646
- transition: opacity 0.1s ease;
647
- pointer-events: auto;
867
+ .multicamera[data-multicamera] button span.quality-arrow {
868
+ width: 9px;
869
+ height: 6px;
870
+ margin-top: 11px;
871
+ margin-left: 5px;
648
872
  }
649
- .big-mute-icon-wrapper[data-big-mute].hide {
873
+ .multicamera[data-multicamera] > ul {
874
+ padding: 6px 0;
875
+ right: -24px;
876
+ width: 245px;
877
+ list-style-type: none;
878
+ position: absolute;
879
+ bottom: 48px;
880
+ border-radius: 4px;
650
881
  display: none;
882
+ background-color: rgba(74, 74, 74, 0.9);
651
883
  }
652
- .big-mute-icon-wrapper[data-big-mute]:hover {
884
+ .multicamera[data-multicamera] > ul::after {
885
+ content: "";
886
+ position: absolute;
887
+ top: 100%;
888
+ left: 85%;
889
+ margin-left: -10px;
890
+ width: 0;
891
+ height: 0;
892
+ border-top: 10px solid rgba(74, 74, 74, 0.9);
893
+ border-right: 10px solid transparent;
894
+ border-left: 10px solid transparent;
895
+ }
896
+ .multicamera[data-multicamera] li {
897
+ font-size: 10px;
653
898
  cursor: pointer;
654
899
  }
655
-
656
- .big-mute-icon[data-big-mute-icon] {
900
+ .multicamera[data-multicamera] li .multicamera-item {
657
901
  display: flex;
658
- align-items: center;
902
+ padding: 10px 0;
659
903
  justify-content: center;
660
- align-self: center;
661
- width: 120px;
662
- height: 120px;
663
- border: 2px solid white;
664
- border-radius: 50%;
665
- filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
666
- filter: alpha(opacity=60);
667
- opacity: 1;
668
- box-shadow: 0 0 1px 0 white;
669
- background: rgba(240, 243, 247, 0.9411764706);
670
- z-index: 10000;
904
+ position: relative;
671
905
  }
672
- .big-mute-icon[data-big-mute-icon] svg {
673
- margin-left: 5px;
674
- width: 80px;
675
- height: 80px;
906
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
907
+ pointer-events: none;
676
908
  }
677
- .big-mute-icon[data-big-mute-icon] svg path {
678
- fill: #1f1e1e !important;
909
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
910
+ opacity: 0.5;
679
911
  }
680
- .big-mute-icon[data-big-mute-icon]:hover {
681
- background: rgba(240, 243, 247, 0.8784313725);
912
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
913
+ opacity: 0.5;
682
914
  }
683
- .big-mute-icon[data-big-mute-icon]:hover svg path {
684
- fill: #151515 !important;
685
- }.dvr-controls[data-dvr] {
686
- display: inline-block;
687
- color: var(--player-dvr-color);
688
- line-height: 32px;
689
- font-size: 10px;
690
- font-weight: bold;
691
- margin-left: 6px;
692
- height: 40px;
693
- line-height: 40px;
694
- margin-left: 0;
915
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
916
+ background-color: rgba(0, 0, 0, 0);
695
917
  }
696
- .dvr-controls[data-dvr] .live-info {
697
- cursor: default;
698
- text-transform: uppercase;
918
+ .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
919
+ background-color: rgba(0, 0, 0, 0.3);
699
920
  }
700
- .dvr-controls[data-dvr] .live-info:before {
701
- content: "";
702
- display: inline-block;
703
- position: relative;
704
- width: 7px;
705
- height: 7px;
706
- border-radius: 3.5px;
707
- margin-right: 3.5px;
708
- background-color: var(--player-live-color);
921
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
922
+ width: 80px;
923
+ height: 60px;
709
924
  }
710
- .dvr-controls[data-dvr] .live-info.disabled {
711
- opacity: 0.3;
925
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
926
+ width: 80px;
927
+ height: 60px;
712
928
  }
713
- .dvr-controls[data-dvr] .live-info.disabled:before {
714
- background-color: var(--player-dvr-color);
929
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
930
+ width: 120px;
931
+ text-align: left;
932
+ margin-left: 15px;
715
933
  }
716
- .dvr-controls[data-dvr] .live-button {
717
- cursor: pointer;
718
- outline: none;
719
- display: none;
720
- border: 0;
721
- color: var(--player-dvr-color);
722
- background-color: transparent;
723
- height: 32px;
724
- padding: 0;
725
- opacity: 0.7;
726
- text-transform: uppercase;
727
- transition: all 0.1s ease;
934
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
935
+ width: 120px;
936
+ height: 20px;
937
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
938
+ font-size: 14px;
939
+ font-weight: normal;
940
+ font-style: normal;
941
+ font-stretch: normal;
942
+ line-height: 1.43;
943
+ letter-spacing: normal;
944
+ text-align: left;
945
+ color: #fff;
946
+ text-overflow: ellipsis;
947
+ overflow: hidden;
728
948
  }
729
- .dvr-controls[data-dvr] .live-button:before {
730
- content: "";
731
- display: inline-block;
732
- position: relative;
733
- width: 7px;
734
- height: 7px;
735
- border-radius: 3.5px;
736
- margin-right: 3.5px;
737
- background-color: var(--player-dvr-color);
949
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
950
+ opacity: 0.6;
738
951
  }
739
- .dvr-controls[data-dvr] .live-button:hover {
740
- opacity: 1;
741
- text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
952
+ .multicamera[data-multicamera] li[data-title] {
953
+ background-color: #c3c2c2;
954
+ padding: 5px;
742
955
  }
743
- .dvr-controls[data-dvr] .live-info {
744
- font-size: 14px;
745
- letter-spacing: 0.8px;
746
- font-weight: 500;
747
- color: #fffffe;
748
- margin-left: 21px;
956
+ .multicamera[data-multicamera] li a {
957
+ color: #444;
958
+ padding: 2px 10px;
959
+ display: block;
960
+ text-decoration: none;
749
961
  }
750
- .dvr-controls[data-dvr] .live-info::before {
751
- width: 10px;
752
- height: 10px;
753
- border-radius: 50%;
754
- margin-right: 8px;
755
- background-color: #ed4f4a;
962
+ .multicamera[data-multicamera] li a:hover {
963
+ background-color: #555;
964
+ color: white;
756
965
  }
757
- .dvr-controls[data-dvr] .live-button {
758
- height: 40px;
759
- opacity: 1;
760
- font-size: 14px;
761
- letter-spacing: 0.8px;
762
- font-weight: 500;
763
- margin-left: 20px;
966
+ .multicamera[data-multicamera] li a:hover a {
967
+ color: white;
968
+ text-decoration: none;
764
969
  }
765
- .dvr-controls[data-dvr] .live-button::before {
766
- width: 10px;
767
- height: 10px;
768
- border-radius: 50%;
769
- margin-right: 8px;
770
- background-color: #cacaca;
771
- }.context-menu {
772
- z-index: 999;
970
+ .multicamera[data-multicamera] li.current a {
971
+ color: #f00;
972
+ }
973
+
974
+ @keyframes pulse {
975
+ 0% {
976
+ color: #fff;
977
+ }
978
+ 50% {
979
+ color: #ff0101;
980
+ }
981
+ 100% {
982
+ color: #B80000;
983
+ }
984
+ }*,
985
+ :focus,
986
+ :visited {
987
+ outline: none !important;
988
+ }
989
+
990
+ .media-control-cc[data-cc] {
991
+ position: relative;
992
+ order: 85;
993
+ }
994
+ .media-control-cc[data-cc] button {
995
+ background-color: transparent;
996
+ color: #fff;
997
+ -webkit-font-smoothing: antialiased;
998
+ border: none;
999
+ cursor: pointer;
1000
+ }
1001
+ .media-control-cc[data-cc] button .cc-text svg {
1002
+ fill: white;
1003
+ }
1004
+ .media-control-cc[data-cc] button:hover {
1005
+ color: #c9c9c9;
1006
+ }
1007
+ .media-control-cc[data-cc] button.changing {
1008
+ animation: pulse 0.5s infinite alternate;
1009
+ }
1010
+ .media-control-cc[data-cc] ul {
1011
+ width: 80px;
1012
+ list-style-type: none;
1013
+ position: absolute;
1014
+ bottom: 25px;
1015
+ border: 1px solid black;
1016
+ display: none;
1017
+ background-color: #e6e6e6;
1018
+ padding: 8px 0;
1019
+ }
1020
+ .media-control-cc[data-cc] li a {
1021
+ color: #444;
1022
+ padding: 2px 10px;
1023
+ display: block;
1024
+ text-decoration: none;
1025
+ }
1026
+ .media-control-cc[data-cc] li a:hover {
1027
+ background-color: #555;
1028
+ color: white;
1029
+ }
1030
+ .media-control-cc[data-cc] li a:hover a {
1031
+ color: white;
1032
+ text-decoration: none;
1033
+ }
1034
+ .media-control-cc[data-cc] li.current a {
1035
+ color: #f00;
1036
+ background-color: #555;
1037
+ }
1038
+
1039
+ @keyframes pulse {
1040
+ 0% {
1041
+ color: #fff;
1042
+ }
1043
+ 50% {
1044
+ color: #ff0101;
1045
+ }
1046
+ 100% {
1047
+ color: #B80000;
1048
+ }
1049
+ }
1050
+ ::cue {
1051
+ visibility: hidden !important;
1052
+ font-size: 0 !important;
1053
+ }
1054
+
1055
+ .ios-fullscreen::cue {
1056
+ visibility: visible !important;
1057
+ font-size: 1em !important;
1058
+ }.scrub-thumbnails {
1059
+ position: absolute;
1060
+ bottom: 52px;
1061
+ width: 100%;
1062
+ transition: opacity 0.3s ease;
1063
+ }
1064
+ .scrub-thumbnails.hidden {
1065
+ opacity: 0;
1066
+ }
1067
+ .scrub-thumbnails .thumbnail-container {
1068
+ display: inline-block;
1069
+ position: relative;
1070
+ overflow: hidden;
1071
+ background-color: #000;
1072
+ }
1073
+ .scrub-thumbnails .thumbnail-container .thumbnail-img {
1074
+ position: absolute;
1075
+ width: auto;
1076
+ }
1077
+ .scrub-thumbnails .thumbnails-text {
1078
+ background-color: rgba(74, 74, 74, 0.7);
1079
+ border-radius: 3px;
1080
+ white-space: nowrap;
1081
+ overflow: hidden;
1082
+ text-overflow: ellipsis;
1083
+ color: white;
1084
+ position: absolute;
1085
+ bottom: 23px;
1086
+ width: 100px;
1087
+ }
1088
+ .scrub-thumbnails .spotlight {
1089
+ background-color: #4a4a4a;
1090
+ overflow: hidden;
1091
+ position: absolute;
1092
+ bottom: 0;
1093
+ left: 0;
1094
+ border-color: #4a4a4a;
1095
+ border-style: solid;
1096
+ border-width: 3px;
1097
+ border-radius: 3px;
1098
+ }
1099
+ .scrub-thumbnails .spotlight img {
1100
+ width: auto;
1101
+ }
1102
+ .scrub-thumbnails .backdrop {
1103
+ position: absolute;
1104
+ left: 0;
1105
+ bottom: 0;
1106
+ right: 0;
1107
+ background-color: #000;
1108
+ overflow: hidden;
1109
+ }
1110
+ .scrub-thumbnails .backdrop .carousel {
773
1111
  position: absolute;
774
1112
  top: 0;
775
1113
  left: 0;
776
- text-align: center;
1114
+ height: 100%;
1115
+ white-space: nowrap;
777
1116
  }
778
- .context-menu .context-menu-list {
779
- font-family: "Proxima Nova", sans-serif;
780
- font-size: 12px;
781
- line-height: 12px;
782
- list-style-type: none;
783
- text-align: left;
784
- padding: 5px;
785
- margin-left: auto;
786
- margin-right: auto;
787
- background-color: rgba(0, 0, 0, 0.75);
788
- border: 1px solid #666;
789
- border-radius: 4px;
1117
+ .scrub-thumbnails .backdrop .carousel img {
1118
+ width: auto;
1119
+ }.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
1120
+ height: 0;
790
1121
  }
791
- .context-menu .context-menu-list-item button {
792
- border: none;
1122
+
1123
+ .skip_time_plugin[data-skip-time] {
1124
+ position: absolute;
1125
+ width: 100%;
1126
+ height: calc(100% - 50px);
1127
+ z-index: 9998;
793
1128
  background-color: transparent;
794
- padding: 0;
795
- color: white;
796
- display: flex;
797
- gap: 8px;
798
- align-items: center;
799
- justify-content: center;
800
- cursor: pointer;
801
- padding: 5px;
1129
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1130
+ }
1131
+ .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
802
1132
  width: 100%;
1133
+ height: 100%;
1134
+ display: flex;
1135
+ justify-content: space-between;
803
1136
  }
804
- .context-menu .context-menu-list-item_icon {
805
- width: 20px;
806
- height: 20px;
1137
+ .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
1138
+ width: 33.3%;
1139
+ height: 100%;
807
1140
  }.seek-time[data-seek-time] {
808
1141
  position: absolute;
809
1142
  white-space: nowrap;
@@ -837,6 +1170,112 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
837
1170
  .seek-time[data-seek-time] [data-duration]::before {
838
1171
  content: "|";
839
1172
  margin-right: 7px;
1173
+ }.quality-levels li.disabled {
1174
+ opacity: 0.5;
1175
+ pointer-events: none;
1176
+ }
1177
+ .quality-levels li.current {
1178
+ background-color: #000;
1179
+ }*,
1180
+ :focus,
1181
+ :visited {
1182
+ outline: none !important;
1183
+ }
1184
+
1185
+ .media-control-audiotracks {
1186
+ position: relative;
1187
+ }
1188
+ .media-control-audiotracks button {
1189
+ background-color: transparent;
1190
+ color: #fff;
1191
+ -webkit-font-smoothing: antialiased;
1192
+ border: none;
1193
+ cursor: pointer;
1194
+ display: flex;
1195
+ align-items: center;
1196
+ padding: 0;
1197
+ }
1198
+ .media-control-audiotracks button .audio-text {
1199
+ text-overflow: ellipsis;
1200
+ overflow: hidden;
1201
+ white-space: nowrap;
1202
+ max-width: 100px;
1203
+ background-color: transparent;
1204
+ -webkit-font-smoothing: antialiased;
1205
+ border: none;
1206
+ cursor: pointer;
1207
+ }
1208
+ .media-control-audiotracks button:hover {
1209
+ color: white;
1210
+ }
1211
+ .media-control-audiotracks button.changing {
1212
+ animation: pulse 0.5s infinite alternate;
1213
+ }
1214
+ .media-control-audiotracks button span.audio-arrow {
1215
+ width: 9px;
1216
+ height: 6px;
1217
+ margin-left: 5px;
1218
+ }
1219
+ .media-control-audiotracks .menu {
1220
+ max-width: 114px;
1221
+ list-style-type: none;
1222
+ position: absolute;
1223
+ background-color: rgba(74, 74, 74, 0.6);
1224
+ border: none;
1225
+ min-width: 60px;
1226
+ border-radius: 4px;
1227
+ bottom: 40px;
1228
+ right: -2px;
1229
+ }
1230
+ .media-control-audiotracks .menu.hidden {
1231
+ display: none;
1232
+ }
1233
+ .media-control-audiotracks li {
1234
+ font-size: var(--font-size-media-controls-dropdown);
1235
+ text-align: right;
1236
+ height: 30px;
1237
+ }
1238
+ .media-control-audiotracks li[data-title] {
1239
+ background-color: #c3c2c2;
1240
+ padding: 5px;
1241
+ }
1242
+ .media-control-audiotracks li a {
1243
+ display: block;
1244
+ text-decoration: none;
1245
+ text-overflow: ellipsis;
1246
+ overflow: hidden;
1247
+ white-space: nowrap;
1248
+ height: 30px;
1249
+ padding: 5px 10px;
1250
+ color: #fffffe;
1251
+ }
1252
+ .media-control-audiotracks li a:hover {
1253
+ text-decoration: none;
1254
+ background-color: rgba(0, 0, 0, 0.4);
1255
+ color: white;
1256
+ }
1257
+ .media-control-audiotracks li.current a {
1258
+ color: #f00;
1259
+ }
1260
+ .media-control-audiotracks li:first-child a {
1261
+ border-bottom-left-radius: 4px;
1262
+ border-bottom-right-radius: 4px;
1263
+ }
1264
+ .media-control-audiotracks li:last-child a {
1265
+ border-top-left-radius: 4px;
1266
+ border-top-right-radius: 4px;
1267
+ }
1268
+
1269
+ @keyframes pulse {
1270
+ 0% {
1271
+ color: #fff;
1272
+ }
1273
+ 50% {
1274
+ color: #ff0101;
1275
+ }
1276
+ 100% {
1277
+ color: #B80000;
1278
+ }
840
1279
  }.spinner-three-bounce[data-spinner] {
841
1280
  position: absolute;
842
1281
  width: 70px;
@@ -869,21 +1308,12 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
869
1308
  }
870
1309
 
871
1310
  @keyframes bouncedelay {
872
- 0%, 80%, 100% {
873
- transform: scale(0);
874
- }
875
- 40% {
876
- transform: scale(1);
877
- }
878
- }.media-control-pip {
879
- order: 95;
880
- display: flex;
881
- }
882
- .media-control-pip button {
883
- height: 20px;
884
- }
885
- .media-control-pip button svg {
886
- height: 20px;
1311
+ 0%, 80%, 100% {
1312
+ transform: scale(0);
1313
+ }
1314
+ 40% {
1315
+ transform: scale(1);
1316
+ }
887
1317
  }.share_plugin[data-share] {
888
1318
  pointer-events: auto;
889
1319
  z-index: 5;
@@ -945,311 +1375,59 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
945
1375
  .share_plugin[data-share] .share-container .share-container-main {
946
1376
  margin-bottom: 8px;
947
1377
  }
948
- .share_plugin[data-share] .share-container .share-container-main > div {
949
- text-align: left;
950
- font-size: 14px;
951
- padding: 5px;
952
- }
953
- .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 {
954
- overflow: hidden;
955
- text-overflow: ellipsis;
956
- color: #818181;
957
- border: solid 1px #d3d3d3;
958
- width: calc(100% - 10px);
959
- padding: 5px;
960
- }
961
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
962
- max-height: 90px;
963
- resize: none;
964
- }
965
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
966
- width: 32px;
967
- display: inline-block;
968
- margin-right: 5px;
969
- cursor: pointer;
970
- }.quality-levels li.disabled {
971
- opacity: 0.5;
972
- pointer-events: none;
973
- }
974
- .quality-levels li.current {
975
- background-color: #000;
976
- }.player-poster[data-poster] {
977
- display: flex;
978
- justify-content: center;
979
- align-items: center;
980
- position: absolute;
981
- height: 100%;
982
- width: 100%;
983
- z-index: 998;
984
- top: 0;
985
- left: 0;
986
- background-color: #000;
987
- background-size: cover;
988
- background-repeat: no-repeat;
989
- background-position: 50% 50%;
990
- }
991
- .player-poster[data-poster].clickable {
992
- cursor: pointer;
993
- }
994
- .player-poster[data-poster]:hover .play-wrapper[data-poster] {
995
- opacity: 1;
996
- }
997
- .player-poster[data-poster] .play-wrapper[data-poster] {
998
- width: 100%;
999
- height: 25%;
1000
- margin: 0 auto;
1001
- opacity: 0.75;
1002
- transition: opacity 0.1s ease;
1003
- }
1004
- .player-poster[data-poster] .play-wrapper[data-poster] svg {
1005
- height: 100%;
1006
- display: inline;
1007
- }
1008
- .player-poster[data-poster] .play-wrapper[data-poster] svg path {
1009
- fill: #fff;
1010
- }.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
1011
- height: 0;
1012
- }
1013
-
1014
- .skip_time_plugin[data-skip-time] {
1015
- position: absolute;
1016
- width: 100%;
1017
- height: calc(100% - 50px);
1018
- z-index: 9998;
1019
- background-color: transparent;
1020
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1021
- }
1022
- .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
1023
- width: 100%;
1024
- height: 100%;
1025
- display: flex;
1026
- justify-content: space-between;
1027
- }
1028
- .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
1029
- width: 33.3%;
1030
- height: 100%;
1031
- }*,
1032
- :focus,
1033
- :visited {
1034
- outline: none !important;
1035
- }
1036
-
1037
- .media-control-cc[data-cc] {
1038
- position: relative;
1039
- order: 85;
1040
- }
1041
- .media-control-cc[data-cc] button {
1042
- background-color: transparent;
1043
- color: #fff;
1044
- -webkit-font-smoothing: antialiased;
1045
- border: none;
1046
- cursor: pointer;
1047
- }
1048
- .media-control-cc[data-cc] button .cc-text svg {
1049
- fill: white;
1050
- }
1051
- .media-control-cc[data-cc] button:hover {
1052
- color: #c9c9c9;
1053
- }
1054
- .media-control-cc[data-cc] button.changing {
1055
- animation: pulse 0.5s infinite alternate;
1056
- }
1057
- .media-control-cc[data-cc] ul {
1058
- width: 80px;
1059
- list-style-type: none;
1060
- position: absolute;
1061
- bottom: 25px;
1062
- border: 1px solid black;
1063
- display: none;
1064
- background-color: #e6e6e6;
1065
- padding: 8px 0;
1066
- }
1067
- .media-control-cc[data-cc] li a {
1068
- color: #444;
1069
- padding: 2px 10px;
1070
- display: block;
1071
- text-decoration: none;
1072
- }
1073
- .media-control-cc[data-cc] li a:hover {
1074
- background-color: #555;
1075
- color: white;
1076
- }
1077
- .media-control-cc[data-cc] li a:hover a {
1078
- color: white;
1079
- text-decoration: none;
1080
- }
1081
- .media-control-cc[data-cc] li.current a {
1082
- color: #f00;
1083
- background-color: #555;
1084
- }
1085
-
1086
- @keyframes pulse {
1087
- 0% {
1088
- color: #fff;
1089
- }
1090
- 50% {
1091
- color: #ff0101;
1092
- }
1093
- 100% {
1094
- color: #B80000;
1095
- }
1096
- }
1097
- ::cue {
1098
- visibility: hidden !important;
1099
- font-size: 0 !important;
1100
- }
1101
-
1102
- .ios-fullscreen::cue {
1103
- visibility: visible !important;
1104
- font-size: 1em !important;
1105
- }*, :focus, :visited {
1106
- outline: none !important;
1107
- }
1108
-
1109
- .multicamera[data-multicamera] {
1110
- float: right;
1111
- margin-top: 4px;
1112
- position: relative;
1113
- margin-right: 20px;
1114
- width: 20px;
1115
- }
1116
- .multicamera[data-multicamera] button {
1117
- background-color: transparent;
1118
- color: #fff;
1119
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1120
- -webkit-font-smoothing: antialiased;
1121
- border: none;
1122
- font-size: 14px;
1123
- padding: 0;
1124
- }
1125
- .multicamera[data-multicamera] button svg {
1126
- height: 20px;
1127
- position: relative;
1128
- margin-top: 6px;
1129
- }
1130
- .multicamera[data-multicamera] button:hover {
1131
- color: #c9c9c9;
1132
- }
1133
- .multicamera[data-multicamera] button.changing {
1134
- animation: pulse 0.5s infinite alternate;
1135
- }
1136
- .multicamera[data-multicamera] button span.quality-arrow {
1137
- width: 9px;
1138
- height: 6px;
1139
- margin-top: 11px;
1140
- margin-left: 5px;
1141
- }
1142
- .multicamera[data-multicamera] > ul {
1143
- padding: 6px 0;
1144
- right: -24px;
1145
- width: 245px;
1146
- list-style-type: none;
1147
- position: absolute;
1148
- bottom: 48px;
1149
- border-radius: 4px;
1150
- display: none;
1151
- background-color: rgba(74, 74, 74, 0.9);
1152
- }
1153
- .multicamera[data-multicamera] > ul::after {
1154
- content: "";
1155
- position: absolute;
1156
- top: 100%;
1157
- left: 85%;
1158
- margin-left: -10px;
1159
- width: 0;
1160
- height: 0;
1161
- border-top: 10px solid rgba(74, 74, 74, 0.9);
1162
- border-right: 10px solid transparent;
1163
- border-left: 10px solid transparent;
1164
- }
1165
- .multicamera[data-multicamera] li {
1166
- font-size: 10px;
1167
- cursor: pointer;
1168
- }
1169
- .multicamera[data-multicamera] li .multicamera-item {
1170
- display: flex;
1171
- padding: 10px 0;
1172
- justify-content: center;
1173
- position: relative;
1174
- }
1175
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
1176
- pointer-events: none;
1177
- }
1178
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
1179
- opacity: 0.5;
1180
- }
1181
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
1182
- opacity: 0.5;
1183
- }
1184
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
1185
- background-color: rgba(0, 0, 0, 0);
1186
- }
1187
- .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
1188
- background-color: rgba(0, 0, 0, 0.3);
1189
- }
1190
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
1191
- width: 80px;
1192
- height: 60px;
1193
- }
1194
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
1195
- width: 80px;
1196
- height: 60px;
1197
- }
1198
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
1199
- width: 120px;
1378
+ .share_plugin[data-share] .share-container .share-container-main > div {
1200
1379
  text-align: left;
1201
- margin-left: 15px;
1202
- }
1203
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1204
- width: 120px;
1205
- height: 20px;
1206
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1207
1380
  font-size: 14px;
1208
- font-weight: normal;
1209
- font-style: normal;
1210
- font-stretch: normal;
1211
- line-height: 1.43;
1212
- letter-spacing: normal;
1213
- text-align: left;
1214
- color: #fff;
1215
- text-overflow: ellipsis;
1216
- overflow: hidden;
1217
- }
1218
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1219
- opacity: 0.6;
1381
+ padding: 5px;
1220
1382
  }
1221
- .multicamera[data-multicamera] li[data-title] {
1222
- background-color: #c3c2c2;
1383
+ .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 {
1384
+ overflow: hidden;
1385
+ text-overflow: ellipsis;
1386
+ color: #818181;
1387
+ border: solid 1px #d3d3d3;
1388
+ width: calc(100% - 10px);
1223
1389
  padding: 5px;
1224
1390
  }
1225
- .multicamera[data-multicamera] li a {
1226
- color: #444;
1227
- padding: 2px 10px;
1228
- display: block;
1229
- text-decoration: none;
1391
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
1392
+ max-height: 90px;
1393
+ resize: none;
1230
1394
  }
1231
- .multicamera[data-multicamera] li a:hover {
1232
- background-color: #555;
1233
- color: white;
1395
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
1396
+ width: 32px;
1397
+ display: inline-block;
1398
+ margin-right: 5px;
1399
+ cursor: pointer;
1400
+ }@charset "UTF-8";
1401
+ .media-control-clips {
1402
+ display: flex;
1403
+ gap: 6px;
1234
1404
  }
1235
- .multicamera[data-multicamera] li a:hover a {
1405
+ .media-control-clips .media-clip-text {
1406
+ text-overflow: ellipsis;
1407
+ white-space: nowrap;
1408
+ overflow: hidden;
1409
+ display: inline-block;
1410
+ text-overflow: ellipsis;
1236
1411
  color: white;
1237
- text-decoration: none;
1412
+ cursor: default;
1413
+ line-height: var(--bottom-panel);
1414
+ position: relative;
1238
1415
  }
1239
- .multicamera[data-multicamera] li.current a {
1240
- color: #f00;
1416
+ .media-control-clips .media-clip-text::before {
1417
+ content: "•";
1418
+ padding-right: 6px;
1419
+ }
1420
+ .media-control-clips .media-clip-text {
1421
+ max-width: 100px;
1422
+ }.player-logo[data-logo] {
1423
+ position: absolute;
1424
+ z-index: 2;
1425
+ width: 100%;
1426
+ height: 100%;
1241
1427
  }
1242
1428
 
1243
- @keyframes pulse {
1244
- 0% {
1245
- color: #fff;
1246
- }
1247
- 50% {
1248
- color: #ff0101;
1249
- }
1250
- 100% {
1251
- color: #B80000;
1252
- }
1429
+ .clappr-logo {
1430
+ position: absolute;
1253
1431
  }[data-player] {
1254
1432
  --bottom-panel: 40px;
1255
1433
  }
@@ -1867,174 +2045,4 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1867
2045
  }
1868
2046
  .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
1869
2047
  display: none !important;
1870
- }*,
1871
- :focus,
1872
- :visited {
1873
- outline: none !important;
1874
- }
1875
-
1876
- .media-control-audiotracks {
1877
- position: relative;
1878
- }
1879
- .media-control-audiotracks button {
1880
- background-color: transparent;
1881
- color: #fff;
1882
- -webkit-font-smoothing: antialiased;
1883
- border: none;
1884
- cursor: pointer;
1885
- display: flex;
1886
- align-items: center;
1887
- padding: 0;
1888
- }
1889
- .media-control-audiotracks button .audio-text {
1890
- text-overflow: ellipsis;
1891
- overflow: hidden;
1892
- white-space: nowrap;
1893
- max-width: 100px;
1894
- background-color: transparent;
1895
- -webkit-font-smoothing: antialiased;
1896
- border: none;
1897
- cursor: pointer;
1898
- }
1899
- .media-control-audiotracks button:hover {
1900
- color: white;
1901
- }
1902
- .media-control-audiotracks button.changing {
1903
- animation: pulse 0.5s infinite alternate;
1904
- }
1905
- .media-control-audiotracks button span.audio-arrow {
1906
- width: 9px;
1907
- height: 6px;
1908
- margin-left: 5px;
1909
- }
1910
- .media-control-audiotracks .menu {
1911
- max-width: 114px;
1912
- list-style-type: none;
1913
- position: absolute;
1914
- background-color: rgba(74, 74, 74, 0.6);
1915
- border: none;
1916
- min-width: 60px;
1917
- border-radius: 4px;
1918
- bottom: 40px;
1919
- right: -2px;
1920
- }
1921
- .media-control-audiotracks .menu.hidden {
1922
- display: none;
1923
- }
1924
- .media-control-audiotracks li {
1925
- font-size: var(--font-size-media-controls-dropdown);
1926
- text-align: right;
1927
- height: 30px;
1928
- }
1929
- .media-control-audiotracks li[data-title] {
1930
- background-color: #c3c2c2;
1931
- padding: 5px;
1932
- }
1933
- .media-control-audiotracks li a {
1934
- display: block;
1935
- text-decoration: none;
1936
- text-overflow: ellipsis;
1937
- overflow: hidden;
1938
- white-space: nowrap;
1939
- height: 30px;
1940
- padding: 5px 10px;
1941
- color: #fffffe;
1942
- }
1943
- .media-control-audiotracks li a:hover {
1944
- text-decoration: none;
1945
- background-color: rgba(0, 0, 0, 0.4);
1946
- color: white;
1947
- }
1948
- .media-control-audiotracks li.current a {
1949
- color: #f00;
1950
- }
1951
- .media-control-audiotracks li:first-child a {
1952
- border-bottom-left-radius: 4px;
1953
- border-bottom-right-radius: 4px;
1954
- }
1955
- .media-control-audiotracks li:last-child a {
1956
- border-top-left-radius: 4px;
1957
- border-top-right-radius: 4px;
1958
- }
1959
-
1960
- @keyframes pulse {
1961
- 0% {
1962
- color: #fff;
1963
- }
1964
- 50% {
1965
- color: #ff0101;
1966
- }
1967
- 100% {
1968
- color: #B80000;
1969
- }
1970
- }.player-logo[data-logo] {
1971
- position: absolute;
1972
- z-index: 2;
1973
- width: 100%;
1974
- height: 100%;
1975
- }
1976
-
1977
- .clappr-logo {
1978
- position: absolute;
1979
- }.scrub-thumbnails {
1980
- position: absolute;
1981
- bottom: 52px;
1982
- width: 100%;
1983
- transition: opacity 0.3s ease;
1984
- }
1985
- .scrub-thumbnails.hidden {
1986
- opacity: 0;
1987
- }
1988
- .scrub-thumbnails .thumbnail-container {
1989
- display: inline-block;
1990
- position: relative;
1991
- overflow: hidden;
1992
- background-color: #000;
1993
- }
1994
- .scrub-thumbnails .thumbnail-container .thumbnail-img {
1995
- position: absolute;
1996
- width: auto;
1997
- }
1998
- .scrub-thumbnails .thumbnails-text {
1999
- background-color: rgba(74, 74, 74, 0.7);
2000
- border-radius: 3px;
2001
- white-space: nowrap;
2002
- overflow: hidden;
2003
- text-overflow: ellipsis;
2004
- color: white;
2005
- position: absolute;
2006
- bottom: 23px;
2007
- width: 100px;
2008
- }
2009
- .scrub-thumbnails .spotlight {
2010
- background-color: #4a4a4a;
2011
- overflow: hidden;
2012
- position: absolute;
2013
- bottom: 0;
2014
- left: 0;
2015
- border-color: #4a4a4a;
2016
- border-style: solid;
2017
- border-width: 3px;
2018
- border-radius: 3px;
2019
- }
2020
- .scrub-thumbnails .spotlight img {
2021
- width: auto;
2022
- }
2023
- .scrub-thumbnails .backdrop {
2024
- position: absolute;
2025
- left: 0;
2026
- bottom: 0;
2027
- right: 0;
2028
- background-color: #000;
2029
- overflow: hidden;
2030
- }
2031
- .scrub-thumbnails .backdrop .carousel {
2032
- position: absolute;
2033
- top: 0;
2034
- left: 0;
2035
- height: 100%;
2036
- white-space: nowrap;
2037
- }
2038
- .scrub-thumbnails .backdrop .carousel img {
2039
- width: auto;
2040
2048
  }