@gcorevideo/player 2.22.22 → 2.22.24

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 (56) hide show
  1. package/assets/clappr-nerd-stats/clappr-nerd-stats.scss +0 -3
  2. package/assets/subtitles/combobox.ejs +1 -1
  3. package/assets/subtitles/style.scss +0 -1
  4. package/dist/core.js +1 -1
  5. package/dist/index.css +1504 -1505
  6. package/dist/index.js +4367 -4332
  7. package/dist/plugins/index.css +641 -642
  8. package/dist/plugins/index.js +5408 -5376
  9. package/lib/index.plugins.d.ts +2 -2
  10. package/lib/index.plugins.d.ts.map +1 -1
  11. package/lib/index.plugins.js +2 -2
  12. package/lib/plugins/audio-selector/AudioTracks.d.ts +67 -0
  13. package/lib/plugins/audio-selector/AudioTracks.d.ts.map +1 -0
  14. package/lib/plugins/audio-selector/AudioTracks.js +181 -0
  15. package/lib/plugins/bottom-gear/BottomGear.d.ts +1 -1
  16. package/lib/plugins/bottom-gear/BottomGear.d.ts.map +1 -1
  17. package/lib/plugins/bottom-gear/BottomGear.js +13 -3
  18. package/lib/plugins/clappr-nerd-stats/NerdStats.d.ts +1 -1
  19. package/lib/plugins/clappr-nerd-stats/NerdStats.d.ts.map +1 -1
  20. package/lib/plugins/clappr-nerd-stats/NerdStats.js +11 -5
  21. package/lib/plugins/clappr-nerd-stats/speedtest/Speedtest.d.ts.map +1 -1
  22. package/lib/plugins/clappr-nerd-stats/speedtest/Speedtest.js +0 -1
  23. package/lib/plugins/clappr-nerd-stats/utils.d.ts.map +1 -1
  24. package/lib/plugins/clappr-nerd-stats/utils.js +0 -3
  25. package/lib/plugins/media-control/MediaControl.d.ts +2 -1
  26. package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
  27. package/lib/plugins/media-control/MediaControl.js +1 -0
  28. package/lib/plugins/skip-time/SkipTime.d.ts +2 -2
  29. package/lib/plugins/skip-time/SkipTime.d.ts.map +1 -1
  30. package/lib/plugins/skip-time/SkipTime.js +6 -5
  31. package/lib/plugins/subtitles/ClosedCaptions.d.ts +3 -3
  32. package/lib/plugins/subtitles/ClosedCaptions.d.ts.map +1 -1
  33. package/lib/plugins/subtitles/ClosedCaptions.js +34 -19
  34. package/lib/testUtils.d.ts.map +1 -1
  35. package/lib/testUtils.js +1 -0
  36. package/package.json +1 -1
  37. package/src/index.plugins.ts +2 -2
  38. package/src/plugins/audio-selector/{AudioSelector.ts → AudioTracks.ts} +16 -8
  39. package/src/plugins/audio-selector/__tests__/{AudioSelector.test.ts → AudioTracks.test.ts} +42 -25
  40. package/src/plugins/audio-selector/__tests__/__snapshots__/AudioSelector.test.ts.snap +66 -0
  41. package/src/plugins/audio-selector/__tests__/__snapshots__/AudioTracks.test.ts.snap +67 -0
  42. package/src/plugins/bottom-gear/BottomGear.ts +17 -3
  43. package/src/plugins/bottom-gear/__tests__/BottomGear.test.ts +22 -1
  44. package/src/plugins/clappr-nerd-stats/NerdStats.ts +12 -6
  45. package/src/plugins/clappr-nerd-stats/speedtest/Speedtest.ts +0 -1
  46. package/src/plugins/clappr-nerd-stats/utils.ts +0 -3
  47. package/src/plugins/media-control/MediaControl.ts +1 -0
  48. package/src/plugins/skip-time/SkipTime.ts +45 -38
  49. package/src/plugins/subtitles/ClosedCaptions.ts +40 -23
  50. package/src/plugins/subtitles/__tests__/ClosedCaptions.test.ts +51 -13
  51. package/src/plugins/subtitles/__tests__/__snapshots__/ClosedCaptions.test.ts.snap +4 -4
  52. package/src/testUtils.ts +1 -0
  53. package/tsconfig.tsbuildinfo +1 -1
  54. package/assets/subtitles/combobox copy.ejs +0 -16
  55. /package/assets/{audio-selector → audio-tracks}/style.scss +0 -0
  56. /package/assets/{audio-selector/track-selector.ejs → audio-tracks/template.ejs} +0 -0
@@ -122,6 +122,244 @@
122
122
  .gplayer-lite-btn::-moz-focus-inner {
123
123
  border: 0;
124
124
  padding: 0;
125
+ }.quality-levels li.disabled {
126
+ opacity: 0.5;
127
+ pointer-events: none;
128
+ }
129
+ .quality-levels li.current {
130
+ background-color: #000;
131
+ }div.player-error-screen, [data-player] div.player-error-screen {
132
+ color: #CCCACA;
133
+ position: absolute;
134
+ top: 0;
135
+ height: 100%;
136
+ width: 100%;
137
+ background-color: rgba(0, 0, 0, 0.7);
138
+ z-index: 2000;
139
+ display: flex;
140
+ flex-direction: column;
141
+ justify-content: center;
142
+ }
143
+ div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
144
+ font-size: 14px;
145
+ color: #CCCACA;
146
+ margin-top: 45px;
147
+ }
148
+ div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
149
+ font-weight: bold;
150
+ line-height: 30px;
151
+ font-size: 18px;
152
+ }
153
+ div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
154
+ width: 90%;
155
+ margin: 0 auto;
156
+ }
157
+ div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
158
+ font-size: 13px;
159
+ margin-top: 15px;
160
+ }
161
+ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
162
+ cursor: pointer;
163
+ width: 30px;
164
+ margin: 15px auto 0;
165
+ }.share_plugin[data-share] {
166
+ pointer-events: auto;
167
+ z-index: 5;
168
+ font-family: Roboto, "Open Sans", Arial, sans-serif !important;
169
+ }
170
+ .share_plugin[data-share].share-hide .share-button-container {
171
+ right: -50px;
172
+ }
173
+ .share_plugin[data-share] .share-button-container {
174
+ cursor: pointer;
175
+ width: 36px;
176
+ height: 36px;
177
+ background-color: rgba(74, 74, 74, 0.6);
178
+ border-radius: 4px;
179
+ position: absolute;
180
+ right: 10px;
181
+ top: 10px;
182
+ padding-top: 6px;
183
+ transition: all 0.3s ease-out;
184
+ }
185
+ .share_plugin[data-share] .share-button-container button[data-share-button] {
186
+ background-color: transparent;
187
+ border: 0;
188
+ margin: 0 6px;
189
+ padding: 0;
190
+ cursor: pointer;
191
+ display: inline-block;
192
+ width: 19px;
193
+ height: 20px;
194
+ }
195
+ .share_plugin[data-share] .share-container {
196
+ pointer-events: auto;
197
+ position: absolute;
198
+ width: 280px;
199
+ background-color: white;
200
+ transform: translate(0, 50%);
201
+ transform: translate(-50%, -50%);
202
+ left: 50%;
203
+ /* margin-left: -140px; */
204
+ top: calc(50% - 20px);
205
+ /* margin-top: -170px; */
206
+ }
207
+ .share_plugin[data-share] .share-container .share-container-header {
208
+ text-align: left;
209
+ border-bottom: 1px solid rgba(155, 155, 155, 0.25);
210
+ }
211
+ .share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
212
+ display: inline-block;
213
+ font-size: 16px;
214
+ margin: 5px;
215
+ }
216
+ .share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
217
+ display: inline-block;
218
+ width: 24px;
219
+ float: right;
220
+ margin: 5px;
221
+ cursor: pointer;
222
+ }
223
+ .share_plugin[data-share] .share-container .share-container-main {
224
+ margin-bottom: 8px;
225
+ }
226
+ .share_plugin[data-share] .share-container .share-container-main > div {
227
+ text-align: left;
228
+ font-size: 14px;
229
+ padding: 5px;
230
+ }
231
+ .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 {
232
+ overflow: hidden;
233
+ text-overflow: ellipsis;
234
+ color: #818181;
235
+ border: solid 1px #d3d3d3;
236
+ width: calc(100% - 10px);
237
+ padding: 5px;
238
+ }
239
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
240
+ max-height: 90px;
241
+ resize: none;
242
+ }
243
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
244
+ width: 32px;
245
+ display: inline-block;
246
+ margin-right: 5px;
247
+ cursor: pointer;
248
+ }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
249
+ order: 99;
250
+ height: 20px;
251
+ }
252
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
253
+ position: absolute;
254
+ right: 16px;
255
+ bottom: 52px;
256
+ width: 250px;
257
+ min-height: 48px;
258
+ z-index: 9999;
259
+ border-radius: 4px;
260
+ }
261
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
262
+ padding: 8px 0;
263
+ }
264
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
265
+ margin: 0;
266
+ text-align: left;
267
+ line-height: 22px;
268
+ padding: 5px 14px;
269
+ width: 250px;
270
+ font-size: 12px;
271
+ display: flex;
272
+ align-items: center;
273
+ justify-content: flex-start;
274
+ gap: 8px;
275
+ }
276
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
277
+ flex: 24px 0 0;
278
+ height: 24px;
279
+ }
280
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
281
+ visibility: hidden;
282
+ display: inline-block;
283
+ }
284
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
285
+ flex: 0 1 100%;
286
+ }
287
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
288
+ flex: 0 0 14px;
289
+ height: 24px;
290
+ }
291
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
292
+ flex: 1 0 auto;
293
+ }*, :focus, :visited {
294
+ outline: none !important;
295
+ }
296
+
297
+ .gear-wrapper .go-back {
298
+ font-weight: 600;
299
+ font-size: 14px;
300
+ line-height: 20px;
301
+ width: 100%;
302
+ text-align: left;
303
+ padding: 12px;
304
+ }
305
+ .gear-wrapper .go-back .arrow-left-icon {
306
+ float: left;
307
+ padding-top: 2px;
308
+ padding-right: 2px;
309
+ }
310
+ .gear-wrapper .go-back .arrow-left-icon svg {
311
+ height: 16px;
312
+ }
313
+ .gear-wrapper ul.gear-sub-menu {
314
+ width: 100%;
315
+ list-style-type: none;
316
+ min-width: 60px;
317
+ border-top: 2px solid rgb(36, 36, 36);
318
+ }
319
+ .gear-wrapper ul.gear-sub-menu li {
320
+ font-size: 12px;
321
+ text-align: left;
322
+ }
323
+ .gear-wrapper ul.gear-sub-menu li[data-title] {
324
+ background-color: #c3c2c2;
325
+ padding: 5px;
326
+ }
327
+ .gear-wrapper ul.gear-sub-menu li a {
328
+ display: block;
329
+ text-decoration: none;
330
+ height: 32px;
331
+ padding: 5px 10px;
332
+ line-height: 22px;
333
+ color: #fffffe;
334
+ }
335
+ .gear-wrapper ul.gear-sub-menu li a:hover {
336
+ color: white;
337
+ background-color: rgba(0, 0, 0, 0.4);
338
+ }
339
+ .gear-wrapper ul.gear-sub-menu li a:hover a {
340
+ color: white;
341
+ text-decoration: none;
342
+ }
343
+ .gear-wrapper ul.gear-sub-menu li a .check-icon {
344
+ width: 30px;
345
+ height: 20px;
346
+ float: left;
347
+ display: block;
348
+ }
349
+ .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
350
+ display: none;
351
+ }
352
+ .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
353
+ display: inline;
354
+ }.media-control-pip {
355
+ order: 95;
356
+ display: flex;
357
+ }
358
+ .media-control-pip button {
359
+ height: 20px;
360
+ }
361
+ .media-control-pip button svg {
362
+ height: 20px;
125
363
  }:root {
126
364
  --primary-background-color: #000;
127
365
  --secondary-background-color: #262626;
@@ -479,21 +717,113 @@
479
717
  .mobile .clappr-nerd-stats .stats-box-main ul {
480
718
  flex-basis: 1fr;
481
719
  }
482
- }.big-mute-icon-wrapper[data-big-mute] {
720
+ }.context-menu {
721
+ z-index: 999;
483
722
  position: absolute;
484
- z-index: 9998;
485
- background-color: transparent;
486
- display: flex;
487
- justify-content: center;
488
- width: 100%;
489
- height: calc(100% - 50px);
490
- margin: 0 auto;
491
- opacity: 0.75;
492
- transition: opacity 0.1s ease;
493
- pointer-events: auto;
723
+ top: 0;
724
+ left: 0;
725
+ text-align: center;
494
726
  }
495
- .big-mute-icon-wrapper[data-big-mute].hide {
496
- display: none;
727
+ .context-menu .context-menu-list {
728
+ font-family: "Proxima Nova", sans-serif;
729
+ font-size: 12px;
730
+ line-height: 12px;
731
+ list-style-type: none;
732
+ text-align: left;
733
+ padding: 5px;
734
+ margin-left: auto;
735
+ margin-right: auto;
736
+ background-color: rgba(0, 0, 0, 0.75);
737
+ border: 1px solid #666;
738
+ border-radius: 4px;
739
+ }
740
+ .context-menu .context-menu-list-item button {
741
+ border: none;
742
+ background-color: transparent;
743
+ padding: 0;
744
+ color: white;
745
+ display: flex;
746
+ gap: 8px;
747
+ align-items: center;
748
+ justify-content: center;
749
+ cursor: pointer;
750
+ padding: 5px;
751
+ width: 100%;
752
+ }
753
+ .context-menu .context-menu-list-item_icon {
754
+ width: 20px;
755
+ height: 20px;
756
+ }@charset "UTF-8";
757
+ .media-control-clips {
758
+ display: flex;
759
+ gap: 6px;
760
+ }
761
+ .media-control-clips .media-clip-text {
762
+ text-overflow: ellipsis;
763
+ white-space: nowrap;
764
+ overflow: hidden;
765
+ display: inline-block;
766
+ text-overflow: ellipsis;
767
+ color: white;
768
+ cursor: default;
769
+ line-height: var(--bottom-panel);
770
+ position: relative;
771
+ }
772
+ .media-control-clips .media-clip-text::before {
773
+ content: "•";
774
+ padding-right: 6px;
775
+ }
776
+ .media-control-clips .media-clip-text {
777
+ max-width: 100px;
778
+ }.player-poster[data-poster] {
779
+ display: flex;
780
+ justify-content: center;
781
+ align-items: center;
782
+ position: absolute;
783
+ height: 100%;
784
+ width: 100%;
785
+ z-index: 998;
786
+ top: 0;
787
+ left: 0;
788
+ background-color: #000;
789
+ background-size: cover;
790
+ background-repeat: no-repeat;
791
+ background-position: 50% 50%;
792
+ }
793
+ .player-poster[data-poster].clickable {
794
+ cursor: pointer;
795
+ }
796
+ .player-poster[data-poster]:hover .play-wrapper[data-poster] {
797
+ opacity: 1;
798
+ }
799
+ .player-poster[data-poster] .play-wrapper[data-poster] {
800
+ width: 100%;
801
+ height: 25%;
802
+ margin: 0 auto;
803
+ opacity: 0.75;
804
+ transition: opacity 0.1s ease;
805
+ }
806
+ .player-poster[data-poster] .play-wrapper[data-poster] svg {
807
+ height: 100%;
808
+ display: inline;
809
+ }
810
+ .player-poster[data-poster] .play-wrapper[data-poster] svg path {
811
+ fill: #fff;
812
+ }.big-mute-icon-wrapper[data-big-mute] {
813
+ position: absolute;
814
+ z-index: 9998;
815
+ background-color: transparent;
816
+ display: flex;
817
+ justify-content: center;
818
+ width: 100%;
819
+ height: calc(100% - 50px);
820
+ margin: 0 auto;
821
+ opacity: 0.75;
822
+ transition: opacity 0.1s ease;
823
+ pointer-events: auto;
824
+ }
825
+ .big-mute-icon-wrapper[data-big-mute].hide {
826
+ display: none;
497
827
  }
498
828
  .big-mute-icon-wrapper[data-big-mute]:hover {
499
829
  cursor: pointer;
@@ -528,6 +858,92 @@
528
858
  }
529
859
  .big-mute-icon[data-big-mute-icon]:hover svg path {
530
860
  fill: #151515 !important;
861
+ }.dvr-controls[data-dvr] {
862
+ display: inline-block;
863
+ color: var(--player-dvr-color);
864
+ line-height: 32px;
865
+ font-size: 10px;
866
+ font-weight: bold;
867
+ margin-left: 6px;
868
+ height: 40px;
869
+ line-height: 40px;
870
+ margin-left: 0;
871
+ }
872
+ .dvr-controls[data-dvr] .live-info {
873
+ cursor: default;
874
+ text-transform: uppercase;
875
+ }
876
+ .dvr-controls[data-dvr] .live-info:before {
877
+ content: "";
878
+ display: inline-block;
879
+ position: relative;
880
+ width: 7px;
881
+ height: 7px;
882
+ border-radius: 3.5px;
883
+ margin-right: 3.5px;
884
+ background-color: var(--player-live-color);
885
+ }
886
+ .dvr-controls[data-dvr] .live-info.disabled {
887
+ opacity: 0.3;
888
+ }
889
+ .dvr-controls[data-dvr] .live-info.disabled:before {
890
+ background-color: var(--player-dvr-color);
891
+ }
892
+ .dvr-controls[data-dvr] .live-button {
893
+ cursor: pointer;
894
+ outline: none;
895
+ display: none;
896
+ border: 0;
897
+ color: var(--player-dvr-color);
898
+ background-color: transparent;
899
+ height: 32px;
900
+ padding: 0;
901
+ opacity: 0.7;
902
+ text-transform: uppercase;
903
+ transition: all 0.1s ease;
904
+ }
905
+ .dvr-controls[data-dvr] .live-button:before {
906
+ content: "";
907
+ display: inline-block;
908
+ position: relative;
909
+ width: 7px;
910
+ height: 7px;
911
+ border-radius: 3.5px;
912
+ margin-right: 3.5px;
913
+ background-color: var(--player-dvr-color);
914
+ }
915
+ .dvr-controls[data-dvr] .live-button:hover {
916
+ opacity: 1;
917
+ text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
918
+ }
919
+ .dvr-controls[data-dvr] .live-info {
920
+ font-size: 14px;
921
+ letter-spacing: 0.8px;
922
+ font-weight: 500;
923
+ color: #fffffe;
924
+ margin-left: 21px;
925
+ }
926
+ .dvr-controls[data-dvr] .live-info::before {
927
+ width: 10px;
928
+ height: 10px;
929
+ border-radius: 50%;
930
+ margin-right: 8px;
931
+ background-color: #ed4f4a;
932
+ }
933
+ .dvr-controls[data-dvr] .live-button {
934
+ height: 40px;
935
+ opacity: 1;
936
+ font-size: 14px;
937
+ letter-spacing: 0.8px;
938
+ font-weight: 500;
939
+ margin-left: 20px;
940
+ }
941
+ .dvr-controls[data-dvr] .live-button::before {
942
+ width: 10px;
943
+ height: 10px;
944
+ border-radius: 50%;
945
+ margin-right: 8px;
946
+ background-color: #cacaca;
531
947
  }*,
532
948
  :focus,
533
949
  :visited {
@@ -628,218 +1044,28 @@
628
1044
  100% {
629
1045
  color: #B80000;
630
1046
  }
631
- }@charset "UTF-8";
632
- .media-control-clips {
633
- display: flex;
634
- gap: 6px;
635
- }
636
- .media-control-clips .media-clip-text {
637
- text-overflow: ellipsis;
638
- white-space: nowrap;
639
- overflow: hidden;
640
- display: inline-block;
641
- text-overflow: ellipsis;
642
- color: white;
643
- cursor: default;
644
- line-height: var(--bottom-panel);
645
- position: relative;
1047
+ }[data-player] {
1048
+ --bottom-panel: 40px;
646
1049
  }
647
- .media-control-clips .media-clip-text::before {
648
- content: "•";
649
- padding-right: 6px;
1050
+
1051
+ .container .media-control-notransition {
1052
+ transition: none !important;
650
1053
  }
651
- .media-control-clips .media-clip-text {
652
- max-width: 100px;
653
- }.quality-levels li.disabled {
654
- opacity: 0.5;
655
- pointer-events: none;
1054
+ .container .player-poster[data-poster] .play-wrapper[data-poster] {
1055
+ opacity: 1;
656
1056
  }
657
- .quality-levels li.current {
658
- background-color: #000;
659
- }.media-control-pip {
660
- order: 95;
661
- display: flex;
1057
+ .container.crop-video [data-html5-video] {
1058
+ object-fit: cover;
662
1059
  }
663
- .media-control-pip button {
664
- height: 20px;
1060
+ .container .cc-line {
1061
+ position: absolute;
1062
+ bottom: calc(var(--bottom-panel) + 5px);
1063
+ width: 100%;
665
1064
  }
666
- .media-control-pip button svg {
667
- height: 20px;
668
- }.dvr-controls[data-dvr] {
669
- display: inline-block;
670
- color: var(--player-dvr-color);
671
- line-height: 32px;
672
- font-size: 10px;
673
- font-weight: bold;
674
- margin-left: 6px;
675
- height: 40px;
676
- line-height: 40px;
677
- margin-left: 0;
678
- }
679
- .dvr-controls[data-dvr] .live-info {
680
- cursor: default;
681
- text-transform: uppercase;
682
- }
683
- .dvr-controls[data-dvr] .live-info:before {
684
- content: "";
685
- display: inline-block;
686
- position: relative;
687
- width: 7px;
688
- height: 7px;
689
- border-radius: 3.5px;
690
- margin-right: 3.5px;
691
- background-color: var(--player-live-color);
692
- }
693
- .dvr-controls[data-dvr] .live-info.disabled {
694
- opacity: 0.3;
695
- }
696
- .dvr-controls[data-dvr] .live-info.disabled:before {
697
- background-color: var(--player-dvr-color);
698
- }
699
- .dvr-controls[data-dvr] .live-button {
700
- cursor: pointer;
701
- outline: none;
702
- display: none;
703
- border: 0;
704
- color: var(--player-dvr-color);
705
- background-color: transparent;
706
- height: 32px;
707
- padding: 0;
708
- opacity: 0.7;
709
- text-transform: uppercase;
710
- transition: all 0.1s ease;
711
- }
712
- .dvr-controls[data-dvr] .live-button:before {
713
- content: "";
714
- display: inline-block;
715
- position: relative;
716
- width: 7px;
717
- height: 7px;
718
- border-radius: 3.5px;
719
- margin-right: 3.5px;
720
- background-color: var(--player-dvr-color);
721
- }
722
- .dvr-controls[data-dvr] .live-button:hover {
723
- opacity: 1;
724
- text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
725
- }
726
- .dvr-controls[data-dvr] .live-info {
727
- font-size: 14px;
728
- letter-spacing: 0.8px;
729
- font-weight: 500;
730
- color: #fffffe;
731
- margin-left: 21px;
732
- }
733
- .dvr-controls[data-dvr] .live-info::before {
734
- width: 10px;
735
- height: 10px;
736
- border-radius: 50%;
737
- margin-right: 8px;
738
- background-color: #ed4f4a;
739
- }
740
- .dvr-controls[data-dvr] .live-button {
741
- height: 40px;
742
- opacity: 1;
743
- font-size: 14px;
744
- letter-spacing: 0.8px;
745
- font-weight: 500;
746
- margin-left: 20px;
747
- }
748
- .dvr-controls[data-dvr] .live-button::before {
749
- width: 10px;
750
- height: 10px;
751
- border-radius: 50%;
752
- margin-right: 8px;
753
- background-color: #cacaca;
754
- }div.player-error-screen, [data-player] div.player-error-screen {
755
- color: #CCCACA;
756
- position: absolute;
757
- top: 0;
758
- height: 100%;
759
- width: 100%;
760
- background-color: rgba(0, 0, 0, 0.7);
761
- z-index: 2000;
762
- display: flex;
763
- flex-direction: column;
764
- justify-content: center;
765
- }
766
- div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
767
- font-size: 14px;
768
- color: #CCCACA;
769
- margin-top: 45px;
770
- }
771
- div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
772
- font-weight: bold;
773
- line-height: 30px;
774
- font-size: 18px;
775
- }
776
- div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
777
- width: 90%;
778
- margin: 0 auto;
779
- }
780
- div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
781
- font-size: 13px;
782
- margin-top: 15px;
783
- }
784
- div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
785
- cursor: pointer;
786
- width: 30px;
787
- margin: 15px auto 0;
788
- }.seek-time[data-seek-time] {
789
- position: absolute;
790
- white-space: nowrap;
791
- height: 20px;
792
- line-height: 20px;
793
- font-size: 0;
794
- left: -100%;
795
- bottom: 55px;
796
- background-color: rgba(2, 2, 2, 0.5);
797
- z-index: 9999;
798
- transition: opacity 0.1s ease;
799
- }
800
- .seek-time[data-seek-time].hidden[data-seek-time] {
801
- opacity: 0;
802
- }
803
- .seek-time[data-seek-time] [data-seek-time] {
804
- display: inline-block;
805
- color: white;
806
- font-size: 10px;
807
- padding-left: 7px;
808
- padding-right: 7px;
809
- vertical-align: top;
810
- }
811
- .seek-time[data-seek-time] [data-duration] {
812
- display: inline-block;
813
- color: rgba(255, 255, 255, 0.5);
814
- font-size: 10px;
815
- padding-right: 7px;
816
- vertical-align: top;
817
- }
818
- .seek-time[data-seek-time] [data-duration]::before {
819
- content: "|";
820
- margin-right: 7px;
821
- }[data-player] {
822
- --bottom-panel: 40px;
823
- }
824
-
825
- .container .media-control-notransition {
826
- transition: none !important;
827
- }
828
- .container .player-poster[data-poster] .play-wrapper[data-poster] {
829
- opacity: 1;
830
- }
831
- .container.crop-video [data-html5-video] {
832
- object-fit: cover;
833
- }
834
- .container .cc-line {
835
- position: absolute;
836
- bottom: calc(var(--bottom-panel) + 5px);
837
- width: 100%;
838
- }
839
- .container .cc-line p {
840
- width: auto;
841
- background-color: rgba(0, 0, 0, 0.4);
842
- color: white;
1065
+ .container .cc-line p {
1066
+ width: auto;
1067
+ background-color: rgba(0, 0, 0, 0.4);
1068
+ color: white;
843
1069
  display: inline-block;
844
1070
  }
845
1071
  .container .circle-poster[data-poster] {
@@ -1435,377 +1661,39 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1435
1661
  }
1436
1662
  .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
1437
1663
  display: none !important;
1438
- }*, :focus, :visited {
1439
- outline: none !important;
1440
- }
1441
-
1442
- .multicamera[data-multicamera] {
1443
- float: right;
1444
- margin-top: 4px;
1445
- position: relative;
1446
- margin-right: 20px;
1447
- width: 20px;
1448
- }
1449
- .multicamera[data-multicamera] button {
1450
- background-color: transparent;
1451
- color: #fff;
1452
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1453
- -webkit-font-smoothing: antialiased;
1454
- border: none;
1455
- font-size: 14px;
1456
- padding: 0;
1457
- }
1458
- .multicamera[data-multicamera] button svg {
1459
- height: 20px;
1460
- position: relative;
1461
- margin-top: 6px;
1462
- }
1463
- .multicamera[data-multicamera] button:hover {
1464
- color: #c9c9c9;
1465
- }
1466
- .multicamera[data-multicamera] button.changing {
1467
- animation: pulse 0.5s infinite alternate;
1468
- }
1469
- .multicamera[data-multicamera] button span.quality-arrow {
1470
- width: 9px;
1471
- height: 6px;
1472
- margin-top: 11px;
1473
- margin-left: 5px;
1474
- }
1475
- .multicamera[data-multicamera] > ul {
1476
- padding: 6px 0;
1477
- right: -24px;
1478
- width: 245px;
1479
- list-style-type: none;
1480
- position: absolute;
1481
- bottom: 48px;
1482
- border-radius: 4px;
1483
- display: none;
1484
- background-color: rgba(74, 74, 74, 0.9);
1485
- }
1486
- .multicamera[data-multicamera] > ul::after {
1487
- content: "";
1664
+ }.seek-time[data-seek-time] {
1488
1665
  position: absolute;
1489
- top: 100%;
1490
- left: 85%;
1491
- margin-left: -10px;
1492
- width: 0;
1493
- height: 0;
1494
- border-top: 10px solid rgba(74, 74, 74, 0.9);
1495
- border-right: 10px solid transparent;
1496
- border-left: 10px solid transparent;
1497
- }
1498
- .multicamera[data-multicamera] li {
1499
- font-size: 10px;
1500
- cursor: pointer;
1501
- }
1502
- .multicamera[data-multicamera] li .multicamera-item {
1503
- display: flex;
1504
- padding: 10px 0;
1505
- justify-content: center;
1506
- position: relative;
1507
- }
1508
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
1509
- pointer-events: none;
1510
- }
1511
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
1512
- opacity: 0.5;
1513
- }
1514
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
1515
- opacity: 0.5;
1516
- }
1517
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
1518
- background-color: rgba(0, 0, 0, 0);
1519
- }
1520
- .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
1521
- background-color: rgba(0, 0, 0, 0.3);
1522
- }
1523
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
1524
- width: 80px;
1525
- height: 60px;
1526
- }
1527
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
1528
- width: 80px;
1529
- height: 60px;
1530
- }
1531
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
1532
- width: 120px;
1533
- text-align: left;
1534
- margin-left: 15px;
1535
- }
1536
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1537
- width: 120px;
1666
+ white-space: nowrap;
1538
1667
  height: 20px;
1539
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1540
- font-size: 14px;
1541
- font-weight: normal;
1542
- font-style: normal;
1543
- font-stretch: normal;
1544
- line-height: 1.43;
1545
- letter-spacing: normal;
1546
- text-align: left;
1547
- color: #fff;
1548
- text-overflow: ellipsis;
1549
- overflow: hidden;
1550
- }
1551
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1552
- opacity: 0.6;
1553
- }
1554
- .multicamera[data-multicamera] li[data-title] {
1555
- background-color: #c3c2c2;
1556
- padding: 5px;
1557
- }
1558
- .multicamera[data-multicamera] li a {
1559
- color: #444;
1560
- padding: 2px 10px;
1561
- display: block;
1562
- text-decoration: none;
1563
- }
1564
- .multicamera[data-multicamera] li a:hover {
1565
- background-color: #555;
1566
- color: white;
1567
- }
1568
- .multicamera[data-multicamera] li a:hover a {
1569
- color: white;
1570
- text-decoration: none;
1571
- }
1572
- .multicamera[data-multicamera] li.current a {
1573
- color: #f00;
1574
- }
1575
-
1576
- @keyframes pulse {
1577
- 0% {
1578
- color: #fff;
1579
- }
1580
- 50% {
1581
- color: #ff0101;
1582
- }
1583
- 100% {
1584
- color: #B80000;
1585
- }
1586
- }.player-poster[data-poster] {
1587
- display: flex;
1588
- justify-content: center;
1589
- align-items: center;
1590
- position: absolute;
1591
- height: 100%;
1592
- width: 100%;
1593
- z-index: 998;
1594
- top: 0;
1595
- left: 0;
1596
- background-color: #000;
1597
- background-size: cover;
1598
- background-repeat: no-repeat;
1599
- background-position: 50% 50%;
1600
- }
1601
- .player-poster[data-poster].clickable {
1602
- cursor: pointer;
1603
- }
1604
- .player-poster[data-poster]:hover .play-wrapper[data-poster] {
1605
- opacity: 1;
1606
- }
1607
- .player-poster[data-poster] .play-wrapper[data-poster] {
1608
- width: 100%;
1609
- height: 25%;
1610
- margin: 0 auto;
1611
- opacity: 0.75;
1612
- transition: opacity 0.1s ease;
1613
- }
1614
- .player-poster[data-poster] .play-wrapper[data-poster] svg {
1615
- height: 100%;
1616
- display: inline;
1617
- }
1618
- .player-poster[data-poster] .play-wrapper[data-poster] svg path {
1619
- fill: #fff;
1620
- }.share_plugin[data-share] {
1621
- pointer-events: auto;
1622
- z-index: 5;
1623
- font-family: Roboto, "Open Sans", Arial, sans-serif !important;
1624
- }
1625
- .share_plugin[data-share].share-hide .share-button-container {
1626
- right: -50px;
1627
- }
1628
- .share_plugin[data-share] .share-button-container {
1629
- cursor: pointer;
1630
- width: 36px;
1631
- height: 36px;
1632
- background-color: rgba(74, 74, 74, 0.6);
1633
- border-radius: 4px;
1634
- position: absolute;
1635
- right: 10px;
1636
- top: 10px;
1637
- padding-top: 6px;
1638
- transition: all 0.3s ease-out;
1639
- }
1640
- .share_plugin[data-share] .share-button-container button[data-share-button] {
1641
- background-color: transparent;
1642
- border: 0;
1643
- margin: 0 6px;
1644
- padding: 0;
1645
- cursor: pointer;
1646
- display: inline-block;
1647
- width: 19px;
1648
- height: 20px;
1649
- }
1650
- .share_plugin[data-share] .share-container {
1651
- pointer-events: auto;
1652
- position: absolute;
1653
- width: 280px;
1654
- background-color: white;
1655
- transform: translate(0, 50%);
1656
- transform: translate(-50%, -50%);
1657
- left: 50%;
1658
- /* margin-left: -140px; */
1659
- top: calc(50% - 20px);
1660
- /* margin-top: -170px; */
1661
- }
1662
- .share_plugin[data-share] .share-container .share-container-header {
1663
- text-align: left;
1664
- border-bottom: 1px solid rgba(155, 155, 155, 0.25);
1665
- }
1666
- .share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
1667
- display: inline-block;
1668
- font-size: 16px;
1669
- margin: 5px;
1670
- }
1671
- .share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
1672
- display: inline-block;
1673
- width: 24px;
1674
- float: right;
1675
- margin: 5px;
1676
- cursor: pointer;
1677
- }
1678
- .share_plugin[data-share] .share-container .share-container-main {
1679
- margin-bottom: 8px;
1680
- }
1681
- .share_plugin[data-share] .share-container .share-container-main > div {
1682
- text-align: left;
1683
- font-size: 14px;
1684
- padding: 5px;
1685
- }
1686
- .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 {
1687
- overflow: hidden;
1688
- text-overflow: ellipsis;
1689
- color: #818181;
1690
- border: solid 1px #d3d3d3;
1691
- width: calc(100% - 10px);
1692
- padding: 5px;
1693
- }
1694
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
1695
- max-height: 90px;
1696
- resize: none;
1697
- }
1698
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
1699
- width: 32px;
1700
- display: inline-block;
1701
- margin-right: 5px;
1702
- cursor: pointer;
1703
- }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
1704
- order: 99;
1705
- height: 20px;
1706
- }
1707
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
1708
- position: absolute;
1709
- right: 16px;
1710
- bottom: 52px;
1711
- width: 250px;
1712
- min-height: 48px;
1713
- z-index: 9999;
1714
- border-radius: 4px;
1715
- }
1716
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
1717
- padding: 8px 0;
1718
- }
1719
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
1720
- margin: 0;
1721
- text-align: left;
1722
- line-height: 22px;
1723
- padding: 5px 14px;
1724
- width: 250px;
1725
- font-size: 12px;
1726
- display: flex;
1727
- align-items: center;
1728
- justify-content: flex-start;
1729
- gap: 8px;
1730
- }
1731
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
1732
- flex: 24px 0 0;
1733
- height: 24px;
1734
- }
1735
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
1736
- visibility: hidden;
1737
- display: inline-block;
1738
- }
1739
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
1740
- flex: 0 1 100%;
1741
- }
1742
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
1743
- flex: 0 0 14px;
1744
- height: 24px;
1745
- }
1746
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
1747
- flex: 1 0 auto;
1748
- }*, :focus, :visited {
1749
- outline: none !important;
1750
- }
1751
-
1752
- .gear-wrapper .go-back {
1753
- font-weight: 600;
1754
- font-size: 14px;
1755
1668
  line-height: 20px;
1756
- width: 100%;
1757
- text-align: left;
1758
- padding: 12px;
1759
- }
1760
- .gear-wrapper .go-back .arrow-left-icon {
1761
- float: left;
1762
- padding-top: 2px;
1763
- padding-right: 2px;
1764
- }
1765
- .gear-wrapper .go-back .arrow-left-icon svg {
1766
- height: 16px;
1767
- }
1768
- .gear-wrapper ul.gear-sub-menu {
1769
- width: 100%;
1770
- list-style-type: none;
1771
- min-width: 60px;
1772
- border-top: 2px solid rgb(36, 36, 36);
1773
- }
1774
- .gear-wrapper ul.gear-sub-menu li {
1775
- font-size: 12px;
1776
- text-align: left;
1777
- }
1778
- .gear-wrapper ul.gear-sub-menu li[data-title] {
1779
- background-color: #c3c2c2;
1780
- padding: 5px;
1781
- }
1782
- .gear-wrapper ul.gear-sub-menu li a {
1783
- display: block;
1784
- text-decoration: none;
1785
- height: 32px;
1786
- padding: 5px 10px;
1787
- line-height: 22px;
1788
- color: #fffffe;
1669
+ font-size: 0;
1670
+ left: -100%;
1671
+ bottom: 55px;
1672
+ background-color: rgba(2, 2, 2, 0.5);
1673
+ z-index: 9999;
1674
+ transition: opacity 0.1s ease;
1789
1675
  }
1790
- .gear-wrapper ul.gear-sub-menu li a:hover {
1791
- color: white;
1792
- background-color: rgba(0, 0, 0, 0.4);
1676
+ .seek-time[data-seek-time].hidden[data-seek-time] {
1677
+ opacity: 0;
1793
1678
  }
1794
- .gear-wrapper ul.gear-sub-menu li a:hover a {
1679
+ .seek-time[data-seek-time] [data-seek-time] {
1680
+ display: inline-block;
1795
1681
  color: white;
1796
- text-decoration: none;
1797
- }
1798
- .gear-wrapper ul.gear-sub-menu li a .check-icon {
1799
- width: 30px;
1800
- height: 20px;
1801
- float: left;
1802
- display: block;
1682
+ font-size: 10px;
1683
+ padding-left: 7px;
1684
+ padding-right: 7px;
1685
+ vertical-align: top;
1803
1686
  }
1804
- .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
1805
- display: none;
1687
+ .seek-time[data-seek-time] [data-duration] {
1688
+ display: inline-block;
1689
+ color: rgba(255, 255, 255, 0.5);
1690
+ font-size: 10px;
1691
+ padding-right: 7px;
1692
+ vertical-align: top;
1806
1693
  }
1807
- .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
1808
- display: inline;
1694
+ .seek-time[data-seek-time] [data-duration]::before {
1695
+ content: "|";
1696
+ margin-right: 7px;
1809
1697
  }.scrub-thumbnails {
1810
1698
  position: absolute;
1811
1699
  bottom: 52px;
@@ -1867,51 +1755,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1867
1755
  }
1868
1756
  .scrub-thumbnails .backdrop .carousel img {
1869
1757
  width: auto;
1870
- }.context-menu {
1871
- z-index: 999;
1872
- position: absolute;
1873
- top: 0;
1874
- left: 0;
1875
- text-align: center;
1876
- }
1877
- .context-menu .context-menu-list {
1878
- font-family: "Proxima Nova", sans-serif;
1879
- font-size: 12px;
1880
- line-height: 12px;
1881
- list-style-type: none;
1882
- text-align: left;
1883
- padding: 5px;
1884
- margin-left: auto;
1885
- margin-right: auto;
1886
- background-color: rgba(0, 0, 0, 0.75);
1887
- border: 1px solid #666;
1888
- border-radius: 4px;
1889
- }
1890
- .context-menu .context-menu-list-item button {
1891
- border: none;
1892
- background-color: transparent;
1893
- padding: 0;
1894
- color: white;
1895
- display: flex;
1896
- gap: 8px;
1897
- align-items: center;
1898
- justify-content: center;
1899
- cursor: pointer;
1900
- padding: 5px;
1901
- width: 100%;
1902
- }
1903
- .context-menu .context-menu-list-item_icon {
1904
- width: 20px;
1905
- height: 20px;
1906
- }.player-logo[data-logo] {
1907
- position: absolute;
1908
- z-index: 2;
1909
- width: 100%;
1910
- height: 100%;
1911
- }
1912
-
1913
- .clappr-logo {
1914
- position: absolute;
1915
1758
  }.spinner-three-bounce[data-spinner] {
1916
1759
  position: absolute;
1917
1760
  width: 70px;
@@ -1950,6 +1793,27 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1950
1793
  40% {
1951
1794
  transform: scale(1);
1952
1795
  }
1796
+ }.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
1797
+ height: 0;
1798
+ }
1799
+
1800
+ .skip_time_plugin[data-skip-time] {
1801
+ position: absolute;
1802
+ width: 100%;
1803
+ height: calc(100% - 50px);
1804
+ z-index: 9998;
1805
+ background-color: transparent;
1806
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1807
+ }
1808
+ .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
1809
+ width: 100%;
1810
+ height: 100%;
1811
+ display: flex;
1812
+ justify-content: space-between;
1813
+ }
1814
+ .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
1815
+ width: 33.3%;
1816
+ height: 100%;
1953
1817
  }*,
1954
1818
  :focus,
1955
1819
  :visited {
@@ -1982,7 +1846,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1982
1846
  position: absolute;
1983
1847
  bottom: 25px;
1984
1848
  border: 1px solid black;
1985
- display: none;
1986
1849
  background-color: #e6e6e6;
1987
1850
  padding: 8px 0;
1988
1851
  }
@@ -2024,25 +1887,161 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
2024
1887
  .ios-fullscreen::cue {
2025
1888
  visibility: visible !important;
2026
1889
  font-size: 1em !important;
2027
- }.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
2028
- height: 0;
1890
+ }*, :focus, :visited {
1891
+ outline: none !important;
2029
1892
  }
2030
1893
 
2031
- .skip_time_plugin[data-skip-time] {
2032
- position: absolute;
2033
- width: 100%;
2034
- height: calc(100% - 50px);
2035
- z-index: 9998;
1894
+ .multicamera[data-multicamera] {
1895
+ float: right;
1896
+ margin-top: 4px;
1897
+ position: relative;
1898
+ margin-right: 20px;
1899
+ width: 20px;
1900
+ }
1901
+ .multicamera[data-multicamera] button {
2036
1902
  background-color: transparent;
1903
+ color: #fff;
2037
1904
  font-family: Roboto, "Open Sans", Arial, sans-serif;
1905
+ -webkit-font-smoothing: antialiased;
1906
+ border: none;
1907
+ font-size: 14px;
1908
+ padding: 0;
2038
1909
  }
2039
- .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
2040
- width: 100%;
2041
- height: 100%;
1910
+ .multicamera[data-multicamera] button svg {
1911
+ height: 20px;
1912
+ position: relative;
1913
+ margin-top: 6px;
1914
+ }
1915
+ .multicamera[data-multicamera] button:hover {
1916
+ color: #c9c9c9;
1917
+ }
1918
+ .multicamera[data-multicamera] button.changing {
1919
+ animation: pulse 0.5s infinite alternate;
1920
+ }
1921
+ .multicamera[data-multicamera] button span.quality-arrow {
1922
+ width: 9px;
1923
+ height: 6px;
1924
+ margin-top: 11px;
1925
+ margin-left: 5px;
1926
+ }
1927
+ .multicamera[data-multicamera] > ul {
1928
+ padding: 6px 0;
1929
+ right: -24px;
1930
+ width: 245px;
1931
+ list-style-type: none;
1932
+ position: absolute;
1933
+ bottom: 48px;
1934
+ border-radius: 4px;
1935
+ display: none;
1936
+ background-color: rgba(74, 74, 74, 0.9);
1937
+ }
1938
+ .multicamera[data-multicamera] > ul::after {
1939
+ content: "";
1940
+ position: absolute;
1941
+ top: 100%;
1942
+ left: 85%;
1943
+ margin-left: -10px;
1944
+ width: 0;
1945
+ height: 0;
1946
+ border-top: 10px solid rgba(74, 74, 74, 0.9);
1947
+ border-right: 10px solid transparent;
1948
+ border-left: 10px solid transparent;
1949
+ }
1950
+ .multicamera[data-multicamera] li {
1951
+ font-size: 10px;
1952
+ cursor: pointer;
1953
+ }
1954
+ .multicamera[data-multicamera] li .multicamera-item {
2042
1955
  display: flex;
2043
- justify-content: space-between;
1956
+ padding: 10px 0;
1957
+ justify-content: center;
1958
+ position: relative;
2044
1959
  }
2045
- .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
2046
- width: 33.3%;
1960
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
1961
+ pointer-events: none;
1962
+ }
1963
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
1964
+ opacity: 0.5;
1965
+ }
1966
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
1967
+ opacity: 0.5;
1968
+ }
1969
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
1970
+ background-color: rgba(0, 0, 0, 0);
1971
+ }
1972
+ .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
1973
+ background-color: rgba(0, 0, 0, 0.3);
1974
+ }
1975
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
1976
+ width: 80px;
1977
+ height: 60px;
1978
+ }
1979
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
1980
+ width: 80px;
1981
+ height: 60px;
1982
+ }
1983
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
1984
+ width: 120px;
1985
+ text-align: left;
1986
+ margin-left: 15px;
1987
+ }
1988
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1989
+ width: 120px;
1990
+ height: 20px;
1991
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1992
+ font-size: 14px;
1993
+ font-weight: normal;
1994
+ font-style: normal;
1995
+ font-stretch: normal;
1996
+ line-height: 1.43;
1997
+ letter-spacing: normal;
1998
+ text-align: left;
1999
+ color: #fff;
2000
+ text-overflow: ellipsis;
2001
+ overflow: hidden;
2002
+ }
2003
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
2004
+ opacity: 0.6;
2005
+ }
2006
+ .multicamera[data-multicamera] li[data-title] {
2007
+ background-color: #c3c2c2;
2008
+ padding: 5px;
2009
+ }
2010
+ .multicamera[data-multicamera] li a {
2011
+ color: #444;
2012
+ padding: 2px 10px;
2013
+ display: block;
2014
+ text-decoration: none;
2015
+ }
2016
+ .multicamera[data-multicamera] li a:hover {
2017
+ background-color: #555;
2018
+ color: white;
2019
+ }
2020
+ .multicamera[data-multicamera] li a:hover a {
2021
+ color: white;
2022
+ text-decoration: none;
2023
+ }
2024
+ .multicamera[data-multicamera] li.current a {
2025
+ color: #f00;
2026
+ }
2027
+
2028
+ @keyframes pulse {
2029
+ 0% {
2030
+ color: #fff;
2031
+ }
2032
+ 50% {
2033
+ color: #ff0101;
2034
+ }
2035
+ 100% {
2036
+ color: #B80000;
2037
+ }
2038
+ }.player-logo[data-logo] {
2039
+ position: absolute;
2040
+ z-index: 2;
2041
+ width: 100%;
2047
2042
  height: 100%;
2043
+ }
2044
+
2045
+ .clappr-logo {
2046
+ position: absolute;
2048
2047
  }