@gcorevideo/player 2.20.20 → 2.20.22
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 +4 -2
- package/dist/index.css +539 -539
- package/dist/index.js +22 -13
- package/dist/plugins/index.css +569 -569
- package/dist/plugins/index.js +19 -12
- package/lib/playback/HTML5Video.d.ts.map +1 -1
- package/lib/playback/HTML5Video.js +4 -2
- package/lib/plugins/source-controller/SourceController.d.ts.map +1 -1
- package/lib/plugins/source-controller/SourceController.js +1 -0
- package/lib/plugins/spinner-three-bounce/SpinnerThreeBounce.d.ts +2 -0
- package/lib/plugins/spinner-three-bounce/SpinnerThreeBounce.d.ts.map +1 -1
- package/lib/plugins/spinner-three-bounce/SpinnerThreeBounce.js +17 -11
- package/package.json +1 -1
- package/src/playback/HTML5Video.ts +4 -2
- package/src/plugins/source-controller/SourceController.ts +1 -0
- package/src/plugins/spinner-three-bounce/SpinnerThreeBounce.ts +19 -10
- package/tsconfig.tsbuildinfo +1 -1
package/dist/index.css
CHANGED
|
@@ -308,8 +308,185 @@
|
|
|
308
308
|
}
|
|
309
309
|
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
310
310
|
fill: #151515 !important;
|
|
311
|
+
}.context-menu {
|
|
312
|
+
z-index: 999;
|
|
313
|
+
position: absolute;
|
|
314
|
+
top: 0;
|
|
315
|
+
left: 0;
|
|
316
|
+
text-align: center;
|
|
317
|
+
}
|
|
318
|
+
.context-menu .context-menu-list {
|
|
319
|
+
font-family: "Proxima Nova", sans-serif;
|
|
320
|
+
font-size: 12px;
|
|
321
|
+
line-height: 12px;
|
|
322
|
+
list-style-type: none;
|
|
323
|
+
text-align: left;
|
|
324
|
+
padding: 5px;
|
|
325
|
+
margin-left: auto;
|
|
326
|
+
margin-right: auto;
|
|
327
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
328
|
+
border: 1px solid #666;
|
|
329
|
+
border-radius: 4px;
|
|
330
|
+
}
|
|
331
|
+
.context-menu .context-menu-list .context-menu-list-item {
|
|
332
|
+
color: white;
|
|
333
|
+
padding: 5px;
|
|
334
|
+
cursor: pointer;
|
|
311
335
|
}.clips.bar-container[data-seekbar] {
|
|
312
336
|
clip-path: url("#myClip");
|
|
337
|
+
}.dvr-controls[data-dvr-controls] {
|
|
338
|
+
display: inline-block;
|
|
339
|
+
float: left;
|
|
340
|
+
color: #fff;
|
|
341
|
+
line-height: 32px;
|
|
342
|
+
font-size: 10px;
|
|
343
|
+
font-weight: bold;
|
|
344
|
+
margin-left: 6px;
|
|
345
|
+
height: 40px;
|
|
346
|
+
line-height: 40px;
|
|
347
|
+
margin-left: 0;
|
|
348
|
+
}
|
|
349
|
+
.dvr-controls[data-dvr-controls] .live-info {
|
|
350
|
+
cursor: default;
|
|
351
|
+
font-family: "Roboto", "Open Sans", Arial, sans-serif;
|
|
352
|
+
text-transform: uppercase;
|
|
353
|
+
}
|
|
354
|
+
.dvr-controls[data-dvr-controls] .live-info:before {
|
|
355
|
+
content: "";
|
|
356
|
+
display: inline-block;
|
|
357
|
+
position: relative;
|
|
358
|
+
width: 7px;
|
|
359
|
+
height: 7px;
|
|
360
|
+
border-radius: 3.5px;
|
|
361
|
+
margin-right: 3.5px;
|
|
362
|
+
background-color: #ff0101;
|
|
363
|
+
}
|
|
364
|
+
.dvr-controls[data-dvr-controls] .live-info.disabled {
|
|
365
|
+
opacity: 0.3;
|
|
366
|
+
}
|
|
367
|
+
.dvr-controls[data-dvr-controls] .live-info.disabled:before {
|
|
368
|
+
background-color: #fff;
|
|
369
|
+
}
|
|
370
|
+
.dvr-controls[data-dvr-controls] .live-button {
|
|
371
|
+
cursor: pointer;
|
|
372
|
+
outline: none;
|
|
373
|
+
display: none;
|
|
374
|
+
border: 0;
|
|
375
|
+
color: #fff;
|
|
376
|
+
background-color: transparent;
|
|
377
|
+
height: 32px;
|
|
378
|
+
padding: 0;
|
|
379
|
+
opacity: 0.7;
|
|
380
|
+
font-family: "Roboto", "Open Sans", Arial, sans-serif;
|
|
381
|
+
text-transform: uppercase;
|
|
382
|
+
transition: all 0.1s ease;
|
|
383
|
+
}
|
|
384
|
+
.dvr-controls[data-dvr-controls] .live-button:before {
|
|
385
|
+
content: "";
|
|
386
|
+
display: inline-block;
|
|
387
|
+
position: relative;
|
|
388
|
+
width: 7px;
|
|
389
|
+
height: 7px;
|
|
390
|
+
border-radius: 3.5px;
|
|
391
|
+
margin-right: 3.5px;
|
|
392
|
+
background-color: #fff;
|
|
393
|
+
}
|
|
394
|
+
.dvr-controls[data-dvr-controls] .live-button:hover {
|
|
395
|
+
opacity: 1;
|
|
396
|
+
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
397
|
+
}
|
|
398
|
+
.dvr-controls[data-dvr-controls] .live-info {
|
|
399
|
+
font-size: 14px;
|
|
400
|
+
letter-spacing: 0.8px;
|
|
401
|
+
font-weight: 500;
|
|
402
|
+
color: #fffffe;
|
|
403
|
+
margin-left: 21px;
|
|
404
|
+
}
|
|
405
|
+
.dvr-controls[data-dvr-controls] .live-info::before {
|
|
406
|
+
width: 10px;
|
|
407
|
+
height: 10px;
|
|
408
|
+
border-radius: 50%;
|
|
409
|
+
margin-right: 8px;
|
|
410
|
+
background-color: #ed4f4a;
|
|
411
|
+
}
|
|
412
|
+
.dvr-controls[data-dvr-controls] .live-button {
|
|
413
|
+
height: 40px;
|
|
414
|
+
opacity: 1;
|
|
415
|
+
font-size: 14px;
|
|
416
|
+
letter-spacing: 0.8px;
|
|
417
|
+
font-weight: 500;
|
|
418
|
+
margin-left: 20px;
|
|
419
|
+
}
|
|
420
|
+
.dvr-controls[data-dvr-controls] .live-button::before {
|
|
421
|
+
width: 10px;
|
|
422
|
+
height: 10px;
|
|
423
|
+
border-radius: 50%;
|
|
424
|
+
margin-right: 8px;
|
|
425
|
+
background-color: #cacaca;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
.dvr .dvr-controls[data-dvr-controls] .live-info {
|
|
429
|
+
display: none;
|
|
430
|
+
}
|
|
431
|
+
.dvr .dvr-controls[data-dvr-controls] .live-button {
|
|
432
|
+
display: block;
|
|
433
|
+
}
|
|
434
|
+
.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] {
|
|
435
|
+
background-color: #005aff;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.media-control.live[data-media-control] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
|
|
439
|
+
background-color: #ff0101;
|
|
440
|
+
}.level-disabled {
|
|
441
|
+
opacity: 0.5;
|
|
442
|
+
pointer-events: none;
|
|
443
|
+
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
444
|
+
float: right;
|
|
445
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
446
|
+
}
|
|
447
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .button-gear {
|
|
448
|
+
height: 40px;
|
|
449
|
+
width: 40px;
|
|
450
|
+
padding-right: 20px;
|
|
451
|
+
}
|
|
452
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .button-gear svg {
|
|
453
|
+
height: 20px;
|
|
454
|
+
}
|
|
455
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
|
|
456
|
+
position: absolute;
|
|
457
|
+
right: 16px;
|
|
458
|
+
bottom: 52px;
|
|
459
|
+
display: none;
|
|
460
|
+
width: 250px;
|
|
461
|
+
min-height: 48px;
|
|
462
|
+
z-index: 9999;
|
|
463
|
+
border-radius: 4px;
|
|
464
|
+
}
|
|
465
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
|
|
466
|
+
padding: 8px 0;
|
|
467
|
+
}
|
|
468
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list svg {
|
|
469
|
+
float: left;
|
|
470
|
+
margin-right: 10px;
|
|
471
|
+
}
|
|
472
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
|
|
473
|
+
margin: 0;
|
|
474
|
+
text-align: left;
|
|
475
|
+
line-height: 22px;
|
|
476
|
+
padding: 5px 14px;
|
|
477
|
+
width: 250px;
|
|
478
|
+
font-size: 12px;
|
|
479
|
+
}
|
|
480
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_arrow-right-icon {
|
|
481
|
+
float: right;
|
|
482
|
+
margin-right: -14px;
|
|
483
|
+
}
|
|
484
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_value {
|
|
485
|
+
float: right;
|
|
486
|
+
margin-right: 8px;
|
|
487
|
+
}
|
|
488
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option svg {
|
|
489
|
+
height: 20px;
|
|
313
490
|
}:root {
|
|
314
491
|
--primary-background-color: #000;
|
|
315
492
|
--secondary-background-color: #262626;
|
|
@@ -692,9 +869,6 @@
|
|
|
692
869
|
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
|
|
693
870
|
width: 25%;
|
|
694
871
|
}
|
|
695
|
-
}.level-disabled {
|
|
696
|
-
opacity: 0.5;
|
|
697
|
-
pointer-events: none;
|
|
698
872
|
}*, :focus, :visited {
|
|
699
873
|
outline: none !important;
|
|
700
874
|
}
|
|
@@ -760,77 +934,6 @@
|
|
|
760
934
|
}
|
|
761
935
|
.gear-wrapper svg {
|
|
762
936
|
height: 20px;
|
|
763
|
-
}.context-menu {
|
|
764
|
-
z-index: 999;
|
|
765
|
-
position: absolute;
|
|
766
|
-
top: 0;
|
|
767
|
-
left: 0;
|
|
768
|
-
text-align: center;
|
|
769
|
-
}
|
|
770
|
-
.context-menu .context-menu-list {
|
|
771
|
-
font-family: "Proxima Nova", sans-serif;
|
|
772
|
-
font-size: 12px;
|
|
773
|
-
line-height: 12px;
|
|
774
|
-
list-style-type: none;
|
|
775
|
-
text-align: left;
|
|
776
|
-
padding: 5px;
|
|
777
|
-
margin-left: auto;
|
|
778
|
-
margin-right: auto;
|
|
779
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
780
|
-
border: 1px solid #666;
|
|
781
|
-
border-radius: 4px;
|
|
782
|
-
}
|
|
783
|
-
.context-menu .context-menu-list .context-menu-list-item {
|
|
784
|
-
color: white;
|
|
785
|
-
padding: 5px;
|
|
786
|
-
cursor: pointer;
|
|
787
|
-
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
788
|
-
float: right;
|
|
789
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
790
|
-
}
|
|
791
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .button-gear {
|
|
792
|
-
height: 40px;
|
|
793
|
-
width: 40px;
|
|
794
|
-
padding-right: 20px;
|
|
795
|
-
}
|
|
796
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .button-gear svg {
|
|
797
|
-
height: 20px;
|
|
798
|
-
}
|
|
799
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
|
|
800
|
-
position: absolute;
|
|
801
|
-
right: 16px;
|
|
802
|
-
bottom: 52px;
|
|
803
|
-
display: none;
|
|
804
|
-
width: 250px;
|
|
805
|
-
min-height: 48px;
|
|
806
|
-
z-index: 9999;
|
|
807
|
-
border-radius: 4px;
|
|
808
|
-
}
|
|
809
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
|
|
810
|
-
padding: 8px 0;
|
|
811
|
-
}
|
|
812
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list svg {
|
|
813
|
-
float: left;
|
|
814
|
-
margin-right: 10px;
|
|
815
|
-
}
|
|
816
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
|
|
817
|
-
margin: 0;
|
|
818
|
-
text-align: left;
|
|
819
|
-
line-height: 22px;
|
|
820
|
-
padding: 5px 14px;
|
|
821
|
-
width: 250px;
|
|
822
|
-
font-size: 12px;
|
|
823
|
-
}
|
|
824
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_arrow-right-icon {
|
|
825
|
-
float: right;
|
|
826
|
-
margin-right: -14px;
|
|
827
|
-
}
|
|
828
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_value {
|
|
829
|
-
float: right;
|
|
830
|
-
margin-right: 8px;
|
|
831
|
-
}
|
|
832
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option svg {
|
|
833
|
-
height: 20px;
|
|
834
937
|
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
835
938
|
color: #CCCACA;
|
|
836
939
|
position: absolute;
|
|
@@ -865,412 +968,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
865
968
|
cursor: pointer;
|
|
866
969
|
width: 30px;
|
|
867
970
|
margin: 15px auto 0;
|
|
868
|
-
}.share_plugin[data-share] {
|
|
869
|
-
pointer-events: auto;
|
|
870
|
-
z-index: 5;
|
|
871
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
872
|
-
}
|
|
873
|
-
.share_plugin[data-share].share-hide .share-button-container {
|
|
874
|
-
right: -50px;
|
|
875
|
-
}
|
|
876
|
-
.share_plugin[data-share] .share-button-container {
|
|
877
|
-
cursor: pointer;
|
|
878
|
-
width: 36px;
|
|
879
|
-
height: 36px;
|
|
880
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
881
|
-
border-radius: 4px;
|
|
882
|
-
position: absolute;
|
|
883
|
-
right: 10px;
|
|
884
|
-
top: 10px;
|
|
885
|
-
padding-top: 6px;
|
|
886
|
-
transition: all 0.3s ease-out;
|
|
887
|
-
}
|
|
888
|
-
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
889
|
-
background-color: transparent;
|
|
890
|
-
border: 0;
|
|
891
|
-
margin: 0 6px;
|
|
892
|
-
padding: 0;
|
|
893
|
-
cursor: pointer;
|
|
894
|
-
display: inline-block;
|
|
895
|
-
width: 19px;
|
|
896
|
-
height: 20px;
|
|
897
|
-
}
|
|
898
|
-
.share_plugin[data-share] .share-container {
|
|
899
|
-
pointer-events: auto;
|
|
900
|
-
position: absolute;
|
|
901
|
-
width: 280px;
|
|
902
|
-
background-color: white;
|
|
903
|
-
transform: translate(0, 50%);
|
|
904
|
-
transform: translate(-50%, -50%);
|
|
905
|
-
left: 50%;
|
|
906
|
-
/* margin-left: -140px; */
|
|
907
|
-
top: calc(50% - 20px);
|
|
908
|
-
/* margin-top: -170px; */
|
|
909
|
-
}
|
|
910
|
-
.share_plugin[data-share] .share-container .share-container-header {
|
|
911
|
-
text-align: left;
|
|
912
|
-
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
913
|
-
}
|
|
914
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
915
|
-
display: inline-block;
|
|
916
|
-
font-size: 16px;
|
|
917
|
-
margin: 5px;
|
|
918
|
-
}
|
|
919
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
920
|
-
display: inline-block;
|
|
921
|
-
width: 24px;
|
|
922
|
-
float: right;
|
|
923
|
-
margin: 5px;
|
|
924
|
-
cursor: pointer;
|
|
925
|
-
}
|
|
926
|
-
.share_plugin[data-share] .share-container .share-container-main {
|
|
927
|
-
margin-bottom: 8px;
|
|
928
|
-
}
|
|
929
|
-
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
930
|
-
text-align: left;
|
|
931
|
-
font-size: 14px;
|
|
932
|
-
padding: 5px;
|
|
933
|
-
}
|
|
934
|
-
.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 {
|
|
935
|
-
overflow: hidden;
|
|
936
|
-
text-overflow: ellipsis;
|
|
937
|
-
color: #818181;
|
|
938
|
-
border: solid 1px #d3d3d3;
|
|
939
|
-
width: calc(100% - 10px);
|
|
940
|
-
padding: 5px;
|
|
941
|
-
}
|
|
942
|
-
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
943
|
-
max-height: 90px;
|
|
944
|
-
resize: none;
|
|
945
|
-
}
|
|
946
|
-
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
947
|
-
width: 32px;
|
|
948
|
-
display: inline-block;
|
|
949
|
-
margin-right: 5px;
|
|
950
|
-
cursor: pointer;
|
|
951
|
-
}.spinner-three-bounce[data-spinner] {
|
|
952
|
-
position: absolute;
|
|
953
|
-
width: 70px;
|
|
954
|
-
text-align: center;
|
|
955
|
-
z-index: 999;
|
|
956
|
-
left: 0;
|
|
957
|
-
right: 0;
|
|
958
|
-
margin: 0 auto;
|
|
959
|
-
margin-left: auto;
|
|
960
|
-
margin-right: auto;
|
|
961
|
-
/* center vertically */
|
|
962
|
-
top: 50%;
|
|
963
|
-
transform: translateY(-50%);
|
|
964
|
-
}
|
|
965
|
-
.spinner-three-bounce[data-spinner] > div {
|
|
966
|
-
width: 18px;
|
|
967
|
-
height: 18px;
|
|
968
|
-
background-color: #FFF;
|
|
969
|
-
border-radius: 100%;
|
|
970
|
-
display: inline-block;
|
|
971
|
-
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
972
|
-
/* Prevent first frame from flickering when animation starts */
|
|
973
|
-
animation-fill-mode: both;
|
|
974
|
-
}
|
|
975
|
-
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
976
|
-
animation-delay: -0.32s;
|
|
977
|
-
}
|
|
978
|
-
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
979
|
-
animation-delay: -0.16s;
|
|
980
|
-
}
|
|
981
|
-
|
|
982
|
-
@keyframes bouncedelay {
|
|
983
|
-
0%, 80%, 100% {
|
|
984
|
-
transform: scale(0);
|
|
985
|
-
}
|
|
986
|
-
40% {
|
|
987
|
-
transform: scale(1);
|
|
988
|
-
}
|
|
989
|
-
}*, :focus, :visited {
|
|
990
|
-
outline: none !important;
|
|
991
|
-
}
|
|
992
|
-
|
|
993
|
-
.multicamera[data-multicamera] {
|
|
994
|
-
float: right;
|
|
995
|
-
margin-top: 4px;
|
|
996
|
-
position: relative;
|
|
997
|
-
margin-right: 20px;
|
|
998
|
-
width: 20px;
|
|
999
|
-
}
|
|
1000
|
-
.multicamera[data-multicamera] button {
|
|
1001
|
-
background-color: transparent;
|
|
1002
|
-
color: #fff;
|
|
1003
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1004
|
-
-webkit-font-smoothing: antialiased;
|
|
1005
|
-
border: none;
|
|
1006
|
-
font-size: 14px;
|
|
1007
|
-
padding: 0;
|
|
1008
|
-
}
|
|
1009
|
-
.multicamera[data-multicamera] button svg {
|
|
1010
|
-
height: 20px;
|
|
1011
|
-
position: relative;
|
|
1012
|
-
margin-top: 6px;
|
|
1013
|
-
}
|
|
1014
|
-
.multicamera[data-multicamera] button:hover {
|
|
1015
|
-
color: #c9c9c9;
|
|
1016
|
-
}
|
|
1017
|
-
.multicamera[data-multicamera] button.changing {
|
|
1018
|
-
animation: pulse 0.5s infinite alternate;
|
|
1019
|
-
}
|
|
1020
|
-
.multicamera[data-multicamera] button span.quality-arrow {
|
|
1021
|
-
width: 9px;
|
|
1022
|
-
height: 6px;
|
|
1023
|
-
margin-top: 11px;
|
|
1024
|
-
margin-left: 5px;
|
|
1025
|
-
}
|
|
1026
|
-
.multicamera[data-multicamera] > ul {
|
|
1027
|
-
padding: 6px 0;
|
|
1028
|
-
right: -24px;
|
|
1029
|
-
width: 245px;
|
|
1030
|
-
list-style-type: none;
|
|
1031
|
-
position: absolute;
|
|
1032
|
-
bottom: 48px;
|
|
1033
|
-
border-radius: 4px;
|
|
1034
|
-
display: none;
|
|
1035
|
-
background-color: rgba(74, 74, 74, 0.9);
|
|
1036
|
-
}
|
|
1037
|
-
.multicamera[data-multicamera] > ul::after {
|
|
1038
|
-
content: "";
|
|
1039
|
-
position: absolute;
|
|
1040
|
-
top: 100%;
|
|
1041
|
-
left: 85%;
|
|
1042
|
-
margin-left: -10px;
|
|
1043
|
-
width: 0;
|
|
1044
|
-
height: 0;
|
|
1045
|
-
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
1046
|
-
border-right: 10px solid transparent;
|
|
1047
|
-
border-left: 10px solid transparent;
|
|
1048
|
-
}
|
|
1049
|
-
.multicamera[data-multicamera] li {
|
|
1050
|
-
font-size: 10px;
|
|
1051
|
-
cursor: pointer;
|
|
1052
|
-
}
|
|
1053
|
-
.multicamera[data-multicamera] li .multicamera-item {
|
|
1054
|
-
display: flex;
|
|
1055
|
-
padding: 10px 0;
|
|
1056
|
-
justify-content: center;
|
|
1057
|
-
position: relative;
|
|
1058
|
-
}
|
|
1059
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
1060
|
-
pointer-events: none;
|
|
1061
|
-
}
|
|
1062
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
1063
|
-
opacity: 0.5;
|
|
1064
|
-
}
|
|
1065
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
1066
|
-
opacity: 0.5;
|
|
1067
|
-
}
|
|
1068
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
1069
|
-
background-color: rgba(0, 0, 0, 0);
|
|
1070
|
-
}
|
|
1071
|
-
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
1072
|
-
background-color: rgba(0, 0, 0, 0.3);
|
|
1073
|
-
}
|
|
1074
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
1075
|
-
width: 80px;
|
|
1076
|
-
height: 60px;
|
|
1077
|
-
}
|
|
1078
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
|
|
1079
|
-
width: 80px;
|
|
1080
|
-
height: 60px;
|
|
1081
|
-
}
|
|
1082
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
1083
|
-
width: 120px;
|
|
1084
|
-
text-align: left;
|
|
1085
|
-
margin-left: 15px;
|
|
1086
|
-
}
|
|
1087
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1088
|
-
width: 120px;
|
|
1089
|
-
height: 20px;
|
|
1090
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1091
|
-
font-size: 14px;
|
|
1092
|
-
font-weight: normal;
|
|
1093
|
-
font-style: normal;
|
|
1094
|
-
font-stretch: normal;
|
|
1095
|
-
line-height: 1.43;
|
|
1096
|
-
letter-spacing: normal;
|
|
1097
|
-
text-align: left;
|
|
1098
|
-
color: #fff;
|
|
1099
|
-
text-overflow: ellipsis;
|
|
1100
|
-
overflow: hidden;
|
|
1101
|
-
}
|
|
1102
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1103
|
-
opacity: 0.6;
|
|
1104
|
-
}
|
|
1105
|
-
.multicamera[data-multicamera] li[data-title] {
|
|
1106
|
-
background-color: #c3c2c2;
|
|
1107
|
-
padding: 5px;
|
|
1108
|
-
}
|
|
1109
|
-
.multicamera[data-multicamera] li a {
|
|
1110
|
-
color: #444;
|
|
1111
|
-
padding: 2px 10px;
|
|
1112
|
-
display: block;
|
|
1113
|
-
text-decoration: none;
|
|
1114
|
-
}
|
|
1115
|
-
.multicamera[data-multicamera] li a:hover {
|
|
1116
|
-
background-color: #555;
|
|
1117
|
-
color: white;
|
|
1118
|
-
}
|
|
1119
|
-
.multicamera[data-multicamera] li a:hover a {
|
|
1120
|
-
color: white;
|
|
1121
|
-
text-decoration: none;
|
|
1122
|
-
}
|
|
1123
|
-
.multicamera[data-multicamera] li.current a {
|
|
1124
|
-
color: #f00;
|
|
1125
|
-
}
|
|
1126
|
-
|
|
1127
|
-
@keyframes pulse {
|
|
1128
|
-
0% {
|
|
1129
|
-
color: #fff;
|
|
1130
|
-
}
|
|
1131
|
-
50% {
|
|
1132
|
-
color: #ff0101;
|
|
1133
|
-
}
|
|
1134
|
-
100% {
|
|
1135
|
-
color: #B80000;
|
|
1136
|
-
}
|
|
1137
|
-
}.player-poster[data-poster] {
|
|
1138
|
-
display: flex;
|
|
1139
|
-
justify-content: center;
|
|
1140
|
-
align-items: center;
|
|
1141
|
-
position: absolute;
|
|
1142
|
-
height: 100%;
|
|
1143
|
-
width: 100%;
|
|
1144
|
-
z-index: 998;
|
|
1145
|
-
top: 0;
|
|
1146
|
-
left: 0;
|
|
1147
|
-
background-color: #000;
|
|
1148
|
-
background-size: cover;
|
|
1149
|
-
background-repeat: no-repeat;
|
|
1150
|
-
background-position: 50% 50%;
|
|
1151
|
-
}
|
|
1152
|
-
.player-poster[data-poster].clickable {
|
|
1153
|
-
cursor: pointer;
|
|
1154
|
-
}
|
|
1155
|
-
.player-poster[data-poster]:hover .play-wrapper[data-poster] {
|
|
1156
|
-
opacity: 1;
|
|
1157
|
-
}
|
|
1158
|
-
.player-poster[data-poster] .play-wrapper[data-poster] {
|
|
1159
|
-
width: 100%;
|
|
1160
|
-
height: 25%;
|
|
1161
|
-
margin: 0 auto;
|
|
1162
|
-
opacity: 0.75;
|
|
1163
|
-
transition: opacity 0.1s ease;
|
|
1164
|
-
}
|
|
1165
|
-
.player-poster[data-poster] .play-wrapper[data-poster] svg {
|
|
1166
|
-
height: 100%;
|
|
1167
|
-
display: inline;
|
|
1168
|
-
}
|
|
1169
|
-
.player-poster[data-poster] .play-wrapper[data-poster] svg path {
|
|
1170
|
-
fill: #fff;
|
|
1171
|
-
}.dvr-controls[data-dvr-controls] {
|
|
1172
|
-
display: inline-block;
|
|
1173
|
-
float: left;
|
|
1174
|
-
color: #fff;
|
|
1175
|
-
line-height: 32px;
|
|
1176
|
-
font-size: 10px;
|
|
1177
|
-
font-weight: bold;
|
|
1178
|
-
margin-left: 6px;
|
|
1179
|
-
height: 40px;
|
|
1180
|
-
line-height: 40px;
|
|
1181
|
-
margin-left: 0;
|
|
1182
|
-
}
|
|
1183
|
-
.dvr-controls[data-dvr-controls] .live-info {
|
|
1184
|
-
cursor: default;
|
|
1185
|
-
font-family: "Roboto", "Open Sans", Arial, sans-serif;
|
|
1186
|
-
text-transform: uppercase;
|
|
1187
|
-
}
|
|
1188
|
-
.dvr-controls[data-dvr-controls] .live-info:before {
|
|
1189
|
-
content: "";
|
|
1190
|
-
display: inline-block;
|
|
1191
|
-
position: relative;
|
|
1192
|
-
width: 7px;
|
|
1193
|
-
height: 7px;
|
|
1194
|
-
border-radius: 3.5px;
|
|
1195
|
-
margin-right: 3.5px;
|
|
1196
|
-
background-color: #ff0101;
|
|
1197
|
-
}
|
|
1198
|
-
.dvr-controls[data-dvr-controls] .live-info.disabled {
|
|
1199
|
-
opacity: 0.3;
|
|
1200
|
-
}
|
|
1201
|
-
.dvr-controls[data-dvr-controls] .live-info.disabled:before {
|
|
1202
|
-
background-color: #fff;
|
|
1203
|
-
}
|
|
1204
|
-
.dvr-controls[data-dvr-controls] .live-button {
|
|
1205
|
-
cursor: pointer;
|
|
1206
|
-
outline: none;
|
|
1207
|
-
display: none;
|
|
1208
|
-
border: 0;
|
|
1209
|
-
color: #fff;
|
|
1210
|
-
background-color: transparent;
|
|
1211
|
-
height: 32px;
|
|
1212
|
-
padding: 0;
|
|
1213
|
-
opacity: 0.7;
|
|
1214
|
-
font-family: "Roboto", "Open Sans", Arial, sans-serif;
|
|
1215
|
-
text-transform: uppercase;
|
|
1216
|
-
transition: all 0.1s ease;
|
|
1217
|
-
}
|
|
1218
|
-
.dvr-controls[data-dvr-controls] .live-button:before {
|
|
1219
|
-
content: "";
|
|
1220
|
-
display: inline-block;
|
|
1221
|
-
position: relative;
|
|
1222
|
-
width: 7px;
|
|
1223
|
-
height: 7px;
|
|
1224
|
-
border-radius: 3.5px;
|
|
1225
|
-
margin-right: 3.5px;
|
|
1226
|
-
background-color: #fff;
|
|
1227
|
-
}
|
|
1228
|
-
.dvr-controls[data-dvr-controls] .live-button:hover {
|
|
1229
|
-
opacity: 1;
|
|
1230
|
-
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
1231
|
-
}
|
|
1232
|
-
.dvr-controls[data-dvr-controls] .live-info {
|
|
1233
|
-
font-size: 14px;
|
|
1234
|
-
letter-spacing: 0.8px;
|
|
1235
|
-
font-weight: 500;
|
|
1236
|
-
color: #fffffe;
|
|
1237
|
-
margin-left: 21px;
|
|
1238
|
-
}
|
|
1239
|
-
.dvr-controls[data-dvr-controls] .live-info::before {
|
|
1240
|
-
width: 10px;
|
|
1241
|
-
height: 10px;
|
|
1242
|
-
border-radius: 50%;
|
|
1243
|
-
margin-right: 8px;
|
|
1244
|
-
background-color: #ed4f4a;
|
|
1245
|
-
}
|
|
1246
|
-
.dvr-controls[data-dvr-controls] .live-button {
|
|
1247
|
-
height: 40px;
|
|
1248
|
-
opacity: 1;
|
|
1249
|
-
font-size: 14px;
|
|
1250
|
-
letter-spacing: 0.8px;
|
|
1251
|
-
font-weight: 500;
|
|
1252
|
-
margin-left: 20px;
|
|
1253
|
-
}
|
|
1254
|
-
.dvr-controls[data-dvr-controls] .live-button::before {
|
|
1255
|
-
width: 10px;
|
|
1256
|
-
height: 10px;
|
|
1257
|
-
border-radius: 50%;
|
|
1258
|
-
margin-right: 8px;
|
|
1259
|
-
background-color: #cacaca;
|
|
1260
|
-
}
|
|
1261
|
-
|
|
1262
|
-
.dvr .dvr-controls[data-dvr-controls] .live-info {
|
|
1263
|
-
display: none;
|
|
1264
|
-
}
|
|
1265
|
-
.dvr .dvr-controls[data-dvr-controls] .live-button {
|
|
1266
|
-
display: block;
|
|
1267
|
-
}
|
|
1268
|
-
.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] {
|
|
1269
|
-
background-color: #005aff;
|
|
1270
|
-
}
|
|
1271
|
-
|
|
1272
|
-
.media-control.live[data-media-control] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
|
|
1273
|
-
background-color: #ff0101;
|
|
1274
971
|
}.media-control-skin-1[data-media-control-skin-1] .media-control-quality,
|
|
1275
972
|
.media-control-skin-1[data-media-control-skin-1] .media-control-audio-tracks {
|
|
1276
973
|
display: block;
|
|
@@ -1909,43 +1606,236 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1909
1606
|
background-color: #005aff;
|
|
1910
1607
|
transition: all 0.1s ease-out;
|
|
1911
1608
|
}
|
|
1912
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber[data-volume] {
|
|
1913
|
-
position: absolute;
|
|
1914
|
-
transform: translateX(-50%);
|
|
1915
|
-
top: 3px;
|
|
1916
|
-
margin-left: 3px;
|
|
1917
|
-
width: 16px;
|
|
1918
|
-
height: 16px;
|
|
1919
|
-
opacity: 1;
|
|
1920
|
-
transition: all 0.1s ease-out;
|
|
1609
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber[data-volume] {
|
|
1610
|
+
position: absolute;
|
|
1611
|
+
transform: translateX(-50%);
|
|
1612
|
+
top: 3px;
|
|
1613
|
+
margin-left: 3px;
|
|
1614
|
+
width: 16px;
|
|
1615
|
+
height: 16px;
|
|
1616
|
+
opacity: 1;
|
|
1617
|
+
transition: all 0.1s ease-out;
|
|
1618
|
+
}
|
|
1619
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber[data-volume] .bar-scrubber-icon[data-volume] {
|
|
1620
|
+
position: absolute;
|
|
1621
|
+
left: 3px;
|
|
1622
|
+
top: 5px;
|
|
1623
|
+
width: 7px;
|
|
1624
|
+
height: 7px;
|
|
1625
|
+
border-radius: 50%;
|
|
1626
|
+
background-color: white;
|
|
1627
|
+
}
|
|
1628
|
+
.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] {
|
|
1629
|
+
float: left;
|
|
1630
|
+
width: 4px;
|
|
1631
|
+
padding-left: 2px;
|
|
1632
|
+
height: 12px;
|
|
1633
|
+
opacity: 0.5;
|
|
1634
|
+
box-shadow: inset 2px 0 0 white;
|
|
1635
|
+
transition: transform 0.2s ease-out;
|
|
1636
|
+
}
|
|
1637
|
+
.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].fill {
|
|
1638
|
+
box-shadow: inset 2px 0 0 #fff;
|
|
1639
|
+
opacity: 1;
|
|
1640
|
+
}
|
|
1641
|
+
.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]:nth-of-type(1) {
|
|
1642
|
+
padding-left: 0;
|
|
1643
|
+
}
|
|
1644
|
+
.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 {
|
|
1645
|
+
transform: scaleY(1.5);
|
|
1646
|
+
}*, :focus, :visited {
|
|
1647
|
+
outline: none !important;
|
|
1648
|
+
}
|
|
1649
|
+
|
|
1650
|
+
.multicamera[data-multicamera] {
|
|
1651
|
+
float: right;
|
|
1652
|
+
margin-top: 4px;
|
|
1653
|
+
position: relative;
|
|
1654
|
+
margin-right: 20px;
|
|
1655
|
+
width: 20px;
|
|
1656
|
+
}
|
|
1657
|
+
.multicamera[data-multicamera] button {
|
|
1658
|
+
background-color: transparent;
|
|
1659
|
+
color: #fff;
|
|
1660
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1661
|
+
-webkit-font-smoothing: antialiased;
|
|
1662
|
+
border: none;
|
|
1663
|
+
font-size: 14px;
|
|
1664
|
+
padding: 0;
|
|
1665
|
+
}
|
|
1666
|
+
.multicamera[data-multicamera] button svg {
|
|
1667
|
+
height: 20px;
|
|
1668
|
+
position: relative;
|
|
1669
|
+
margin-top: 6px;
|
|
1670
|
+
}
|
|
1671
|
+
.multicamera[data-multicamera] button:hover {
|
|
1672
|
+
color: #c9c9c9;
|
|
1673
|
+
}
|
|
1674
|
+
.multicamera[data-multicamera] button.changing {
|
|
1675
|
+
animation: pulse 0.5s infinite alternate;
|
|
1676
|
+
}
|
|
1677
|
+
.multicamera[data-multicamera] button span.quality-arrow {
|
|
1678
|
+
width: 9px;
|
|
1679
|
+
height: 6px;
|
|
1680
|
+
margin-top: 11px;
|
|
1681
|
+
margin-left: 5px;
|
|
1682
|
+
}
|
|
1683
|
+
.multicamera[data-multicamera] > ul {
|
|
1684
|
+
padding: 6px 0;
|
|
1685
|
+
right: -24px;
|
|
1686
|
+
width: 245px;
|
|
1687
|
+
list-style-type: none;
|
|
1688
|
+
position: absolute;
|
|
1689
|
+
bottom: 48px;
|
|
1690
|
+
border-radius: 4px;
|
|
1691
|
+
display: none;
|
|
1692
|
+
background-color: rgba(74, 74, 74, 0.9);
|
|
1693
|
+
}
|
|
1694
|
+
.multicamera[data-multicamera] > ul::after {
|
|
1695
|
+
content: "";
|
|
1696
|
+
position: absolute;
|
|
1697
|
+
top: 100%;
|
|
1698
|
+
left: 85%;
|
|
1699
|
+
margin-left: -10px;
|
|
1700
|
+
width: 0;
|
|
1701
|
+
height: 0;
|
|
1702
|
+
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
1703
|
+
border-right: 10px solid transparent;
|
|
1704
|
+
border-left: 10px solid transparent;
|
|
1705
|
+
}
|
|
1706
|
+
.multicamera[data-multicamera] li {
|
|
1707
|
+
font-size: 10px;
|
|
1708
|
+
cursor: pointer;
|
|
1709
|
+
}
|
|
1710
|
+
.multicamera[data-multicamera] li .multicamera-item {
|
|
1711
|
+
display: flex;
|
|
1712
|
+
padding: 10px 0;
|
|
1713
|
+
justify-content: center;
|
|
1714
|
+
position: relative;
|
|
1715
|
+
}
|
|
1716
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
1717
|
+
pointer-events: none;
|
|
1718
|
+
}
|
|
1719
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
1720
|
+
opacity: 0.5;
|
|
1721
|
+
}
|
|
1722
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
1723
|
+
opacity: 0.5;
|
|
1724
|
+
}
|
|
1725
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
1726
|
+
background-color: rgba(0, 0, 0, 0);
|
|
1727
|
+
}
|
|
1728
|
+
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
1729
|
+
background-color: rgba(0, 0, 0, 0.3);
|
|
1730
|
+
}
|
|
1731
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
1732
|
+
width: 80px;
|
|
1733
|
+
height: 60px;
|
|
1734
|
+
}
|
|
1735
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
|
|
1736
|
+
width: 80px;
|
|
1737
|
+
height: 60px;
|
|
1738
|
+
}
|
|
1739
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
1740
|
+
width: 120px;
|
|
1741
|
+
text-align: left;
|
|
1742
|
+
margin-left: 15px;
|
|
1743
|
+
}
|
|
1744
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1745
|
+
width: 120px;
|
|
1746
|
+
height: 20px;
|
|
1747
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1748
|
+
font-size: 14px;
|
|
1749
|
+
font-weight: normal;
|
|
1750
|
+
font-style: normal;
|
|
1751
|
+
font-stretch: normal;
|
|
1752
|
+
line-height: 1.43;
|
|
1753
|
+
letter-spacing: normal;
|
|
1754
|
+
text-align: left;
|
|
1755
|
+
color: #fff;
|
|
1756
|
+
text-overflow: ellipsis;
|
|
1757
|
+
overflow: hidden;
|
|
1758
|
+
}
|
|
1759
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1760
|
+
opacity: 0.6;
|
|
1761
|
+
}
|
|
1762
|
+
.multicamera[data-multicamera] li[data-title] {
|
|
1763
|
+
background-color: #c3c2c2;
|
|
1764
|
+
padding: 5px;
|
|
1765
|
+
}
|
|
1766
|
+
.multicamera[data-multicamera] li a {
|
|
1767
|
+
color: #444;
|
|
1768
|
+
padding: 2px 10px;
|
|
1769
|
+
display: block;
|
|
1770
|
+
text-decoration: none;
|
|
1771
|
+
}
|
|
1772
|
+
.multicamera[data-multicamera] li a:hover {
|
|
1773
|
+
background-color: #555;
|
|
1774
|
+
color: white;
|
|
1775
|
+
}
|
|
1776
|
+
.multicamera[data-multicamera] li a:hover a {
|
|
1777
|
+
color: white;
|
|
1778
|
+
text-decoration: none;
|
|
1921
1779
|
}
|
|
1922
|
-
.
|
|
1780
|
+
.multicamera[data-multicamera] li.current a {
|
|
1781
|
+
color: #f00;
|
|
1782
|
+
}
|
|
1783
|
+
|
|
1784
|
+
@keyframes pulse {
|
|
1785
|
+
0% {
|
|
1786
|
+
color: #fff;
|
|
1787
|
+
}
|
|
1788
|
+
50% {
|
|
1789
|
+
color: #ff0101;
|
|
1790
|
+
}
|
|
1791
|
+
100% {
|
|
1792
|
+
color: #B80000;
|
|
1793
|
+
}
|
|
1794
|
+
}.media-control-pip button {
|
|
1795
|
+
float: right;
|
|
1796
|
+
height: 40px;
|
|
1797
|
+
margin-right: 20px;
|
|
1798
|
+
}
|
|
1799
|
+
.media-control-pip button svg {
|
|
1800
|
+
height: 20px;
|
|
1801
|
+
}.spinner-three-bounce[data-spinner] {
|
|
1923
1802
|
position: absolute;
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1803
|
+
width: 70px;
|
|
1804
|
+
text-align: center;
|
|
1805
|
+
z-index: 999;
|
|
1806
|
+
left: 0;
|
|
1807
|
+
right: 0;
|
|
1808
|
+
margin: 0 auto;
|
|
1809
|
+
margin-left: auto;
|
|
1810
|
+
margin-right: auto;
|
|
1811
|
+
/* center vertically */
|
|
1812
|
+
top: 50%;
|
|
1813
|
+
transform: translateY(-50%);
|
|
1930
1814
|
}
|
|
1931
|
-
.
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1815
|
+
.spinner-three-bounce[data-spinner] > div {
|
|
1816
|
+
width: 18px;
|
|
1817
|
+
height: 18px;
|
|
1818
|
+
background-color: #FFF;
|
|
1819
|
+
border-radius: 100%;
|
|
1820
|
+
display: inline-block;
|
|
1821
|
+
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
1822
|
+
/* Prevent first frame from flickering when animation starts */
|
|
1823
|
+
animation-fill-mode: both;
|
|
1939
1824
|
}
|
|
1940
|
-
.
|
|
1941
|
-
|
|
1942
|
-
opacity: 1;
|
|
1825
|
+
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
1826
|
+
animation-delay: -0.32s;
|
|
1943
1827
|
}
|
|
1944
|
-
.
|
|
1945
|
-
|
|
1828
|
+
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
1829
|
+
animation-delay: -0.16s;
|
|
1946
1830
|
}
|
|
1947
|
-
|
|
1948
|
-
|
|
1831
|
+
|
|
1832
|
+
@keyframes bouncedelay {
|
|
1833
|
+
0%, 80%, 100% {
|
|
1834
|
+
transform: scale(0);
|
|
1835
|
+
}
|
|
1836
|
+
40% {
|
|
1837
|
+
transform: scale(1);
|
|
1838
|
+
}
|
|
1949
1839
|
}.seek-time[data-seek-time] {
|
|
1950
1840
|
position: absolute;
|
|
1951
1841
|
white-space: nowrap;
|
|
@@ -1979,27 +1869,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1979
1869
|
.seek-time[data-seek-time] [data-duration]::before {
|
|
1980
1870
|
content: "|";
|
|
1981
1871
|
margin-right: 7px;
|
|
1982
|
-
}.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
|
|
1983
|
-
height: 0;
|
|
1984
|
-
}
|
|
1985
|
-
|
|
1986
|
-
.skip_time_plugin[data-skip-time] {
|
|
1987
|
-
position: absolute;
|
|
1988
|
-
width: 100%;
|
|
1989
|
-
height: calc(100% - 50px);
|
|
1990
|
-
z-index: 9998;
|
|
1991
|
-
background-color: transparent;
|
|
1992
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1993
|
-
}
|
|
1994
|
-
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
|
|
1995
|
-
width: 100%;
|
|
1996
|
-
height: 100%;
|
|
1997
|
-
display: flex;
|
|
1998
|
-
justify-content: space-between;
|
|
1999
|
-
}
|
|
2000
|
-
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
|
|
2001
|
-
width: 33.3%;
|
|
2002
|
-
height: 100%;
|
|
2003
1872
|
}*, :focus, :visited {
|
|
2004
1873
|
outline: none !important;
|
|
2005
1874
|
}
|
|
@@ -2081,6 +1950,144 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
2081
1950
|
.ios-fullscreen::cue {
|
|
2082
1951
|
visibility: visible !important;
|
|
2083
1952
|
font-size: 1em !important;
|
|
1953
|
+
}.share_plugin[data-share] {
|
|
1954
|
+
pointer-events: auto;
|
|
1955
|
+
z-index: 5;
|
|
1956
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
1957
|
+
}
|
|
1958
|
+
.share_plugin[data-share].share-hide .share-button-container {
|
|
1959
|
+
right: -50px;
|
|
1960
|
+
}
|
|
1961
|
+
.share_plugin[data-share] .share-button-container {
|
|
1962
|
+
cursor: pointer;
|
|
1963
|
+
width: 36px;
|
|
1964
|
+
height: 36px;
|
|
1965
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
1966
|
+
border-radius: 4px;
|
|
1967
|
+
position: absolute;
|
|
1968
|
+
right: 10px;
|
|
1969
|
+
top: 10px;
|
|
1970
|
+
padding-top: 6px;
|
|
1971
|
+
transition: all 0.3s ease-out;
|
|
1972
|
+
}
|
|
1973
|
+
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
1974
|
+
background-color: transparent;
|
|
1975
|
+
border: 0;
|
|
1976
|
+
margin: 0 6px;
|
|
1977
|
+
padding: 0;
|
|
1978
|
+
cursor: pointer;
|
|
1979
|
+
display: inline-block;
|
|
1980
|
+
width: 19px;
|
|
1981
|
+
height: 20px;
|
|
1982
|
+
}
|
|
1983
|
+
.share_plugin[data-share] .share-container {
|
|
1984
|
+
pointer-events: auto;
|
|
1985
|
+
position: absolute;
|
|
1986
|
+
width: 280px;
|
|
1987
|
+
background-color: white;
|
|
1988
|
+
transform: translate(0, 50%);
|
|
1989
|
+
transform: translate(-50%, -50%);
|
|
1990
|
+
left: 50%;
|
|
1991
|
+
/* margin-left: -140px; */
|
|
1992
|
+
top: calc(50% - 20px);
|
|
1993
|
+
/* margin-top: -170px; */
|
|
1994
|
+
}
|
|
1995
|
+
.share_plugin[data-share] .share-container .share-container-header {
|
|
1996
|
+
text-align: left;
|
|
1997
|
+
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
1998
|
+
}
|
|
1999
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
2000
|
+
display: inline-block;
|
|
2001
|
+
font-size: 16px;
|
|
2002
|
+
margin: 5px;
|
|
2003
|
+
}
|
|
2004
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
2005
|
+
display: inline-block;
|
|
2006
|
+
width: 24px;
|
|
2007
|
+
float: right;
|
|
2008
|
+
margin: 5px;
|
|
2009
|
+
cursor: pointer;
|
|
2010
|
+
}
|
|
2011
|
+
.share_plugin[data-share] .share-container .share-container-main {
|
|
2012
|
+
margin-bottom: 8px;
|
|
2013
|
+
}
|
|
2014
|
+
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
2015
|
+
text-align: left;
|
|
2016
|
+
font-size: 14px;
|
|
2017
|
+
padding: 5px;
|
|
2018
|
+
}
|
|
2019
|
+
.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 {
|
|
2020
|
+
overflow: hidden;
|
|
2021
|
+
text-overflow: ellipsis;
|
|
2022
|
+
color: #818181;
|
|
2023
|
+
border: solid 1px #d3d3d3;
|
|
2024
|
+
width: calc(100% - 10px);
|
|
2025
|
+
padding: 5px;
|
|
2026
|
+
}
|
|
2027
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
2028
|
+
max-height: 90px;
|
|
2029
|
+
resize: none;
|
|
2030
|
+
}
|
|
2031
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
2032
|
+
width: 32px;
|
|
2033
|
+
display: inline-block;
|
|
2034
|
+
margin-right: 5px;
|
|
2035
|
+
cursor: pointer;
|
|
2036
|
+
}.player-poster[data-poster] {
|
|
2037
|
+
display: flex;
|
|
2038
|
+
justify-content: center;
|
|
2039
|
+
align-items: center;
|
|
2040
|
+
position: absolute;
|
|
2041
|
+
height: 100%;
|
|
2042
|
+
width: 100%;
|
|
2043
|
+
z-index: 998;
|
|
2044
|
+
top: 0;
|
|
2045
|
+
left: 0;
|
|
2046
|
+
background-color: #000;
|
|
2047
|
+
background-size: cover;
|
|
2048
|
+
background-repeat: no-repeat;
|
|
2049
|
+
background-position: 50% 50%;
|
|
2050
|
+
}
|
|
2051
|
+
.player-poster[data-poster].clickable {
|
|
2052
|
+
cursor: pointer;
|
|
2053
|
+
}
|
|
2054
|
+
.player-poster[data-poster]:hover .play-wrapper[data-poster] {
|
|
2055
|
+
opacity: 1;
|
|
2056
|
+
}
|
|
2057
|
+
.player-poster[data-poster] .play-wrapper[data-poster] {
|
|
2058
|
+
width: 100%;
|
|
2059
|
+
height: 25%;
|
|
2060
|
+
margin: 0 auto;
|
|
2061
|
+
opacity: 0.75;
|
|
2062
|
+
transition: opacity 0.1s ease;
|
|
2063
|
+
}
|
|
2064
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg {
|
|
2065
|
+
height: 100%;
|
|
2066
|
+
display: inline;
|
|
2067
|
+
}
|
|
2068
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg path {
|
|
2069
|
+
fill: #fff;
|
|
2070
|
+
}.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
|
|
2071
|
+
height: 0;
|
|
2072
|
+
}
|
|
2073
|
+
|
|
2074
|
+
.skip_time_plugin[data-skip-time] {
|
|
2075
|
+
position: absolute;
|
|
2076
|
+
width: 100%;
|
|
2077
|
+
height: calc(100% - 50px);
|
|
2078
|
+
z-index: 9998;
|
|
2079
|
+
background-color: transparent;
|
|
2080
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
2081
|
+
}
|
|
2082
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
|
|
2083
|
+
width: 100%;
|
|
2084
|
+
height: 100%;
|
|
2085
|
+
display: flex;
|
|
2086
|
+
justify-content: space-between;
|
|
2087
|
+
}
|
|
2088
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
|
|
2089
|
+
width: 33.3%;
|
|
2090
|
+
height: 100%;
|
|
2084
2091
|
}.player-logo[data-logo] {
|
|
2085
2092
|
position: absolute;
|
|
2086
2093
|
z-index: 2;
|
|
@@ -2090,13 +2097,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
2090
2097
|
|
|
2091
2098
|
.clappr-logo {
|
|
2092
2099
|
position: absolute;
|
|
2093
|
-
}.media-control-pip button {
|
|
2094
|
-
float: right;
|
|
2095
|
-
height: 40px;
|
|
2096
|
-
margin-right: 20px;
|
|
2097
|
-
}
|
|
2098
|
-
.media-control-pip button svg {
|
|
2099
|
-
height: 20px;
|
|
2100
2100
|
}.scrub-thumbnails {
|
|
2101
2101
|
position: absolute;
|
|
2102
2102
|
bottom: 52px;
|