@gcorevideo/player 2.28.19 → 2.28.21
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.
- package/assets/bottom-gear/gear.scss +2 -2
- package/assets/icons/new/arrow-right.svg +1 -1
- package/assets/icons/new/hd.svg +1 -1
- package/assets/icons/new/speed.svg +1 -1
- package/dist/core.js +1 -1
- package/dist/index.css +303 -303
- package/dist/index.embed.js +118 -37
- package/dist/index.js +118 -38
- package/lib/plugins/audio-selector/AudioTracks.d.ts +2 -0
- package/lib/plugins/audio-selector/AudioTracks.d.ts.map +1 -1
- package/lib/plugins/audio-selector/AudioTracks.js +11 -0
- package/lib/plugins/bottom-gear/BottomGear.d.ts +2 -0
- package/lib/plugins/bottom-gear/BottomGear.d.ts.map +1 -1
- package/lib/plugins/bottom-gear/BottomGear.js +11 -0
- package/lib/plugins/level-selector/QualityLevels.d.ts.map +1 -1
- package/lib/plugins/level-selector/QualityLevels.js +4 -0
- package/lib/plugins/media-control/MediaControl.d.ts +10 -0
- package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
- package/lib/plugins/media-control/MediaControl.js +21 -22
- package/lib/plugins/subtitles/ClosedCaptions.d.ts +3 -0
- package/lib/plugins/subtitles/ClosedCaptions.d.ts.map +1 -1
- package/lib/plugins/subtitles/ClosedCaptions.js +30 -11
- package/lib/testUtils.d.ts.map +1 -1
- package/lib/testUtils.js +2 -0
- package/lib/utils/clickaway.d.ts +15 -0
- package/lib/utils/clickaway.d.ts.map +1 -0
- package/lib/utils/clickaway.js +40 -0
- package/package.json +1 -1
- package/src/plugins/audio-selector/AudioTracks.ts +15 -1
- package/src/plugins/bottom-gear/BottomGear.ts +13 -0
- package/src/plugins/level-selector/QualityLevels.ts +4 -0
- package/src/plugins/media-control/MediaControl.ts +21 -24
- package/src/plugins/subtitles/ClosedCaptions.ts +34 -12
- package/src/plugins/subtitles/__tests__/ClosedCaptions.test.ts +9 -3
- package/src/testUtils.ts +2 -0
- package/src/utils/clickaway.ts +43 -0
- package/tsconfig.tsbuildinfo +1 -1
package/dist/index.css
CHANGED
|
@@ -171,51 +171,6 @@
|
|
|
171
171
|
}
|
|
172
172
|
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
173
173
|
fill: #151515 !important;
|
|
174
|
-
}.media-control-skin-1 .media-control-item.media-control-gear {
|
|
175
|
-
order: 99;
|
|
176
|
-
}
|
|
177
|
-
.media-control-skin-1 .media-control-item.media-control-gear .gear-wrapper {
|
|
178
|
-
position: absolute;
|
|
179
|
-
right: 16px;
|
|
180
|
-
bottom: 52px;
|
|
181
|
-
width: 250px;
|
|
182
|
-
min-height: 48px;
|
|
183
|
-
z-index: 9999;
|
|
184
|
-
border-radius: 4px;
|
|
185
|
-
box-shadow: 0 0 1px 1px var(--gplayer-mc-popup-border-color);
|
|
186
|
-
}
|
|
187
|
-
.media-control-skin-1 .media-control-item.media-control-gear .gear-options-list {
|
|
188
|
-
padding: 8px 0;
|
|
189
|
-
}
|
|
190
|
-
.media-control-skin-1 .media-control-item.media-control-gear .gear-option {
|
|
191
|
-
margin: 0;
|
|
192
|
-
text-align: left;
|
|
193
|
-
line-height: 22px;
|
|
194
|
-
padding: 5px 14px;
|
|
195
|
-
width: 250px;
|
|
196
|
-
font-size: 12px;
|
|
197
|
-
display: flex;
|
|
198
|
-
align-items: center;
|
|
199
|
-
justify-content: flex-start;
|
|
200
|
-
gap: 8px;
|
|
201
|
-
}
|
|
202
|
-
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_icon {
|
|
203
|
-
flex: 24px 0 0;
|
|
204
|
-
height: 24px;
|
|
205
|
-
}
|
|
206
|
-
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_icon.hidden {
|
|
207
|
-
visibility: hidden;
|
|
208
|
-
display: inline-block;
|
|
209
|
-
}
|
|
210
|
-
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_label {
|
|
211
|
-
flex: 0 1 100%;
|
|
212
|
-
}
|
|
213
|
-
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_arrow-right-icon {
|
|
214
|
-
flex: 0 0 14px;
|
|
215
|
-
height: 24px;
|
|
216
|
-
}
|
|
217
|
-
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_value {
|
|
218
|
-
flex: 1 0 auto;
|
|
219
174
|
}*,
|
|
220
175
|
:focus,
|
|
221
176
|
:visited {
|
|
@@ -279,29 +234,51 @@
|
|
|
279
234
|
}
|
|
280
235
|
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
281
236
|
display: inline;
|
|
282
|
-
}
|
|
283
|
-
|
|
237
|
+
}.media-control-skin-1 .media-control-item.media-control-gear {
|
|
238
|
+
order: 99;
|
|
239
|
+
}
|
|
240
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-wrapper {
|
|
241
|
+
position: absolute;
|
|
242
|
+
right: 16px;
|
|
243
|
+
bottom: 52px;
|
|
244
|
+
width: 250px;
|
|
245
|
+
min-height: 48px;
|
|
246
|
+
z-index: 9999;
|
|
247
|
+
border-radius: 4px;
|
|
248
|
+
box-shadow: 0 0 1px 1px var(--gplayer-mc-popup-border-color);
|
|
249
|
+
}
|
|
250
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-options-list {
|
|
251
|
+
padding: 8px 0;
|
|
252
|
+
}
|
|
253
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option {
|
|
254
|
+
margin: 0;
|
|
255
|
+
text-align: left;
|
|
256
|
+
line-height: 22px;
|
|
257
|
+
padding: 5px 14px;
|
|
258
|
+
width: 250px;
|
|
259
|
+
font-size: 12px;
|
|
284
260
|
display: flex;
|
|
285
|
-
|
|
261
|
+
align-items: center;
|
|
262
|
+
justify-content: flex-start;
|
|
263
|
+
gap: 8px;
|
|
286
264
|
}
|
|
287
|
-
.
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
265
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_icon {
|
|
266
|
+
flex: 24px 0 0;
|
|
267
|
+
height: 20px;
|
|
268
|
+
}
|
|
269
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_icon.hidden {
|
|
270
|
+
visibility: hidden;
|
|
291
271
|
display: inline-block;
|
|
292
|
-
text-overflow: ellipsis;
|
|
293
|
-
color: white;
|
|
294
|
-
cursor: default;
|
|
295
|
-
line-height: var(--bottom-panel);
|
|
296
|
-
position: relative;
|
|
297
|
-
max-width: 150px;
|
|
298
272
|
}
|
|
299
|
-
.
|
|
300
|
-
|
|
301
|
-
padding-right: 6px;
|
|
273
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_label {
|
|
274
|
+
flex: 0 1 100%;
|
|
302
275
|
}
|
|
303
|
-
.
|
|
304
|
-
|
|
276
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_arrow-right-icon {
|
|
277
|
+
flex: 0 0 14px;
|
|
278
|
+
height: 20px;
|
|
279
|
+
}
|
|
280
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_value {
|
|
281
|
+
flex: 1 0 auto;
|
|
305
282
|
}:root {
|
|
306
283
|
--primary-background-color: #000;
|
|
307
284
|
--secondary-background-color: #262626;
|
|
@@ -666,42 +643,63 @@
|
|
|
666
643
|
.fullscreen .clappr-nerd-stats .stats-box {
|
|
667
644
|
top: unset;
|
|
668
645
|
}
|
|
669
|
-
}
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
left: 0;
|
|
674
|
-
text-align: center;
|
|
675
|
-
}
|
|
676
|
-
.context-menu .context-menu-list {
|
|
677
|
-
font-family: "Proxima Nova", sans-serif;
|
|
678
|
-
font-size: 12px;
|
|
679
|
-
line-height: 12px;
|
|
680
|
-
list-style-type: none;
|
|
681
|
-
text-align: left;
|
|
682
|
-
padding: 5px;
|
|
683
|
-
margin-left: auto;
|
|
684
|
-
margin-right: auto;
|
|
685
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
686
|
-
border: 1px solid #666;
|
|
687
|
-
border-radius: 4px;
|
|
646
|
+
}@charset "UTF-8";
|
|
647
|
+
.gplayer-mc-clips {
|
|
648
|
+
display: flex;
|
|
649
|
+
gap: 6px;
|
|
688
650
|
}
|
|
689
|
-
.
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
651
|
+
.gplayer-mc-clips .gplayer-mc-clips-text {
|
|
652
|
+
text-overflow: ellipsis;
|
|
653
|
+
white-space: nowrap;
|
|
654
|
+
overflow: hidden;
|
|
655
|
+
display: inline-block;
|
|
656
|
+
text-overflow: ellipsis;
|
|
693
657
|
color: white;
|
|
658
|
+
cursor: default;
|
|
659
|
+
line-height: var(--bottom-panel);
|
|
660
|
+
position: relative;
|
|
661
|
+
max-width: 150px;
|
|
662
|
+
}
|
|
663
|
+
.gplayer-mc-clips .gplayer-mc-clips-text::before {
|
|
664
|
+
content: "•";
|
|
665
|
+
padding-right: 6px;
|
|
666
|
+
}
|
|
667
|
+
.gplayer-mc-clips .gplayer-mc-clips-text.compact {
|
|
668
|
+
max-width: 100px;
|
|
669
|
+
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
670
|
+
color: #CCCACA;
|
|
671
|
+
position: absolute;
|
|
672
|
+
top: 0;
|
|
673
|
+
height: 100%;
|
|
674
|
+
width: 100%;
|
|
675
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
676
|
+
z-index: 2000;
|
|
694
677
|
display: flex;
|
|
695
|
-
|
|
696
|
-
align-items: center;
|
|
678
|
+
flex-direction: column;
|
|
697
679
|
justify-content: center;
|
|
698
|
-
cursor: pointer;
|
|
699
|
-
padding: 5px;
|
|
700
|
-
width: 100%;
|
|
701
680
|
}
|
|
702
|
-
.
|
|
703
|
-
|
|
704
|
-
|
|
681
|
+
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
682
|
+
font-size: 14px;
|
|
683
|
+
color: #CCCACA;
|
|
684
|
+
margin-top: 45px;
|
|
685
|
+
}
|
|
686
|
+
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
687
|
+
font-weight: bold;
|
|
688
|
+
line-height: 30px;
|
|
689
|
+
font-size: 18px;
|
|
690
|
+
}
|
|
691
|
+
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
692
|
+
width: 90%;
|
|
693
|
+
margin: 0 auto;
|
|
694
|
+
}
|
|
695
|
+
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
696
|
+
font-size: 13px;
|
|
697
|
+
margin-top: 15px;
|
|
698
|
+
}
|
|
699
|
+
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
700
|
+
cursor: pointer;
|
|
701
|
+
width: 30px;
|
|
702
|
+
margin: 15px auto 0;
|
|
705
703
|
}.dvr-controls {
|
|
706
704
|
--disabled-opacity: 0.3;
|
|
707
705
|
--circle-radius: 5px;
|
|
@@ -756,186 +754,53 @@
|
|
|
756
754
|
opacity: 0.7;
|
|
757
755
|
transition: all 0.1s ease;
|
|
758
756
|
}
|
|
759
|
-
.dvr-controls .live-button:hover {
|
|
760
|
-
opacity: 1;
|
|
761
|
-
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
762
|
-
}
|
|
763
|
-
|
|
764
|
-
position: absolute;
|
|
765
|
-
top: 0;
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
background-color: rgba(0, 0, 0, 0.7);
|
|
769
|
-
z-index: 2000;
|
|
770
|
-
display: flex;
|
|
771
|
-
flex-direction: column;
|
|
772
|
-
justify-content: center;
|
|
773
|
-
}
|
|
774
|
-
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
775
|
-
font-size: 14px;
|
|
776
|
-
color: #CCCACA;
|
|
777
|
-
margin-top: 45px;
|
|
778
|
-
}
|
|
779
|
-
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
780
|
-
font-weight: bold;
|
|
781
|
-
line-height: 30px;
|
|
782
|
-
font-size: 18px;
|
|
783
|
-
}
|
|
784
|
-
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
785
|
-
width: 90%;
|
|
786
|
-
margin: 0 auto;
|
|
787
|
-
}
|
|
788
|
-
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
789
|
-
font-size: 13px;
|
|
790
|
-
margin-top: 15px;
|
|
791
|
-
}
|
|
792
|
-
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
793
|
-
cursor: pointer;
|
|
794
|
-
width: 30px;
|
|
795
|
-
margin: 15px auto 0;
|
|
796
|
-
}.media-control-skin-1 .media-control-item.media-control-pip {
|
|
797
|
-
order: 95;
|
|
798
|
-
}
|
|
799
|
-
.media-control-skin-1 .media-control-item.media-control-pip button {
|
|
800
|
-
height: 20px;
|
|
801
|
-
}
|
|
802
|
-
.media-control-skin-1 .media-control-item.media-control-pip button svg {
|
|
803
|
-
height: 20px;
|
|
804
|
-
}*,
|
|
805
|
-
:focus,
|
|
806
|
-
:visited {
|
|
807
|
-
outline: none !important;
|
|
808
|
-
}
|
|
809
|
-
|
|
810
|
-
.multicamera[data-multicamera] {
|
|
811
|
-
float: right;
|
|
812
|
-
margin-top: 4px;
|
|
813
|
-
position: relative;
|
|
814
|
-
margin-right: 20px;
|
|
815
|
-
width: 20px;
|
|
816
|
-
}
|
|
817
|
-
.multicamera[data-multicamera] button {
|
|
818
|
-
background-color: transparent;
|
|
819
|
-
color: #fff;
|
|
820
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
821
|
-
-webkit-font-smoothing: antialiased;
|
|
822
|
-
border: none;
|
|
823
|
-
font-size: 14px;
|
|
824
|
-
padding: 0;
|
|
825
|
-
}
|
|
826
|
-
.multicamera[data-multicamera] button svg {
|
|
827
|
-
height: 20px;
|
|
828
|
-
position: relative;
|
|
829
|
-
margin-top: 6px;
|
|
830
|
-
}
|
|
831
|
-
.multicamera[data-multicamera] button:hover {
|
|
832
|
-
color: #c9c9c9;
|
|
833
|
-
}
|
|
834
|
-
.multicamera[data-multicamera] button.changing {
|
|
835
|
-
animation: pulse 0.5s infinite alternate;
|
|
836
|
-
}
|
|
837
|
-
.multicamera[data-multicamera] button span.quality-arrow {
|
|
838
|
-
width: 9px;
|
|
839
|
-
height: 6px;
|
|
840
|
-
margin-top: 11px;
|
|
841
|
-
margin-left: 5px;
|
|
842
|
-
}
|
|
843
|
-
.multicamera[data-multicamera] > ul {
|
|
844
|
-
padding: 6px 0;
|
|
845
|
-
right: -24px;
|
|
846
|
-
width: 245px;
|
|
847
|
-
list-style-type: none;
|
|
848
|
-
position: absolute;
|
|
849
|
-
bottom: 48px;
|
|
850
|
-
border-radius: 4px;
|
|
851
|
-
display: none;
|
|
852
|
-
background-color: rgba(74, 74, 74, 0.9);
|
|
853
|
-
}
|
|
854
|
-
.multicamera[data-multicamera] > ul::after {
|
|
855
|
-
content: "";
|
|
856
|
-
position: absolute;
|
|
857
|
-
top: 100%;
|
|
858
|
-
left: 85%;
|
|
859
|
-
margin-left: -10px;
|
|
860
|
-
width: 0;
|
|
861
|
-
height: 0;
|
|
862
|
-
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
863
|
-
border-right: 10px solid transparent;
|
|
864
|
-
border-left: 10px solid transparent;
|
|
865
|
-
}
|
|
866
|
-
.multicamera[data-multicamera] li {
|
|
867
|
-
font-size: 10px;
|
|
868
|
-
cursor: pointer;
|
|
869
|
-
}
|
|
870
|
-
.multicamera[data-multicamera] li .multicamera-item {
|
|
871
|
-
display: flex;
|
|
872
|
-
padding: 10px 0;
|
|
873
|
-
justify-content: center;
|
|
874
|
-
position: relative;
|
|
875
|
-
}
|
|
876
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
877
|
-
opacity: 0.5;
|
|
878
|
-
}
|
|
879
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
880
|
-
opacity: 0.5;
|
|
881
|
-
}
|
|
882
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
883
|
-
background-color: rgba(0, 0, 0, 0);
|
|
884
|
-
}
|
|
885
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
886
|
-
pointer-events: none;
|
|
887
|
-
}
|
|
888
|
-
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
889
|
-
background-color: rgba(0, 0, 0, 0.3);
|
|
890
|
-
}
|
|
891
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
892
|
-
width: 80px;
|
|
893
|
-
height: 60px;
|
|
894
|
-
}
|
|
895
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
|
|
896
|
-
width: 80px;
|
|
897
|
-
height: 60px;
|
|
898
|
-
}
|
|
899
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
900
|
-
width: 120px;
|
|
901
|
-
text-align: left;
|
|
902
|
-
margin-left: 15px;
|
|
903
|
-
}
|
|
904
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title,
|
|
905
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
906
|
-
width: 120px;
|
|
907
|
-
height: 20px;
|
|
908
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
909
|
-
font-size: 14px;
|
|
910
|
-
font-weight: normal;
|
|
911
|
-
font-style: normal;
|
|
912
|
-
font-stretch: normal;
|
|
913
|
-
line-height: 1.43;
|
|
914
|
-
letter-spacing: normal;
|
|
915
|
-
text-align: left;
|
|
916
|
-
color: #fff;
|
|
917
|
-
text-overflow: ellipsis;
|
|
918
|
-
overflow: hidden;
|
|
919
|
-
}
|
|
920
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
921
|
-
opacity: 0.6;
|
|
922
|
-
}
|
|
923
|
-
.multicamera[data-multicamera] li a {
|
|
924
|
-
color: #444;
|
|
925
|
-
padding: 2px 10px;
|
|
926
|
-
display: block;
|
|
927
|
-
text-decoration: none;
|
|
757
|
+
.dvr-controls .live-button:hover {
|
|
758
|
+
opacity: 1;
|
|
759
|
+
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
760
|
+
}.context-menu {
|
|
761
|
+
z-index: 999;
|
|
762
|
+
position: absolute;
|
|
763
|
+
top: 0;
|
|
764
|
+
left: 0;
|
|
765
|
+
text-align: center;
|
|
928
766
|
}
|
|
929
|
-
.
|
|
930
|
-
|
|
931
|
-
|
|
767
|
+
.context-menu .context-menu-list {
|
|
768
|
+
font-family: "Proxima Nova", sans-serif;
|
|
769
|
+
font-size: 12px;
|
|
770
|
+
line-height: 12px;
|
|
771
|
+
list-style-type: none;
|
|
772
|
+
text-align: left;
|
|
773
|
+
padding: 5px;
|
|
774
|
+
margin-left: auto;
|
|
775
|
+
margin-right: auto;
|
|
776
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
777
|
+
border: 1px solid #666;
|
|
778
|
+
border-radius: 4px;
|
|
932
779
|
}
|
|
933
|
-
.
|
|
780
|
+
.context-menu .context-menu-list-item button {
|
|
781
|
+
border: none;
|
|
782
|
+
background-color: transparent;
|
|
783
|
+
padding: 0;
|
|
934
784
|
color: white;
|
|
935
|
-
|
|
785
|
+
display: flex;
|
|
786
|
+
gap: 8px;
|
|
787
|
+
align-items: center;
|
|
788
|
+
justify-content: center;
|
|
789
|
+
cursor: pointer;
|
|
790
|
+
padding: 5px;
|
|
791
|
+
width: 100%;
|
|
936
792
|
}
|
|
937
|
-
.
|
|
938
|
-
|
|
793
|
+
.context-menu .context-menu-list-item_icon {
|
|
794
|
+
width: 20px;
|
|
795
|
+
height: 20px;
|
|
796
|
+
}.media-control-skin-1 .media-control-item.media-control-pip {
|
|
797
|
+
order: 95;
|
|
798
|
+
}
|
|
799
|
+
.media-control-skin-1 .media-control-item.media-control-pip button {
|
|
800
|
+
height: 20px;
|
|
801
|
+
}
|
|
802
|
+
.media-control-skin-1 .media-control-item.media-control-pip button svg {
|
|
803
|
+
height: 20px;
|
|
939
804
|
}[data-player] {
|
|
940
805
|
--bottom-panel: 40px;
|
|
941
806
|
}
|
|
@@ -1557,40 +1422,147 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1557
1422
|
100% {
|
|
1558
1423
|
color: #B80000;
|
|
1559
1424
|
}
|
|
1560
|
-
}
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1425
|
+
}*,
|
|
1426
|
+
:focus,
|
|
1427
|
+
:visited {
|
|
1428
|
+
outline: none !important;
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
.multicamera[data-multicamera] {
|
|
1432
|
+
float: right;
|
|
1433
|
+
margin-top: 4px;
|
|
1434
|
+
position: relative;
|
|
1435
|
+
margin-right: 20px;
|
|
1436
|
+
width: 20px;
|
|
1437
|
+
}
|
|
1438
|
+
.multicamera[data-multicamera] button {
|
|
1439
|
+
background-color: transparent;
|
|
1440
|
+
color: #fff;
|
|
1441
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1442
|
+
-webkit-font-smoothing: antialiased;
|
|
1443
|
+
border: none;
|
|
1444
|
+
font-size: 14px;
|
|
1445
|
+
padding: 0;
|
|
1446
|
+
}
|
|
1447
|
+
.multicamera[data-multicamera] button svg {
|
|
1448
|
+
height: 20px;
|
|
1449
|
+
position: relative;
|
|
1450
|
+
margin-top: 6px;
|
|
1451
|
+
}
|
|
1452
|
+
.multicamera[data-multicamera] button:hover {
|
|
1453
|
+
color: #c9c9c9;
|
|
1454
|
+
}
|
|
1455
|
+
.multicamera[data-multicamera] button.changing {
|
|
1456
|
+
animation: pulse 0.5s infinite alternate;
|
|
1457
|
+
}
|
|
1458
|
+
.multicamera[data-multicamera] button span.quality-arrow {
|
|
1459
|
+
width: 9px;
|
|
1460
|
+
height: 6px;
|
|
1461
|
+
margin-top: 11px;
|
|
1462
|
+
margin-left: 5px;
|
|
1463
|
+
}
|
|
1464
|
+
.multicamera[data-multicamera] > ul {
|
|
1465
|
+
padding: 6px 0;
|
|
1466
|
+
right: -24px;
|
|
1467
|
+
width: 245px;
|
|
1468
|
+
list-style-type: none;
|
|
1564
1469
|
position: absolute;
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
left: 0;
|
|
1570
|
-
background-color: #000;
|
|
1571
|
-
background-size: cover;
|
|
1572
|
-
background-repeat: no-repeat;
|
|
1573
|
-
background-position: 50% 50%;
|
|
1470
|
+
bottom: 48px;
|
|
1471
|
+
border-radius: 4px;
|
|
1472
|
+
display: none;
|
|
1473
|
+
background-color: rgba(74, 74, 74, 0.9);
|
|
1574
1474
|
}
|
|
1575
|
-
.
|
|
1475
|
+
.multicamera[data-multicamera] > ul::after {
|
|
1476
|
+
content: "";
|
|
1477
|
+
position: absolute;
|
|
1478
|
+
top: 100%;
|
|
1479
|
+
left: 85%;
|
|
1480
|
+
margin-left: -10px;
|
|
1481
|
+
width: 0;
|
|
1482
|
+
height: 0;
|
|
1483
|
+
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
1484
|
+
border-right: 10px solid transparent;
|
|
1485
|
+
border-left: 10px solid transparent;
|
|
1486
|
+
}
|
|
1487
|
+
.multicamera[data-multicamera] li {
|
|
1488
|
+
font-size: 10px;
|
|
1576
1489
|
cursor: pointer;
|
|
1577
1490
|
}
|
|
1578
|
-
.
|
|
1579
|
-
|
|
1491
|
+
.multicamera[data-multicamera] li .multicamera-item {
|
|
1492
|
+
display: flex;
|
|
1493
|
+
padding: 10px 0;
|
|
1494
|
+
justify-content: center;
|
|
1495
|
+
position: relative;
|
|
1580
1496
|
}
|
|
1581
|
-
.
|
|
1582
|
-
|
|
1583
|
-
height: 25%;
|
|
1584
|
-
margin: 0 auto;
|
|
1585
|
-
opacity: 0.75;
|
|
1586
|
-
transition: opacity 0.1s ease;
|
|
1497
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
1498
|
+
opacity: 0.5;
|
|
1587
1499
|
}
|
|
1588
|
-
.
|
|
1589
|
-
|
|
1590
|
-
display: inline;
|
|
1500
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
1501
|
+
opacity: 0.5;
|
|
1591
1502
|
}
|
|
1592
|
-
.
|
|
1593
|
-
|
|
1503
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
1504
|
+
background-color: rgba(0, 0, 0, 0);
|
|
1505
|
+
}
|
|
1506
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
1507
|
+
pointer-events: none;
|
|
1508
|
+
}
|
|
1509
|
+
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
1510
|
+
background-color: rgba(0, 0, 0, 0.3);
|
|
1511
|
+
}
|
|
1512
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
1513
|
+
width: 80px;
|
|
1514
|
+
height: 60px;
|
|
1515
|
+
}
|
|
1516
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
|
|
1517
|
+
width: 80px;
|
|
1518
|
+
height: 60px;
|
|
1519
|
+
}
|
|
1520
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
1521
|
+
width: 120px;
|
|
1522
|
+
text-align: left;
|
|
1523
|
+
margin-left: 15px;
|
|
1524
|
+
}
|
|
1525
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title,
|
|
1526
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1527
|
+
width: 120px;
|
|
1528
|
+
height: 20px;
|
|
1529
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1530
|
+
font-size: 14px;
|
|
1531
|
+
font-weight: normal;
|
|
1532
|
+
font-style: normal;
|
|
1533
|
+
font-stretch: normal;
|
|
1534
|
+
line-height: 1.43;
|
|
1535
|
+
letter-spacing: normal;
|
|
1536
|
+
text-align: left;
|
|
1537
|
+
color: #fff;
|
|
1538
|
+
text-overflow: ellipsis;
|
|
1539
|
+
overflow: hidden;
|
|
1540
|
+
}
|
|
1541
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1542
|
+
opacity: 0.6;
|
|
1543
|
+
}
|
|
1544
|
+
.multicamera[data-multicamera] li a {
|
|
1545
|
+
color: #444;
|
|
1546
|
+
padding: 2px 10px;
|
|
1547
|
+
display: block;
|
|
1548
|
+
text-decoration: none;
|
|
1549
|
+
}
|
|
1550
|
+
.multicamera[data-multicamera] li a:hover {
|
|
1551
|
+
background-color: #555;
|
|
1552
|
+
color: white;
|
|
1553
|
+
}
|
|
1554
|
+
.multicamera[data-multicamera] li a:hover a {
|
|
1555
|
+
color: white;
|
|
1556
|
+
text-decoration: none;
|
|
1557
|
+
}
|
|
1558
|
+
.multicamera[data-multicamera] li.current a {
|
|
1559
|
+
color: #f00;
|
|
1560
|
+
}.quality-levels li.disabled {
|
|
1561
|
+
opacity: 0.5;
|
|
1562
|
+
pointer-events: none;
|
|
1563
|
+
}
|
|
1564
|
+
.quality-levels li.current {
|
|
1565
|
+
background-color: #000;
|
|
1594
1566
|
}.seek-time {
|
|
1595
1567
|
position: absolute;
|
|
1596
1568
|
white-space: nowrap;
|
|
@@ -1624,12 +1596,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1624
1596
|
.seek-time .seek-time__duration::before {
|
|
1625
1597
|
content: "|";
|
|
1626
1598
|
margin-right: 7px;
|
|
1627
|
-
}.quality-levels li.disabled {
|
|
1628
|
-
opacity: 0.5;
|
|
1629
|
-
pointer-events: none;
|
|
1630
|
-
}
|
|
1631
|
-
.quality-levels li.current {
|
|
1632
|
-
background-color: #000;
|
|
1633
1599
|
}.share_plugin[data-share] {
|
|
1634
1600
|
pointer-events: auto;
|
|
1635
1601
|
z-index: 5;
|
|
@@ -1734,6 +1700,40 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1734
1700
|
.mc-skip-time .skip-container .skip-item {
|
|
1735
1701
|
flex: 1 0 0px;
|
|
1736
1702
|
height: 100%;
|
|
1703
|
+
}.player-poster {
|
|
1704
|
+
display: flex;
|
|
1705
|
+
justify-content: center;
|
|
1706
|
+
align-items: center;
|
|
1707
|
+
position: absolute;
|
|
1708
|
+
height: 100%;
|
|
1709
|
+
width: 100%;
|
|
1710
|
+
z-index: 998;
|
|
1711
|
+
top: 0;
|
|
1712
|
+
left: 0;
|
|
1713
|
+
background-color: #000;
|
|
1714
|
+
background-size: cover;
|
|
1715
|
+
background-repeat: no-repeat;
|
|
1716
|
+
background-position: 50% 50%;
|
|
1717
|
+
}
|
|
1718
|
+
.player-poster.clickable {
|
|
1719
|
+
cursor: pointer;
|
|
1720
|
+
}
|
|
1721
|
+
.player-poster:hover .play-wrapper {
|
|
1722
|
+
opacity: 1;
|
|
1723
|
+
}
|
|
1724
|
+
.player-poster .play-wrapper {
|
|
1725
|
+
width: 100%;
|
|
1726
|
+
height: 25%;
|
|
1727
|
+
margin: 0 auto;
|
|
1728
|
+
opacity: 0.75;
|
|
1729
|
+
transition: opacity 0.1s ease;
|
|
1730
|
+
}
|
|
1731
|
+
.player-poster .play-wrapper svg {
|
|
1732
|
+
height: 100%;
|
|
1733
|
+
display: inline;
|
|
1734
|
+
}
|
|
1735
|
+
.player-poster .play-wrapper svg path {
|
|
1736
|
+
fill: #fff;
|
|
1737
1737
|
}.spinner-three-bounce[data-spinner] {
|
|
1738
1738
|
position: absolute;
|
|
1739
1739
|
width: 70px;
|