@gcorevideo/player 2.20.5 → 2.20.7
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/dist/core.js +3 -3
- package/dist/index.css +1181 -1181
- package/dist/index.js +3757 -3732
- package/dist/plugins/index.css +704 -704
- package/dist/plugins/index.js +5113 -5093
- package/lib/playback/BasePlayback.d.ts +1 -1
- package/lib/playback/BasePlayback.d.ts.map +1 -1
- package/lib/playback/BasePlayback.js +2 -2
- package/lib/playback/dash-playback/DashPlayback.d.ts.map +1 -1
- package/lib/playback/hls-playback/HlsPlayback.d.ts.map +1 -1
- package/lib/plugins/bottom-gear/BottomGear.d.ts.map +1 -1
- package/lib/plugins/bottom-gear/BottomGear.js +5 -8
- package/lib/plugins/error-screen/ErrorScreen.d.ts.map +1 -1
- package/lib/plugins/error-screen/ErrorScreen.js +1 -2
- package/lib/plugins/level-selector/LevelSelector.d.ts +15 -5
- package/lib/plugins/level-selector/LevelSelector.d.ts.map +1 -1
- package/lib/plugins/level-selector/LevelSelector.js +22 -22
- 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 +20 -3
- package/lib/plugins/source-controller/SourceController.d.ts +1 -0
- package/lib/plugins/source-controller/SourceController.d.ts.map +1 -1
- package/lib/plugins/source-controller/SourceController.js +8 -4
- package/lib/plugins/spinner-three-bounce/SpinnerThreeBounce.d.ts +7 -3
- package/lib/plugins/spinner-three-bounce/SpinnerThreeBounce.d.ts.map +1 -1
- package/lib/plugins/spinner-three-bounce/SpinnerThreeBounce.js +35 -27
- package/lib/testUtils.d.ts +5 -8
- package/lib/testUtils.d.ts.map +1 -1
- package/lib/testUtils.js +15 -9
- package/package.json +1 -1
- package/src/playback/BasePlayback.ts +2 -2
- package/src/playback/dash-playback/DashPlayback.ts +1 -2
- package/src/playback/hls-playback/HlsPlayback.ts +2 -2
- package/src/plugins/bottom-gear/BottomGear.ts +5 -7
- package/src/plugins/bottom-gear/__tests__/BottomGear.test.ts +36 -0
- package/src/plugins/bottom-gear/__tests__/__snapshots__/BottomGear.test.ts.snap +41 -0
- package/src/plugins/error-screen/ErrorScreen.ts +1 -2
- package/src/plugins/level-selector/LevelSelector.ts +50 -29
- package/src/plugins/level-selector/__tests__/LevelSelector.test.ts +15 -16
- package/src/plugins/media-control/MediaControl.ts +19 -3
- package/src/plugins/source-controller/SourceController.ts +9 -4
- package/src/plugins/source-controller/__tests__/SourceController.test.ts +35 -1
- package/src/plugins/spinner-three-bounce/SpinnerThreeBounce.ts +80 -57
- package/src/testUtils.ts +16 -9
- package/tsconfig.tsbuildinfo +1 -1
- package/src/playback/utils.ts +0 -2
package/dist/plugins/index.css
CHANGED
|
@@ -259,30 +259,161 @@
|
|
|
259
259
|
100% {
|
|
260
260
|
color: #B80000;
|
|
261
261
|
}
|
|
262
|
-
}.
|
|
263
|
-
z-index: 999;
|
|
262
|
+
}.big-mute-icon-wrapper[data-big-mute] {
|
|
264
263
|
position: absolute;
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
264
|
+
z-index: 9998;
|
|
265
|
+
background-color: transparent;
|
|
266
|
+
display: flex;
|
|
267
|
+
justify-content: center;
|
|
268
|
+
width: 100%;
|
|
269
|
+
height: calc(100% - 50px);
|
|
270
|
+
margin: 0 auto;
|
|
271
|
+
opacity: 0.75;
|
|
272
|
+
transition: opacity 0.1s ease;
|
|
273
|
+
pointer-events: auto;
|
|
268
274
|
}
|
|
269
|
-
.
|
|
270
|
-
|
|
271
|
-
font-size: 12px;
|
|
272
|
-
line-height: 12px;
|
|
273
|
-
list-style-type: none;
|
|
274
|
-
text-align: left;
|
|
275
|
-
padding: 5px;
|
|
276
|
-
margin-left: auto;
|
|
277
|
-
margin-right: auto;
|
|
278
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
279
|
-
border: 1px solid #666;
|
|
280
|
-
border-radius: 4px;
|
|
275
|
+
.big-mute-icon-wrapper[data-big-mute].hide {
|
|
276
|
+
display: none;
|
|
281
277
|
}
|
|
282
|
-
.
|
|
283
|
-
|
|
284
|
-
|
|
278
|
+
.big-mute-icon-wrapper[data-big-mute]:hover {
|
|
279
|
+
cursor: pointer;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.big-mute-icon[data-big-mute-icon] {
|
|
283
|
+
display: flex;
|
|
284
|
+
align-items: center;
|
|
285
|
+
justify-content: center;
|
|
286
|
+
align-self: center;
|
|
287
|
+
width: 120px;
|
|
288
|
+
height: 120px;
|
|
289
|
+
border: 2px solid white;
|
|
290
|
+
border-radius: 50%;
|
|
291
|
+
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
292
|
+
filter: alpha(opacity=60);
|
|
293
|
+
opacity: 1;
|
|
294
|
+
box-shadow: 0 0 1px 0 white;
|
|
295
|
+
background: rgba(240, 243, 247, 0.9411764706);
|
|
296
|
+
z-index: 10000;
|
|
297
|
+
}
|
|
298
|
+
.big-mute-icon[data-big-mute-icon] svg {
|
|
299
|
+
margin-left: 5px;
|
|
300
|
+
width: 80px;
|
|
301
|
+
height: 80px;
|
|
302
|
+
}
|
|
303
|
+
.big-mute-icon[data-big-mute-icon] svg path {
|
|
304
|
+
fill: #1f1e1e !important;
|
|
305
|
+
}
|
|
306
|
+
.big-mute-icon[data-big-mute-icon]:hover {
|
|
307
|
+
background: rgba(240, 243, 247, 0.8784313725);
|
|
308
|
+
}
|
|
309
|
+
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
310
|
+
fill: #151515 !important;
|
|
311
|
+
}.dvr-controls[data-dvr-controls] {
|
|
312
|
+
display: inline-block;
|
|
313
|
+
float: left;
|
|
314
|
+
color: #fff;
|
|
315
|
+
line-height: 32px;
|
|
316
|
+
font-size: 10px;
|
|
317
|
+
font-weight: bold;
|
|
318
|
+
margin-left: 6px;
|
|
319
|
+
}
|
|
320
|
+
.dvr-controls[data-dvr-controls] .live-info {
|
|
321
|
+
cursor: default;
|
|
322
|
+
font-family: "Roboto", "Open Sans", Arial, sans-serif;
|
|
323
|
+
text-transform: uppercase;
|
|
324
|
+
}
|
|
325
|
+
.dvr-controls[data-dvr-controls] .live-info:before {
|
|
326
|
+
content: "";
|
|
327
|
+
display: inline-block;
|
|
328
|
+
position: relative;
|
|
329
|
+
width: 7px;
|
|
330
|
+
height: 7px;
|
|
331
|
+
border-radius: 3.5px;
|
|
332
|
+
margin-right: 3.5px;
|
|
333
|
+
background-color: #ff0101;
|
|
334
|
+
}
|
|
335
|
+
.dvr-controls[data-dvr-controls] .live-info.disabled {
|
|
336
|
+
opacity: 0.3;
|
|
337
|
+
}
|
|
338
|
+
.dvr-controls[data-dvr-controls] .live-info.disabled:before {
|
|
339
|
+
background-color: #fff;
|
|
340
|
+
}
|
|
341
|
+
.dvr-controls[data-dvr-controls] .live-button {
|
|
285
342
|
cursor: pointer;
|
|
343
|
+
outline: none;
|
|
344
|
+
display: none;
|
|
345
|
+
border: 0;
|
|
346
|
+
color: #fff;
|
|
347
|
+
background-color: transparent;
|
|
348
|
+
height: 32px;
|
|
349
|
+
padding: 0;
|
|
350
|
+
opacity: 0.7;
|
|
351
|
+
font-family: "Roboto", "Open Sans", Arial, sans-serif;
|
|
352
|
+
text-transform: uppercase;
|
|
353
|
+
transition: all 0.1s ease;
|
|
354
|
+
}
|
|
355
|
+
.dvr-controls[data-dvr-controls] .live-button:before {
|
|
356
|
+
content: "";
|
|
357
|
+
display: inline-block;
|
|
358
|
+
position: relative;
|
|
359
|
+
width: 7px;
|
|
360
|
+
height: 7px;
|
|
361
|
+
border-radius: 3.5px;
|
|
362
|
+
margin-right: 3.5px;
|
|
363
|
+
background-color: #fff;
|
|
364
|
+
}
|
|
365
|
+
.dvr-controls[data-dvr-controls] .live-button:hover {
|
|
366
|
+
opacity: 1;
|
|
367
|
+
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.dvr-controls[data-dvr-controls] {
|
|
371
|
+
height: 40px;
|
|
372
|
+
line-height: 40px;
|
|
373
|
+
margin-left: 0;
|
|
374
|
+
}
|
|
375
|
+
.dvr-controls[data-dvr-controls] .live-info {
|
|
376
|
+
font-size: 14px;
|
|
377
|
+
letter-spacing: 0.8px;
|
|
378
|
+
font-weight: 500;
|
|
379
|
+
color: #fffffe;
|
|
380
|
+
margin-left: 21px;
|
|
381
|
+
}
|
|
382
|
+
.dvr-controls[data-dvr-controls] .live-info::before {
|
|
383
|
+
width: 10px;
|
|
384
|
+
height: 10px;
|
|
385
|
+
border-radius: 50%;
|
|
386
|
+
margin-right: 8px;
|
|
387
|
+
background-color: #ed4f4a;
|
|
388
|
+
}
|
|
389
|
+
.dvr-controls[data-dvr-controls] .live-button {
|
|
390
|
+
height: 40px;
|
|
391
|
+
opacity: 1;
|
|
392
|
+
font-size: 14px;
|
|
393
|
+
letter-spacing: 0.8px;
|
|
394
|
+
font-weight: 500;
|
|
395
|
+
margin-left: 20px;
|
|
396
|
+
}
|
|
397
|
+
.dvr-controls[data-dvr-controls] .live-button::before {
|
|
398
|
+
width: 10px;
|
|
399
|
+
height: 10px;
|
|
400
|
+
border-radius: 50%;
|
|
401
|
+
margin-right: 8px;
|
|
402
|
+
background-color: #cacaca;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.dvr .dvr-controls[data-dvr-controls] .live-info {
|
|
406
|
+
display: none;
|
|
407
|
+
}
|
|
408
|
+
.dvr .dvr-controls[data-dvr-controls] .live-button {
|
|
409
|
+
display: block;
|
|
410
|
+
}
|
|
411
|
+
.dvr.media-control.live[data-media-control] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
|
|
412
|
+
background-color: #005aff;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.media-control.live[data-media-control] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
|
|
416
|
+
background-color: #ff0101;
|
|
286
417
|
}:root {
|
|
287
418
|
--primary-background-color: #000;
|
|
288
419
|
--secondary-background-color: #262626;
|
|
@@ -665,116 +796,42 @@
|
|
|
665
796
|
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
|
|
666
797
|
width: 25%;
|
|
667
798
|
}
|
|
668
|
-
}.
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
799
|
+
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
800
|
+
color: #CCCACA;
|
|
801
|
+
position: absolute;
|
|
802
|
+
top: 0;
|
|
803
|
+
height: 100%;
|
|
804
|
+
width: 100%;
|
|
805
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
806
|
+
z-index: 2000;
|
|
807
|
+
display: flex;
|
|
808
|
+
flex-direction: column;
|
|
809
|
+
justify-content: center;
|
|
676
810
|
}
|
|
677
|
-
.
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
811
|
+
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
812
|
+
font-size: 14px;
|
|
813
|
+
color: #CCCACA;
|
|
814
|
+
margin-top: 45px;
|
|
681
815
|
}
|
|
682
|
-
.
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
width: 7px;
|
|
687
|
-
height: 7px;
|
|
688
|
-
border-radius: 3.5px;
|
|
689
|
-
margin-right: 3.5px;
|
|
690
|
-
background-color: #ff0101;
|
|
816
|
+
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
817
|
+
font-weight: bold;
|
|
818
|
+
line-height: 30px;
|
|
819
|
+
font-size: 18px;
|
|
691
820
|
}
|
|
692
|
-
.
|
|
693
|
-
|
|
821
|
+
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
822
|
+
width: 90%;
|
|
823
|
+
margin: 0 auto;
|
|
694
824
|
}
|
|
695
|
-
.
|
|
696
|
-
|
|
825
|
+
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
826
|
+
font-size: 13px;
|
|
827
|
+
margin-top: 15px;
|
|
697
828
|
}
|
|
698
|
-
.
|
|
829
|
+
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
699
830
|
cursor: pointer;
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
background-color: transparent;
|
|
705
|
-
height: 32px;
|
|
706
|
-
padding: 0;
|
|
707
|
-
opacity: 0.7;
|
|
708
|
-
font-family: "Roboto", "Open Sans", Arial, sans-serif;
|
|
709
|
-
text-transform: uppercase;
|
|
710
|
-
transition: all 0.1s ease;
|
|
711
|
-
}
|
|
712
|
-
.dvr-controls[data-dvr-controls] .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: #fff;
|
|
721
|
-
}
|
|
722
|
-
.dvr-controls[data-dvr-controls] .live-button:hover {
|
|
723
|
-
opacity: 1;
|
|
724
|
-
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
725
|
-
}
|
|
726
|
-
|
|
727
|
-
.dvr-controls[data-dvr-controls] {
|
|
728
|
-
height: 40px;
|
|
729
|
-
line-height: 40px;
|
|
730
|
-
margin-left: 0;
|
|
731
|
-
}
|
|
732
|
-
.dvr-controls[data-dvr-controls] .live-info {
|
|
733
|
-
font-size: 14px;
|
|
734
|
-
letter-spacing: 0.8px;
|
|
735
|
-
font-weight: 500;
|
|
736
|
-
color: #fffffe;
|
|
737
|
-
margin-left: 21px;
|
|
738
|
-
}
|
|
739
|
-
.dvr-controls[data-dvr-controls] .live-info::before {
|
|
740
|
-
width: 10px;
|
|
741
|
-
height: 10px;
|
|
742
|
-
border-radius: 50%;
|
|
743
|
-
margin-right: 8px;
|
|
744
|
-
background-color: #ed4f4a;
|
|
745
|
-
}
|
|
746
|
-
.dvr-controls[data-dvr-controls] .live-button {
|
|
747
|
-
height: 40px;
|
|
748
|
-
opacity: 1;
|
|
749
|
-
font-size: 14px;
|
|
750
|
-
letter-spacing: 0.8px;
|
|
751
|
-
font-weight: 500;
|
|
752
|
-
margin-left: 20px;
|
|
753
|
-
}
|
|
754
|
-
.dvr-controls[data-dvr-controls] .live-button::before {
|
|
755
|
-
width: 10px;
|
|
756
|
-
height: 10px;
|
|
757
|
-
border-radius: 50%;
|
|
758
|
-
margin-right: 8px;
|
|
759
|
-
background-color: #cacaca;
|
|
760
|
-
}
|
|
761
|
-
|
|
762
|
-
.dvr .dvr-controls[data-dvr-controls] .live-info {
|
|
763
|
-
display: none;
|
|
764
|
-
}
|
|
765
|
-
.dvr .dvr-controls[data-dvr-controls] .live-button {
|
|
766
|
-
display: block;
|
|
767
|
-
}
|
|
768
|
-
.dvr.media-control.live[data-media-control] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
|
|
769
|
-
background-color: #005aff;
|
|
770
|
-
}
|
|
771
|
-
|
|
772
|
-
.media-control.live[data-media-control] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
|
|
773
|
-
background-color: #ff0101;
|
|
774
|
-
}.clips.bar-container[data-seekbar] {
|
|
775
|
-
clip-path: url("#myClip");
|
|
776
|
-
}*, :focus, :visited {
|
|
777
|
-
outline: none !important;
|
|
831
|
+
width: 30px;
|
|
832
|
+
margin: 15px auto 0;
|
|
833
|
+
}*, :focus, :visited {
|
|
834
|
+
outline: none !important;
|
|
778
835
|
}
|
|
779
836
|
|
|
780
837
|
.gear-wrapper .go-back {
|
|
@@ -885,127 +942,392 @@
|
|
|
885
942
|
}
|
|
886
943
|
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option svg {
|
|
887
944
|
height: 20px;
|
|
888
|
-
}.
|
|
945
|
+
}.clips.bar-container[data-seekbar] {
|
|
946
|
+
clip-path: url("#myClip");
|
|
947
|
+
}.media-control-pip button {
|
|
948
|
+
float: right;
|
|
949
|
+
height: 40px;
|
|
950
|
+
margin-right: 20px;
|
|
951
|
+
}
|
|
952
|
+
.media-control-pip button svg {
|
|
953
|
+
height: 20px;
|
|
954
|
+
}.context-menu {
|
|
955
|
+
z-index: 999;
|
|
889
956
|
position: absolute;
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
957
|
+
top: 0;
|
|
958
|
+
left: 0;
|
|
959
|
+
text-align: center;
|
|
893
960
|
}
|
|
894
|
-
.
|
|
895
|
-
|
|
961
|
+
.context-menu .context-menu-list {
|
|
962
|
+
font-family: "Proxima Nova", sans-serif;
|
|
963
|
+
font-size: 12px;
|
|
964
|
+
line-height: 12px;
|
|
965
|
+
list-style-type: none;
|
|
966
|
+
text-align: left;
|
|
967
|
+
padding: 5px;
|
|
968
|
+
margin-left: auto;
|
|
969
|
+
margin-right: auto;
|
|
970
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
971
|
+
border: 1px solid #666;
|
|
972
|
+
border-radius: 4px;
|
|
896
973
|
}
|
|
897
|
-
.
|
|
898
|
-
|
|
974
|
+
.context-menu .context-menu-list .context-menu-list-item {
|
|
975
|
+
color: white;
|
|
976
|
+
padding: 5px;
|
|
977
|
+
cursor: pointer;
|
|
978
|
+
}.level-disabled {
|
|
979
|
+
opacity: 0.5;
|
|
980
|
+
pointer-events: none;
|
|
981
|
+
}*, :focus, :visited {
|
|
982
|
+
outline: none !important;
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
.multicamera[data-multicamera] {
|
|
986
|
+
float: right;
|
|
987
|
+
margin-top: 4px;
|
|
899
988
|
position: relative;
|
|
900
|
-
|
|
901
|
-
|
|
989
|
+
margin-right: 20px;
|
|
990
|
+
width: 20px;
|
|
902
991
|
}
|
|
903
|
-
.
|
|
904
|
-
|
|
905
|
-
|
|
992
|
+
.multicamera[data-multicamera] button {
|
|
993
|
+
background-color: transparent;
|
|
994
|
+
color: #fff;
|
|
995
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
996
|
+
-webkit-font-smoothing: antialiased;
|
|
997
|
+
border: none;
|
|
998
|
+
font-size: 14px;
|
|
999
|
+
padding: 0;
|
|
906
1000
|
}
|
|
907
|
-
.
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
overflow: hidden;
|
|
912
|
-
text-overflow: ellipsis;
|
|
913
|
-
color: white;
|
|
914
|
-
position: absolute;
|
|
915
|
-
bottom: 23px;
|
|
916
|
-
width: 100px;
|
|
1001
|
+
.multicamera[data-multicamera] button svg {
|
|
1002
|
+
height: 20px;
|
|
1003
|
+
position: relative;
|
|
1004
|
+
margin-top: 6px;
|
|
917
1005
|
}
|
|
918
|
-
.
|
|
919
|
-
|
|
920
|
-
overflow: hidden;
|
|
921
|
-
position: absolute;
|
|
922
|
-
bottom: 0;
|
|
923
|
-
left: 0;
|
|
924
|
-
border-color: #4a4a4a;
|
|
925
|
-
border-style: solid;
|
|
926
|
-
border-width: 3px;
|
|
927
|
-
border-radius: 3px;
|
|
1006
|
+
.multicamera[data-multicamera] button:hover {
|
|
1007
|
+
color: #c9c9c9;
|
|
928
1008
|
}
|
|
929
|
-
.
|
|
930
|
-
|
|
1009
|
+
.multicamera[data-multicamera] button.changing {
|
|
1010
|
+
animation: pulse 0.5s infinite alternate;
|
|
931
1011
|
}
|
|
932
|
-
.
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
background-color: #000;
|
|
938
|
-
overflow: hidden;
|
|
1012
|
+
.multicamera[data-multicamera] button span.quality-arrow {
|
|
1013
|
+
width: 9px;
|
|
1014
|
+
height: 6px;
|
|
1015
|
+
margin-top: 11px;
|
|
1016
|
+
margin-left: 5px;
|
|
939
1017
|
}
|
|
940
|
-
.
|
|
1018
|
+
.multicamera[data-multicamera] > ul {
|
|
1019
|
+
padding: 6px 0;
|
|
1020
|
+
right: -24px;
|
|
1021
|
+
width: 245px;
|
|
1022
|
+
list-style-type: none;
|
|
941
1023
|
position: absolute;
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
1024
|
+
bottom: 48px;
|
|
1025
|
+
border-radius: 4px;
|
|
1026
|
+
display: none;
|
|
1027
|
+
background-color: rgba(74, 74, 74, 0.9);
|
|
946
1028
|
}
|
|
947
|
-
.
|
|
948
|
-
|
|
949
|
-
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
950
|
-
color: #CCCACA;
|
|
1029
|
+
.multicamera[data-multicamera] > ul::after {
|
|
1030
|
+
content: "";
|
|
951
1031
|
position: absolute;
|
|
952
|
-
top:
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
1032
|
+
top: 100%;
|
|
1033
|
+
left: 85%;
|
|
1034
|
+
margin-left: -10px;
|
|
1035
|
+
width: 0;
|
|
1036
|
+
height: 0;
|
|
1037
|
+
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
1038
|
+
border-right: 10px solid transparent;
|
|
1039
|
+
border-left: 10px solid transparent;
|
|
960
1040
|
}
|
|
961
|
-
|
|
962
|
-
font-size:
|
|
963
|
-
|
|
964
|
-
margin-top: 45px;
|
|
1041
|
+
.multicamera[data-multicamera] li {
|
|
1042
|
+
font-size: 10px;
|
|
1043
|
+
cursor: pointer;
|
|
965
1044
|
}
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
1045
|
+
.multicamera[data-multicamera] li .multicamera-item {
|
|
1046
|
+
display: flex;
|
|
1047
|
+
padding: 10px 0;
|
|
1048
|
+
justify-content: center;
|
|
1049
|
+
position: relative;
|
|
970
1050
|
}
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
margin: 0 auto;
|
|
1051
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
1052
|
+
pointer-events: none;
|
|
974
1053
|
}
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
margin-top: 15px;
|
|
1054
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
1055
|
+
opacity: 0.5;
|
|
978
1056
|
}
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
width: 30px;
|
|
982
|
-
margin: 15px auto 0;
|
|
983
|
-
}[data-player] {
|
|
984
|
-
--bottom-panel: 40px;
|
|
1057
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
1058
|
+
opacity: 0.5;
|
|
985
1059
|
}
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
transition: none !important;
|
|
1060
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
1061
|
+
background-color: rgba(0, 0, 0, 0);
|
|
989
1062
|
}
|
|
990
|
-
.
|
|
991
|
-
|
|
1063
|
+
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
1064
|
+
background-color: rgba(0, 0, 0, 0.3);
|
|
992
1065
|
}
|
|
993
|
-
.
|
|
994
|
-
|
|
1066
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
1067
|
+
width: 80px;
|
|
1068
|
+
height: 60px;
|
|
995
1069
|
}
|
|
996
|
-
.
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
width: 100%;
|
|
1070
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
|
|
1071
|
+
width: 80px;
|
|
1072
|
+
height: 60px;
|
|
1000
1073
|
}
|
|
1001
|
-
.
|
|
1002
|
-
width:
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
display: inline-block;
|
|
1074
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
1075
|
+
width: 120px;
|
|
1076
|
+
text-align: left;
|
|
1077
|
+
margin-left: 15px;
|
|
1006
1078
|
}
|
|
1007
|
-
.
|
|
1008
|
-
|
|
1079
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1080
|
+
width: 120px;
|
|
1081
|
+
height: 20px;
|
|
1082
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1083
|
+
font-size: 14px;
|
|
1084
|
+
font-weight: normal;
|
|
1085
|
+
font-style: normal;
|
|
1086
|
+
font-stretch: normal;
|
|
1087
|
+
line-height: 1.43;
|
|
1088
|
+
letter-spacing: normal;
|
|
1089
|
+
text-align: left;
|
|
1090
|
+
color: #fff;
|
|
1091
|
+
text-overflow: ellipsis;
|
|
1092
|
+
overflow: hidden;
|
|
1093
|
+
}
|
|
1094
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1095
|
+
opacity: 0.6;
|
|
1096
|
+
}
|
|
1097
|
+
.multicamera[data-multicamera] li[data-title] {
|
|
1098
|
+
background-color: #c3c2c2;
|
|
1099
|
+
padding: 5px;
|
|
1100
|
+
}
|
|
1101
|
+
.multicamera[data-multicamera] li a {
|
|
1102
|
+
color: #444;
|
|
1103
|
+
padding: 2px 10px;
|
|
1104
|
+
display: block;
|
|
1105
|
+
text-decoration: none;
|
|
1106
|
+
}
|
|
1107
|
+
.multicamera[data-multicamera] li a:hover {
|
|
1108
|
+
background-color: #555;
|
|
1109
|
+
color: white;
|
|
1110
|
+
}
|
|
1111
|
+
.multicamera[data-multicamera] li a:hover a {
|
|
1112
|
+
color: white;
|
|
1113
|
+
text-decoration: none;
|
|
1114
|
+
}
|
|
1115
|
+
.multicamera[data-multicamera] li.current a {
|
|
1116
|
+
color: #f00;
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
@keyframes pulse {
|
|
1120
|
+
0% {
|
|
1121
|
+
color: #fff;
|
|
1122
|
+
}
|
|
1123
|
+
50% {
|
|
1124
|
+
color: #ff0101;
|
|
1125
|
+
}
|
|
1126
|
+
100% {
|
|
1127
|
+
color: #B80000;
|
|
1128
|
+
}
|
|
1129
|
+
}.share_plugin[data-share] {
|
|
1130
|
+
pointer-events: auto;
|
|
1131
|
+
z-index: 5;
|
|
1132
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
1133
|
+
}
|
|
1134
|
+
.share_plugin[data-share].share-hide .share-button-container {
|
|
1135
|
+
right: -50px;
|
|
1136
|
+
}
|
|
1137
|
+
.share_plugin[data-share] .share-button-container {
|
|
1138
|
+
cursor: pointer;
|
|
1139
|
+
width: 36px;
|
|
1140
|
+
height: 36px;
|
|
1141
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
1142
|
+
border-radius: 4px;
|
|
1143
|
+
position: absolute;
|
|
1144
|
+
right: 10px;
|
|
1145
|
+
top: 10px;
|
|
1146
|
+
padding-top: 6px;
|
|
1147
|
+
transition: all 0.3s ease-out;
|
|
1148
|
+
}
|
|
1149
|
+
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
1150
|
+
background-color: transparent;
|
|
1151
|
+
border: 0;
|
|
1152
|
+
margin: 0 6px;
|
|
1153
|
+
padding: 0;
|
|
1154
|
+
cursor: pointer;
|
|
1155
|
+
display: inline-block;
|
|
1156
|
+
width: 19px;
|
|
1157
|
+
height: 20px;
|
|
1158
|
+
}
|
|
1159
|
+
.share_plugin[data-share] .share-container {
|
|
1160
|
+
pointer-events: auto;
|
|
1161
|
+
position: absolute;
|
|
1162
|
+
width: 280px;
|
|
1163
|
+
background-color: white;
|
|
1164
|
+
transform: translate(0, 50%);
|
|
1165
|
+
transform: translate(-50%, -50%);
|
|
1166
|
+
left: 50%;
|
|
1167
|
+
/* margin-left: -140px; */
|
|
1168
|
+
top: calc(50% - 20px);
|
|
1169
|
+
/* margin-top: -170px; */
|
|
1170
|
+
}
|
|
1171
|
+
.share_plugin[data-share] .share-container .share-container-header {
|
|
1172
|
+
text-align: left;
|
|
1173
|
+
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
1174
|
+
}
|
|
1175
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
1176
|
+
display: inline-block;
|
|
1177
|
+
font-size: 16px;
|
|
1178
|
+
margin: 5px;
|
|
1179
|
+
}
|
|
1180
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
1181
|
+
display: inline-block;
|
|
1182
|
+
width: 24px;
|
|
1183
|
+
float: right;
|
|
1184
|
+
margin: 5px;
|
|
1185
|
+
cursor: pointer;
|
|
1186
|
+
}
|
|
1187
|
+
.share_plugin[data-share] .share-container .share-container-main {
|
|
1188
|
+
margin-bottom: 8px;
|
|
1189
|
+
}
|
|
1190
|
+
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
1191
|
+
text-align: left;
|
|
1192
|
+
font-size: 14px;
|
|
1193
|
+
padding: 5px;
|
|
1194
|
+
}
|
|
1195
|
+
.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 {
|
|
1196
|
+
overflow: hidden;
|
|
1197
|
+
text-overflow: ellipsis;
|
|
1198
|
+
color: #818181;
|
|
1199
|
+
border: solid 1px #d3d3d3;
|
|
1200
|
+
width: calc(100% - 10px);
|
|
1201
|
+
padding: 5px;
|
|
1202
|
+
}
|
|
1203
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
1204
|
+
max-height: 90px;
|
|
1205
|
+
resize: none;
|
|
1206
|
+
}
|
|
1207
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
1208
|
+
width: 32px;
|
|
1209
|
+
display: inline-block;
|
|
1210
|
+
margin-right: 5px;
|
|
1211
|
+
cursor: pointer;
|
|
1212
|
+
}.player-poster[data-poster] {
|
|
1213
|
+
display: flex;
|
|
1214
|
+
justify-content: center;
|
|
1215
|
+
align-items: center;
|
|
1216
|
+
position: absolute;
|
|
1217
|
+
height: 100%;
|
|
1218
|
+
width: 100%;
|
|
1219
|
+
z-index: 998;
|
|
1220
|
+
top: 0;
|
|
1221
|
+
left: 0;
|
|
1222
|
+
background-color: #000;
|
|
1223
|
+
background-size: cover;
|
|
1224
|
+
background-repeat: no-repeat;
|
|
1225
|
+
background-position: 50% 50%;
|
|
1226
|
+
}
|
|
1227
|
+
.player-poster[data-poster].clickable {
|
|
1228
|
+
cursor: pointer;
|
|
1229
|
+
}
|
|
1230
|
+
.player-poster[data-poster]:hover .play-wrapper[data-poster] {
|
|
1231
|
+
opacity: 1;
|
|
1232
|
+
}
|
|
1233
|
+
.player-poster[data-poster] .play-wrapper[data-poster] {
|
|
1234
|
+
width: 100%;
|
|
1235
|
+
height: 25%;
|
|
1236
|
+
margin: 0 auto;
|
|
1237
|
+
opacity: 0.75;
|
|
1238
|
+
transition: opacity 0.1s ease;
|
|
1239
|
+
}
|
|
1240
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg {
|
|
1241
|
+
height: 100%;
|
|
1242
|
+
display: inline;
|
|
1243
|
+
}
|
|
1244
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg path {
|
|
1245
|
+
fill: #fff;
|
|
1246
|
+
}.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
|
|
1247
|
+
height: 0;
|
|
1248
|
+
}
|
|
1249
|
+
|
|
1250
|
+
.skip_time_plugin[data-skip-time] {
|
|
1251
|
+
position: absolute;
|
|
1252
|
+
width: 100%;
|
|
1253
|
+
height: calc(100% - 50px);
|
|
1254
|
+
z-index: 9998;
|
|
1255
|
+
background-color: transparent;
|
|
1256
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1257
|
+
}
|
|
1258
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
|
|
1259
|
+
width: 100%;
|
|
1260
|
+
height: 100%;
|
|
1261
|
+
display: flex;
|
|
1262
|
+
justify-content: space-between;
|
|
1263
|
+
}
|
|
1264
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
|
|
1265
|
+
width: 33.3%;
|
|
1266
|
+
height: 100%;
|
|
1267
|
+
}.spinner-three-bounce[data-spinner] {
|
|
1268
|
+
position: absolute;
|
|
1269
|
+
width: 70px;
|
|
1270
|
+
text-align: center;
|
|
1271
|
+
z-index: 999;
|
|
1272
|
+
left: 0;
|
|
1273
|
+
right: 0;
|
|
1274
|
+
margin: 0 auto;
|
|
1275
|
+
margin-left: auto;
|
|
1276
|
+
margin-right: auto;
|
|
1277
|
+
/* center vertically */
|
|
1278
|
+
top: 50%;
|
|
1279
|
+
transform: translateY(-50%);
|
|
1280
|
+
}
|
|
1281
|
+
.spinner-three-bounce[data-spinner] > div {
|
|
1282
|
+
width: 18px;
|
|
1283
|
+
height: 18px;
|
|
1284
|
+
background-color: #FFF;
|
|
1285
|
+
border-radius: 100%;
|
|
1286
|
+
display: inline-block;
|
|
1287
|
+
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
1288
|
+
/* Prevent first frame from flickering when animation starts */
|
|
1289
|
+
animation-fill-mode: both;
|
|
1290
|
+
}
|
|
1291
|
+
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
1292
|
+
animation-delay: -0.32s;
|
|
1293
|
+
}
|
|
1294
|
+
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
1295
|
+
animation-delay: -0.16s;
|
|
1296
|
+
}
|
|
1297
|
+
|
|
1298
|
+
@keyframes bouncedelay {
|
|
1299
|
+
0%, 80%, 100% {
|
|
1300
|
+
transform: scale(0);
|
|
1301
|
+
}
|
|
1302
|
+
40% {
|
|
1303
|
+
transform: scale(1);
|
|
1304
|
+
}
|
|
1305
|
+
}[data-player] {
|
|
1306
|
+
--bottom-panel: 40px;
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
.container .media-control-notransition {
|
|
1310
|
+
transition: none !important;
|
|
1311
|
+
}
|
|
1312
|
+
.container .player-poster[data-poster] .play-wrapper[data-poster] {
|
|
1313
|
+
opacity: 1;
|
|
1314
|
+
}
|
|
1315
|
+
.container.crop-video [data-html5-video] {
|
|
1316
|
+
object-fit: cover;
|
|
1317
|
+
}
|
|
1318
|
+
.container .subtitle-string {
|
|
1319
|
+
position: absolute;
|
|
1320
|
+
bottom: calc(var(--bottom-panel) + 5px);
|
|
1321
|
+
width: 100%;
|
|
1322
|
+
}
|
|
1323
|
+
.container .subtitle-string p {
|
|
1324
|
+
width: auto;
|
|
1325
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
1326
|
+
color: white;
|
|
1327
|
+
display: inline-block;
|
|
1328
|
+
}
|
|
1329
|
+
.container .circle-poster[data-poster] {
|
|
1330
|
+
top: 50%;
|
|
1009
1331
|
margin-top: -60px;
|
|
1010
1332
|
left: 50%;
|
|
1011
1333
|
margin-left: -60px;
|
|
@@ -1585,77 +1907,148 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1585
1907
|
}
|
|
1586
1908
|
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume]:hover {
|
|
1587
1909
|
transform: scaleY(1.5);
|
|
1588
|
-
}.
|
|
1910
|
+
}.scrub-thumbnails {
|
|
1589
1911
|
position: absolute;
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
left: 0;
|
|
1594
|
-
right: 0;
|
|
1595
|
-
margin: 0 auto;
|
|
1596
|
-
margin-left: auto;
|
|
1597
|
-
margin-right: auto;
|
|
1598
|
-
/* center vertically */
|
|
1599
|
-
top: 50%;
|
|
1600
|
-
transform: translateY(-50%);
|
|
1912
|
+
bottom: 52px;
|
|
1913
|
+
width: 100%;
|
|
1914
|
+
transition: opacity 0.3s ease;
|
|
1601
1915
|
}
|
|
1602
|
-
.
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
border-radius: 100%;
|
|
1916
|
+
.scrub-thumbnails.hidden {
|
|
1917
|
+
opacity: 0;
|
|
1918
|
+
}
|
|
1919
|
+
.scrub-thumbnails .thumbnail-container {
|
|
1607
1920
|
display: inline-block;
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1921
|
+
position: relative;
|
|
1922
|
+
overflow: hidden;
|
|
1923
|
+
background-color: #000;
|
|
1611
1924
|
}
|
|
1612
|
-
.
|
|
1613
|
-
|
|
1925
|
+
.scrub-thumbnails .thumbnail-container .thumbnail-img {
|
|
1926
|
+
position: absolute;
|
|
1927
|
+
width: auto;
|
|
1614
1928
|
}
|
|
1615
|
-
.
|
|
1616
|
-
|
|
1929
|
+
.scrub-thumbnails .thumbnails-text {
|
|
1930
|
+
background-color: rgba(74, 74, 74, 0.7);
|
|
1931
|
+
border-radius: 3px;
|
|
1932
|
+
white-space: nowrap;
|
|
1933
|
+
overflow: hidden;
|
|
1934
|
+
text-overflow: ellipsis;
|
|
1935
|
+
color: white;
|
|
1936
|
+
position: absolute;
|
|
1937
|
+
bottom: 23px;
|
|
1938
|
+
width: 100px;
|
|
1617
1939
|
}
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1940
|
+
.scrub-thumbnails .spotlight {
|
|
1941
|
+
background-color: #4a4a4a;
|
|
1942
|
+
overflow: hidden;
|
|
1943
|
+
position: absolute;
|
|
1944
|
+
bottom: 0;
|
|
1945
|
+
left: 0;
|
|
1946
|
+
border-color: #4a4a4a;
|
|
1947
|
+
border-style: solid;
|
|
1948
|
+
border-width: 3px;
|
|
1949
|
+
border-radius: 3px;
|
|
1950
|
+
}
|
|
1951
|
+
.scrub-thumbnails .spotlight img {
|
|
1952
|
+
width: auto;
|
|
1953
|
+
}
|
|
1954
|
+
.scrub-thumbnails .backdrop {
|
|
1955
|
+
position: absolute;
|
|
1956
|
+
left: 0;
|
|
1957
|
+
bottom: 0;
|
|
1958
|
+
right: 0;
|
|
1959
|
+
background-color: #000;
|
|
1960
|
+
overflow: hidden;
|
|
1961
|
+
}
|
|
1962
|
+
.scrub-thumbnails .backdrop .carousel {
|
|
1627
1963
|
position: absolute;
|
|
1964
|
+
top: 0;
|
|
1965
|
+
left: 0;
|
|
1966
|
+
height: 100%;
|
|
1628
1967
|
white-space: nowrap;
|
|
1629
|
-
height: 20px;
|
|
1630
|
-
line-height: 20px;
|
|
1631
|
-
font-size: 0;
|
|
1632
|
-
left: -100%;
|
|
1633
|
-
bottom: 55px;
|
|
1634
|
-
background-color: rgba(2, 2, 2, 0.5);
|
|
1635
|
-
z-index: 9999;
|
|
1636
|
-
transition: opacity 0.1s ease;
|
|
1637
1968
|
}
|
|
1638
|
-
.
|
|
1639
|
-
|
|
1969
|
+
.scrub-thumbnails .backdrop .carousel img {
|
|
1970
|
+
width: auto;
|
|
1971
|
+
}*, :focus, :visited {
|
|
1972
|
+
outline: none !important;
|
|
1640
1973
|
}
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
padding-right: 7px;
|
|
1647
|
-
vertical-align: top;
|
|
1974
|
+
|
|
1975
|
+
.subtitles[data-subtitles] {
|
|
1976
|
+
float: right;
|
|
1977
|
+
position: relative;
|
|
1978
|
+
width: 50px;
|
|
1648
1979
|
}
|
|
1649
|
-
.
|
|
1650
|
-
|
|
1651
|
-
color:
|
|
1980
|
+
.subtitles[data-subtitles] button {
|
|
1981
|
+
background-color: transparent;
|
|
1982
|
+
color: #fff;
|
|
1983
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1984
|
+
-webkit-font-smoothing: antialiased;
|
|
1985
|
+
border: none;
|
|
1986
|
+
font-size: 14px;
|
|
1987
|
+
cursor: pointer;
|
|
1988
|
+
}
|
|
1989
|
+
.subtitles[data-subtitles] button .subtitle-text svg {
|
|
1990
|
+
fill: white;
|
|
1991
|
+
}
|
|
1992
|
+
.subtitles[data-subtitles] button:hover {
|
|
1993
|
+
color: #c9c9c9;
|
|
1994
|
+
}
|
|
1995
|
+
.subtitles[data-subtitles] button.changing {
|
|
1996
|
+
animation: pulse 0.5s infinite alternate;
|
|
1997
|
+
}
|
|
1998
|
+
.subtitles[data-subtitles] > ul {
|
|
1999
|
+
width: 80px;
|
|
2000
|
+
list-style-type: none;
|
|
2001
|
+
position: absolute;
|
|
2002
|
+
bottom: 25px;
|
|
2003
|
+
border: 1px solid black;
|
|
2004
|
+
display: none;
|
|
2005
|
+
background-color: #e6e6e6;
|
|
2006
|
+
}
|
|
2007
|
+
.subtitles[data-subtitles] li {
|
|
1652
2008
|
font-size: 10px;
|
|
1653
|
-
padding-right: 7px;
|
|
1654
|
-
vertical-align: top;
|
|
1655
2009
|
}
|
|
1656
|
-
.
|
|
1657
|
-
|
|
1658
|
-
|
|
2010
|
+
.subtitles[data-subtitles] li[data-title] {
|
|
2011
|
+
background-color: #c3c2c2;
|
|
2012
|
+
padding: 5px;
|
|
2013
|
+
}
|
|
2014
|
+
.subtitles[data-subtitles] li a {
|
|
2015
|
+
color: #444;
|
|
2016
|
+
padding: 2px 10px;
|
|
2017
|
+
display: block;
|
|
2018
|
+
text-decoration: none;
|
|
2019
|
+
}
|
|
2020
|
+
.subtitles[data-subtitles] li a:hover {
|
|
2021
|
+
background-color: #555;
|
|
2022
|
+
color: white;
|
|
2023
|
+
}
|
|
2024
|
+
.subtitles[data-subtitles] li a:hover a {
|
|
2025
|
+
color: white;
|
|
2026
|
+
text-decoration: none;
|
|
2027
|
+
}
|
|
2028
|
+
.subtitles[data-subtitles] li.current a {
|
|
2029
|
+
color: #f00;
|
|
2030
|
+
background-color: #555;
|
|
2031
|
+
}
|
|
2032
|
+
|
|
2033
|
+
@keyframes pulse {
|
|
2034
|
+
0% {
|
|
2035
|
+
color: #fff;
|
|
2036
|
+
}
|
|
2037
|
+
50% {
|
|
2038
|
+
color: #ff0101;
|
|
2039
|
+
}
|
|
2040
|
+
100% {
|
|
2041
|
+
color: #B80000;
|
|
2042
|
+
}
|
|
2043
|
+
}
|
|
2044
|
+
::cue {
|
|
2045
|
+
visibility: hidden !important;
|
|
2046
|
+
font-size: 0 !important;
|
|
2047
|
+
}
|
|
2048
|
+
|
|
2049
|
+
.ios-fullscreen::cue {
|
|
2050
|
+
visibility: visible !important;
|
|
2051
|
+
font-size: 1em !important;
|
|
1659
2052
|
}.media-control-skin-1[data-media-control-skin-1] .media-control-quality,
|
|
1660
2053
|
.media-control-skin-1[data-media-control-skin-1] .media-control-audio-tracks {
|
|
1661
2054
|
display: block;
|
|
@@ -1726,439 +2119,46 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1726
2119
|
}
|
|
1727
2120
|
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
|
|
1728
2121
|
display: none !important;
|
|
1729
|
-
}.
|
|
2122
|
+
}.seek-time[data-seek-time] {
|
|
1730
2123
|
position: absolute;
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
2124
|
+
white-space: nowrap;
|
|
2125
|
+
height: 20px;
|
|
2126
|
+
line-height: 20px;
|
|
2127
|
+
font-size: 0;
|
|
2128
|
+
left: -100%;
|
|
2129
|
+
bottom: 55px;
|
|
2130
|
+
background-color: rgba(2, 2, 2, 0.5);
|
|
2131
|
+
z-index: 9999;
|
|
1739
2132
|
transition: opacity 0.1s ease;
|
|
1740
|
-
pointer-events: auto;
|
|
1741
|
-
}
|
|
1742
|
-
.big-mute-icon-wrapper[data-big-mute].hide {
|
|
1743
|
-
display: none;
|
|
1744
|
-
}
|
|
1745
|
-
.big-mute-icon-wrapper[data-big-mute]:hover {
|
|
1746
|
-
cursor: pointer;
|
|
1747
2133
|
}
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
display: flex;
|
|
1751
|
-
align-items: center;
|
|
1752
|
-
justify-content: center;
|
|
1753
|
-
align-self: center;
|
|
1754
|
-
width: 120px;
|
|
1755
|
-
height: 120px;
|
|
1756
|
-
border: 2px solid white;
|
|
1757
|
-
border-radius: 50%;
|
|
1758
|
-
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
1759
|
-
filter: alpha(opacity=60);
|
|
1760
|
-
opacity: 1;
|
|
1761
|
-
box-shadow: 0 0 1px 0 white;
|
|
1762
|
-
background: rgba(240, 243, 247, 0.9411764706);
|
|
1763
|
-
z-index: 10000;
|
|
2134
|
+
.seek-time[data-seek-time].hidden[data-seek-time] {
|
|
2135
|
+
opacity: 0;
|
|
1764
2136
|
}
|
|
1765
|
-
.
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
2137
|
+
.seek-time[data-seek-time] [data-seek-time] {
|
|
2138
|
+
display: inline-block;
|
|
2139
|
+
color: white;
|
|
2140
|
+
font-size: 10px;
|
|
2141
|
+
padding-left: 7px;
|
|
2142
|
+
padding-right: 7px;
|
|
2143
|
+
vertical-align: top;
|
|
1769
2144
|
}
|
|
1770
|
-
.
|
|
1771
|
-
|
|
2145
|
+
.seek-time[data-seek-time] [data-duration] {
|
|
2146
|
+
display: inline-block;
|
|
2147
|
+
color: rgba(255, 255, 255, 0.5);
|
|
2148
|
+
font-size: 10px;
|
|
2149
|
+
padding-right: 7px;
|
|
2150
|
+
vertical-align: top;
|
|
1772
2151
|
}
|
|
1773
|
-
.
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
.
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
align-items: center;
|
|
1782
|
-
position: absolute;
|
|
1783
|
-
height: 100%;
|
|
1784
|
-
width: 100%;
|
|
1785
|
-
z-index: 998;
|
|
1786
|
-
top: 0;
|
|
1787
|
-
left: 0;
|
|
1788
|
-
background-color: #000;
|
|
1789
|
-
background-size: cover;
|
|
1790
|
-
background-repeat: no-repeat;
|
|
1791
|
-
background-position: 50% 50%;
|
|
1792
|
-
}
|
|
1793
|
-
.player-poster[data-poster].clickable {
|
|
1794
|
-
cursor: pointer;
|
|
1795
|
-
}
|
|
1796
|
-
.player-poster[data-poster]:hover .play-wrapper[data-poster] {
|
|
1797
|
-
opacity: 1;
|
|
1798
|
-
}
|
|
1799
|
-
.player-poster[data-poster] .play-wrapper[data-poster] {
|
|
1800
|
-
width: 100%;
|
|
1801
|
-
height: 25%;
|
|
1802
|
-
margin: 0 auto;
|
|
1803
|
-
opacity: 0.75;
|
|
1804
|
-
transition: opacity 0.1s ease;
|
|
1805
|
-
}
|
|
1806
|
-
.player-poster[data-poster] .play-wrapper[data-poster] svg {
|
|
1807
|
-
height: 100%;
|
|
1808
|
-
display: inline;
|
|
1809
|
-
}
|
|
1810
|
-
.player-poster[data-poster] .play-wrapper[data-poster] svg path {
|
|
1811
|
-
fill: #fff;
|
|
1812
|
-
}.level-disabled {
|
|
1813
|
-
opacity: 0.5;
|
|
1814
|
-
pointer-events: none;
|
|
1815
|
-
}.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
|
|
1816
|
-
height: 0;
|
|
1817
|
-
}
|
|
1818
|
-
|
|
1819
|
-
.skip_time_plugin[data-skip-time] {
|
|
1820
|
-
position: absolute;
|
|
1821
|
-
width: 100%;
|
|
1822
|
-
height: calc(100% - 50px);
|
|
1823
|
-
z-index: 9998;
|
|
1824
|
-
background-color: transparent;
|
|
1825
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1826
|
-
}
|
|
1827
|
-
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
|
|
1828
|
-
width: 100%;
|
|
1829
|
-
height: 100%;
|
|
1830
|
-
display: flex;
|
|
1831
|
-
justify-content: space-between;
|
|
1832
|
-
}
|
|
1833
|
-
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
|
|
1834
|
-
width: 33.3%;
|
|
1835
|
-
height: 100%;
|
|
1836
|
-
}*, :focus, :visited {
|
|
1837
|
-
outline: none !important;
|
|
1838
|
-
}
|
|
1839
|
-
|
|
1840
|
-
.subtitles[data-subtitles] {
|
|
1841
|
-
float: right;
|
|
1842
|
-
position: relative;
|
|
1843
|
-
width: 50px;
|
|
1844
|
-
}
|
|
1845
|
-
.subtitles[data-subtitles] button {
|
|
1846
|
-
background-color: transparent;
|
|
1847
|
-
color: #fff;
|
|
1848
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1849
|
-
-webkit-font-smoothing: antialiased;
|
|
1850
|
-
border: none;
|
|
1851
|
-
font-size: 14px;
|
|
1852
|
-
cursor: pointer;
|
|
1853
|
-
}
|
|
1854
|
-
.subtitles[data-subtitles] button .subtitle-text svg {
|
|
1855
|
-
fill: white;
|
|
1856
|
-
}
|
|
1857
|
-
.subtitles[data-subtitles] button:hover {
|
|
1858
|
-
color: #c9c9c9;
|
|
1859
|
-
}
|
|
1860
|
-
.subtitles[data-subtitles] button.changing {
|
|
1861
|
-
animation: pulse 0.5s infinite alternate;
|
|
1862
|
-
}
|
|
1863
|
-
.subtitles[data-subtitles] > ul {
|
|
1864
|
-
width: 80px;
|
|
1865
|
-
list-style-type: none;
|
|
1866
|
-
position: absolute;
|
|
1867
|
-
bottom: 25px;
|
|
1868
|
-
border: 1px solid black;
|
|
1869
|
-
display: none;
|
|
1870
|
-
background-color: #e6e6e6;
|
|
1871
|
-
}
|
|
1872
|
-
.subtitles[data-subtitles] li {
|
|
1873
|
-
font-size: 10px;
|
|
1874
|
-
}
|
|
1875
|
-
.subtitles[data-subtitles] li[data-title] {
|
|
1876
|
-
background-color: #c3c2c2;
|
|
1877
|
-
padding: 5px;
|
|
1878
|
-
}
|
|
1879
|
-
.subtitles[data-subtitles] li a {
|
|
1880
|
-
color: #444;
|
|
1881
|
-
padding: 2px 10px;
|
|
1882
|
-
display: block;
|
|
1883
|
-
text-decoration: none;
|
|
1884
|
-
}
|
|
1885
|
-
.subtitles[data-subtitles] li a:hover {
|
|
1886
|
-
background-color: #555;
|
|
1887
|
-
color: white;
|
|
1888
|
-
}
|
|
1889
|
-
.subtitles[data-subtitles] li a:hover a {
|
|
1890
|
-
color: white;
|
|
1891
|
-
text-decoration: none;
|
|
1892
|
-
}
|
|
1893
|
-
.subtitles[data-subtitles] li.current a {
|
|
1894
|
-
color: #f00;
|
|
1895
|
-
background-color: #555;
|
|
1896
|
-
}
|
|
1897
|
-
|
|
1898
|
-
@keyframes pulse {
|
|
1899
|
-
0% {
|
|
1900
|
-
color: #fff;
|
|
1901
|
-
}
|
|
1902
|
-
50% {
|
|
1903
|
-
color: #ff0101;
|
|
1904
|
-
}
|
|
1905
|
-
100% {
|
|
1906
|
-
color: #B80000;
|
|
1907
|
-
}
|
|
1908
|
-
}
|
|
1909
|
-
::cue {
|
|
1910
|
-
visibility: hidden !important;
|
|
1911
|
-
font-size: 0 !important;
|
|
1912
|
-
}
|
|
1913
|
-
|
|
1914
|
-
.ios-fullscreen::cue {
|
|
1915
|
-
visibility: visible !important;
|
|
1916
|
-
font-size: 1em !important;
|
|
1917
|
-
}*, :focus, :visited {
|
|
1918
|
-
outline: none !important;
|
|
1919
|
-
}
|
|
1920
|
-
|
|
1921
|
-
.multicamera[data-multicamera] {
|
|
1922
|
-
float: right;
|
|
1923
|
-
margin-top: 4px;
|
|
1924
|
-
position: relative;
|
|
1925
|
-
margin-right: 20px;
|
|
1926
|
-
width: 20px;
|
|
1927
|
-
}
|
|
1928
|
-
.multicamera[data-multicamera] button {
|
|
1929
|
-
background-color: transparent;
|
|
1930
|
-
color: #fff;
|
|
1931
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1932
|
-
-webkit-font-smoothing: antialiased;
|
|
1933
|
-
border: none;
|
|
1934
|
-
font-size: 14px;
|
|
1935
|
-
padding: 0;
|
|
1936
|
-
}
|
|
1937
|
-
.multicamera[data-multicamera] button svg {
|
|
1938
|
-
height: 20px;
|
|
1939
|
-
position: relative;
|
|
1940
|
-
margin-top: 6px;
|
|
1941
|
-
}
|
|
1942
|
-
.multicamera[data-multicamera] button:hover {
|
|
1943
|
-
color: #c9c9c9;
|
|
1944
|
-
}
|
|
1945
|
-
.multicamera[data-multicamera] button.changing {
|
|
1946
|
-
animation: pulse 0.5s infinite alternate;
|
|
1947
|
-
}
|
|
1948
|
-
.multicamera[data-multicamera] button span.quality-arrow {
|
|
1949
|
-
width: 9px;
|
|
1950
|
-
height: 6px;
|
|
1951
|
-
margin-top: 11px;
|
|
1952
|
-
margin-left: 5px;
|
|
1953
|
-
}
|
|
1954
|
-
.multicamera[data-multicamera] > ul {
|
|
1955
|
-
padding: 6px 0;
|
|
1956
|
-
right: -24px;
|
|
1957
|
-
width: 245px;
|
|
1958
|
-
list-style-type: none;
|
|
1959
|
-
position: absolute;
|
|
1960
|
-
bottom: 48px;
|
|
1961
|
-
border-radius: 4px;
|
|
1962
|
-
display: none;
|
|
1963
|
-
background-color: rgba(74, 74, 74, 0.9);
|
|
1964
|
-
}
|
|
1965
|
-
.multicamera[data-multicamera] > ul::after {
|
|
1966
|
-
content: "";
|
|
1967
|
-
position: absolute;
|
|
1968
|
-
top: 100%;
|
|
1969
|
-
left: 85%;
|
|
1970
|
-
margin-left: -10px;
|
|
1971
|
-
width: 0;
|
|
1972
|
-
height: 0;
|
|
1973
|
-
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
1974
|
-
border-right: 10px solid transparent;
|
|
1975
|
-
border-left: 10px solid transparent;
|
|
1976
|
-
}
|
|
1977
|
-
.multicamera[data-multicamera] li {
|
|
1978
|
-
font-size: 10px;
|
|
1979
|
-
cursor: pointer;
|
|
1980
|
-
}
|
|
1981
|
-
.multicamera[data-multicamera] li .multicamera-item {
|
|
1982
|
-
display: flex;
|
|
1983
|
-
padding: 10px 0;
|
|
1984
|
-
justify-content: center;
|
|
1985
|
-
position: relative;
|
|
1986
|
-
}
|
|
1987
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
1988
|
-
pointer-events: none;
|
|
1989
|
-
}
|
|
1990
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
1991
|
-
opacity: 0.5;
|
|
1992
|
-
}
|
|
1993
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
1994
|
-
opacity: 0.5;
|
|
1995
|
-
}
|
|
1996
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
1997
|
-
background-color: rgba(0, 0, 0, 0);
|
|
1998
|
-
}
|
|
1999
|
-
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
2000
|
-
background-color: rgba(0, 0, 0, 0.3);
|
|
2001
|
-
}
|
|
2002
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
2003
|
-
width: 80px;
|
|
2004
|
-
height: 60px;
|
|
2005
|
-
}
|
|
2006
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
|
|
2007
|
-
width: 80px;
|
|
2008
|
-
height: 60px;
|
|
2009
|
-
}
|
|
2010
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
2011
|
-
width: 120px;
|
|
2012
|
-
text-align: left;
|
|
2013
|
-
margin-left: 15px;
|
|
2014
|
-
}
|
|
2015
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
2016
|
-
width: 120px;
|
|
2017
|
-
height: 20px;
|
|
2018
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
2019
|
-
font-size: 14px;
|
|
2020
|
-
font-weight: normal;
|
|
2021
|
-
font-style: normal;
|
|
2022
|
-
font-stretch: normal;
|
|
2023
|
-
line-height: 1.43;
|
|
2024
|
-
letter-spacing: normal;
|
|
2025
|
-
text-align: left;
|
|
2026
|
-
color: #fff;
|
|
2027
|
-
text-overflow: ellipsis;
|
|
2028
|
-
overflow: hidden;
|
|
2029
|
-
}
|
|
2030
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
2031
|
-
opacity: 0.6;
|
|
2032
|
-
}
|
|
2033
|
-
.multicamera[data-multicamera] li[data-title] {
|
|
2034
|
-
background-color: #c3c2c2;
|
|
2035
|
-
padding: 5px;
|
|
2036
|
-
}
|
|
2037
|
-
.multicamera[data-multicamera] li a {
|
|
2038
|
-
color: #444;
|
|
2039
|
-
padding: 2px 10px;
|
|
2040
|
-
display: block;
|
|
2041
|
-
text-decoration: none;
|
|
2042
|
-
}
|
|
2043
|
-
.multicamera[data-multicamera] li a:hover {
|
|
2044
|
-
background-color: #555;
|
|
2045
|
-
color: white;
|
|
2046
|
-
}
|
|
2047
|
-
.multicamera[data-multicamera] li a:hover a {
|
|
2048
|
-
color: white;
|
|
2049
|
-
text-decoration: none;
|
|
2050
|
-
}
|
|
2051
|
-
.multicamera[data-multicamera] li.current a {
|
|
2052
|
-
color: #f00;
|
|
2053
|
-
}
|
|
2054
|
-
|
|
2055
|
-
@keyframes pulse {
|
|
2056
|
-
0% {
|
|
2057
|
-
color: #fff;
|
|
2058
|
-
}
|
|
2059
|
-
50% {
|
|
2060
|
-
color: #ff0101;
|
|
2061
|
-
}
|
|
2062
|
-
100% {
|
|
2063
|
-
color: #B80000;
|
|
2064
|
-
}
|
|
2065
|
-
}.share_plugin[data-share] {
|
|
2066
|
-
pointer-events: auto;
|
|
2067
|
-
z-index: 5;
|
|
2068
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
2069
|
-
}
|
|
2070
|
-
.share_plugin[data-share].share-hide .share-button-container {
|
|
2071
|
-
right: -50px;
|
|
2072
|
-
}
|
|
2073
|
-
.share_plugin[data-share] .share-button-container {
|
|
2074
|
-
cursor: pointer;
|
|
2075
|
-
width: 36px;
|
|
2076
|
-
height: 36px;
|
|
2077
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
2078
|
-
border-radius: 4px;
|
|
2079
|
-
position: absolute;
|
|
2080
|
-
right: 10px;
|
|
2081
|
-
top: 10px;
|
|
2082
|
-
padding-top: 6px;
|
|
2083
|
-
transition: all 0.3s ease-out;
|
|
2084
|
-
}
|
|
2085
|
-
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
2086
|
-
background-color: transparent;
|
|
2087
|
-
border: 0;
|
|
2088
|
-
margin: 0 6px;
|
|
2089
|
-
padding: 0;
|
|
2090
|
-
cursor: pointer;
|
|
2091
|
-
display: inline-block;
|
|
2092
|
-
width: 19px;
|
|
2093
|
-
height: 20px;
|
|
2094
|
-
}
|
|
2095
|
-
.share_plugin[data-share] .share-container {
|
|
2096
|
-
pointer-events: auto;
|
|
2097
|
-
position: absolute;
|
|
2098
|
-
width: 280px;
|
|
2099
|
-
background-color: white;
|
|
2100
|
-
transform: translate(0, 50%);
|
|
2101
|
-
transform: translate(-50%, -50%);
|
|
2102
|
-
left: 50%;
|
|
2103
|
-
/* margin-left: -140px; */
|
|
2104
|
-
top: calc(50% - 20px);
|
|
2105
|
-
/* margin-top: -170px; */
|
|
2106
|
-
}
|
|
2107
|
-
.share_plugin[data-share] .share-container .share-container-header {
|
|
2108
|
-
text-align: left;
|
|
2109
|
-
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
2110
|
-
}
|
|
2111
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
2112
|
-
display: inline-block;
|
|
2113
|
-
font-size: 16px;
|
|
2114
|
-
margin: 5px;
|
|
2115
|
-
}
|
|
2116
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
2117
|
-
display: inline-block;
|
|
2118
|
-
width: 24px;
|
|
2119
|
-
float: right;
|
|
2120
|
-
margin: 5px;
|
|
2121
|
-
cursor: pointer;
|
|
2122
|
-
}
|
|
2123
|
-
.share_plugin[data-share] .share-container .share-container-main {
|
|
2124
|
-
margin-bottom: 8px;
|
|
2125
|
-
}
|
|
2126
|
-
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
2127
|
-
text-align: left;
|
|
2128
|
-
font-size: 14px;
|
|
2129
|
-
padding: 5px;
|
|
2130
|
-
}
|
|
2131
|
-
.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 {
|
|
2132
|
-
overflow: hidden;
|
|
2133
|
-
text-overflow: ellipsis;
|
|
2134
|
-
color: #818181;
|
|
2135
|
-
border: solid 1px #d3d3d3;
|
|
2136
|
-
width: calc(100% - 10px);
|
|
2137
|
-
padding: 5px;
|
|
2138
|
-
}
|
|
2139
|
-
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
2140
|
-
max-height: 90px;
|
|
2141
|
-
resize: none;
|
|
2142
|
-
}
|
|
2143
|
-
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
2144
|
-
width: 32px;
|
|
2145
|
-
display: inline-block;
|
|
2146
|
-
margin-right: 5px;
|
|
2147
|
-
cursor: pointer;
|
|
2148
|
-
}.player-logo[data-logo] {
|
|
2149
|
-
position: absolute;
|
|
2150
|
-
z-index: 2;
|
|
2151
|
-
width: 100%;
|
|
2152
|
-
height: 100%;
|
|
2152
|
+
.seek-time[data-seek-time] [data-duration]::before {
|
|
2153
|
+
content: "|";
|
|
2154
|
+
margin-right: 7px;
|
|
2155
|
+
}.player-logo[data-logo] {
|
|
2156
|
+
position: absolute;
|
|
2157
|
+
z-index: 2;
|
|
2158
|
+
width: 100%;
|
|
2159
|
+
height: 100%;
|
|
2153
2160
|
}
|
|
2154
2161
|
|
|
2155
2162
|
.clappr-logo {
|
|
2156
2163
|
position: absolute;
|
|
2157
|
-
}.media-control-pip button {
|
|
2158
|
-
float: right;
|
|
2159
|
-
height: 40px;
|
|
2160
|
-
margin-right: 20px;
|
|
2161
|
-
}
|
|
2162
|
-
.media-control-pip button svg {
|
|
2163
|
-
height: 20px;
|
|
2164
2164
|
}
|