@gcorevideo/player 2.25.7 → 2.25.9

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 (33) hide show
  1. package/assets/bottom-gear/gear-sub-menu.scss +4 -9
  2. package/assets/media-control/container.scss +0 -13
  3. package/assets/media-control/media-control.scss +14 -12
  4. package/assets/media-control/width270.scss +3 -0
  5. package/assets/media-control/width370.scss +4 -0
  6. package/assets/multi-camera/style.scss +0 -5
  7. package/assets/subtitles/combobox.ejs +27 -6
  8. package/assets/subtitles/string.ejs +1 -1
  9. package/assets/subtitles/style.scss +16 -69
  10. package/dist/core.js +1 -1
  11. package/dist/index.css +1036 -1090
  12. package/dist/index.embed.js +139 -101
  13. package/dist/index.js +80 -46
  14. package/lib/plugins/bottom-gear/BottomGear.d.ts +1 -1
  15. package/lib/plugins/bottom-gear/BottomGear.d.ts.map +1 -1
  16. package/lib/plugins/bottom-gear/BottomGear.js +3 -4
  17. package/lib/plugins/media-control/MediaControl.d.ts +4 -0
  18. package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
  19. package/lib/plugins/media-control/MediaControl.js +7 -0
  20. package/lib/plugins/subtitles/ClosedCaptions.d.ts +8 -5
  21. package/lib/plugins/subtitles/ClosedCaptions.d.ts.map +1 -1
  22. package/lib/plugins/subtitles/ClosedCaptions.js +67 -38
  23. package/lib/testUtils.d.ts.map +1 -1
  24. package/lib/testUtils.js +2 -0
  25. package/package.json +1 -1
  26. package/src/plugins/bottom-gear/BottomGear.ts +3 -4
  27. package/src/plugins/bottom-gear/__tests__/BottomGear.test.ts +1 -1
  28. package/src/plugins/media-control/MediaControl.ts +10 -0
  29. package/src/plugins/subtitles/ClosedCaptions.ts +73 -39
  30. package/src/plugins/subtitles/__tests__/ClosedCaptions.test.ts +220 -35
  31. package/src/plugins/subtitles/__tests__/__snapshots__/ClosedCaptions.test.ts.snap +8 -19
  32. package/src/testUtils.ts +2 -0
  33. package/tsconfig.tsbuildinfo +1 -1
package/dist/index.css CHANGED
@@ -122,99 +122,6 @@
122
122
  .gplayer-lite-btn::-moz-focus-inner {
123
123
  border: 0;
124
124
  padding: 0;
125
- }.context-menu {
126
- z-index: 999;
127
- position: absolute;
128
- top: 0;
129
- left: 0;
130
- text-align: center;
131
- }
132
- .context-menu .context-menu-list {
133
- font-family: "Proxima Nova", sans-serif;
134
- font-size: 12px;
135
- line-height: 12px;
136
- list-style-type: none;
137
- text-align: left;
138
- padding: 5px;
139
- margin-left: auto;
140
- margin-right: auto;
141
- background-color: rgba(0, 0, 0, 0.75);
142
- border: 1px solid #666;
143
- border-radius: 4px;
144
- }
145
- .context-menu .context-menu-list-item button {
146
- border: none;
147
- background-color: transparent;
148
- padding: 0;
149
- color: white;
150
- display: flex;
151
- gap: 8px;
152
- align-items: center;
153
- justify-content: center;
154
- cursor: pointer;
155
- padding: 5px;
156
- width: 100%;
157
- }
158
- .context-menu .context-menu-list-item_icon {
159
- width: 20px;
160
- height: 20px;
161
- }.dvr-controls {
162
- --disabled-opacity: 0.3;
163
- --circle-radius: 5px;
164
- display: flex;
165
- align-items: center;
166
- color: var(--player-dvr-color);
167
- font-size: 10px;
168
- font-weight: 500;
169
- height: var(--bottom-panel);
170
- line-height: var(--bottom-panel);
171
- margin-left: 0;
172
- }
173
- .dvr-controls .live-info,
174
- .dvr-controls .live-button {
175
- font-size: 14px;
176
- font-weight: 500;
177
- margin-left: 20px;
178
- letter-spacing: 0.8px;
179
- text-transform: uppercase;
180
- }
181
- .dvr-controls .live-info::before,
182
- .dvr-controls .live-button::before {
183
- margin-right: 8px;
184
- content: "";
185
- display: inline-block;
186
- position: relative;
187
- width: calc(var(--circle-radius) * 2);
188
- height: calc(var(--circle-radius) * 2);
189
- border-radius: var(--circle-radius);
190
- background-color: var(--player-dvr-color);
191
- }
192
- .dvr-controls.disabled {
193
- opacity: var(--disabled-opacity);
194
- }
195
- .dvr-controls.disabled:before {
196
- background-color: var(--player-dvr-color);
197
- }
198
- .dvr-controls .live-info {
199
- text-transform: uppercase;
200
- color: #fffffe;
201
- }
202
- .dvr-controls .live-info::before {
203
- background-color: #ed4f4a;
204
- }
205
- .dvr-controls .live-button {
206
- cursor: pointer;
207
- outline: none;
208
- border: 0;
209
- color: var(--player-dvr-color);
210
- background-color: transparent;
211
- padding: 0;
212
- opacity: 0.7;
213
- transition: all 0.1s ease;
214
- }
215
- .dvr-controls .live-button:hover {
216
- opacity: 1;
217
- text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
218
125
  }div.player-error-screen, [data-player] div.player-error-screen {
219
126
  color: #CCCACA;
220
127
  position: absolute;
@@ -249,55 +156,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
249
156
  cursor: pointer;
250
157
  width: 30px;
251
158
  margin: 15px auto 0;
252
- }.big-mute-icon-wrapper[data-big-mute] {
253
- position: absolute;
254
- z-index: 9998;
255
- background-color: transparent;
256
- display: flex;
257
- justify-content: center;
258
- width: 100%;
259
- height: calc(100% - 50px);
260
- margin: 0 auto;
261
- opacity: 0.75;
262
- transition: opacity 0.1s ease;
263
- pointer-events: auto;
264
- }
265
- .big-mute-icon-wrapper[data-big-mute].hide {
266
- display: none;
267
- }
268
- .big-mute-icon-wrapper[data-big-mute]:hover {
269
- cursor: pointer;
270
- }
271
-
272
- .big-mute-icon[data-big-mute-icon] {
273
- display: flex;
274
- align-items: center;
275
- justify-content: center;
276
- align-self: center;
277
- width: 120px;
278
- height: 120px;
279
- border: 2px solid white;
280
- border-radius: 50%;
281
- filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
282
- filter: alpha(opacity=60);
283
- opacity: 1;
284
- box-shadow: 0 0 1px 0 white;
285
- background: rgba(240, 243, 247, 0.9411764706);
286
- z-index: 10000;
287
- }
288
- .big-mute-icon[data-big-mute-icon] svg {
289
- margin-left: 5px;
290
- width: 80px;
291
- height: 80px;
292
- }
293
- .big-mute-icon[data-big-mute-icon] svg path {
294
- fill: #1f1e1e !important;
295
- }
296
- .big-mute-icon[data-big-mute-icon]:hover {
297
- background: rgba(240, 243, 247, 0.8784313725);
298
- }
299
- .big-mute-icon[data-big-mute-icon]:hover svg path {
300
- fill: #151515 !important;
301
159
  }:root {
302
160
  --primary-background-color: #000;
303
161
  --secondary-background-color: #262626;
@@ -662,237 +520,457 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
662
520
  .fullscreen .clappr-nerd-stats .stats-box {
663
521
  top: unset;
664
522
  }
665
- }.seek-time {
523
+ }.big-mute-icon-wrapper[data-big-mute] {
666
524
  position: absolute;
667
- white-space: nowrap;
668
- height: 20px;
669
- line-height: 20px;
670
- font-size: 0;
671
- left: -100%;
672
- bottom: 55px;
673
- background-color: rgba(2, 2, 2, 0.5);
674
- z-index: 9999;
525
+ z-index: 9998;
526
+ background-color: transparent;
527
+ display: flex;
528
+ justify-content: center;
529
+ width: 100%;
530
+ height: calc(100% - 50px);
531
+ margin: 0 auto;
532
+ opacity: 0.75;
675
533
  transition: opacity 0.1s ease;
534
+ pointer-events: auto;
676
535
  }
677
- .seek-time.hidden {
678
- opacity: 0;
679
- }
680
- .seek-time .seek-time__pos {
681
- display: inline-block;
682
- color: white;
683
- font-size: 10px;
684
- padding-left: 7px;
685
- padding-right: 7px;
686
- vertical-align: top;
687
- }
688
- .seek-time .seek-time__duration {
689
- display: inline-block;
690
- color: rgba(255, 255, 255, 0.5);
691
- font-size: 10px;
692
- padding-right: 7px;
693
- vertical-align: top;
536
+ .big-mute-icon-wrapper[data-big-mute].hide {
537
+ display: none;
694
538
  }
695
- .seek-time .seek-time__duration::before {
696
- content: "|";
697
- margin-right: 7px;
698
- }*, :focus, :visited {
699
- outline: none !important;
539
+ .big-mute-icon-wrapper[data-big-mute]:hover {
540
+ cursor: pointer;
700
541
  }
701
542
 
702
- .gear-wrapper .go-back {
703
- font-weight: 600;
704
- font-size: 14px;
705
- line-height: 20px;
706
- width: 100%;
707
- text-align: left;
708
- padding: 12px;
709
- }
710
- .gear-wrapper .go-back .arrow-left-icon {
711
- float: left;
712
- padding-top: 2px;
713
- padding-right: 2px;
714
- }
715
- .gear-wrapper .go-back .arrow-left-icon svg {
716
- height: 16px;
543
+ .big-mute-icon[data-big-mute-icon] {
544
+ display: flex;
545
+ align-items: center;
546
+ justify-content: center;
547
+ align-self: center;
548
+ width: 120px;
549
+ height: 120px;
550
+ border: 2px solid white;
551
+ border-radius: 50%;
552
+ filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
553
+ filter: alpha(opacity=60);
554
+ opacity: 1;
555
+ box-shadow: 0 0 1px 0 white;
556
+ background: rgba(240, 243, 247, 0.9411764706);
557
+ z-index: 10000;
717
558
  }
718
- .gear-wrapper ul.gear-sub-menu {
719
- width: 100%;
720
- list-style-type: none;
721
- min-width: 60px;
722
- border-top: 2px solid rgb(36, 36, 36);
723
- overflow-y: auto;
559
+ .big-mute-icon[data-big-mute-icon] svg {
560
+ margin-left: 5px;
561
+ width: 80px;
562
+ height: 80px;
724
563
  }
725
- .gear-wrapper ul.gear-sub-menu li {
726
- font-size: 12px;
727
- text-align: left;
564
+ .big-mute-icon[data-big-mute-icon] svg path {
565
+ fill: #1f1e1e !important;
728
566
  }
729
- .gear-wrapper ul.gear-sub-menu li[data-title] {
730
- background-color: #c3c2c2;
731
- padding: 5px;
567
+ .big-mute-icon[data-big-mute-icon]:hover {
568
+ background: rgba(240, 243, 247, 0.8784313725);
732
569
  }
733
- .gear-wrapper ul.gear-sub-menu li a {
734
- display: block;
735
- text-decoration: none;
736
- height: 32px;
737
- padding: 5px 10px;
738
- line-height: 22px;
739
- color: #fffffe;
570
+ .big-mute-icon[data-big-mute-icon]:hover svg path {
571
+ fill: #151515 !important;
572
+ }@charset "UTF-8";
573
+ .gplayer-mc-clips {
574
+ display: flex;
575
+ gap: 6px;
740
576
  }
741
- .gear-wrapper ul.gear-sub-menu li a:hover {
577
+ .gplayer-mc-clips .gplayer-mc-clips-text {
578
+ text-overflow: ellipsis;
579
+ white-space: nowrap;
580
+ overflow: hidden;
581
+ display: inline-block;
582
+ text-overflow: ellipsis;
742
583
  color: white;
743
- background-color: rgba(0, 0, 0, 0.4);
744
- }
745
- .gear-wrapper ul.gear-sub-menu li a:hover a {
746
- color: white;
747
- text-decoration: none;
748
- }
749
- .gear-wrapper ul.gear-sub-menu li a .check-icon {
750
- width: 30px;
751
- height: 20px;
752
- float: left;
753
- display: block;
754
- }
755
- .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
756
- display: none;
757
- }
758
- .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
759
- display: inline;
760
- }.media-control-skin-1 .media-control-item.media-control-gear {
761
- order: 99;
762
- }
763
- .media-control-skin-1 .media-control-item.media-control-gear .gear-wrapper {
764
- position: absolute;
765
- right: 16px;
766
- bottom: 52px;
767
- width: 250px;
768
- min-height: 48px;
769
- z-index: 9999;
770
- border-radius: 4px;
771
- box-shadow: 0 0 1px 1px var(--gplayer-mc-popup-border-color);
584
+ cursor: default;
585
+ line-height: var(--bottom-panel);
586
+ position: relative;
587
+ max-width: 150px;
772
588
  }
773
- .media-control-skin-1 .media-control-item.media-control-gear .gear-options-list {
774
- padding: 8px 0;
589
+ .gplayer-mc-clips .gplayer-mc-clips-text::before {
590
+ content: "•";
591
+ padding-right: 6px;
775
592
  }
776
- .media-control-skin-1 .media-control-item.media-control-gear .gear-option {
777
- margin: 0;
778
- text-align: left;
779
- line-height: 22px;
780
- padding: 5px 14px;
781
- width: 250px;
782
- font-size: 12px;
593
+ .gplayer-mc-clips .gplayer-mc-clips-text.compact {
594
+ max-width: 100px;
595
+ }.dvr-controls {
596
+ --disabled-opacity: 0.3;
597
+ --circle-radius: 5px;
783
598
  display: flex;
784
599
  align-items: center;
785
- justify-content: flex-start;
786
- gap: 8px;
600
+ color: var(--player-dvr-color);
601
+ font-size: 10px;
602
+ font-weight: 500;
603
+ height: var(--bottom-panel);
604
+ line-height: var(--bottom-panel);
605
+ margin-left: 0;
787
606
  }
788
- .media-control-skin-1 .media-control-item.media-control-gear .gear-option_icon {
789
- flex: 24px 0 0;
790
- height: 24px;
607
+ .dvr-controls .live-info,
608
+ .dvr-controls .live-button {
609
+ font-size: 14px;
610
+ font-weight: 500;
611
+ margin-left: 20px;
612
+ letter-spacing: 0.8px;
613
+ text-transform: uppercase;
791
614
  }
792
- .media-control-skin-1 .media-control-item.media-control-gear .gear-option_icon.hidden {
793
- visibility: hidden;
615
+ .dvr-controls .live-info::before,
616
+ .dvr-controls .live-button::before {
617
+ margin-right: 8px;
618
+ content: "";
794
619
  display: inline-block;
620
+ position: relative;
621
+ width: calc(var(--circle-radius) * 2);
622
+ height: calc(var(--circle-radius) * 2);
623
+ border-radius: var(--circle-radius);
624
+ background-color: var(--player-dvr-color);
795
625
  }
796
- .media-control-skin-1 .media-control-item.media-control-gear .gear-option_label {
797
- flex: 0 1 100%;
626
+ .dvr-controls.disabled {
627
+ opacity: var(--disabled-opacity);
798
628
  }
799
- .media-control-skin-1 .media-control-item.media-control-gear .gear-option_arrow-right-icon {
800
- flex: 0 0 14px;
801
- height: 24px;
629
+ .dvr-controls.disabled:before {
630
+ background-color: var(--player-dvr-color);
802
631
  }
803
- .media-control-skin-1 .media-control-item.media-control-gear .gear-option_value {
804
- flex: 1 0 auto;
805
- }[data-player] {
806
- --bottom-panel: 40px;
632
+ .dvr-controls .live-info {
633
+ text-transform: uppercase;
634
+ color: #fffffe;
807
635
  }
808
-
809
- .container .media-control-notransition {
810
- transition: none !important;
636
+ .dvr-controls .live-info::before {
637
+ background-color: #ed4f4a;
811
638
  }
812
- .container .player-poster .play-wrapper {
639
+ .dvr-controls .live-button {
640
+ cursor: pointer;
641
+ outline: none;
642
+ border: 0;
643
+ color: var(--player-dvr-color);
644
+ background-color: transparent;
645
+ padding: 0;
646
+ opacity: 0.7;
647
+ transition: all 0.1s ease;
648
+ }
649
+ .dvr-controls .live-button:hover {
813
650
  opacity: 1;
651
+ text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
652
+ }.media-control-skin-1 .media-control-item.media-control-pip {
653
+ order: 95;
814
654
  }
815
- .container.crop-video [data-html5-video] {
816
- object-fit: cover;
655
+ .media-control-skin-1 .media-control-item.media-control-pip button {
656
+ height: 20px;
817
657
  }
818
- .container .cc-line {
658
+ .media-control-skin-1 .media-control-item.media-control-pip button svg {
659
+ height: 20px;
660
+ }.seek-time {
819
661
  position: absolute;
820
- bottom: calc(var(--bottom-panel) + 5px);
821
- width: 100%;
662
+ white-space: nowrap;
663
+ height: 20px;
664
+ line-height: 20px;
665
+ font-size: 0;
666
+ left: -100%;
667
+ bottom: 55px;
668
+ background-color: rgba(2, 2, 2, 0.5);
669
+ z-index: 9999;
670
+ transition: opacity 0.1s ease;
822
671
  }
823
- .container .cc-line p {
824
- width: auto;
825
- background-color: rgba(0, 0, 0, 0.4);
826
- color: white;
672
+ .seek-time.hidden {
673
+ opacity: 0;
674
+ }
675
+ .seek-time .seek-time__pos {
827
676
  display: inline-block;
677
+ color: white;
678
+ font-size: 10px;
679
+ padding-left: 7px;
680
+ padding-right: 7px;
681
+ vertical-align: top;
828
682
  }
829
- .container .player-poster .circle-poster {
830
- top: 50%;
831
- margin-top: -60px;
832
- left: 50%;
833
- margin-left: -60px;
834
- position: absolute;
835
- width: 120px;
836
- height: 120px;
837
- border: 2px solid white;
838
- border-radius: 50%;
839
- filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
840
- filter: alpha(opacity=60);
841
- opacity: 1;
842
- box-shadow: 0 0 1px 0 white;
683
+ .seek-time .seek-time__duration {
684
+ display: inline-block;
685
+ color: rgba(255, 255, 255, 0.5);
686
+ font-size: 10px;
687
+ padding-right: 7px;
688
+ vertical-align: top;
843
689
  }
844
- .container .player-poster .circle-poster svg {
845
- margin-left: 5px;
846
- width: 80px;
690
+ .seek-time .seek-time__duration::before {
691
+ content: "|";
692
+ margin-right: 7px;
693
+ }.quality-levels li.disabled {
694
+ opacity: 0.5;
695
+ pointer-events: none;
847
696
  }
848
- .container .spinner-three-bounce[data-spinner] > div {
849
- background-color: #ff5700;
697
+ .quality-levels li.current {
698
+ background-color: #000;
699
+ }*,
700
+ :focus,
701
+ :visited {
702
+ outline: none !important;
850
703
  }
851
704
 
852
- .media-control-skin-1.w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] {
853
- transform: rotate(270deg);
854
- float: none;
855
- display: block;
856
- position: absolute;
857
- margin: 0;
858
- top: -40px;
859
- padding: 0;
860
- margin-left: -32px;
861
- margin-top: -3px;
862
- width: 80px;
863
- }
864
- .media-control-skin-1.w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background-mask {
865
- position: absolute;
866
- width: 100%;
867
- height: 100%;
868
- left: -5px;
705
+ .multicamera[data-multicamera] {
706
+ float: right;
707
+ margin-top: 4px;
708
+ position: relative;
709
+ margin-right: 20px;
710
+ width: 20px;
869
711
  }
870
- .media-control-skin-1.w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume].volume-bar-hide {
871
- display: none;
712
+ .multicamera[data-multicamera] button {
713
+ background-color: transparent;
714
+ color: #fff;
715
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
716
+ -webkit-font-smoothing: antialiased;
717
+ border: none;
718
+ font-size: 14px;
719
+ padding: 0;
872
720
  }
873
- .media-control-skin-1.w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background {
874
- margin-left: 11px;
875
- top: 7px;
876
- width: 80px;
721
+ .multicamera[data-multicamera] button svg {
722
+ height: 20px;
723
+ position: relative;
724
+ margin-top: 6px;
877
725
  }
878
- .media-control-skin-1.w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber {
879
- margin-left: 11px;
880
- top: 1px;
726
+ .multicamera[data-multicamera] button:hover {
727
+ color: #c9c9c9;
881
728
  }
882
-
883
- .media-control-skin-1.w370 .media-control-cc {
884
- width: 28px;
729
+ .multicamera[data-multicamera] button.changing {
730
+ animation: pulse 0.5s infinite alternate;
885
731
  }
886
- .media-control-skin-1.w370 .media-control-cc svg {
887
- height: 17px;
732
+ .multicamera[data-multicamera] button span.quality-arrow {
733
+ width: 9px;
734
+ height: 6px;
735
+ margin-top: 11px;
736
+ margin-left: 5px;
888
737
  }
889
- .media-control-skin-1.w370 .share_plugin[data-share] .share-container {
890
- top: calc(50% - 150px);
891
- left: calc(50% - 125px);
892
- width: 250px;
893
- height: calc(100% - 32px);
894
- max-height: 300px;
895
- transform: none;
738
+ .multicamera[data-multicamera] > ul {
739
+ padding: 6px 0;
740
+ right: -24px;
741
+ width: 245px;
742
+ list-style-type: none;
743
+ position: absolute;
744
+ bottom: 48px;
745
+ border-radius: 4px;
746
+ display: none;
747
+ background-color: rgba(74, 74, 74, 0.9);
748
+ }
749
+ .multicamera[data-multicamera] > ul::after {
750
+ content: "";
751
+ position: absolute;
752
+ top: 100%;
753
+ left: 85%;
754
+ margin-left: -10px;
755
+ width: 0;
756
+ height: 0;
757
+ border-top: 10px solid rgba(74, 74, 74, 0.9);
758
+ border-right: 10px solid transparent;
759
+ border-left: 10px solid transparent;
760
+ }
761
+ .multicamera[data-multicamera] li {
762
+ font-size: 10px;
763
+ cursor: pointer;
764
+ }
765
+ .multicamera[data-multicamera] li .multicamera-item {
766
+ display: flex;
767
+ padding: 10px 0;
768
+ justify-content: center;
769
+ position: relative;
770
+ }
771
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
772
+ pointer-events: none;
773
+ }
774
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
775
+ opacity: 0.5;
776
+ }
777
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
778
+ opacity: 0.5;
779
+ }
780
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
781
+ background-color: rgba(0, 0, 0, 0);
782
+ }
783
+ .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
784
+ background-color: rgba(0, 0, 0, 0.3);
785
+ }
786
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
787
+ width: 80px;
788
+ height: 60px;
789
+ }
790
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
791
+ width: 80px;
792
+ height: 60px;
793
+ }
794
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
795
+ width: 120px;
796
+ text-align: left;
797
+ margin-left: 15px;
798
+ }
799
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title,
800
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
801
+ width: 120px;
802
+ height: 20px;
803
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
804
+ font-size: 14px;
805
+ font-weight: normal;
806
+ font-style: normal;
807
+ font-stretch: normal;
808
+ line-height: 1.43;
809
+ letter-spacing: normal;
810
+ text-align: left;
811
+ color: #fff;
812
+ text-overflow: ellipsis;
813
+ overflow: hidden;
814
+ }
815
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
816
+ opacity: 0.6;
817
+ }
818
+ .multicamera[data-multicamera] li a {
819
+ color: #444;
820
+ padding: 2px 10px;
821
+ display: block;
822
+ text-decoration: none;
823
+ }
824
+ .multicamera[data-multicamera] li a:hover {
825
+ background-color: #555;
826
+ color: white;
827
+ }
828
+ .multicamera[data-multicamera] li a:hover a {
829
+ color: white;
830
+ text-decoration: none;
831
+ }
832
+ .multicamera[data-multicamera] li.current a {
833
+ color: #f00;
834
+ }.container-with-poster-clickable .mc-skip-time {
835
+ height: 0;
836
+ }
837
+
838
+ .mc-skip-time {
839
+ position: absolute;
840
+ width: 100%;
841
+ height: calc(100% - 50px);
842
+ z-index: 9998;
843
+ background-color: transparent;
844
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
845
+ }
846
+ .mc-skip-time .skip-container {
847
+ width: 100%;
848
+ height: 100%;
849
+ display: flex;
850
+ justify-content: space-between;
851
+ }
852
+ .mc-skip-time .skip-container .skip-item {
853
+ flex: 1 0 0px;
854
+ height: 100%;
855
+ }.context-menu {
856
+ z-index: 999;
857
+ position: absolute;
858
+ top: 0;
859
+ left: 0;
860
+ text-align: center;
861
+ }
862
+ .context-menu .context-menu-list {
863
+ font-family: "Proxima Nova", sans-serif;
864
+ font-size: 12px;
865
+ line-height: 12px;
866
+ list-style-type: none;
867
+ text-align: left;
868
+ padding: 5px;
869
+ margin-left: auto;
870
+ margin-right: auto;
871
+ background-color: rgba(0, 0, 0, 0.75);
872
+ border: 1px solid #666;
873
+ border-radius: 4px;
874
+ }
875
+ .context-menu .context-menu-list-item button {
876
+ border: none;
877
+ background-color: transparent;
878
+ padding: 0;
879
+ color: white;
880
+ display: flex;
881
+ gap: 8px;
882
+ align-items: center;
883
+ justify-content: center;
884
+ cursor: pointer;
885
+ padding: 5px;
886
+ width: 100%;
887
+ }
888
+ .context-menu .context-menu-list-item_icon {
889
+ width: 20px;
890
+ height: 20px;
891
+ }[data-player] {
892
+ --bottom-panel: 40px;
893
+ }
894
+
895
+ .container .media-control-notransition {
896
+ transition: none !important;
897
+ }
898
+ .container .player-poster .play-wrapper {
899
+ opacity: 1;
900
+ }
901
+ .container.crop-video [data-html5-video] {
902
+ object-fit: cover;
903
+ }
904
+ .container .player-poster .circle-poster {
905
+ top: 50%;
906
+ margin-top: -60px;
907
+ left: 50%;
908
+ margin-left: -60px;
909
+ position: absolute;
910
+ width: 120px;
911
+ height: 120px;
912
+ border: 2px solid white;
913
+ border-radius: 50%;
914
+ filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
915
+ filter: alpha(opacity=60);
916
+ opacity: 1;
917
+ box-shadow: 0 0 1px 0 white;
918
+ }
919
+ .container .player-poster .circle-poster svg {
920
+ margin-left: 5px;
921
+ width: 80px;
922
+ }
923
+ .container .spinner-three-bounce[data-spinner] > div {
924
+ background-color: #ff5700;
925
+ }
926
+
927
+ .media-control-skin-1.w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] {
928
+ transform: rotate(270deg);
929
+ float: none;
930
+ display: block;
931
+ position: absolute;
932
+ margin: 0;
933
+ top: -40px;
934
+ padding: 0;
935
+ margin-left: -32px;
936
+ margin-top: -3px;
937
+ width: 80px;
938
+ }
939
+ .media-control-skin-1.w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background-mask {
940
+ position: absolute;
941
+ width: 100%;
942
+ height: 100%;
943
+ left: -5px;
944
+ }
945
+ .media-control-skin-1.w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume].volume-bar-hide {
946
+ display: none;
947
+ }
948
+ .media-control-skin-1.w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background {
949
+ margin-left: 11px;
950
+ top: 7px;
951
+ width: 80px;
952
+ }
953
+ .media-control-skin-1.w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber {
954
+ margin-left: 11px;
955
+ top: 1px;
956
+ }
957
+ .media-control-skin-1.w270 .media-control-dd__popup {
958
+ max-width: 114px;
959
+ }
960
+
961
+ .media-control-skin-1.w370 .media-control-cc {
962
+ width: 28px;
963
+ }
964
+ .media-control-skin-1.w370 .media-control-cc svg {
965
+ height: 17px;
966
+ }
967
+ .media-control-skin-1.w370 .share_plugin[data-share] .share-container {
968
+ top: calc(50% - 150px);
969
+ left: calc(50% - 125px);
970
+ width: 250px;
971
+ height: calc(100% - 32px);
972
+ max-height: 300px;
973
+ transform: none;
896
974
  }
897
975
  .media-control-skin-1.w370 .share_plugin[data-share] .share-container .share-container-header {
898
976
  border: none;
@@ -988,6 +1066,9 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
988
1066
  .media-control-skin-1.w370 .media-control-layer[data-controls] .media-control-item {
989
1067
  height: 32px;
990
1068
  }
1069
+ .media-control-skin-1.w370 .media-control-dd__popup {
1070
+ max-width: 150px;
1071
+ }
991
1072
 
992
1073
  :root {
993
1074
  --font-size-media-controls: 14px;
@@ -999,879 +1080,576 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
999
1080
  --player-seekbar-current-color: #ff5700;
1000
1081
  --player-seekbar-buffer-color: #fff;
1001
1082
  --gplayer-mc-text-color: #fff;
1083
+ --gplayer-mc-text-dim-color: #fffffe;
1002
1084
  --gplayer-mc-popup-border-color: rgb(255 255 255 / 10%);
1003
1085
  --gplayer-mc-popup-bg: rgb(74 74 74 / 60%);
1004
1086
  }
1005
-
1006
- .media-control-skin-1 {
1007
- position: absolute;
1008
- width: 100%;
1009
- height: 100%;
1010
- z-index: 9999;
1011
- pointer-events: none;
1012
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1013
- font-size: var(--font-size-media-controls);
1014
- }
1015
- .media-control-skin-1.dragging {
1016
- pointer-events: auto;
1017
- cursor: grabbing !important;
1018
- cursor: url("closed-hand.cur"), move;
1019
- }
1020
- .media-control-skin-1.dragging * {
1021
- cursor: grabbing !important;
1022
- cursor: url("closed-hand.cur"), move;
1023
- }
1024
- .media-control-skin-1 .media-control-icon {
1025
- line-height: 0;
1026
- letter-spacing: 0;
1027
- speak: none;
1028
- color: var(--gplayer-mc-text-color);
1029
- vertical-align: middle;
1030
- text-align: left;
1031
- transition: all 0.1s ease;
1032
- }
1033
- .media-control-skin-1 .media-control-icon:hover {
1034
- color: white;
1035
- }
1036
- .media-control-skin-1.media-control-hide .media-control-background[data-background] {
1037
- opacity: 0;
1038
- }
1039
- .media-control-skin-1.media-control-hide .media-control-layer[data-controls] {
1040
- bottom: -50px;
1041
- }
1042
- .media-control-skin-1.media-control-hide .media-control-layer[data-controls] .bar-scrubber[data-seekbar] {
1043
- opacity: 0;
1044
- }
1045
- .media-control-skin-1 .media-control-layer[data-controls] {
1046
- position: absolute;
1047
- bottom: 0;
1048
- width: 100%;
1049
- padding: 0 12px 0 8px;
1050
- height: var(--bottom-panel);
1051
- vertical-align: middle;
1052
- pointer-events: auto;
1053
- transition: bottom 0.4s ease-out;
1054
- display: flex;
1055
- justify-content: space-between;
1056
- }
1057
- .media-control-skin-1 .media-control-left-panel {
1058
- display: flex;
1059
- align-items: center;
1060
- gap: 0.5rem;
1061
- justify-content: flex-start;
1062
- }
1063
- .media-control-skin-1 .media-control-button,
1064
- .media-control-skin-1 .media-control-indicator,
1065
- .media-control-skin-1 .media-control-item {
1066
- order: 50;
1067
- }
1068
- .media-control-skin-1 .media-control-item {
1069
- display: flex;
1070
- align-items: center;
1071
- }
1072
- .media-control-skin-1 [data-playpause],
1073
- .media-control-skin-1 [data-playstop] {
1074
- order: 1;
1075
- }
1076
- .media-control-skin-1 [data-volume] {
1077
- order: 2;
1078
- }
1079
- .media-control-skin-1 [data-position] {
1080
- order: 3;
1081
- }
1082
- .media-control-skin-1 [data-duration] {
1083
- order: 3;
1084
- }
1085
- .media-control-skin-1 .media-control-center-panel {
1086
- height: 100%;
1087
- text-align: center;
1088
- line-height: var(--bottom-panel);
1089
- }
1090
- .media-control-skin-1 .media-control-right-panel {
1091
- display: flex;
1092
- align-items: center;
1093
- gap: 1rem;
1094
- justify-content: flex-end;
1095
- }
1096
- @media (max-width: 420px) {
1097
- .media-control-skin-1 .media-control-right-panel {
1098
- gap: 0.5rem;
1099
- }
1100
- }
1101
- .media-control-skin-1 button.media-control-button {
1102
- background-color: transparent;
1103
- border: 0;
1104
- padding: 0;
1105
- cursor: pointer;
1106
- display: inline-block;
1107
- height: 20px;
1108
- width: 24px;
1109
- }
1110
- .media-control-skin-1 button.media-control-button svg {
1111
- height: 20px;
1112
- }
1113
- .media-control-skin-1 button.media-control-button svg path {
1114
- fill: white;
1115
- }
1116
- .media-control-skin-1 button.media-control-button:focus {
1117
- outline: none;
1118
- }
1119
- .media-control-skin-1 button.media-control-button[data-play] {
1120
- float: left;
1121
- height: 100%;
1122
- }
1123
- .media-control-skin-1 button.media-control-button[data-pause] {
1124
- float: left;
1125
- height: 100%;
1126
- }
1127
- .media-control-skin-1 button.media-control-button[data-stop] {
1128
- float: left;
1129
- height: 100%;
1130
- }
1131
- .media-control-skin-1 button.media-control-button[data-fullscreen] {
1132
- order: 100;
1133
- background-color: transparent;
1134
- border: 0;
1135
- height: 40px;
1136
- }
1137
- .media-control-skin-1 button.media-control-button[data-hd-indicator] {
1138
- background-color: transparent;
1139
- border: 0;
1140
- cursor: default;
1141
- display: none !important;
1142
- float: right;
1143
- height: 100%;
1144
- }
1145
- .media-control-skin-1 .media-control-indicator[data-position], .media-control-skin-1 .media-control-indicator[data-duration] {
1146
- display: flex;
1147
- color: white;
1148
- cursor: default;
1149
- line-height: var(--bottom-panel);
1150
- position: relative;
1151
- }
1152
- .media-control-skin-1 .media-control-indicator[data-position] {
1153
- margin: 1px 0 0 7px;
1154
- }
1155
- .media-control-skin-1 .media-control-indicator[data-duration] {
1156
- color: rgb(255, 255, 255);
1157
- opacity: 0.5;
1158
- margin-top: 1px;
1159
- margin-right: 6px;
1160
- }
1161
- .media-control-skin-1 .media-control-indicator[data-duration]::before {
1162
- content: "|";
1163
- margin-right: 7px;
1164
- }
1165
- .media-control-skin-1 .bar-container[data-seekbar] {
1166
- position: absolute;
1167
- top: -11px;
1168
- left: 0;
1169
- display: inline-block;
1170
- vertical-align: middle;
1171
- width: 100%;
1172
- height: 20px;
1173
- cursor: pointer;
1174
- }
1175
- .media-control-skin-1 .bar-container[data-seekbar] .bar-background[data-seekbar] {
1176
- width: 100%;
1177
- height: 3px;
1178
- position: relative;
1179
- top: 8px;
1180
- background-color: #666;
1181
- }
1182
- .media-control-skin-1 .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-1[data-seekbar] {
1183
- position: absolute;
1184
- top: 0;
1185
- left: 0;
1186
- width: 0;
1187
- height: 100%;
1188
- background-color: var(--player-seekbar-buffer-color);
1189
- transition: all 0.1s ease-out;
1190
- }
1191
- .media-control-skin-1 .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
1192
- position: absolute;
1193
- top: 0;
1194
- left: 0;
1195
- width: 0;
1196
- height: 100%;
1197
- background-color: var(--player-seekbar-current-color);
1198
- transition: all 0.1s ease-out;
1199
- }
1200
- .media-control-skin-1 .bar-container[data-seekbar].seek-disabled {
1201
- cursor: default;
1202
- display: none;
1203
- }
1204
- .media-control-skin-1 .bar-container[data-seekbar].seek-disabled + .bar-scrubber[data-seekbar] {
1205
- cursor: default;
1206
- display: none;
1207
- }
1208
- .media-control-skin-1 .bar-scrubber[data-seekbar] {
1209
- position: absolute;
1210
- transform: translateX(-50%);
1211
- top: -11.5px;
1212
- left: 0;
1213
- width: 20px;
1214
- height: 20px;
1215
- opacity: 1;
1216
- transition: all 0.1s ease-out;
1217
- }
1218
- .media-control-skin-1 .bar-scrubber[data-seekbar] .bar-scrubber-icon[data-seekbar] {
1219
- position: absolute;
1220
- left: 4.5px;
1221
- top: 4.5px;
1222
- width: 11px;
1223
- height: 11px;
1224
- border-radius: 50%;
1225
- background-color: white;
1226
- }
1227
- .media-control-skin-1 .drawer-container[data-volume] {
1228
- display: flex;
1229
- justify-content: flex-start;
1230
- height: var(--bottom-panel);
1231
- cursor: pointer;
1232
- box-sizing: border-box;
1233
- }
1234
- .media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] {
1235
- bottom: 0;
1236
- }
1237
- .media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] {
1238
- background-color: transparent;
1239
- border: 0;
1240
- box-sizing: content-box;
1241
- height: var(--bottom-panel);
1242
- width: 20px;
1243
- }
1244
- .media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] svg {
1245
- height: 20px;
1246
- position: relative;
1247
- top: 3px;
1248
- margin-top: 7px;
1249
- }
1250
- .media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] svg path {
1251
- fill: white;
1252
- }
1253
- .media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume].muted svg {
1254
- margin-left: 2px;
1255
- }
1256
- .media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] {
1257
- position: relative;
1258
- margin-left: 10px;
1259
- top: 8px;
1260
- width: 80px;
1261
- height: 23px;
1262
- padding: 3px 0;
1263
- transition: width 0.2s ease-out;
1264
- }
1265
- .media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] {
1266
- height: 3px;
1267
- border-radius: 100px;
1268
- position: relative;
1269
- top: 7px;
1270
- background-color: #666;
1271
- }
1272
- .media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] .bar-fill-1[data-volume] {
1273
- position: absolute;
1274
- top: 0;
1275
- left: 0;
1276
- width: 0;
1277
- height: 100%;
1278
- border-radius: 100px;
1279
- background-color: white;
1280
- transition: all 0.1s ease-out;
1281
- }
1282
- .media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] .bar-fill-2[data-volume] {
1283
- position: absolute;
1284
- top: 0;
1285
- left: 0;
1286
- width: 0;
1287
- height: 100%;
1288
- background-color: var(--player-vod-color);
1289
- transition: all 0.1s ease-out;
1290
- }
1291
- .media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber[data-volume] {
1292
- position: absolute;
1293
- transform: translateX(-50%);
1294
- top: 3px;
1295
- margin-left: 3px;
1296
- width: 16px;
1297
- height: 16px;
1298
- opacity: 1;
1299
- transition: all 0.1s ease-out;
1300
- }
1301
- .media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber[data-volume] .bar-scrubber-icon[data-volume] {
1302
- position: absolute;
1303
- left: 3px;
1304
- top: 5px;
1305
- width: 7px;
1306
- height: 7px;
1307
- border-radius: 50%;
1308
- background-color: white;
1309
- }
1310
- .media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume] {
1311
- float: left;
1312
- width: 4px;
1313
- padding-left: 2px;
1314
- height: 12px;
1315
- opacity: 0.5;
1316
- box-shadow: inset 2px 0 0 white;
1317
- transition: transform 0.2s ease-out;
1318
- }
1319
- .media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume].fill {
1320
- box-shadow: inset 2px 0 0 #fff;
1321
- opacity: 1;
1322
- }
1323
- .media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume]:nth-of-type(1) {
1324
- padding-left: 0;
1325
- }
1326
- .media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume]:hover {
1327
- transform: scaleY(1.5);
1328
- }
1329
- .media-control-skin-1 .seek-time {
1330
- height: 26px;
1331
- line-height: 26px;
1332
- bottom: 52px;
1333
- border-radius: 3px;
1334
- background-color: rgba(74, 74, 74, 0.7);
1335
- }
1336
- .media-control-skin-1 .seek-time span {
1337
- letter-spacing: 0.8px;
1338
- font-size: 14px;
1087
+
1088
+ .media-control-skin-1 {
1089
+ position: absolute;
1090
+ width: 100%;
1091
+ height: 100%;
1092
+ z-index: 9999;
1093
+ pointer-events: none;
1339
1094
  font-family: Roboto, "Open Sans", Arial, sans-serif;
1095
+ font-size: var(--font-size-media-controls);
1340
1096
  }
1341
- .media-control-skin-1 .seek-time .seek-time__pos {
1342
- padding-left: 8px;
1343
- padding-right: 8px;
1097
+ .media-control-skin-1.dragging {
1098
+ pointer-events: auto;
1099
+ cursor: grabbing !important;
1100
+ cursor: url("closed-hand.cur"), move;
1344
1101
  }
1345
- .media-control-skin-1 .media-control-dd {
1346
- display: flex;
1347
- height: 32px;
1348
- line-height: 32px;
1349
- align-items: baseline;
1350
- gap: 4px;
1351
- vertical-align: baseline;
1352
- padding: 0;
1353
- background-color: transparent;
1102
+ .media-control-skin-1.dragging * {
1103
+ cursor: grabbing !important;
1104
+ cursor: url("closed-hand.cur"), move;
1105
+ }
1106
+ .media-control-skin-1 .media-control-icon {
1107
+ line-height: 0;
1108
+ letter-spacing: 0;
1109
+ speak: none;
1354
1110
  color: var(--gplayer-mc-text-color);
1355
- -webkit-font-smoothing: antialiased;
1356
- border: none;
1357
- cursor: pointer;
1111
+ vertical-align: middle;
1112
+ text-align: left;
1113
+ transition: all 0.1s ease;
1358
1114
  }
1359
- .media-control-skin-1 .media-control-dd__text {
1360
- text-overflow: ellipsis;
1361
- overflow: hidden;
1362
- white-space: nowrap;
1363
- max-width: 100px;
1115
+ .media-control-skin-1 .media-control-icon:hover {
1116
+ color: white;
1364
1117
  }
1365
- .media-control-skin-1 .media-control-dd.changing {
1366
- animation: pulse 0.5s infinite alternate;
1118
+ .media-control-skin-1.media-control-hide .media-control-background[data-background] {
1119
+ opacity: 0;
1367
1120
  }
1368
- .media-control-skin-1 .media-control-dd__arrow {
1369
- width: 9px;
1370
- height: 6px;
1121
+ .media-control-skin-1.media-control-hide .media-control-layer[data-controls] {
1122
+ bottom: -50px;
1371
1123
  }
1372
- .media-control-skin-1 .media-control-dd__wrap {
1373
- position: relative;
1124
+ .media-control-skin-1.media-control-hide .media-control-layer[data-controls] .bar-scrubber[data-seekbar] {
1125
+ opacity: 0;
1374
1126
  }
1375
- .media-control-skin-1 .media-control-dd__popup {
1376
- max-width: 114px;
1377
- list-style-type: none;
1127
+ .media-control-skin-1 .media-control-layer[data-controls] {
1378
1128
  position: absolute;
1379
- box-shadow: 0 0 1px 1px var(--gplayer-mc-popup-border-color);
1380
- border: none;
1381
- min-width: 60px;
1382
- border-radius: 4px;
1383
- bottom: 40px;
1384
- right: -2px;
1385
- overflow: hidden;
1129
+ bottom: 0;
1130
+ width: 100%;
1131
+ padding: 0 12px 0 8px;
1132
+ height: var(--bottom-panel);
1133
+ vertical-align: middle;
1134
+ pointer-events: auto;
1135
+ transition: bottom 0.4s ease-out;
1136
+ display: flex;
1137
+ justify-content: space-between;
1386
1138
  }
1387
- .media-control-skin-1 .media-control-dd__popup li {
1388
- font-size: var(--gplayer-mc-font-size-dropdown);
1389
- text-align: right;
1390
- height: 30px;
1139
+ .media-control-skin-1 .media-control-left-panel {
1140
+ display: flex;
1141
+ align-items: center;
1142
+ gap: 0.5rem;
1143
+ justify-content: flex-start;
1391
1144
  }
1392
- .media-control-skin-1 .media-control-dd__popup li[data-title] {
1393
- background-color: #c3c2c2;
1394
- padding: 5px;
1145
+ .media-control-skin-1 .media-control-button,
1146
+ .media-control-skin-1 .media-control-indicator,
1147
+ .media-control-skin-1 .media-control-item {
1148
+ order: 50;
1395
1149
  }
1396
- .media-control-skin-1 .media-control-dd__popup li a {
1397
- display: block;
1398
- text-decoration: none;
1399
- text-overflow: ellipsis;
1400
- overflow: hidden;
1401
- white-space: nowrap;
1402
- height: 30px;
1403
- padding: 5px 10px;
1404
- line-height: 20px;
1405
- color: #fffffe;
1150
+ .media-control-skin-1 .media-control-item {
1151
+ display: flex;
1152
+ align-items: center;
1406
1153
  }
1407
- .media-control-skin-1 .media-control-dd__popup li a:hover {
1408
- text-decoration: none;
1409
- background-color: rgba(0, 0, 0, 0.4);
1410
- color: white;
1154
+ .media-control-skin-1 [data-playpause],
1155
+ .media-control-skin-1 [data-playstop] {
1156
+ order: 1;
1411
1157
  }
1412
- .media-control-skin-1 .media-control-dd__popup li.current a {
1413
- color: #f00;
1158
+ .media-control-skin-1 [data-volume] {
1159
+ order: 2;
1414
1160
  }
1415
- .media-control-skin-1 .media-control-dd__popup li:first-child a {
1416
- border-bottom-left-radius: 4px;
1417
- border-bottom-right-radius: 4px;
1161
+ .media-control-skin-1 [data-position] {
1162
+ order: 3;
1418
1163
  }
1419
- .media-control-skin-1 .media-control-dd__popup li:last-child a {
1420
- border-top-left-radius: 4px;
1421
- border-top-right-radius: 4px;
1164
+ .media-control-skin-1 [data-duration] {
1165
+ order: 3;
1422
1166
  }
1423
-
1424
- @keyframes pulse {
1425
- 0% {
1426
- color: #fff;
1427
- }
1428
- 50% {
1429
- color: #ff0101;
1430
- }
1431
- 100% {
1432
- color: #B80000;
1433
- }
1434
- }.quality-levels li.disabled {
1435
- opacity: 0.5;
1436
- pointer-events: none;
1167
+ .media-control-skin-1 .media-control-center-panel {
1168
+ height: 100%;
1169
+ text-align: center;
1170
+ line-height: var(--bottom-panel);
1437
1171
  }
1438
- .quality-levels li.current {
1439
- background-color: #000;
1440
- }.media-control-skin-1 .media-control-item.media-control-pip {
1441
- order: 95;
1172
+ .media-control-skin-1 .media-control-right-panel {
1173
+ display: flex;
1174
+ align-items: center;
1175
+ gap: 1rem;
1176
+ justify-content: flex-end;
1442
1177
  }
1443
- .media-control-skin-1 .media-control-item.media-control-pip button {
1178
+ @media (max-width: 420px) {
1179
+ .media-control-skin-1 .media-control-right-panel {
1180
+ gap: 0.5rem;
1181
+ }
1182
+ }
1183
+ .media-control-skin-1 button.media-control-button {
1184
+ background-color: transparent;
1185
+ border: 0;
1186
+ padding: 0;
1187
+ cursor: pointer;
1188
+ display: inline-block;
1444
1189
  height: 20px;
1190
+ width: 24px;
1445
1191
  }
1446
- .media-control-skin-1 .media-control-item.media-control-pip button svg {
1192
+ .media-control-skin-1 button.media-control-button svg {
1447
1193
  height: 20px;
1448
- }.spinner-three-bounce[data-spinner] {
1449
- position: absolute;
1450
- width: 70px;
1451
- text-align: center;
1452
- z-index: 999;
1453
- left: 0;
1454
- right: 0;
1455
- margin: 0 auto;
1456
- margin-left: auto;
1457
- margin-right: auto;
1458
- /* center vertically */
1459
- top: 50%;
1460
- transform: translateY(-50%);
1461
1194
  }
1462
- .spinner-three-bounce[data-spinner] > div {
1463
- width: 18px;
1464
- height: 18px;
1465
- background-color: #FFF;
1466
- border-radius: 100%;
1467
- display: inline-block;
1468
- animation: bouncedelay 1.4s infinite ease-in-out;
1469
- /* Prevent first frame from flickering when animation starts */
1470
- animation-fill-mode: both;
1195
+ .media-control-skin-1 button.media-control-button svg path {
1196
+ fill: white;
1471
1197
  }
1472
- .spinner-three-bounce[data-spinner] [data-bounce1] {
1473
- animation-delay: -0.32s;
1198
+ .media-control-skin-1 button.media-control-button:focus {
1199
+ outline: none;
1474
1200
  }
1475
- .spinner-three-bounce[data-spinner] [data-bounce2] {
1476
- animation-delay: -0.16s;
1201
+ .media-control-skin-1 button.media-control-button[data-play] {
1202
+ float: left;
1203
+ height: 100%;
1477
1204
  }
1478
-
1479
- @keyframes bouncedelay {
1480
- 0%, 80%, 100% {
1481
- transform: scale(0);
1482
- }
1483
- 40% {
1484
- transform: scale(1);
1485
- }
1486
- }.container-with-poster-clickable .mc-skip-time {
1487
- height: 0;
1205
+ .media-control-skin-1 button.media-control-button[data-pause] {
1206
+ float: left;
1207
+ height: 100%;
1488
1208
  }
1489
-
1490
- .mc-skip-time {
1491
- position: absolute;
1492
- width: 100%;
1493
- height: calc(100% - 50px);
1494
- z-index: 9998;
1209
+ .media-control-skin-1 button.media-control-button[data-stop] {
1210
+ float: left;
1211
+ height: 100%;
1212
+ }
1213
+ .media-control-skin-1 button.media-control-button[data-fullscreen] {
1214
+ order: 100;
1495
1215
  background-color: transparent;
1496
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1216
+ border: 0;
1217
+ height: 40px;
1497
1218
  }
1498
- .mc-skip-time .skip-container {
1499
- width: 100%;
1219
+ .media-control-skin-1 button.media-control-button[data-hd-indicator] {
1220
+ background-color: transparent;
1221
+ border: 0;
1222
+ cursor: default;
1223
+ display: none !important;
1224
+ float: right;
1500
1225
  height: 100%;
1226
+ }
1227
+ .media-control-skin-1 .media-control-indicator[data-position], .media-control-skin-1 .media-control-indicator[data-duration] {
1501
1228
  display: flex;
1502
- justify-content: space-between;
1229
+ color: white;
1230
+ cursor: default;
1231
+ line-height: var(--bottom-panel);
1232
+ position: relative;
1233
+ }
1234
+ .media-control-skin-1 .media-control-indicator[data-position] {
1235
+ margin: 1px 0 0 7px;
1236
+ }
1237
+ .media-control-skin-1 .media-control-indicator[data-duration] {
1238
+ color: rgb(255, 255, 255);
1239
+ opacity: 0.5;
1240
+ margin-top: 1px;
1241
+ margin-right: 6px;
1503
1242
  }
1504
- .mc-skip-time .skip-container .skip-item {
1505
- flex: 1 0 0px;
1506
- height: 100%;
1507
- }.player-poster {
1508
- display: flex;
1509
- justify-content: center;
1510
- align-items: center;
1243
+ .media-control-skin-1 .media-control-indicator[data-duration]::before {
1244
+ content: "|";
1245
+ margin-right: 7px;
1246
+ }
1247
+ .media-control-skin-1 .bar-container[data-seekbar] {
1511
1248
  position: absolute;
1512
- height: 100%;
1513
- width: 100%;
1514
- z-index: 998;
1515
- top: 0;
1249
+ top: -11px;
1516
1250
  left: 0;
1517
- background-color: #000;
1518
- background-size: cover;
1519
- background-repeat: no-repeat;
1520
- background-position: 50% 50%;
1521
- }
1522
- .player-poster.clickable {
1251
+ display: inline-block;
1252
+ vertical-align: middle;
1253
+ width: 100%;
1254
+ height: 20px;
1523
1255
  cursor: pointer;
1524
1256
  }
1525
- .player-poster:hover .play-wrapper {
1526
- opacity: 1;
1527
- }
1528
- .player-poster .play-wrapper {
1257
+ .media-control-skin-1 .bar-container[data-seekbar] .bar-background[data-seekbar] {
1529
1258
  width: 100%;
1530
- height: 25%;
1531
- margin: 0 auto;
1532
- opacity: 0.75;
1533
- transition: opacity 0.1s ease;
1259
+ height: 3px;
1260
+ position: relative;
1261
+ top: 8px;
1262
+ background-color: #666;
1534
1263
  }
1535
- .player-poster .play-wrapper svg {
1264
+ .media-control-skin-1 .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-1[data-seekbar] {
1265
+ position: absolute;
1266
+ top: 0;
1267
+ left: 0;
1268
+ width: 0;
1536
1269
  height: 100%;
1537
- display: inline;
1270
+ background-color: var(--player-seekbar-buffer-color);
1271
+ transition: all 0.1s ease-out;
1538
1272
  }
1539
- .player-poster .play-wrapper svg path {
1540
- fill: #fff;
1541
- }@charset "UTF-8";
1542
- .gplayer-mc-clips {
1543
- display: flex;
1544
- gap: 6px;
1273
+ .media-control-skin-1 .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
1274
+ position: absolute;
1275
+ top: 0;
1276
+ left: 0;
1277
+ width: 0;
1278
+ height: 100%;
1279
+ background-color: var(--player-seekbar-current-color);
1280
+ transition: all 0.1s ease-out;
1545
1281
  }
1546
- .gplayer-mc-clips .gplayer-mc-clips-text {
1547
- text-overflow: ellipsis;
1548
- white-space: nowrap;
1549
- overflow: hidden;
1550
- display: inline-block;
1551
- text-overflow: ellipsis;
1552
- color: white;
1282
+ .media-control-skin-1 .bar-container[data-seekbar].seek-disabled {
1553
1283
  cursor: default;
1554
- line-height: var(--bottom-panel);
1555
- position: relative;
1556
- max-width: 150px;
1284
+ display: none;
1557
1285
  }
1558
- .gplayer-mc-clips .gplayer-mc-clips-text::before {
1559
- content: "•";
1560
- padding-right: 6px;
1286
+ .media-control-skin-1 .bar-container[data-seekbar].seek-disabled + .bar-scrubber[data-seekbar] {
1287
+ cursor: default;
1288
+ display: none;
1561
1289
  }
1562
- .gplayer-mc-clips .gplayer-mc-clips-text.compact {
1563
- max-width: 100px;
1564
- }.share_plugin[data-share] {
1565
- pointer-events: auto;
1566
- z-index: 5;
1567
- font-family: Roboto, "Open Sans", Arial, sans-serif !important;
1290
+ .media-control-skin-1 .bar-scrubber[data-seekbar] {
1291
+ position: absolute;
1292
+ transform: translateX(-50%);
1293
+ top: -11.5px;
1294
+ left: 0;
1295
+ width: 20px;
1296
+ height: 20px;
1297
+ opacity: 1;
1298
+ transition: all 0.1s ease-out;
1568
1299
  }
1569
- .share_plugin[data-share].share-hide .share-button-container {
1570
- right: -50px;
1300
+ .media-control-skin-1 .bar-scrubber[data-seekbar] .bar-scrubber-icon[data-seekbar] {
1301
+ position: absolute;
1302
+ left: 4.5px;
1303
+ top: 4.5px;
1304
+ width: 11px;
1305
+ height: 11px;
1306
+ border-radius: 50%;
1307
+ background-color: white;
1571
1308
  }
1572
- .share_plugin[data-share] .share-button-container {
1309
+ .media-control-skin-1 .drawer-container[data-volume] {
1310
+ display: flex;
1311
+ justify-content: flex-start;
1312
+ height: var(--bottom-panel);
1573
1313
  cursor: pointer;
1574
- width: 36px;
1575
- height: 36px;
1576
- background-color: rgba(74, 74, 74, 0.6);
1577
- border-radius: 4px;
1578
- position: absolute;
1579
- right: 10px;
1580
- top: 10px;
1581
- padding-top: 6px;
1582
- transition: all 0.3s ease-out;
1314
+ box-sizing: border-box;
1583
1315
  }
1584
- .share_plugin[data-share] .share-button-container button[data-share-button] {
1316
+ .media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] {
1317
+ bottom: 0;
1318
+ }
1319
+ .media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] {
1585
1320
  background-color: transparent;
1586
1321
  border: 0;
1587
- margin: 0 6px;
1588
- padding: 0;
1589
- cursor: pointer;
1590
- display: inline-block;
1591
- width: 19px;
1322
+ box-sizing: content-box;
1323
+ height: var(--bottom-panel);
1324
+ width: 20px;
1325
+ }
1326
+ .media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] svg {
1592
1327
  height: 20px;
1328
+ position: relative;
1329
+ top: 3px;
1330
+ margin-top: 7px;
1593
1331
  }
1594
- .share_plugin[data-share] .share-container {
1595
- pointer-events: auto;
1332
+ .media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] svg path {
1333
+ fill: white;
1334
+ }
1335
+ .media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume].muted svg {
1336
+ margin-left: 2px;
1337
+ }
1338
+ .media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] {
1339
+ position: relative;
1340
+ margin-left: 10px;
1341
+ top: 8px;
1342
+ width: 80px;
1343
+ height: 23px;
1344
+ padding: 3px 0;
1345
+ transition: width 0.2s ease-out;
1346
+ }
1347
+ .media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] {
1348
+ height: 3px;
1349
+ border-radius: 100px;
1350
+ position: relative;
1351
+ top: 7px;
1352
+ background-color: #666;
1353
+ }
1354
+ .media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] .bar-fill-1[data-volume] {
1596
1355
  position: absolute;
1597
- width: 280px;
1356
+ top: 0;
1357
+ left: 0;
1358
+ width: 0;
1359
+ height: 100%;
1360
+ border-radius: 100px;
1598
1361
  background-color: white;
1599
- transform: translate(0, 50%);
1600
- transform: translate(-50%, -50%);
1601
- left: 50%;
1602
- /* margin-left: -140px; */
1603
- top: calc(50% - 20px);
1604
- /* margin-top: -170px; */
1605
- }
1606
- .share_plugin[data-share] .share-container .share-container-header {
1607
- text-align: left;
1608
- border-bottom: 1px solid rgba(155, 155, 155, 0.25);
1362
+ transition: all 0.1s ease-out;
1609
1363
  }
1610
- .share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
1611
- display: inline-block;
1612
- font-size: 16px;
1613
- margin: 5px;
1364
+ .media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] .bar-fill-2[data-volume] {
1365
+ position: absolute;
1366
+ top: 0;
1367
+ left: 0;
1368
+ width: 0;
1369
+ height: 100%;
1370
+ background-color: var(--player-vod-color);
1371
+ transition: all 0.1s ease-out;
1614
1372
  }
1615
- .share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
1616
- display: inline-block;
1617
- width: 24px;
1618
- float: right;
1619
- margin: 5px;
1620
- cursor: pointer;
1373
+ .media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber[data-volume] {
1374
+ position: absolute;
1375
+ transform: translateX(-50%);
1376
+ top: 3px;
1377
+ margin-left: 3px;
1378
+ width: 16px;
1379
+ height: 16px;
1380
+ opacity: 1;
1381
+ transition: all 0.1s ease-out;
1621
1382
  }
1622
- .share_plugin[data-share] .share-container .share-container-main {
1623
- margin-bottom: 8px;
1383
+ .media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber[data-volume] .bar-scrubber-icon[data-volume] {
1384
+ position: absolute;
1385
+ left: 3px;
1386
+ top: 5px;
1387
+ width: 7px;
1388
+ height: 7px;
1389
+ border-radius: 50%;
1390
+ background-color: white;
1624
1391
  }
1625
- .share_plugin[data-share] .share-container .share-container-main > div {
1626
- text-align: left;
1627
- font-size: 14px;
1628
- padding: 5px;
1392
+ .media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume] {
1393
+ float: left;
1394
+ width: 4px;
1395
+ padding-left: 2px;
1396
+ height: 12px;
1397
+ opacity: 0.5;
1398
+ box-shadow: inset 2px 0 0 white;
1399
+ transition: transform 0.2s ease-out;
1629
1400
  }
1630
- .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 {
1631
- overflow: hidden;
1632
- text-overflow: ellipsis;
1633
- color: #818181;
1634
- border: solid 1px #d3d3d3;
1635
- width: calc(100% - 10px);
1636
- padding: 5px;
1401
+ .media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume].fill {
1402
+ box-shadow: inset 2px 0 0 #fff;
1403
+ opacity: 1;
1637
1404
  }
1638
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
1639
- max-height: 90px;
1640
- resize: none;
1405
+ .media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume]:nth-of-type(1) {
1406
+ padding-left: 0;
1641
1407
  }
1642
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
1643
- width: 32px;
1644
- display: inline-block;
1645
- margin-right: 5px;
1646
- cursor: pointer;
1647
- }*,
1648
- :focus,
1649
- :visited {
1650
- outline: none !important;
1408
+ .media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume]:hover {
1409
+ transform: scaleY(1.5);
1651
1410
  }
1652
-
1653
- .multicamera[data-multicamera] {
1654
- float: right;
1655
- margin-top: 4px;
1656
- position: relative;
1657
- margin-right: 20px;
1658
- width: 20px;
1411
+ .media-control-skin-1 .seek-time {
1412
+ height: 26px;
1413
+ line-height: 26px;
1414
+ bottom: 52px;
1415
+ border-radius: 3px;
1416
+ background-color: rgba(74, 74, 74, 0.7);
1659
1417
  }
1660
- .multicamera[data-multicamera] button {
1661
- background-color: transparent;
1662
- color: #fff;
1418
+ .media-control-skin-1 .seek-time span {
1419
+ letter-spacing: 0.8px;
1420
+ font-size: 14px;
1663
1421
  font-family: Roboto, "Open Sans", Arial, sans-serif;
1422
+ }
1423
+ .media-control-skin-1 .seek-time .seek-time__pos {
1424
+ padding-left: 8px;
1425
+ padding-right: 8px;
1426
+ }
1427
+ .media-control-skin-1 .media-control-dd {
1428
+ display: flex;
1429
+ height: 32px;
1430
+ line-height: 32px;
1431
+ align-items: baseline;
1432
+ gap: 4px;
1433
+ vertical-align: baseline;
1434
+ padding: 0;
1435
+ background-color: transparent;
1436
+ color: var(--gplayer-mc-text-color);
1664
1437
  -webkit-font-smoothing: antialiased;
1665
1438
  border: none;
1666
- font-size: 14px;
1667
- padding: 0;
1668
- }
1669
- .multicamera[data-multicamera] button svg {
1670
- height: 20px;
1671
- position: relative;
1672
- margin-top: 6px;
1439
+ cursor: pointer;
1673
1440
  }
1674
- .multicamera[data-multicamera] button:hover {
1675
- color: #c9c9c9;
1441
+ .media-control-skin-1 .media-control-dd__text {
1442
+ text-overflow: ellipsis;
1443
+ overflow: hidden;
1444
+ white-space: nowrap;
1445
+ max-width: 100px;
1676
1446
  }
1677
- .multicamera[data-multicamera] button.changing {
1447
+ .media-control-skin-1 .media-control-dd.changing {
1678
1448
  animation: pulse 0.5s infinite alternate;
1679
1449
  }
1680
- .multicamera[data-multicamera] button span.quality-arrow {
1450
+ .media-control-skin-1 .media-control-dd svg {
1451
+ fill: var(--gplayer-mc-text-color);
1452
+ }
1453
+ .media-control-skin-1 .media-control-dd__arrow {
1681
1454
  width: 9px;
1682
1455
  height: 6px;
1683
- margin-top: 11px;
1684
- margin-left: 5px;
1685
1456
  }
1686
- .multicamera[data-multicamera] > ul {
1687
- padding: 6px 0;
1688
- right: -24px;
1689
- width: 245px;
1457
+ .media-control-skin-1 .media-control-dd__wrap {
1458
+ position: relative;
1459
+ }
1460
+ .media-control-skin-1 .media-control-dd__popup {
1461
+ max-width: 200px;
1690
1462
  list-style-type: none;
1691
1463
  position: absolute;
1692
- bottom: 48px;
1464
+ box-shadow: 0 0 1px 1px var(--gplayer-mc-popup-border-color);
1465
+ border: none;
1466
+ min-width: 60px;
1693
1467
  border-radius: 4px;
1694
- display: none;
1695
- background-color: rgba(74, 74, 74, 0.9);
1468
+ bottom: 40px;
1469
+ right: -2px;
1470
+ overflow-x: hidden;
1471
+ overflow-y: auto;
1472
+ padding: 5px 0;
1696
1473
  }
1697
- .multicamera[data-multicamera] > ul::after {
1698
- content: "";
1699
- position: absolute;
1700
- top: 100%;
1701
- left: 85%;
1702
- margin-left: -10px;
1703
- width: 0;
1704
- height: 0;
1705
- border-top: 10px solid rgba(74, 74, 74, 0.9);
1706
- border-right: 10px solid transparent;
1707
- border-left: 10px solid transparent;
1474
+ .media-control-skin-1 .media-control-dd__popup li {
1475
+ font-size: var(--gplayer-mc-font-size-dropdown);
1476
+ text-align: right;
1477
+ height: 30px;
1708
1478
  }
1709
- .multicamera[data-multicamera] li {
1710
- font-size: 10px;
1711
- cursor: pointer;
1479
+ .media-control-skin-1 .media-control-dd__popup li a {
1480
+ display: block;
1481
+ text-decoration: none;
1482
+ text-overflow: ellipsis;
1483
+ overflow: hidden;
1484
+ white-space: nowrap;
1485
+ padding: 5px 10px;
1486
+ line-height: 20px;
1487
+ color: #fffffe;
1712
1488
  }
1713
- .multicamera[data-multicamera] li .multicamera-item {
1714
- display: flex;
1715
- padding: 10px 0;
1716
- justify-content: center;
1717
- position: relative;
1489
+ .media-control-skin-1 .media-control-dd__popup li a:hover {
1490
+ text-decoration: none;
1491
+ background-color: rgba(0, 0, 0, 0.4);
1492
+ color: var(--gplayer-mc-text-color);
1718
1493
  }
1719
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
1720
- pointer-events: none;
1494
+ .media-control-skin-1 .media-control-dd__popup li.current a {
1495
+ color: #f00;
1721
1496
  }
1722
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
1723
- opacity: 0.5;
1497
+ .media-control-skin-1 .media-control-dd__popup li:first-child a {
1498
+ border-bottom-left-radius: 4px;
1499
+ border-bottom-right-radius: 4px;
1724
1500
  }
1725
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
1726
- opacity: 0.5;
1501
+ .media-control-skin-1 .media-control-dd__popup li:last-child a {
1502
+ border-top-left-radius: 4px;
1503
+ border-top-right-radius: 4px;
1727
1504
  }
1728
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
1729
- background-color: rgba(0, 0, 0, 0);
1505
+
1506
+ @keyframes pulse {
1507
+ 0% {
1508
+ color: #fff;
1509
+ }
1510
+ 50% {
1511
+ color: #ff0101;
1512
+ }
1513
+ 100% {
1514
+ color: #B80000;
1515
+ }
1516
+ }*, :focus, :visited {
1517
+ outline: none !important;
1730
1518
  }
1731
- .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
1732
- background-color: rgba(0, 0, 0, 0.3);
1519
+
1520
+ .gear-wrapper .go-back {
1521
+ font-weight: 600;
1522
+ font-size: 14px;
1523
+ line-height: 20px;
1524
+ width: 100%;
1525
+ text-align: left;
1526
+ padding: 12px;
1733
1527
  }
1734
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
1735
- width: 80px;
1736
- height: 60px;
1528
+ .gear-wrapper .go-back .arrow-left-icon {
1529
+ float: left;
1530
+ padding-top: 2px;
1531
+ padding-right: 2px;
1737
1532
  }
1738
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
1739
- width: 80px;
1740
- height: 60px;
1533
+ .gear-wrapper .go-back .arrow-left-icon svg {
1534
+ height: 16px;
1741
1535
  }
1742
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
1743
- width: 120px;
1744
- text-align: left;
1745
- margin-left: 15px;
1536
+ .gear-wrapper ul.gear-sub-menu {
1537
+ width: 100%;
1538
+ list-style-type: none;
1539
+ min-width: 60px;
1540
+ border-top: 2px solid rgb(36, 36, 36);
1541
+ overflow-y: auto;
1746
1542
  }
1747
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title,
1748
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1749
- width: 120px;
1750
- height: 20px;
1751
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1752
- font-size: 14px;
1753
- font-weight: normal;
1754
- font-style: normal;
1755
- font-stretch: normal;
1756
- line-height: 1.43;
1757
- letter-spacing: normal;
1543
+ .gear-wrapper ul.gear-sub-menu li {
1544
+ font-size: 12px;
1758
1545
  text-align: left;
1759
- color: #fff;
1760
- text-overflow: ellipsis;
1761
- overflow: hidden;
1762
- }
1763
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1764
- opacity: 0.6;
1765
- }
1766
- .multicamera[data-multicamera] li[data-title] {
1767
- background-color: #c3c2c2;
1768
- padding: 5px;
1769
1546
  }
1770
- .multicamera[data-multicamera] li a {
1771
- color: #444;
1772
- padding: 2px 10px;
1547
+ .gear-wrapper ul.gear-sub-menu li a {
1773
1548
  display: block;
1774
1549
  text-decoration: none;
1550
+ height: 30px;
1551
+ padding: 5px 10px;
1552
+ line-height: 22px;
1553
+ color: var(--gplayer-mc-text-dim-color);
1775
1554
  }
1776
- .multicamera[data-multicamera] li a:hover {
1777
- background-color: #555;
1778
- color: white;
1555
+ .gear-wrapper ul.gear-sub-menu li a:hover {
1556
+ color: var(--gplayer-mc-text-color);
1557
+ background-color: rgba(0, 0, 0, 0.4);
1779
1558
  }
1780
- .multicamera[data-multicamera] li a:hover a {
1781
- color: white;
1559
+ .gear-wrapper ul.gear-sub-menu li a:hover a {
1560
+ color: var(--gplayer-mc-text-color);
1782
1561
  text-decoration: none;
1783
1562
  }
1784
- .multicamera[data-multicamera] li.current a {
1785
- color: #f00;
1786
- }.media-control-skin-1 .media-control-cc button.media-control-button {
1787
- display: flex;
1788
- justify-content: center;
1789
- padding: 0;
1790
- align-items: center;
1791
- vertical-align: top;
1792
- }
1793
- .media-control-skin-1 .media-control-cc button.media-control-button:hover {
1794
- color: white;
1795
- }
1796
- .media-control-skin-1 .media-control-cc ul {
1797
- width: auto;
1798
- border-radius: 4px;
1799
- bottom: 52px;
1800
- margin-left: -28px;
1801
- }
1802
- .media-control-skin-1 .media-control-cc ul li {
1803
- font-size: 16px;
1804
- text-align: center;
1805
- white-space: nowrap;
1806
- height: 30px;
1807
- }
1808
- .media-control-skin-1 .media-control-cc ul li a {
1809
- height: 30px;
1810
- padding: 5px 10px;
1811
- color: #fffffe;
1563
+ .gear-wrapper ul.gear-sub-menu li a .check-icon {
1564
+ width: 30px;
1565
+ height: 20px;
1566
+ float: left;
1567
+ display: block;
1812
1568
  }
1813
- .media-control-skin-1 .media-control-cc ul li a:hover {
1814
- background-color: rgba(0, 0, 0, 0.4);
1569
+ .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
1570
+ display: none;
1815
1571
  }
1816
- .media-control-skin-1 .media-control-cc ul li.current a {
1817
- background-color: rgba(0, 0, 0, 0.4);
1572
+ .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
1573
+ display: inline;
1574
+ }.media-control-skin-1 .media-control-item.media-control-gear {
1575
+ order: 99;
1818
1576
  }
1819
- .media-control-skin-1 .media-control-cc ul li:first-child a {
1820
- border-bottom-left-radius: 4px;
1821
- border-bottom-right-radius: 4px;
1577
+ .media-control-skin-1 .media-control-item.media-control-gear .gear-wrapper {
1578
+ position: absolute;
1579
+ right: 16px;
1580
+ bottom: 52px;
1581
+ width: 250px;
1582
+ min-height: 48px;
1583
+ z-index: 9999;
1584
+ border-radius: 4px;
1585
+ box-shadow: 0 0 1px 1px var(--gplayer-mc-popup-border-color);
1822
1586
  }
1823
- .media-control-skin-1 .media-control-cc ul li:last-child a {
1824
- border-top-left-radius: 4px;
1825
- border-top-right-radius: 4px;
1587
+ .media-control-skin-1 .media-control-item.media-control-gear .gear-options-list {
1588
+ padding: 8px 0;
1826
1589
  }
1827
- .media-control-skin-1 .media-control-cc {
1828
- position: relative;
1829
- order: 85;
1590
+ .media-control-skin-1 .media-control-item.media-control-gear .gear-option {
1591
+ margin: 0;
1592
+ text-align: left;
1593
+ line-height: 22px;
1594
+ padding: 5px 14px;
1595
+ width: 250px;
1596
+ font-size: 12px;
1597
+ display: flex;
1598
+ align-items: center;
1599
+ justify-content: flex-start;
1600
+ gap: 8px;
1830
1601
  }
1831
- .media-control-skin-1 .media-control-cc button {
1832
- background-color: transparent;
1833
- color: #fff;
1834
- -webkit-font-smoothing: antialiased;
1835
- border: none;
1836
- cursor: pointer;
1602
+ .media-control-skin-1 .media-control-item.media-control-gear .gear-option_icon {
1603
+ flex: 24px 0 0;
1604
+ height: 24px;
1837
1605
  }
1838
- .media-control-skin-1 .media-control-cc button .cc-text svg {
1839
- fill: white;
1606
+ .media-control-skin-1 .media-control-item.media-control-gear .gear-option_icon.hidden {
1607
+ visibility: hidden;
1608
+ display: inline-block;
1840
1609
  }
1841
- .media-control-skin-1 .media-control-cc button:hover {
1842
- color: #c9c9c9;
1610
+ .media-control-skin-1 .media-control-item.media-control-gear .gear-option_label {
1611
+ flex: 0 1 100%;
1843
1612
  }
1844
- .media-control-skin-1 .media-control-cc button.changing {
1845
- animation: pulse 0.5s infinite alternate;
1613
+ .media-control-skin-1 .media-control-item.media-control-gear .gear-option_arrow-right-icon {
1614
+ flex: 0 0 14px;
1615
+ height: 24px;
1846
1616
  }
1847
- .media-control-skin-1 .media-control-cc ul {
1848
- width: 80px;
1849
- overflow: hidden;
1850
- list-style-type: none;
1617
+ .media-control-skin-1 .media-control-item.media-control-gear .gear-option_value {
1618
+ flex: 1 0 auto;
1619
+ }.player-poster {
1620
+ display: flex;
1621
+ justify-content: center;
1622
+ align-items: center;
1851
1623
  position: absolute;
1852
- bottom: 25px;
1853
- border: none;
1854
- background-color: #e6e6e6;
1855
- padding: 8px 0;
1856
- box-shadow: 0 0 1px 1px var(--gplayer-mc-popup-border-color);
1624
+ height: 100%;
1625
+ width: 100%;
1626
+ z-index: 998;
1627
+ top: 0;
1628
+ left: 0;
1629
+ background-color: #000;
1630
+ background-size: cover;
1631
+ background-repeat: no-repeat;
1632
+ background-position: 50% 50%;
1857
1633
  }
1858
- .media-control-skin-1 .media-control-cc li a {
1859
- color: #444;
1860
- padding: 2px 10px;
1861
- display: block;
1862
- text-decoration: none;
1634
+ .player-poster.clickable {
1635
+ cursor: pointer;
1863
1636
  }
1864
- .media-control-skin-1 .media-control-cc li a:hover {
1865
- background-color: #555;
1866
- color: white;
1637
+ .player-poster:hover .play-wrapper {
1638
+ opacity: 1;
1867
1639
  }
1868
- .media-control-skin-1 .media-control-cc li a:hover a {
1869
- color: white;
1870
- text-decoration: none;
1640
+ .player-poster .play-wrapper {
1641
+ width: 100%;
1642
+ height: 25%;
1643
+ margin: 0 auto;
1644
+ opacity: 0.75;
1645
+ transition: opacity 0.1s ease;
1871
1646
  }
1872
- .media-control-skin-1 .media-control-cc li.current a {
1873
- color: #f00;
1874
- background-color: #555;
1647
+ .player-poster .play-wrapper svg {
1648
+ height: 100%;
1649
+ display: inline;
1650
+ }
1651
+ .player-poster .play-wrapper svg path {
1652
+ fill: #fff;
1875
1653
  }.scrub-thumbnails {
1876
1654
  position: absolute;
1877
1655
  bottom: 52px;
@@ -1935,6 +1713,174 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1935
1713
  }
1936
1714
  .scrub-thumbnails .backdrop .carousel img {
1937
1715
  width: auto;
1716
+ }.share_plugin[data-share] {
1717
+ pointer-events: auto;
1718
+ z-index: 5;
1719
+ font-family: Roboto, "Open Sans", Arial, sans-serif !important;
1720
+ }
1721
+ .share_plugin[data-share].share-hide .share-button-container {
1722
+ right: -50px;
1723
+ }
1724
+ .share_plugin[data-share] .share-button-container {
1725
+ cursor: pointer;
1726
+ width: 36px;
1727
+ height: 36px;
1728
+ background-color: rgba(74, 74, 74, 0.6);
1729
+ border-radius: 4px;
1730
+ position: absolute;
1731
+ right: 10px;
1732
+ top: 10px;
1733
+ padding-top: 6px;
1734
+ transition: all 0.3s ease-out;
1735
+ }
1736
+ .share_plugin[data-share] .share-button-container button[data-share-button] {
1737
+ background-color: transparent;
1738
+ border: 0;
1739
+ margin: 0 6px;
1740
+ padding: 0;
1741
+ cursor: pointer;
1742
+ display: inline-block;
1743
+ width: 19px;
1744
+ height: 20px;
1745
+ }
1746
+ .share_plugin[data-share] .share-container {
1747
+ pointer-events: auto;
1748
+ position: absolute;
1749
+ width: 280px;
1750
+ background-color: white;
1751
+ transform: translate(0, 50%);
1752
+ transform: translate(-50%, -50%);
1753
+ left: 50%;
1754
+ /* margin-left: -140px; */
1755
+ top: calc(50% - 20px);
1756
+ /* margin-top: -170px; */
1757
+ }
1758
+ .share_plugin[data-share] .share-container .share-container-header {
1759
+ text-align: left;
1760
+ border-bottom: 1px solid rgba(155, 155, 155, 0.25);
1761
+ }
1762
+ .share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
1763
+ display: inline-block;
1764
+ font-size: 16px;
1765
+ margin: 5px;
1766
+ }
1767
+ .share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
1768
+ display: inline-block;
1769
+ width: 24px;
1770
+ float: right;
1771
+ margin: 5px;
1772
+ cursor: pointer;
1773
+ }
1774
+ .share_plugin[data-share] .share-container .share-container-main {
1775
+ margin-bottom: 8px;
1776
+ }
1777
+ .share_plugin[data-share] .share-container .share-container-main > div {
1778
+ text-align: left;
1779
+ font-size: 14px;
1780
+ padding: 5px;
1781
+ }
1782
+ .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 {
1783
+ overflow: hidden;
1784
+ text-overflow: ellipsis;
1785
+ color: #818181;
1786
+ border: solid 1px #d3d3d3;
1787
+ width: calc(100% - 10px);
1788
+ padding: 5px;
1789
+ }
1790
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
1791
+ max-height: 90px;
1792
+ resize: none;
1793
+ }
1794
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
1795
+ width: 32px;
1796
+ display: inline-block;
1797
+ margin-right: 5px;
1798
+ cursor: pointer;
1799
+ }.media-control-skin-1 .media-control-cc button.media-control-button {
1800
+ display: flex;
1801
+ justify-content: center;
1802
+ padding: 0;
1803
+ align-items: center;
1804
+ vertical-align: top;
1805
+ }
1806
+ .media-control-skin-1 .media-control-cc button.media-control-button:hover {
1807
+ color: white;
1808
+ }
1809
+ .media-control-skin-1 .media-control-cc ul li {
1810
+ text-align: center;
1811
+ }
1812
+ .media-control-skin-1 .media-control-cc ul li a {
1813
+ height: 30px;
1814
+ padding: 5px 10px;
1815
+ color: #fffffe;
1816
+ }
1817
+ .media-control-skin-1 .media-control-cc ul li a:hover {
1818
+ background-color: rgba(0, 0, 0, 0.4);
1819
+ }
1820
+ .media-control-skin-1 .media-control-cc ul li.current a {
1821
+ background-color: rgba(0, 0, 0, 0.4);
1822
+ }
1823
+ .media-control-skin-1 .media-control-cc ul li:first-child a {
1824
+ border-bottom-left-radius: 4px;
1825
+ border-bottom-right-radius: 4px;
1826
+ }
1827
+ .media-control-skin-1 .media-control-cc ul li:last-child a {
1828
+ border-top-left-radius: 4px;
1829
+ border-top-right-radius: 4px;
1830
+ }
1831
+ .media-control-skin-1 .media-control-cc {
1832
+ position: relative;
1833
+ order: 85;
1834
+ }
1835
+
1836
+ .container .gplayer-cc-line {
1837
+ position: absolute;
1838
+ bottom: calc(var(--bottom-panel) + 5px);
1839
+ width: 100%;
1840
+ }
1841
+ .container .gplayer-cc-line p {
1842
+ width: auto;
1843
+ background-color: rgba(0, 0, 0, 0.4);
1844
+ color: white;
1845
+ display: inline-block;
1846
+ }.spinner-three-bounce[data-spinner] {
1847
+ position: absolute;
1848
+ width: 70px;
1849
+ text-align: center;
1850
+ z-index: 999;
1851
+ left: 0;
1852
+ right: 0;
1853
+ margin: 0 auto;
1854
+ margin-left: auto;
1855
+ margin-right: auto;
1856
+ /* center vertically */
1857
+ top: 50%;
1858
+ transform: translateY(-50%);
1859
+ }
1860
+ .spinner-three-bounce[data-spinner] > div {
1861
+ width: 18px;
1862
+ height: 18px;
1863
+ background-color: #FFF;
1864
+ border-radius: 100%;
1865
+ display: inline-block;
1866
+ animation: bouncedelay 1.4s infinite ease-in-out;
1867
+ /* Prevent first frame from flickering when animation starts */
1868
+ animation-fill-mode: both;
1869
+ }
1870
+ .spinner-three-bounce[data-spinner] [data-bounce1] {
1871
+ animation-delay: -0.32s;
1872
+ }
1873
+ .spinner-three-bounce[data-spinner] [data-bounce2] {
1874
+ animation-delay: -0.16s;
1875
+ }
1876
+
1877
+ @keyframes bouncedelay {
1878
+ 0%, 80%, 100% {
1879
+ transform: scale(0);
1880
+ }
1881
+ 40% {
1882
+ transform: scale(1);
1883
+ }
1938
1884
  }.player-logo[data-logo] {
1939
1885
  position: absolute;
1940
1886
  z-index: 2;