@gcorevideo/player 2.28.3 → 2.28.4

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 (52) hide show
  1. package/dist/core.js +1 -1
  2. package/dist/index.css +459 -459
  3. package/dist/index.js +1 -1
  4. package/package.json +2 -2
  5. package/tsconfig.tsbuildinfo +1 -1
  6. package/coverage/clover.xml +0 -6
  7. package/coverage/coverage-final.json +0 -1
  8. package/coverage/lcov-report/base.css +0 -224
  9. package/coverage/lcov-report/block-navigation.js +0 -87
  10. package/coverage/lcov-report/favicon.png +0 -0
  11. package/coverage/lcov-report/index.html +0 -101
  12. package/coverage/lcov-report/prettify.css +0 -1
  13. package/coverage/lcov-report/prettify.js +0 -2
  14. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  15. package/coverage/lcov-report/sorter.js +0 -196
  16. package/coverage/lcov.info +0 -0
  17. package/dist/player.d.ts +0 -3369
  18. package/lib/playback/utils.d.ts +0 -2
  19. package/lib/playback/utils.d.ts.map +0 -1
  20. package/lib/playback/utils.js +0 -1
  21. package/lib/plugins/audio-selector/AudioSelector.d.ts +0 -67
  22. package/lib/plugins/audio-selector/AudioSelector.d.ts.map +0 -1
  23. package/lib/plugins/audio-selector/AudioSelector.js +0 -172
  24. package/lib/plugins/build.d.ts +0 -2
  25. package/lib/plugins/build.d.ts.map +0 -1
  26. package/lib/plugins/build.js +0 -1
  27. package/lib/plugins/clappr-nerd-stats/ClapprNerdStats.d.ts +0 -83
  28. package/lib/plugins/clappr-nerd-stats/ClapprNerdStats.d.ts.map +0 -1
  29. package/lib/plugins/clappr-nerd-stats/ClapprNerdStats.js +0 -339
  30. package/lib/plugins/disable-controls/DisableControls.d.ts +0 -15
  31. package/lib/plugins/disable-controls/DisableControls.d.ts.map +0 -1
  32. package/lib/plugins/disable-controls/DisableControls.js +0 -67
  33. package/lib/plugins/index.d.ts +0 -35
  34. package/lib/plugins/index.d.ts.map +0 -1
  35. package/lib/plugins/index.js +0 -37
  36. package/lib/plugins/level-selector/LevelSelector.d.ts +0 -112
  37. package/lib/plugins/level-selector/LevelSelector.d.ts.map +0 -1
  38. package/lib/plugins/level-selector/LevelSelector.js +0 -280
  39. package/lib/plugins/statistics/Statistics.d.ts +0 -87
  40. package/lib/plugins/statistics/Statistics.d.ts.map +0 -1
  41. package/lib/plugins/statistics/Statistics.js +0 -172
  42. package/lib/plugins/subtitles/Subtitles.d.ts +0 -115
  43. package/lib/plugins/subtitles/Subtitles.d.ts.map +0 -1
  44. package/lib/plugins/subtitles/Subtitles.js +0 -345
  45. package/lib/tsdoc-metadata.json +0 -11
  46. package/lib/utils/fullscreen.d.ts +0 -3
  47. package/lib/utils/fullscreen.d.ts.map +0 -1
  48. package/lib/utils/fullscreen.js +0 -2
  49. package/release.txt +0 -395
  50. package/release_notes +0 -297
  51. package/src/plugins/telemetry/Statistics copy.js +0 -296
  52. package/temp/player.api.json +0 -10275
package/dist/index.css CHANGED
@@ -122,6 +122,55 @@
122
122
  .gplayer-lite-btn::-moz-focus-inner {
123
123
  border: 0;
124
124
  padding: 0;
125
+ }.big-mute-icon-wrapper[data-big-mute] {
126
+ position: absolute;
127
+ z-index: 9998;
128
+ background-color: transparent;
129
+ display: flex;
130
+ justify-content: center;
131
+ width: 100%;
132
+ height: calc(100% - 50px);
133
+ margin: 0 auto;
134
+ opacity: 0.75;
135
+ transition: opacity 0.1s ease;
136
+ pointer-events: auto;
137
+ }
138
+ .big-mute-icon-wrapper[data-big-mute].hide {
139
+ display: none;
140
+ }
141
+ .big-mute-icon-wrapper[data-big-mute]:hover {
142
+ cursor: pointer;
143
+ }
144
+
145
+ .big-mute-icon[data-big-mute-icon] {
146
+ display: flex;
147
+ align-items: center;
148
+ justify-content: center;
149
+ align-self: center;
150
+ width: 120px;
151
+ height: 120px;
152
+ border: 2px solid white;
153
+ border-radius: 50%;
154
+ filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
155
+ filter: alpha(opacity=60);
156
+ opacity: 1;
157
+ box-shadow: 0 0 1px 0 white;
158
+ background: rgba(240, 243, 247, 0.9411764706);
159
+ z-index: 10000;
160
+ }
161
+ .big-mute-icon[data-big-mute-icon] svg {
162
+ margin-left: 5px;
163
+ width: 80px;
164
+ height: 80px;
165
+ }
166
+ .big-mute-icon[data-big-mute-icon] svg path {
167
+ fill: #1f1e1e !important;
168
+ }
169
+ .big-mute-icon[data-big-mute-icon]:hover {
170
+ background: rgba(240, 243, 247, 0.8784313725);
171
+ }
172
+ .big-mute-icon[data-big-mute-icon]:hover svg path {
173
+ fill: #151515 !important;
125
174
  }.media-control-skin-1 .media-control-item.media-control-gear {
126
175
  order: 99;
127
176
  }
@@ -589,190 +638,6 @@
589
638
  .fullscreen .clappr-nerd-stats .stats-box {
590
639
  top: unset;
591
640
  }
592
- }*,
593
- :focus,
594
- :visited {
595
- outline: none !important;
596
- }
597
-
598
- .multicamera[data-multicamera] {
599
- float: right;
600
- margin-top: 4px;
601
- position: relative;
602
- margin-right: 20px;
603
- width: 20px;
604
- }
605
- .multicamera[data-multicamera] button {
606
- background-color: transparent;
607
- color: #fff;
608
- font-family: Roboto, "Open Sans", Arial, sans-serif;
609
- -webkit-font-smoothing: antialiased;
610
- border: none;
611
- font-size: 14px;
612
- padding: 0;
613
- }
614
- .multicamera[data-multicamera] button svg {
615
- height: 20px;
616
- position: relative;
617
- margin-top: 6px;
618
- }
619
- .multicamera[data-multicamera] button:hover {
620
- color: #c9c9c9;
621
- }
622
- .multicamera[data-multicamera] button.changing {
623
- animation: pulse 0.5s infinite alternate;
624
- }
625
- .multicamera[data-multicamera] button span.quality-arrow {
626
- width: 9px;
627
- height: 6px;
628
- margin-top: 11px;
629
- margin-left: 5px;
630
- }
631
- .multicamera[data-multicamera] > ul {
632
- padding: 6px 0;
633
- right: -24px;
634
- width: 245px;
635
- list-style-type: none;
636
- position: absolute;
637
- bottom: 48px;
638
- border-radius: 4px;
639
- display: none;
640
- background-color: rgba(74, 74, 74, 0.9);
641
- }
642
- .multicamera[data-multicamera] > ul::after {
643
- content: "";
644
- position: absolute;
645
- top: 100%;
646
- left: 85%;
647
- margin-left: -10px;
648
- width: 0;
649
- height: 0;
650
- border-top: 10px solid rgba(74, 74, 74, 0.9);
651
- border-right: 10px solid transparent;
652
- border-left: 10px solid transparent;
653
- }
654
- .multicamera[data-multicamera] li {
655
- font-size: 10px;
656
- cursor: pointer;
657
- }
658
- .multicamera[data-multicamera] li .multicamera-item {
659
- display: flex;
660
- padding: 10px 0;
661
- justify-content: center;
662
- position: relative;
663
- }
664
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
665
- pointer-events: none;
666
- }
667
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
668
- opacity: 0.5;
669
- }
670
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
671
- opacity: 0.5;
672
- }
673
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
674
- background-color: rgba(0, 0, 0, 0);
675
- }
676
- .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
677
- background-color: rgba(0, 0, 0, 0.3);
678
- }
679
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
680
- width: 80px;
681
- height: 60px;
682
- }
683
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
684
- width: 80px;
685
- height: 60px;
686
- }
687
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
688
- width: 120px;
689
- text-align: left;
690
- margin-left: 15px;
691
- }
692
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title,
693
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
694
- width: 120px;
695
- height: 20px;
696
- font-family: Roboto, "Open Sans", Arial, sans-serif;
697
- font-size: 14px;
698
- font-weight: normal;
699
- font-style: normal;
700
- font-stretch: normal;
701
- line-height: 1.43;
702
- letter-spacing: normal;
703
- text-align: left;
704
- color: #fff;
705
- text-overflow: ellipsis;
706
- overflow: hidden;
707
- }
708
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
709
- opacity: 0.6;
710
- }
711
- .multicamera[data-multicamera] li a {
712
- color: #444;
713
- padding: 2px 10px;
714
- display: block;
715
- text-decoration: none;
716
- }
717
- .multicamera[data-multicamera] li a:hover {
718
- background-color: #555;
719
- color: white;
720
- }
721
- .multicamera[data-multicamera] li a:hover a {
722
- color: white;
723
- text-decoration: none;
724
- }
725
- .multicamera[data-multicamera] li.current a {
726
- color: #f00;
727
- }.big-mute-icon-wrapper[data-big-mute] {
728
- position: absolute;
729
- z-index: 9998;
730
- background-color: transparent;
731
- display: flex;
732
- justify-content: center;
733
- width: 100%;
734
- height: calc(100% - 50px);
735
- margin: 0 auto;
736
- opacity: 0.75;
737
- transition: opacity 0.1s ease;
738
- pointer-events: auto;
739
- }
740
- .big-mute-icon-wrapper[data-big-mute].hide {
741
- display: none;
742
- }
743
- .big-mute-icon-wrapper[data-big-mute]:hover {
744
- cursor: pointer;
745
- }
746
-
747
- .big-mute-icon[data-big-mute-icon] {
748
- display: flex;
749
- align-items: center;
750
- justify-content: center;
751
- align-self: center;
752
- width: 120px;
753
- height: 120px;
754
- border: 2px solid white;
755
- border-radius: 50%;
756
- filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
757
- filter: alpha(opacity=60);
758
- opacity: 1;
759
- box-shadow: 0 0 1px 0 white;
760
- background: rgba(240, 243, 247, 0.9411764706);
761
- z-index: 10000;
762
- }
763
- .big-mute-icon[data-big-mute-icon] svg {
764
- margin-left: 5px;
765
- width: 80px;
766
- height: 80px;
767
- }
768
- .big-mute-icon[data-big-mute-icon] svg path {
769
- fill: #1f1e1e !important;
770
- }
771
- .big-mute-icon[data-big-mute-icon]:hover {
772
- background: rgba(240, 243, 247, 0.8784313725);
773
- }
774
- .big-mute-icon[data-big-mute-icon]:hover svg path {
775
- fill: #151515 !important;
776
641
  }@charset "UTF-8";
777
642
  .gplayer-mc-clips {
778
643
  display: flex;
@@ -796,27 +661,63 @@
796
661
  }
797
662
  .gplayer-mc-clips .gplayer-mc-clips-text.compact {
798
663
  max-width: 100px;
799
- }div.player-error-screen, [data-player] div.player-error-screen {
800
- color: #CCCACA;
664
+ }.context-menu {
665
+ z-index: 999;
801
666
  position: absolute;
802
667
  top: 0;
803
- height: 100%;
804
- width: 100%;
805
- background-color: rgba(0, 0, 0, 0.7);
806
- z-index: 2000;
807
- display: flex;
808
- flex-direction: column;
809
- justify-content: center;
810
- }
811
- div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
812
- font-size: 14px;
813
- color: #CCCACA;
814
- margin-top: 45px;
815
- }
816
- div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
817
- font-weight: bold;
818
- line-height: 30px;
819
- font-size: 18px;
668
+ left: 0;
669
+ text-align: center;
670
+ }
671
+ .context-menu .context-menu-list {
672
+ font-family: "Proxima Nova", sans-serif;
673
+ font-size: 12px;
674
+ line-height: 12px;
675
+ list-style-type: none;
676
+ text-align: left;
677
+ padding: 5px;
678
+ margin-left: auto;
679
+ margin-right: auto;
680
+ background-color: rgba(0, 0, 0, 0.75);
681
+ border: 1px solid #666;
682
+ border-radius: 4px;
683
+ }
684
+ .context-menu .context-menu-list-item button {
685
+ border: none;
686
+ background-color: transparent;
687
+ padding: 0;
688
+ color: white;
689
+ display: flex;
690
+ gap: 8px;
691
+ align-items: center;
692
+ justify-content: center;
693
+ cursor: pointer;
694
+ padding: 5px;
695
+ width: 100%;
696
+ }
697
+ .context-menu .context-menu-list-item_icon {
698
+ width: 20px;
699
+ height: 20px;
700
+ }div.player-error-screen, [data-player] div.player-error-screen {
701
+ color: #CCCACA;
702
+ position: absolute;
703
+ top: 0;
704
+ height: 100%;
705
+ width: 100%;
706
+ background-color: rgba(0, 0, 0, 0.7);
707
+ z-index: 2000;
708
+ display: flex;
709
+ flex-direction: column;
710
+ justify-content: center;
711
+ }
712
+ div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
713
+ font-size: 14px;
714
+ color: #CCCACA;
715
+ margin-top: 45px;
716
+ }
717
+ div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
718
+ font-weight: bold;
719
+ line-height: 30px;
720
+ font-size: 18px;
820
721
  }
821
722
  div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
822
723
  width: 90%;
@@ -830,141 +731,71 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
830
731
  cursor: pointer;
831
732
  width: 30px;
832
733
  margin: 15px auto 0;
833
- }.player-poster {
734
+ }.dvr-controls {
735
+ --disabled-opacity: 0.3;
736
+ --circle-radius: 5px;
834
737
  display: flex;
835
- justify-content: center;
836
738
  align-items: center;
837
- position: absolute;
838
- height: 100%;
839
- width: 100%;
840
- z-index: 998;
841
- top: 0;
842
- left: 0;
843
- background-color: #000;
844
- background-size: cover;
845
- background-repeat: no-repeat;
846
- background-position: 50% 50%;
847
- }
848
- .player-poster.clickable {
849
- cursor: pointer;
850
- }
851
- .player-poster:hover .play-wrapper {
852
- opacity: 1;
853
- }
854
- .player-poster .play-wrapper {
855
- width: 100%;
856
- height: 25%;
857
- margin: 0 auto;
858
- opacity: 0.75;
859
- transition: opacity 0.1s ease;
860
- }
861
- .player-poster .play-wrapper svg {
862
- height: 100%;
863
- display: inline;
864
- }
865
- .player-poster .play-wrapper svg path {
866
- fill: #fff;
867
- }.spinner-three-bounce[data-spinner] {
868
- position: absolute;
869
- width: 70px;
870
- text-align: center;
871
- z-index: 999;
872
- left: 0;
873
- right: 0;
874
- margin: 0 auto;
875
- margin-left: auto;
876
- margin-right: auto;
877
- /* center vertically */
878
- top: 50%;
879
- transform: translateY(-50%);
880
- }
881
- .spinner-three-bounce[data-spinner] > div {
882
- width: 18px;
883
- height: 18px;
884
- background-color: #FFF;
885
- border-radius: 100%;
886
- display: inline-block;
887
- animation: bouncedelay 1.4s infinite ease-in-out;
888
- /* Prevent first frame from flickering when animation starts */
889
- animation-fill-mode: both;
890
- }
891
- .spinner-three-bounce[data-spinner] [data-bounce1] {
892
- animation-delay: -0.32s;
893
- }
894
- .spinner-three-bounce[data-spinner] [data-bounce2] {
895
- animation-delay: -0.16s;
896
- }
897
-
898
- @keyframes bouncedelay {
899
- 0%, 80%, 100% {
900
- transform: scale(0);
901
- }
902
- 40% {
903
- transform: scale(1);
904
- }
905
- }.scrub-thumbnails {
906
- position: absolute;
907
- bottom: 52px;
908
- width: 100%;
909
- transition: opacity 0.3s ease;
739
+ color: var(--player-dvr-color);
740
+ font-size: 10px;
741
+ font-weight: 500;
742
+ height: var(--bottom-panel);
743
+ line-height: var(--bottom-panel);
744
+ margin-left: 0;
910
745
  }
911
- .scrub-thumbnails.hidden {
912
- opacity: 0;
746
+ .dvr-controls .live-info,
747
+ .dvr-controls .live-button {
748
+ font-size: 14px;
749
+ font-weight: 500;
750
+ margin-left: 20px;
751
+ letter-spacing: 0.8px;
752
+ text-transform: uppercase;
913
753
  }
914
- .scrub-thumbnails .thumbnail-container {
754
+ .dvr-controls .live-info::before,
755
+ .dvr-controls .live-button::before {
756
+ margin-right: 8px;
757
+ content: "";
915
758
  display: inline-block;
916
759
  position: relative;
917
- overflow: hidden;
918
- background-color: #000;
760
+ width: calc(var(--circle-radius) * 2);
761
+ height: calc(var(--circle-radius) * 2);
762
+ border-radius: var(--circle-radius);
763
+ background-color: var(--player-dvr-color);
919
764
  }
920
- .scrub-thumbnails .thumbnail-container .thumbnail-img {
921
- position: absolute;
922
- width: auto;
765
+ .dvr-controls.disabled {
766
+ opacity: var(--disabled-opacity);
923
767
  }
924
- .scrub-thumbnails .thumbnails-text {
925
- background-color: rgba(74, 74, 74, 0.7);
926
- border-radius: 3px;
927
- white-space: nowrap;
928
- overflow: hidden;
929
- text-overflow: ellipsis;
930
- color: white;
931
- position: absolute;
932
- bottom: 23px;
933
- width: 100px;
934
- padding: 0 4px;
935
- font-size: 12px;
768
+ .dvr-controls.disabled:before {
769
+ background-color: var(--player-dvr-color);
936
770
  }
937
- .scrub-thumbnails .spotlight {
938
- background-color: #4a4a4a;
939
- overflow: hidden;
940
- position: absolute;
941
- bottom: 0;
942
- left: 0;
943
- border-color: #4a4a4a;
944
- border-style: solid;
945
- border-width: 3px;
946
- border-radius: 3px;
771
+ .dvr-controls .live-info {
772
+ text-transform: uppercase;
773
+ color: #fffffe;
947
774
  }
948
- .scrub-thumbnails .spotlight img {
949
- width: auto;
775
+ .dvr-controls .live-info::before {
776
+ background-color: #ed4f4a;
950
777
  }
951
- .scrub-thumbnails .backdrop {
952
- position: absolute;
953
- left: 0;
954
- bottom: 0;
955
- right: 0;
956
- background-color: #000;
957
- overflow: hidden;
778
+ .dvr-controls .live-button {
779
+ cursor: pointer;
780
+ outline: none;
781
+ border: 0;
782
+ color: var(--player-dvr-color);
783
+ background-color: transparent;
784
+ padding: 0;
785
+ opacity: 0.7;
786
+ transition: all 0.1s ease;
958
787
  }
959
- .scrub-thumbnails .backdrop .carousel {
960
- position: absolute;
961
- top: 0;
962
- left: 0;
963
- height: 100%;
964
- white-space: nowrap;
788
+ .dvr-controls .live-button:hover {
789
+ opacity: 1;
790
+ text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
791
+ }.media-control-skin-1 .media-control-item.media-control-pip {
792
+ order: 95;
965
793
  }
966
- .scrub-thumbnails .backdrop .carousel img {
967
- width: auto;
794
+ .media-control-skin-1 .media-control-item.media-control-pip button {
795
+ height: 20px;
796
+ }
797
+ .media-control-skin-1 .media-control-item.media-control-pip button svg {
798
+ height: 20px;
968
799
  }[data-player] {
969
800
  --bottom-panel: 40px;
970
801
  }
@@ -1586,167 +1417,175 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1586
1417
  100% {
1587
1418
  color: #B80000;
1588
1419
  }
1589
- }.container-with-poster-clickable .mc-skip-time {
1590
- height: 0;
1420
+ }*,
1421
+ :focus,
1422
+ :visited {
1423
+ outline: none !important;
1591
1424
  }
1592
1425
 
1593
- .mc-skip-time {
1594
- position: absolute;
1595
- width: 100%;
1596
- height: calc(100% - 50px);
1597
- z-index: 9998;
1426
+ .multicamera[data-multicamera] {
1427
+ float: right;
1428
+ margin-top: 4px;
1429
+ position: relative;
1430
+ margin-right: 20px;
1431
+ width: 20px;
1432
+ }
1433
+ .multicamera[data-multicamera] button {
1598
1434
  background-color: transparent;
1435
+ color: #fff;
1599
1436
  font-family: Roboto, "Open Sans", Arial, sans-serif;
1437
+ -webkit-font-smoothing: antialiased;
1438
+ border: none;
1439
+ font-size: 14px;
1440
+ padding: 0;
1600
1441
  }
1601
- .mc-skip-time .skip-container {
1602
- width: 100%;
1603
- height: 100%;
1604
- display: flex;
1605
- justify-content: space-between;
1606
- }
1607
- .mc-skip-time .skip-container .skip-item {
1608
- flex: 1 0 0px;
1609
- height: 100%;
1610
- }.dvr-controls {
1611
- --disabled-opacity: 0.3;
1612
- --circle-radius: 5px;
1613
- display: flex;
1614
- align-items: center;
1615
- color: var(--player-dvr-color);
1616
- font-size: 10px;
1617
- font-weight: 500;
1618
- height: var(--bottom-panel);
1619
- line-height: var(--bottom-panel);
1620
- margin-left: 0;
1621
- }
1622
- .dvr-controls .live-info,
1623
- .dvr-controls .live-button {
1624
- font-size: 14px;
1625
- font-weight: 500;
1626
- margin-left: 20px;
1627
- letter-spacing: 0.8px;
1628
- text-transform: uppercase;
1629
- }
1630
- .dvr-controls .live-info::before,
1631
- .dvr-controls .live-button::before {
1632
- margin-right: 8px;
1633
- content: "";
1634
- display: inline-block;
1442
+ .multicamera[data-multicamera] button svg {
1443
+ height: 20px;
1635
1444
  position: relative;
1636
- width: calc(var(--circle-radius) * 2);
1637
- height: calc(var(--circle-radius) * 2);
1638
- border-radius: var(--circle-radius);
1639
- background-color: var(--player-dvr-color);
1445
+ margin-top: 6px;
1640
1446
  }
1641
- .dvr-controls.disabled {
1642
- opacity: var(--disabled-opacity);
1447
+ .multicamera[data-multicamera] button:hover {
1448
+ color: #c9c9c9;
1643
1449
  }
1644
- .dvr-controls.disabled:before {
1645
- background-color: var(--player-dvr-color);
1450
+ .multicamera[data-multicamera] button.changing {
1451
+ animation: pulse 0.5s infinite alternate;
1646
1452
  }
1647
- .dvr-controls .live-info {
1648
- text-transform: uppercase;
1649
- color: #fffffe;
1453
+ .multicamera[data-multicamera] button span.quality-arrow {
1454
+ width: 9px;
1455
+ height: 6px;
1456
+ margin-top: 11px;
1457
+ margin-left: 5px;
1650
1458
  }
1651
- .dvr-controls .live-info::before {
1652
- background-color: #ed4f4a;
1459
+ .multicamera[data-multicamera] > ul {
1460
+ padding: 6px 0;
1461
+ right: -24px;
1462
+ width: 245px;
1463
+ list-style-type: none;
1464
+ position: absolute;
1465
+ bottom: 48px;
1466
+ border-radius: 4px;
1467
+ display: none;
1468
+ background-color: rgba(74, 74, 74, 0.9);
1653
1469
  }
1654
- .dvr-controls .live-button {
1470
+ .multicamera[data-multicamera] > ul::after {
1471
+ content: "";
1472
+ position: absolute;
1473
+ top: 100%;
1474
+ left: 85%;
1475
+ margin-left: -10px;
1476
+ width: 0;
1477
+ height: 0;
1478
+ border-top: 10px solid rgba(74, 74, 74, 0.9);
1479
+ border-right: 10px solid transparent;
1480
+ border-left: 10px solid transparent;
1481
+ }
1482
+ .multicamera[data-multicamera] li {
1483
+ font-size: 10px;
1655
1484
  cursor: pointer;
1656
- outline: none;
1657
- border: 0;
1658
- color: var(--player-dvr-color);
1659
- background-color: transparent;
1660
- padding: 0;
1661
- opacity: 0.7;
1662
- transition: all 0.1s ease;
1663
1485
  }
1664
- .dvr-controls .live-button:hover {
1665
- opacity: 1;
1666
- text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
1667
- }.media-control-skin-1 .media-control-cc button.media-control-button {
1486
+ .multicamera[data-multicamera] li .multicamera-item {
1668
1487
  display: flex;
1488
+ padding: 10px 0;
1669
1489
  justify-content: center;
1670
- padding: 0;
1671
- align-items: center;
1672
- vertical-align: top;
1490
+ position: relative;
1673
1491
  }
1674
- .media-control-skin-1 .media-control-cc button.media-control-button:hover {
1675
- color: white;
1492
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
1493
+ pointer-events: none;
1676
1494
  }
1677
- .media-control-skin-1 .media-control-cc ul li {
1678
- text-align: center;
1495
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
1496
+ opacity: 0.5;
1679
1497
  }
1680
- .media-control-skin-1 .media-control-cc ul li a {
1681
- height: 30px;
1682
- padding: 5px 10px;
1683
- color: #fffffe;
1498
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
1499
+ opacity: 0.5;
1684
1500
  }
1685
- .media-control-skin-1 .media-control-cc ul li a:hover {
1686
- background-color: rgba(0, 0, 0, 0.4);
1501
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
1502
+ background-color: rgba(0, 0, 0, 0);
1687
1503
  }
1688
- .media-control-skin-1 .media-control-cc ul li.current a {
1689
- background-color: rgba(0, 0, 0, 0.4);
1504
+ .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
1505
+ background-color: rgba(0, 0, 0, 0.3);
1690
1506
  }
1691
- .media-control-skin-1 .media-control-cc ul li:first-child a {
1692
- border-bottom-left-radius: 4px;
1693
- border-bottom-right-radius: 4px;
1507
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
1508
+ width: 80px;
1509
+ height: 60px;
1694
1510
  }
1695
- .media-control-skin-1 .media-control-cc ul li:last-child a {
1696
- border-top-left-radius: 4px;
1697
- border-top-right-radius: 4px;
1511
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
1512
+ width: 80px;
1513
+ height: 60px;
1698
1514
  }
1699
- .media-control-skin-1 .media-control-cc {
1700
- position: relative;
1701
- order: 85;
1515
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
1516
+ width: 120px;
1517
+ text-align: left;
1518
+ margin-left: 15px;
1702
1519
  }
1703
-
1704
- .container .gplayer-cc-line {
1705
- position: absolute;
1706
- bottom: calc(var(--bottom-panel) + 5px);
1707
- width: 100%;
1520
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title,
1521
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1522
+ width: 120px;
1523
+ height: 20px;
1524
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1525
+ font-size: 14px;
1526
+ font-weight: normal;
1527
+ font-style: normal;
1528
+ font-stretch: normal;
1529
+ line-height: 1.43;
1530
+ letter-spacing: normal;
1531
+ text-align: left;
1532
+ color: #fff;
1533
+ text-overflow: ellipsis;
1534
+ overflow: hidden;
1708
1535
  }
1709
- .container .gplayer-cc-line p {
1710
- width: auto;
1711
- background-color: rgba(0, 0, 0, 0.4);
1712
- color: white;
1713
- display: inline-block;
1714
- }.context-menu {
1715
- z-index: 999;
1716
- position: absolute;
1717
- top: 0;
1718
- left: 0;
1719
- text-align: center;
1536
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1537
+ opacity: 0.6;
1720
1538
  }
1721
- .context-menu .context-menu-list {
1722
- font-family: "Proxima Nova", sans-serif;
1723
- font-size: 12px;
1724
- line-height: 12px;
1725
- list-style-type: none;
1726
- text-align: left;
1727
- padding: 5px;
1728
- margin-left: auto;
1729
- margin-right: auto;
1730
- background-color: rgba(0, 0, 0, 0.75);
1731
- border: 1px solid #666;
1732
- border-radius: 4px;
1539
+ .multicamera[data-multicamera] li a {
1540
+ color: #444;
1541
+ padding: 2px 10px;
1542
+ display: block;
1543
+ text-decoration: none;
1733
1544
  }
1734
- .context-menu .context-menu-list-item button {
1735
- border: none;
1736
- background-color: transparent;
1737
- padding: 0;
1545
+ .multicamera[data-multicamera] li a:hover {
1546
+ background-color: #555;
1738
1547
  color: white;
1548
+ }
1549
+ .multicamera[data-multicamera] li a:hover a {
1550
+ color: white;
1551
+ text-decoration: none;
1552
+ }
1553
+ .multicamera[data-multicamera] li.current a {
1554
+ color: #f00;
1555
+ }.player-poster {
1739
1556
  display: flex;
1740
- gap: 8px;
1741
- align-items: center;
1742
1557
  justify-content: center;
1558
+ align-items: center;
1559
+ position: absolute;
1560
+ height: 100%;
1561
+ width: 100%;
1562
+ z-index: 998;
1563
+ top: 0;
1564
+ left: 0;
1565
+ background-color: #000;
1566
+ background-size: cover;
1567
+ background-repeat: no-repeat;
1568
+ background-position: 50% 50%;
1569
+ }
1570
+ .player-poster.clickable {
1743
1571
  cursor: pointer;
1744
- padding: 5px;
1572
+ }
1573
+ .player-poster:hover .play-wrapper {
1574
+ opacity: 1;
1575
+ }
1576
+ .player-poster .play-wrapper {
1745
1577
  width: 100%;
1578
+ height: 25%;
1579
+ margin: 0 auto;
1580
+ opacity: 0.75;
1581
+ transition: opacity 0.1s ease;
1746
1582
  }
1747
- .context-menu .context-menu-list-item_icon {
1748
- width: 20px;
1749
- height: 20px;
1583
+ .player-poster .play-wrapper svg {
1584
+ height: 100%;
1585
+ display: inline;
1586
+ }
1587
+ .player-poster .play-wrapper svg path {
1588
+ fill: #fff;
1750
1589
  }.share_plugin[data-share] {
1751
1590
  pointer-events: auto;
1752
1591
  z-index: 5;
@@ -1863,14 +1702,175 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1863
1702
  .seek-time .seek-time__duration::before {
1864
1703
  content: "|";
1865
1704
  margin-right: 7px;
1866
- }.media-control-skin-1 .media-control-item.media-control-pip {
1867
- order: 95;
1705
+ }.media-control-skin-1 .media-control-cc button.media-control-button {
1706
+ display: flex;
1707
+ justify-content: center;
1708
+ padding: 0;
1709
+ align-items: center;
1710
+ vertical-align: top;
1868
1711
  }
1869
- .media-control-skin-1 .media-control-item.media-control-pip button {
1870
- height: 20px;
1712
+ .media-control-skin-1 .media-control-cc button.media-control-button:hover {
1713
+ color: white;
1871
1714
  }
1872
- .media-control-skin-1 .media-control-item.media-control-pip button svg {
1873
- height: 20px;
1715
+ .media-control-skin-1 .media-control-cc ul li {
1716
+ text-align: center;
1717
+ }
1718
+ .media-control-skin-1 .media-control-cc ul li a {
1719
+ height: 30px;
1720
+ padding: 5px 10px;
1721
+ color: #fffffe;
1722
+ }
1723
+ .media-control-skin-1 .media-control-cc ul li a:hover {
1724
+ background-color: rgba(0, 0, 0, 0.4);
1725
+ }
1726
+ .media-control-skin-1 .media-control-cc ul li.current a {
1727
+ background-color: rgba(0, 0, 0, 0.4);
1728
+ }
1729
+ .media-control-skin-1 .media-control-cc ul li:first-child a {
1730
+ border-bottom-left-radius: 4px;
1731
+ border-bottom-right-radius: 4px;
1732
+ }
1733
+ .media-control-skin-1 .media-control-cc ul li:last-child a {
1734
+ border-top-left-radius: 4px;
1735
+ border-top-right-radius: 4px;
1736
+ }
1737
+ .media-control-skin-1 .media-control-cc {
1738
+ position: relative;
1739
+ order: 85;
1740
+ }
1741
+
1742
+ .container .gplayer-cc-line {
1743
+ position: absolute;
1744
+ bottom: calc(var(--bottom-panel) + 5px);
1745
+ width: 100%;
1746
+ }
1747
+ .container .gplayer-cc-line p {
1748
+ width: auto;
1749
+ background-color: rgba(0, 0, 0, 0.4);
1750
+ color: white;
1751
+ display: inline-block;
1752
+ }.container-with-poster-clickable .mc-skip-time {
1753
+ height: 0;
1754
+ }
1755
+
1756
+ .mc-skip-time {
1757
+ position: absolute;
1758
+ width: 100%;
1759
+ height: calc(100% - 50px);
1760
+ z-index: 9998;
1761
+ background-color: transparent;
1762
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1763
+ }
1764
+ .mc-skip-time .skip-container {
1765
+ width: 100%;
1766
+ height: 100%;
1767
+ display: flex;
1768
+ justify-content: space-between;
1769
+ }
1770
+ .mc-skip-time .skip-container .skip-item {
1771
+ flex: 1 0 0px;
1772
+ height: 100%;
1773
+ }.spinner-three-bounce[data-spinner] {
1774
+ position: absolute;
1775
+ width: 70px;
1776
+ text-align: center;
1777
+ z-index: 999;
1778
+ left: 0;
1779
+ right: 0;
1780
+ margin: 0 auto;
1781
+ margin-left: auto;
1782
+ margin-right: auto;
1783
+ /* center vertically */
1784
+ top: 50%;
1785
+ transform: translateY(-50%);
1786
+ }
1787
+ .spinner-three-bounce[data-spinner] > div {
1788
+ width: 18px;
1789
+ height: 18px;
1790
+ background-color: #FFF;
1791
+ border-radius: 100%;
1792
+ display: inline-block;
1793
+ animation: bouncedelay 1.4s infinite ease-in-out;
1794
+ /* Prevent first frame from flickering when animation starts */
1795
+ animation-fill-mode: both;
1796
+ }
1797
+ .spinner-three-bounce[data-spinner] [data-bounce1] {
1798
+ animation-delay: -0.32s;
1799
+ }
1800
+ .spinner-three-bounce[data-spinner] [data-bounce2] {
1801
+ animation-delay: -0.16s;
1802
+ }
1803
+
1804
+ @keyframes bouncedelay {
1805
+ 0%, 80%, 100% {
1806
+ transform: scale(0);
1807
+ }
1808
+ 40% {
1809
+ transform: scale(1);
1810
+ }
1811
+ }.scrub-thumbnails {
1812
+ position: absolute;
1813
+ bottom: 52px;
1814
+ width: 100%;
1815
+ transition: opacity 0.3s ease;
1816
+ }
1817
+ .scrub-thumbnails.hidden {
1818
+ opacity: 0;
1819
+ }
1820
+ .scrub-thumbnails .thumbnail-container {
1821
+ display: inline-block;
1822
+ position: relative;
1823
+ overflow: hidden;
1824
+ background-color: #000;
1825
+ }
1826
+ .scrub-thumbnails .thumbnail-container .thumbnail-img {
1827
+ position: absolute;
1828
+ width: auto;
1829
+ }
1830
+ .scrub-thumbnails .thumbnails-text {
1831
+ background-color: rgba(74, 74, 74, 0.7);
1832
+ border-radius: 3px;
1833
+ white-space: nowrap;
1834
+ overflow: hidden;
1835
+ text-overflow: ellipsis;
1836
+ color: white;
1837
+ position: absolute;
1838
+ bottom: 23px;
1839
+ width: 100px;
1840
+ padding: 0 4px;
1841
+ font-size: 12px;
1842
+ }
1843
+ .scrub-thumbnails .spotlight {
1844
+ background-color: #4a4a4a;
1845
+ overflow: hidden;
1846
+ position: absolute;
1847
+ bottom: 0;
1848
+ left: 0;
1849
+ border-color: #4a4a4a;
1850
+ border-style: solid;
1851
+ border-width: 3px;
1852
+ border-radius: 3px;
1853
+ }
1854
+ .scrub-thumbnails .spotlight img {
1855
+ width: auto;
1856
+ }
1857
+ .scrub-thumbnails .backdrop {
1858
+ position: absolute;
1859
+ left: 0;
1860
+ bottom: 0;
1861
+ right: 0;
1862
+ background-color: #000;
1863
+ overflow: hidden;
1864
+ }
1865
+ .scrub-thumbnails .backdrop .carousel {
1866
+ position: absolute;
1867
+ top: 0;
1868
+ left: 0;
1869
+ height: 100%;
1870
+ white-space: nowrap;
1871
+ }
1872
+ .scrub-thumbnails .backdrop .carousel img {
1873
+ width: auto;
1874
1874
  }.quality-levels li.disabled {
1875
1875
  opacity: 0.5;
1876
1876
  pointer-events: none;