@gcorevideo/player 2.22.20 → 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 (50) 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/assets/level-selector/button.ejs +1 -1
  4. package/dist/core.js +1 -1
  5. package/dist/index.css +696 -688
  6. package/dist/index.js +271 -247
  7. package/dist/player.d.ts +57 -27
  8. package/dist/plugins/index.css +335 -327
  9. package/dist/plugins/index.js +109 -89
  10. package/docs/api/{player.bitratetrackrecord.md → player.clapprstatsbitratetrack.md} +3 -3
  11. package/docs/api/player.clapprstatsmetrics.md +2 -2
  12. package/docs/api/player.extendedevents.md +45 -0
  13. package/docs/api/player.gearevents.md +1 -1
  14. package/docs/api/player.md +22 -2
  15. package/docs/api/player.mediacontrol.mount.md +0 -5
  16. package/docs/api/player.mediacontrol.putelement.md +5 -0
  17. package/docs/api/player.mediacontrol.toggleelement.md +1 -1
  18. package/docs/api/player.volumefade._constructor_.md +50 -0
  19. package/docs/api/player.volumefade.md +40 -1
  20. package/docs/api/player.volumefadesettings.md +18 -0
  21. package/lib/plugins/clappr-nerd-stats/NerdStats.d.ts +1 -0
  22. package/lib/plugins/clappr-nerd-stats/NerdStats.d.ts.map +1 -1
  23. package/lib/plugins/clappr-nerd-stats/NerdStats.js +13 -3
  24. package/lib/plugins/clappr-nerd-stats/speedtest/Speedtest.d.ts.map +1 -1
  25. package/lib/plugins/clappr-nerd-stats/speedtest/Speedtest.js +1 -0
  26. package/lib/plugins/clappr-nerd-stats/speedtest/index.js +1 -1
  27. package/lib/plugins/clappr-nerd-stats/utils.d.ts.map +1 -1
  28. package/lib/plugins/clappr-nerd-stats/utils.js +17 -15
  29. package/lib/plugins/clappr-stats/ClapprStats.d.ts +1 -0
  30. package/lib/plugins/clappr-stats/ClapprStats.d.ts.map +1 -1
  31. package/lib/plugins/clappr-stats/ClapprStats.js +3 -0
  32. package/lib/plugins/click-to-pause/ClickToPause.js +6 -7
  33. package/lib/plugins/media-control/MediaControl.d.ts +3 -0
  34. package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
  35. package/lib/plugins/media-control/MediaControl.js +6 -1
  36. package/lib/plugins/volume-fade/VolumeFade.d.ts +28 -11
  37. package/lib/plugins/volume-fade/VolumeFade.d.ts.map +1 -1
  38. package/lib/plugins/volume-fade/VolumeFade.js +66 -61
  39. package/package.json +1 -1
  40. package/src/plugins/clappr-nerd-stats/NerdStats.ts +21 -8
  41. package/src/plugins/clappr-nerd-stats/speedtest/Speedtest.ts +1 -0
  42. package/src/plugins/clappr-nerd-stats/speedtest/index.ts +1 -1
  43. package/src/plugins/clappr-nerd-stats/utils.ts +23 -13
  44. package/src/plugins/clappr-stats/ClapprStats.ts +4 -0
  45. package/src/plugins/click-to-pause/ClickToPause.ts +6 -6
  46. package/src/plugins/level-selector/__tests__/__snapshots__/QualityLevels.test.ts.snap +1 -1
  47. package/src/plugins/media-control/MediaControl.ts +6 -1
  48. package/src/plugins/volume-fade/VolumeFade.ts +96 -76
  49. package/temp/player.api.json +132 -34
  50. package/tsconfig.tsbuildinfo +1 -1
@@ -135,6 +135,9 @@
135
135
  --speedtest-green: #73df4d;
136
136
  }
137
137
 
138
+ .clappr-nerd-stats {
139
+ cursor: default;
140
+ }
138
141
  .clappr-nerd-stats .stats-box {
139
142
  position: absolute;
140
143
  display: inline-block;
@@ -157,15 +160,15 @@
157
160
  position: absolute;
158
161
  top: 0;
159
162
  left: 0;
160
- z-index: 99990;
163
+ z-index: 9999;
161
164
  width: 100%;
162
165
  height: 32px;
163
166
  background: var(--primary-background-color);
164
167
  }
165
168
  .clappr-nerd-stats .stats-box-top .close-button {
166
- float: right;
167
- margin-right: 12px;
168
- margin-top: 10px;
169
+ position: absolute;
170
+ right: 12px;
171
+ top: 10px;
169
172
  display: block;
170
173
  width: 12px;
171
174
  height: 12px;
@@ -179,6 +182,12 @@
179
182
  .clappr-nerd-stats .stats-box-main {
180
183
  overflow: hidden;
181
184
  margin-top: 44px;
185
+ display: flex;
186
+ flex-wrap: wrap;
187
+ }
188
+ .clappr-nerd-stats .stats-box-main ul {
189
+ flex: 0 1 1fr;
190
+ min-width: 200px;
182
191
  }
183
192
  .clappr-nerd-stats .stats-box.wide {
184
193
  width: 820px;
@@ -190,10 +199,9 @@
190
199
  padding-left: 2px;
191
200
  padding-right: 2px;
192
201
  background: var(--primary-background-color);
202
+ gap: 10px;
193
203
  }
194
204
  .clappr-nerd-stats .stats-box ul {
195
- display: inline-block;
196
- float: left;
197
205
  padding: 5px;
198
206
  width: 200px;
199
207
  }
@@ -435,8 +443,8 @@
435
443
  .mobile .clappr-nerd-stats .stats-box-top {
436
444
  position: fixed;
437
445
  }
438
- .mobile .clappr-nerd-stats .stats-box ul {
439
- width: 50%;
446
+ .mobile .clappr-nerd-stats .stats-box-main ul {
447
+ flex: 0 1 50%;
440
448
  }
441
449
 
442
450
  @media only screen and (orientation: portrait) {
@@ -468,45 +476,58 @@
468
476
  }
469
477
  }
470
478
  @media only screen and (orientation: landscape) {
471
- .mobile .clappr-nerd-stats .stats-box ul {
472
- width: 25%;
479
+ .mobile .clappr-nerd-stats .stats-box-main ul {
480
+ flex-basis: 1fr;
473
481
  }
474
- }.context-menu {
475
- z-index: 999;
482
+ }.big-mute-icon-wrapper[data-big-mute] {
476
483
  position: absolute;
477
- top: 0;
478
- left: 0;
479
- text-align: center;
484
+ z-index: 9998;
485
+ background-color: transparent;
486
+ display: flex;
487
+ justify-content: center;
488
+ width: 100%;
489
+ height: calc(100% - 50px);
490
+ margin: 0 auto;
491
+ opacity: 0.75;
492
+ transition: opacity 0.1s ease;
493
+ pointer-events: auto;
480
494
  }
481
- .context-menu .context-menu-list {
482
- font-family: "Proxima Nova", sans-serif;
483
- font-size: 12px;
484
- line-height: 12px;
485
- list-style-type: none;
486
- text-align: left;
487
- padding: 5px;
488
- margin-left: auto;
489
- margin-right: auto;
490
- background-color: rgba(0, 0, 0, 0.75);
491
- border: 1px solid #666;
492
- border-radius: 4px;
495
+ .big-mute-icon-wrapper[data-big-mute].hide {
496
+ display: none;
493
497
  }
494
- .context-menu .context-menu-list-item button {
495
- border: none;
496
- background-color: transparent;
497
- padding: 0;
498
- color: white;
498
+ .big-mute-icon-wrapper[data-big-mute]:hover {
499
+ cursor: pointer;
500
+ }
501
+
502
+ .big-mute-icon[data-big-mute-icon] {
499
503
  display: flex;
500
- gap: 8px;
501
504
  align-items: center;
502
505
  justify-content: center;
503
- cursor: pointer;
504
- padding: 5px;
505
- width: 100%;
506
+ align-self: center;
507
+ width: 120px;
508
+ height: 120px;
509
+ border: 2px solid white;
510
+ border-radius: 50%;
511
+ filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
512
+ filter: alpha(opacity=60);
513
+ opacity: 1;
514
+ box-shadow: 0 0 1px 0 white;
515
+ background: rgba(240, 243, 247, 0.9411764706);
516
+ z-index: 10000;
506
517
  }
507
- .context-menu .context-menu-list-item_icon {
508
- width: 20px;
509
- height: 20px;
518
+ .big-mute-icon[data-big-mute-icon] svg {
519
+ margin-left: 5px;
520
+ width: 80px;
521
+ height: 80px;
522
+ }
523
+ .big-mute-icon[data-big-mute-icon] svg path {
524
+ fill: #1f1e1e !important;
525
+ }
526
+ .big-mute-icon[data-big-mute-icon]:hover {
527
+ background: rgba(240, 243, 247, 0.8784313725);
528
+ }
529
+ .big-mute-icon[data-big-mute-icon]:hover svg path {
530
+ fill: #151515 !important;
510
531
  }*,
511
532
  :focus,
512
533
  :visited {
@@ -607,6 +628,43 @@
607
628
  100% {
608
629
  color: #B80000;
609
630
  }
631
+ }@charset "UTF-8";
632
+ .media-control-clips {
633
+ display: flex;
634
+ gap: 6px;
635
+ }
636
+ .media-control-clips .media-clip-text {
637
+ text-overflow: ellipsis;
638
+ white-space: nowrap;
639
+ overflow: hidden;
640
+ display: inline-block;
641
+ text-overflow: ellipsis;
642
+ color: white;
643
+ cursor: default;
644
+ line-height: var(--bottom-panel);
645
+ position: relative;
646
+ }
647
+ .media-control-clips .media-clip-text::before {
648
+ content: "•";
649
+ padding-right: 6px;
650
+ }
651
+ .media-control-clips .media-clip-text {
652
+ max-width: 100px;
653
+ }.quality-levels li.disabled {
654
+ opacity: 0.5;
655
+ pointer-events: none;
656
+ }
657
+ .quality-levels li.current {
658
+ background-color: #000;
659
+ }.media-control-pip {
660
+ order: 95;
661
+ display: flex;
662
+ }
663
+ .media-control-pip button {
664
+ height: 20px;
665
+ }
666
+ .media-control-pip button svg {
667
+ height: 20px;
610
668
  }.dvr-controls[data-dvr] {
611
669
  display: inline-block;
612
670
  color: var(--player-dvr-color);
@@ -727,112 +785,39 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
727
785
  cursor: pointer;
728
786
  width: 30px;
729
787
  margin: 15px auto 0;
730
- }*, :focus, :visited {
731
- outline: none !important;
732
- }
733
-
734
- .gear-wrapper .go-back {
735
- font-weight: 600;
736
- font-size: 14px;
737
- line-height: 20px;
738
- width: 100%;
739
- text-align: left;
740
- padding: 12px;
741
- }
742
- .gear-wrapper .go-back .arrow-left-icon {
743
- float: left;
744
- padding-top: 2px;
745
- padding-right: 2px;
746
- }
747
- .gear-wrapper .go-back .arrow-left-icon svg {
748
- height: 16px;
749
- }
750
- .gear-wrapper ul.gear-sub-menu {
751
- width: 100%;
752
- list-style-type: none;
753
- min-width: 60px;
754
- border-top: 2px solid rgb(36, 36, 36);
755
- }
756
- .gear-wrapper ul.gear-sub-menu li {
757
- font-size: 12px;
758
- text-align: left;
759
- }
760
- .gear-wrapper ul.gear-sub-menu li[data-title] {
761
- background-color: #c3c2c2;
762
- padding: 5px;
763
- }
764
- .gear-wrapper ul.gear-sub-menu li a {
765
- display: block;
766
- text-decoration: none;
767
- height: 32px;
768
- padding: 5px 10px;
769
- line-height: 22px;
770
- color: #fffffe;
771
- }
772
- .gear-wrapper ul.gear-sub-menu li a:hover {
773
- color: white;
774
- background-color: rgba(0, 0, 0, 0.4);
775
- }
776
- .gear-wrapper ul.gear-sub-menu li a:hover a {
777
- color: white;
778
- text-decoration: none;
779
- }
780
- .gear-wrapper ul.gear-sub-menu li a .check-icon {
781
- width: 30px;
782
- height: 20px;
783
- float: left;
784
- display: block;
785
- }
786
- .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
787
- display: none;
788
- }
789
- .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
790
- display: inline;
791
- }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
792
- order: 99;
793
- height: 20px;
794
- }
795
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
788
+ }.seek-time[data-seek-time] {
796
789
  position: absolute;
797
- right: 16px;
798
- bottom: 52px;
799
- width: 250px;
800
- min-height: 48px;
790
+ white-space: nowrap;
791
+ height: 20px;
792
+ line-height: 20px;
793
+ font-size: 0;
794
+ left: -100%;
795
+ bottom: 55px;
796
+ background-color: rgba(2, 2, 2, 0.5);
801
797
  z-index: 9999;
802
- border-radius: 4px;
803
- }
804
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
805
- padding: 8px 0;
806
- }
807
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
808
- margin: 0;
809
- text-align: left;
810
- line-height: 22px;
811
- padding: 5px 14px;
812
- width: 250px;
813
- font-size: 12px;
814
- display: flex;
815
- align-items: center;
816
- justify-content: flex-start;
817
- gap: 8px;
798
+ transition: opacity 0.1s ease;
818
799
  }
819
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
820
- flex: 24px 0 0;
821
- height: 24px;
800
+ .seek-time[data-seek-time].hidden[data-seek-time] {
801
+ opacity: 0;
822
802
  }
823
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
824
- visibility: hidden;
803
+ .seek-time[data-seek-time] [data-seek-time] {
825
804
  display: inline-block;
805
+ color: white;
806
+ font-size: 10px;
807
+ padding-left: 7px;
808
+ padding-right: 7px;
809
+ vertical-align: top;
826
810
  }
827
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
828
- flex: 0 1 100%;
829
- }
830
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
831
- flex: 0 0 14px;
832
- height: 24px;
811
+ .seek-time[data-seek-time] [data-duration] {
812
+ display: inline-block;
813
+ color: rgba(255, 255, 255, 0.5);
814
+ font-size: 10px;
815
+ padding-right: 7px;
816
+ vertical-align: top;
833
817
  }
834
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
835
- flex: 1 0 auto;
818
+ .seek-time[data-seek-time] [data-duration]::before {
819
+ content: "|";
820
+ margin-right: 7px;
836
821
  }[data-player] {
837
822
  --bottom-panel: 40px;
838
823
  }
@@ -1450,55 +1435,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1450
1435
  }
1451
1436
  .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
1452
1437
  display: none !important;
1453
- }.big-mute-icon-wrapper[data-big-mute] {
1454
- position: absolute;
1455
- z-index: 9998;
1456
- background-color: transparent;
1457
- display: flex;
1458
- justify-content: center;
1459
- width: 100%;
1460
- height: calc(100% - 50px);
1461
- margin: 0 auto;
1462
- opacity: 0.75;
1463
- transition: opacity 0.1s ease;
1464
- pointer-events: auto;
1465
- }
1466
- .big-mute-icon-wrapper[data-big-mute].hide {
1467
- display: none;
1468
- }
1469
- .big-mute-icon-wrapper[data-big-mute]:hover {
1470
- cursor: pointer;
1471
- }
1472
-
1473
- .big-mute-icon[data-big-mute-icon] {
1474
- display: flex;
1475
- align-items: center;
1476
- justify-content: center;
1477
- align-self: center;
1478
- width: 120px;
1479
- height: 120px;
1480
- border: 2px solid white;
1481
- border-radius: 50%;
1482
- filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
1483
- filter: alpha(opacity=60);
1484
- opacity: 1;
1485
- box-shadow: 0 0 1px 0 white;
1486
- background: rgba(240, 243, 247, 0.9411764706);
1487
- z-index: 10000;
1488
- }
1489
- .big-mute-icon[data-big-mute-icon] svg {
1490
- margin-left: 5px;
1491
- width: 80px;
1492
- height: 80px;
1493
- }
1494
- .big-mute-icon[data-big-mute-icon] svg path {
1495
- fill: #1f1e1e !important;
1496
- }
1497
- .big-mute-icon[data-big-mute-icon]:hover {
1498
- background: rgba(240, 243, 247, 0.8784313725);
1499
- }
1500
- .big-mute-icon[data-big-mute-icon]:hover svg path {
1501
- fill: #151515 !important;
1502
1438
  }*, :focus, :visited {
1503
1439
  outline: none !important;
1504
1440
  }
@@ -1647,76 +1583,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1647
1583
  100% {
1648
1584
  color: #B80000;
1649
1585
  }
1650
- }@charset "UTF-8";
1651
- .media-control-clips {
1652
- display: flex;
1653
- gap: 6px;
1654
- }
1655
- .media-control-clips .media-clip-text {
1656
- text-overflow: ellipsis;
1657
- white-space: nowrap;
1658
- overflow: hidden;
1659
- display: inline-block;
1660
- text-overflow: ellipsis;
1661
- color: white;
1662
- cursor: default;
1663
- line-height: var(--bottom-panel);
1664
- position: relative;
1665
- }
1666
- .media-control-clips .media-clip-text::before {
1667
- content: "•";
1668
- padding-right: 6px;
1669
- }
1670
- .media-control-clips .media-clip-text {
1671
- max-width: 100px;
1672
- }.seek-time[data-seek-time] {
1673
- position: absolute;
1674
- white-space: nowrap;
1675
- height: 20px;
1676
- line-height: 20px;
1677
- font-size: 0;
1678
- left: -100%;
1679
- bottom: 55px;
1680
- background-color: rgba(2, 2, 2, 0.5);
1681
- z-index: 9999;
1682
- transition: opacity 0.1s ease;
1683
- }
1684
- .seek-time[data-seek-time].hidden[data-seek-time] {
1685
- opacity: 0;
1686
- }
1687
- .seek-time[data-seek-time] [data-seek-time] {
1688
- display: inline-block;
1689
- color: white;
1690
- font-size: 10px;
1691
- padding-left: 7px;
1692
- padding-right: 7px;
1693
- vertical-align: top;
1694
- }
1695
- .seek-time[data-seek-time] [data-duration] {
1696
- display: inline-block;
1697
- color: rgba(255, 255, 255, 0.5);
1698
- font-size: 10px;
1699
- padding-right: 7px;
1700
- vertical-align: top;
1701
- }
1702
- .seek-time[data-seek-time] [data-duration]::before {
1703
- content: "|";
1704
- margin-right: 7px;
1705
- }.quality-levels li.disabled {
1706
- opacity: 0.5;
1707
- pointer-events: none;
1708
- }
1709
- .quality-levels li.current {
1710
- background-color: #000;
1711
- }.media-control-pip {
1712
- order: 95;
1713
- display: flex;
1714
- }
1715
- .media-control-pip button {
1716
- height: 20px;
1717
- }
1718
- .media-control-pip button svg {
1719
- height: 20px;
1720
1586
  }.player-poster[data-poster] {
1721
1587
  display: flex;
1722
1588
  justify-content: center;
@@ -1834,6 +1700,218 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1834
1700
  display: inline-block;
1835
1701
  margin-right: 5px;
1836
1702
  cursor: pointer;
1703
+ }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
1704
+ order: 99;
1705
+ height: 20px;
1706
+ }
1707
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
1708
+ position: absolute;
1709
+ right: 16px;
1710
+ bottom: 52px;
1711
+ width: 250px;
1712
+ min-height: 48px;
1713
+ z-index: 9999;
1714
+ border-radius: 4px;
1715
+ }
1716
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
1717
+ padding: 8px 0;
1718
+ }
1719
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
1720
+ margin: 0;
1721
+ text-align: left;
1722
+ line-height: 22px;
1723
+ padding: 5px 14px;
1724
+ width: 250px;
1725
+ font-size: 12px;
1726
+ display: flex;
1727
+ align-items: center;
1728
+ justify-content: flex-start;
1729
+ gap: 8px;
1730
+ }
1731
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
1732
+ flex: 24px 0 0;
1733
+ height: 24px;
1734
+ }
1735
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
1736
+ visibility: hidden;
1737
+ display: inline-block;
1738
+ }
1739
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
1740
+ flex: 0 1 100%;
1741
+ }
1742
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
1743
+ flex: 0 0 14px;
1744
+ height: 24px;
1745
+ }
1746
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
1747
+ flex: 1 0 auto;
1748
+ }*, :focus, :visited {
1749
+ outline: none !important;
1750
+ }
1751
+
1752
+ .gear-wrapper .go-back {
1753
+ font-weight: 600;
1754
+ font-size: 14px;
1755
+ line-height: 20px;
1756
+ width: 100%;
1757
+ text-align: left;
1758
+ padding: 12px;
1759
+ }
1760
+ .gear-wrapper .go-back .arrow-left-icon {
1761
+ float: left;
1762
+ padding-top: 2px;
1763
+ padding-right: 2px;
1764
+ }
1765
+ .gear-wrapper .go-back .arrow-left-icon svg {
1766
+ height: 16px;
1767
+ }
1768
+ .gear-wrapper ul.gear-sub-menu {
1769
+ width: 100%;
1770
+ list-style-type: none;
1771
+ min-width: 60px;
1772
+ border-top: 2px solid rgb(36, 36, 36);
1773
+ }
1774
+ .gear-wrapper ul.gear-sub-menu li {
1775
+ font-size: 12px;
1776
+ text-align: left;
1777
+ }
1778
+ .gear-wrapper ul.gear-sub-menu li[data-title] {
1779
+ background-color: #c3c2c2;
1780
+ padding: 5px;
1781
+ }
1782
+ .gear-wrapper ul.gear-sub-menu li a {
1783
+ display: block;
1784
+ text-decoration: none;
1785
+ height: 32px;
1786
+ padding: 5px 10px;
1787
+ line-height: 22px;
1788
+ color: #fffffe;
1789
+ }
1790
+ .gear-wrapper ul.gear-sub-menu li a:hover {
1791
+ color: white;
1792
+ background-color: rgba(0, 0, 0, 0.4);
1793
+ }
1794
+ .gear-wrapper ul.gear-sub-menu li a:hover a {
1795
+ color: white;
1796
+ text-decoration: none;
1797
+ }
1798
+ .gear-wrapper ul.gear-sub-menu li a .check-icon {
1799
+ width: 30px;
1800
+ height: 20px;
1801
+ float: left;
1802
+ display: block;
1803
+ }
1804
+ .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
1805
+ display: none;
1806
+ }
1807
+ .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
1808
+ display: inline;
1809
+ }.scrub-thumbnails {
1810
+ position: absolute;
1811
+ bottom: 52px;
1812
+ width: 100%;
1813
+ transition: opacity 0.3s ease;
1814
+ }
1815
+ .scrub-thumbnails.hidden {
1816
+ opacity: 0;
1817
+ }
1818
+ .scrub-thumbnails .thumbnail-container {
1819
+ display: inline-block;
1820
+ position: relative;
1821
+ overflow: hidden;
1822
+ background-color: #000;
1823
+ }
1824
+ .scrub-thumbnails .thumbnail-container .thumbnail-img {
1825
+ position: absolute;
1826
+ width: auto;
1827
+ }
1828
+ .scrub-thumbnails .thumbnails-text {
1829
+ background-color: rgba(74, 74, 74, 0.7);
1830
+ border-radius: 3px;
1831
+ white-space: nowrap;
1832
+ overflow: hidden;
1833
+ text-overflow: ellipsis;
1834
+ color: white;
1835
+ position: absolute;
1836
+ bottom: 23px;
1837
+ width: 100px;
1838
+ }
1839
+ .scrub-thumbnails .spotlight {
1840
+ background-color: #4a4a4a;
1841
+ overflow: hidden;
1842
+ position: absolute;
1843
+ bottom: 0;
1844
+ left: 0;
1845
+ border-color: #4a4a4a;
1846
+ border-style: solid;
1847
+ border-width: 3px;
1848
+ border-radius: 3px;
1849
+ }
1850
+ .scrub-thumbnails .spotlight img {
1851
+ width: auto;
1852
+ }
1853
+ .scrub-thumbnails .backdrop {
1854
+ position: absolute;
1855
+ left: 0;
1856
+ bottom: 0;
1857
+ right: 0;
1858
+ background-color: #000;
1859
+ overflow: hidden;
1860
+ }
1861
+ .scrub-thumbnails .backdrop .carousel {
1862
+ position: absolute;
1863
+ top: 0;
1864
+ left: 0;
1865
+ height: 100%;
1866
+ white-space: nowrap;
1867
+ }
1868
+ .scrub-thumbnails .backdrop .carousel img {
1869
+ width: auto;
1870
+ }.context-menu {
1871
+ z-index: 999;
1872
+ position: absolute;
1873
+ top: 0;
1874
+ left: 0;
1875
+ text-align: center;
1876
+ }
1877
+ .context-menu .context-menu-list {
1878
+ font-family: "Proxima Nova", sans-serif;
1879
+ font-size: 12px;
1880
+ line-height: 12px;
1881
+ list-style-type: none;
1882
+ text-align: left;
1883
+ padding: 5px;
1884
+ margin-left: auto;
1885
+ margin-right: auto;
1886
+ background-color: rgba(0, 0, 0, 0.75);
1887
+ border: 1px solid #666;
1888
+ border-radius: 4px;
1889
+ }
1890
+ .context-menu .context-menu-list-item button {
1891
+ border: none;
1892
+ background-color: transparent;
1893
+ padding: 0;
1894
+ color: white;
1895
+ display: flex;
1896
+ gap: 8px;
1897
+ align-items: center;
1898
+ justify-content: center;
1899
+ cursor: pointer;
1900
+ padding: 5px;
1901
+ width: 100%;
1902
+ }
1903
+ .context-menu .context-menu-list-item_icon {
1904
+ width: 20px;
1905
+ height: 20px;
1906
+ }.player-logo[data-logo] {
1907
+ position: absolute;
1908
+ z-index: 2;
1909
+ width: 100%;
1910
+ height: 100%;
1911
+ }
1912
+
1913
+ .clappr-logo {
1914
+ position: absolute;
1837
1915
  }.spinner-three-bounce[data-spinner] {
1838
1916
  position: absolute;
1839
1917
  width: 70px;
@@ -1946,76 +2024,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1946
2024
  .ios-fullscreen::cue {
1947
2025
  visibility: visible !important;
1948
2026
  font-size: 1em !important;
1949
- }.scrub-thumbnails {
1950
- position: absolute;
1951
- bottom: 52px;
1952
- width: 100%;
1953
- transition: opacity 0.3s ease;
1954
- }
1955
- .scrub-thumbnails.hidden {
1956
- opacity: 0;
1957
- }
1958
- .scrub-thumbnails .thumbnail-container {
1959
- display: inline-block;
1960
- position: relative;
1961
- overflow: hidden;
1962
- background-color: #000;
1963
- }
1964
- .scrub-thumbnails .thumbnail-container .thumbnail-img {
1965
- position: absolute;
1966
- width: auto;
1967
- }
1968
- .scrub-thumbnails .thumbnails-text {
1969
- background-color: rgba(74, 74, 74, 0.7);
1970
- border-radius: 3px;
1971
- white-space: nowrap;
1972
- overflow: hidden;
1973
- text-overflow: ellipsis;
1974
- color: white;
1975
- position: absolute;
1976
- bottom: 23px;
1977
- width: 100px;
1978
- }
1979
- .scrub-thumbnails .spotlight {
1980
- background-color: #4a4a4a;
1981
- overflow: hidden;
1982
- position: absolute;
1983
- bottom: 0;
1984
- left: 0;
1985
- border-color: #4a4a4a;
1986
- border-style: solid;
1987
- border-width: 3px;
1988
- border-radius: 3px;
1989
- }
1990
- .scrub-thumbnails .spotlight img {
1991
- width: auto;
1992
- }
1993
- .scrub-thumbnails .backdrop {
1994
- position: absolute;
1995
- left: 0;
1996
- bottom: 0;
1997
- right: 0;
1998
- background-color: #000;
1999
- overflow: hidden;
2000
- }
2001
- .scrub-thumbnails .backdrop .carousel {
2002
- position: absolute;
2003
- top: 0;
2004
- left: 0;
2005
- height: 100%;
2006
- white-space: nowrap;
2007
- }
2008
- .scrub-thumbnails .backdrop .carousel img {
2009
- width: auto;
2010
- }.player-logo[data-logo] {
2011
- position: absolute;
2012
- z-index: 2;
2013
- width: 100%;
2014
- height: 100%;
2015
- }
2016
-
2017
- .clappr-logo {
2018
- position: absolute;
2019
2027
  }.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
2020
2028
  height: 0;
2021
2029
  }