@gcorevideo/player 2.22.14 → 2.22.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/clips/clips.ejs +1 -0
- package/assets/clips/clips.scss +23 -3
- package/assets/context-menu/context_menu.ejs +14 -6
- package/assets/context-menu/context_menu.scss +18 -4
- package/assets/level-selector/list.ejs +9 -3
- package/assets/media-control/media-control.ejs +1 -9
- package/assets/media-control/media-control.scss +0 -25
- package/assets/media-control/width370.scss +4 -4
- package/dist/core.js +5 -23
- package/dist/index.css +424 -412
- package/dist/index.js +294 -286
- package/dist/player.d.ts +211 -144
- package/dist/plugins/index.css +1513 -1501
- package/dist/plugins/index.js +224 -227
- package/docs/api/{player.audioselector.md → player.audiotracks.md} +3 -3
- package/docs/api/player.contextmenu.md +2 -0
- package/docs/api/player.contextmenupluginsettings.md +2 -40
- package/docs/api/{player.contextmenupluginsettings.label.md → player.contextmenupluginsettings.options.md} +3 -3
- package/docs/api/player.md +78 -23
- package/docs/api/player.mediacontrol.md +8 -14
- package/docs/api/player.mediacontrolelement.md +4 -2
- package/docs/api/{player.contextmenupluginsettings.preventshowcontextmenu.md → player.mediacontrollayerelement.md} +5 -3
- package/docs/api/player.mediacontrolleftelement.md +16 -0
- package/docs/api/player.mediacontrolrightelement.md +16 -0
- package/docs/api/player.mediacontrolsettings.md +23 -0
- package/docs/api/{player.contextmenupluginsettings.url.md → player.menuoption.md} +10 -3
- package/docs/api/player.playbackrate.md +1 -1
- package/docs/api/player.playerconfig.md +1 -1
- package/docs/api/player.playerconfig.playbacktype.md +1 -1
- package/docs/api/{player.levelselector.events.md → player.qualitylevels.events.md} +2 -2
- package/docs/api/{player.levelselector.md → player.qualitylevels.md} +6 -6
- package/docs/api/{player.levelselectorpluginsettings.labels.md → player.qualitylevelspluginsettings.labels.md} +2 -2
- package/docs/api/{player.levelselectorpluginsettings.md → player.qualitylevelspluginsettings.md} +6 -6
- package/docs/api/{player.levelselectorpluginsettings.restrictresolution.md → player.qualitylevelspluginsettings.restrictresolution.md} +2 -2
- package/lib/Player.d.ts.map +1 -1
- package/lib/Player.js +4 -1
- package/lib/playback/hls-playback/HlsPlayback.d.ts.map +1 -1
- package/lib/playback/hls-playback/HlsPlayback.js +0 -21
- package/lib/plugins/click-to-pause/ClickToPause.js +1 -1
- package/lib/plugins/clips/Clips.d.ts +21 -16
- package/lib/plugins/clips/Clips.d.ts.map +1 -1
- package/lib/plugins/clips/Clips.js +96 -98
- package/lib/plugins/clips/types.d.ts +19 -0
- package/lib/plugins/clips/types.d.ts.map +1 -0
- package/lib/plugins/clips/types.js +1 -0
- package/lib/plugins/clips/utils.d.ts +4 -0
- package/lib/plugins/clips/utils.d.ts.map +1 -0
- package/lib/plugins/clips/utils.js +36 -0
- package/lib/plugins/context-menu/ContextMenu.d.ts +33 -12
- package/lib/plugins/context-menu/ContextMenu.d.ts.map +1 -1
- package/lib/plugins/context-menu/ContextMenu.js +40 -37
- package/lib/plugins/media-control/MediaControl.d.ts +4 -7
- package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
- package/lib/plugins/media-control/MediaControl.js +19 -31
- package/lib/plugins/utils.d.ts +9 -1
- package/lib/plugins/utils.d.ts.map +1 -1
- package/lib/plugins/utils.js +9 -10
- package/lib/plugins/vast-ads/loaderxml.js +2 -2
- package/lib/testUtils.d.ts.map +1 -1
- package/lib/testUtils.js +2 -5
- package/package.json +1 -1
- package/src/Player.ts +4 -3
- package/src/playback/hls-playback/HlsPlayback.ts +0 -22
- package/src/plugins/click-to-pause/ClickToPause.ts +1 -1
- package/src/plugins/clips/Clips.ts +116 -135
- package/src/plugins/clips/__tests__/Clips.test.ts +72 -0
- package/src/plugins/clips/__tests__/__snapshots__/Clips.test.ts.snap +14 -0
- package/src/plugins/clips/types.ts +22 -0
- package/src/plugins/clips/utils.ts +54 -0
- package/src/plugins/context-menu/ContextMenu.ts +72 -56
- package/src/plugins/level-selector/__tests__/__snapshots__/QualityLevels.test.ts.snap +18 -18
- package/src/plugins/media-control/MediaControl.ts +31 -58
- package/src/plugins/media-control/__tests__/MediaControl.test.ts +66 -30
- package/src/plugins/media-control/__tests__/__snapshots__/MediaControl.test.ts.snap +7 -35
- package/src/plugins/utils.ts +9 -7
- package/src/plugins/vast-ads/loaderxml.ts +2 -2
- package/src/testUtils.ts +2 -5
- package/temp/player.api.json +332 -262
- package/tsconfig.tsbuildinfo +1 -1
- package/docs/api/player.mediacontrol.handlecustomarea.md +0 -52
package/dist/index.css
CHANGED
|
@@ -653,6 +653,28 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
653
653
|
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
|
|
654
654
|
width: 25%;
|
|
655
655
|
}
|
|
656
|
+
}@charset "UTF-8";
|
|
657
|
+
.media-control-clips {
|
|
658
|
+
display: flex;
|
|
659
|
+
gap: 6px;
|
|
660
|
+
}
|
|
661
|
+
.media-control-clips .media-clip-text {
|
|
662
|
+
text-overflow: ellipsis;
|
|
663
|
+
white-space: nowrap;
|
|
664
|
+
overflow: hidden;
|
|
665
|
+
display: inline-block;
|
|
666
|
+
text-overflow: ellipsis;
|
|
667
|
+
color: white;
|
|
668
|
+
cursor: default;
|
|
669
|
+
line-height: var(--bottom-panel);
|
|
670
|
+
position: relative;
|
|
671
|
+
}
|
|
672
|
+
.media-control-clips .media-clip-text::before {
|
|
673
|
+
content: "•";
|
|
674
|
+
padding-right: 6px;
|
|
675
|
+
}
|
|
676
|
+
.media-control-clips .media-clip-text {
|
|
677
|
+
max-width: 100px;
|
|
656
678
|
}.context-menu {
|
|
657
679
|
z-index: 999;
|
|
658
680
|
position: absolute;
|
|
@@ -673,148 +695,64 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
673
695
|
border: 1px solid #666;
|
|
674
696
|
border-radius: 4px;
|
|
675
697
|
}
|
|
676
|
-
.context-menu .context-menu-list
|
|
698
|
+
.context-menu .context-menu-list-item button {
|
|
699
|
+
border: none;
|
|
700
|
+
background-color: transparent;
|
|
701
|
+
padding: 0;
|
|
677
702
|
color: white;
|
|
678
|
-
|
|
703
|
+
display: flex;
|
|
704
|
+
gap: 8px;
|
|
705
|
+
align-items: center;
|
|
706
|
+
justify-content: center;
|
|
679
707
|
cursor: pointer;
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
height: 20px;
|
|
708
|
+
padding: 5px;
|
|
709
|
+
width: 100%;
|
|
683
710
|
}
|
|
684
|
-
.
|
|
711
|
+
.context-menu .context-menu-list-item_icon {
|
|
712
|
+
width: 20px;
|
|
713
|
+
height: 20px;
|
|
714
|
+
}.seek-time[data-seek-time] {
|
|
685
715
|
position: absolute;
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
716
|
+
white-space: nowrap;
|
|
717
|
+
height: 20px;
|
|
718
|
+
line-height: 20px;
|
|
719
|
+
font-size: 0;
|
|
720
|
+
left: -100%;
|
|
721
|
+
bottom: 55px;
|
|
722
|
+
background-color: rgba(2, 2, 2, 0.5);
|
|
690
723
|
z-index: 9999;
|
|
691
|
-
|
|
692
|
-
}
|
|
693
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
|
|
694
|
-
padding: 8px 0;
|
|
695
|
-
}
|
|
696
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
|
|
697
|
-
margin: 0;
|
|
698
|
-
text-align: left;
|
|
699
|
-
line-height: 22px;
|
|
700
|
-
padding: 5px 14px;
|
|
701
|
-
width: 250px;
|
|
702
|
-
font-size: 12px;
|
|
703
|
-
display: flex;
|
|
704
|
-
align-items: center;
|
|
705
|
-
justify-content: flex-start;
|
|
706
|
-
gap: 8px;
|
|
707
|
-
}
|
|
708
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
|
|
709
|
-
flex: 24px 0 0;
|
|
710
|
-
height: 24px;
|
|
711
|
-
}
|
|
712
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
|
|
713
|
-
visibility: hidden;
|
|
714
|
-
display: inline-block;
|
|
715
|
-
}
|
|
716
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
|
|
717
|
-
flex: 0 1 100%;
|
|
724
|
+
transition: opacity 0.1s ease;
|
|
718
725
|
}
|
|
719
|
-
.
|
|
720
|
-
|
|
721
|
-
height: 24px;
|
|
726
|
+
.seek-time[data-seek-time].hidden[data-seek-time] {
|
|
727
|
+
opacity: 0;
|
|
722
728
|
}
|
|
723
|
-
.
|
|
724
|
-
flex: 1 0 auto;
|
|
725
|
-
}.dvr-controls[data-dvr] {
|
|
729
|
+
.seek-time[data-seek-time] [data-seek-time] {
|
|
726
730
|
display: inline-block;
|
|
727
|
-
color:
|
|
728
|
-
line-height: 32px;
|
|
731
|
+
color: white;
|
|
729
732
|
font-size: 10px;
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
line-height: 40px;
|
|
734
|
-
margin-left: 0;
|
|
735
|
-
}
|
|
736
|
-
.dvr-controls[data-dvr] .live-info {
|
|
737
|
-
cursor: default;
|
|
738
|
-
text-transform: uppercase;
|
|
739
|
-
}
|
|
740
|
-
.dvr-controls[data-dvr] .live-info:before {
|
|
741
|
-
content: "";
|
|
742
|
-
display: inline-block;
|
|
743
|
-
position: relative;
|
|
744
|
-
width: 7px;
|
|
745
|
-
height: 7px;
|
|
746
|
-
border-radius: 3.5px;
|
|
747
|
-
margin-right: 3.5px;
|
|
748
|
-
background-color: var(--player-live-color);
|
|
749
|
-
}
|
|
750
|
-
.dvr-controls[data-dvr] .live-info.disabled {
|
|
751
|
-
opacity: 0.3;
|
|
752
|
-
}
|
|
753
|
-
.dvr-controls[data-dvr] .live-info.disabled:before {
|
|
754
|
-
background-color: var(--player-dvr-color);
|
|
755
|
-
}
|
|
756
|
-
.dvr-controls[data-dvr] .live-button {
|
|
757
|
-
cursor: pointer;
|
|
758
|
-
outline: none;
|
|
759
|
-
display: none;
|
|
760
|
-
border: 0;
|
|
761
|
-
color: var(--player-dvr-color);
|
|
762
|
-
background-color: transparent;
|
|
763
|
-
height: 32px;
|
|
764
|
-
padding: 0;
|
|
765
|
-
opacity: 0.7;
|
|
766
|
-
text-transform: uppercase;
|
|
767
|
-
transition: all 0.1s ease;
|
|
733
|
+
padding-left: 7px;
|
|
734
|
+
padding-right: 7px;
|
|
735
|
+
vertical-align: top;
|
|
768
736
|
}
|
|
769
|
-
.
|
|
770
|
-
content: "";
|
|
737
|
+
.seek-time[data-seek-time] [data-duration] {
|
|
771
738
|
display: inline-block;
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
margin-right: 3.5px;
|
|
777
|
-
background-color: var(--player-dvr-color);
|
|
778
|
-
}
|
|
779
|
-
.dvr-controls[data-dvr] .live-button:hover {
|
|
780
|
-
opacity: 1;
|
|
781
|
-
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
782
|
-
}
|
|
783
|
-
.dvr-controls[data-dvr] .live-info {
|
|
784
|
-
font-size: 14px;
|
|
785
|
-
letter-spacing: 0.8px;
|
|
786
|
-
font-weight: 500;
|
|
787
|
-
color: #fffffe;
|
|
788
|
-
margin-left: 21px;
|
|
789
|
-
}
|
|
790
|
-
.dvr-controls[data-dvr] .live-info::before {
|
|
791
|
-
width: 10px;
|
|
792
|
-
height: 10px;
|
|
793
|
-
border-radius: 50%;
|
|
794
|
-
margin-right: 8px;
|
|
795
|
-
background-color: #ed4f4a;
|
|
796
|
-
}
|
|
797
|
-
.dvr-controls[data-dvr] .live-button {
|
|
798
|
-
height: 40px;
|
|
799
|
-
opacity: 1;
|
|
800
|
-
font-size: 14px;
|
|
801
|
-
letter-spacing: 0.8px;
|
|
802
|
-
font-weight: 500;
|
|
803
|
-
margin-left: 20px;
|
|
739
|
+
color: rgba(255, 255, 255, 0.5);
|
|
740
|
+
font-size: 10px;
|
|
741
|
+
padding-right: 7px;
|
|
742
|
+
vertical-align: top;
|
|
804
743
|
}
|
|
805
|
-
.
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
744
|
+
.seek-time[data-seek-time] [data-duration]::before {
|
|
745
|
+
content: "|";
|
|
746
|
+
margin-right: 7px;
|
|
747
|
+
}.media-control-pip {
|
|
748
|
+
order: 95;
|
|
749
|
+
display: flex;
|
|
811
750
|
}
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
display: none;
|
|
751
|
+
.media-control-pip button {
|
|
752
|
+
height: 20px;
|
|
815
753
|
}
|
|
816
|
-
.
|
|
817
|
-
|
|
754
|
+
.media-control-pip button svg {
|
|
755
|
+
height: 20px;
|
|
818
756
|
}[data-player] {
|
|
819
757
|
--bottom-panel: 40px;
|
|
820
758
|
}
|
|
@@ -1029,12 +967,13 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1029
967
|
height: 17px;
|
|
1030
968
|
}
|
|
1031
969
|
.media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .media-clip-container .media-clip-text,
|
|
1032
|
-
.media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .media-
|
|
970
|
+
.media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .media-control-clips .media-clip-text {
|
|
1033
971
|
line-height: 33px;
|
|
1034
972
|
font-size: 11px;
|
|
1035
973
|
}
|
|
1036
|
-
.media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .media-clip-container .media-clip-text
|
|
1037
|
-
|
|
974
|
+
.media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .media-clip-container .media-clip-text,
|
|
975
|
+
.media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .media-control-clips .media-clip-text {
|
|
976
|
+
max-width: 50px;
|
|
1038
977
|
}
|
|
1039
978
|
.media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .drawer-container[data-volume] {
|
|
1040
979
|
height: 32px;
|
|
@@ -1205,27 +1144,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1205
1144
|
content: "|";
|
|
1206
1145
|
margin-right: 7px;
|
|
1207
1146
|
}
|
|
1208
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .media-clip-container {
|
|
1209
|
-
display: none;
|
|
1210
|
-
}
|
|
1211
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .media-clip-container .media-clip-text,
|
|
1212
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .media-clip-container .media-clip-point {
|
|
1213
|
-
text-overflow: ellipsis;
|
|
1214
|
-
white-space: nowrap;
|
|
1215
|
-
overflow: hidden;
|
|
1216
|
-
display: inline-block;
|
|
1217
|
-
float: left;
|
|
1218
|
-
color: white;
|
|
1219
|
-
cursor: default;
|
|
1220
|
-
line-height: var(--bottom-panel);
|
|
1221
|
-
position: relative;
|
|
1222
|
-
}
|
|
1223
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .media-clip-container .media-clip-point {
|
|
1224
|
-
margin-right: 6px;
|
|
1225
|
-
}
|
|
1226
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .media-clip-container .media-clip-text {
|
|
1227
|
-
max-width: calc(80% - 240px);
|
|
1228
|
-
}
|
|
1229
1147
|
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .bar-container[data-seekbar] {
|
|
1230
1148
|
position: absolute;
|
|
1231
1149
|
top: -11px;
|
|
@@ -1452,69 +1370,89 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1452
1370
|
}
|
|
1453
1371
|
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
|
|
1454
1372
|
display: none !important;
|
|
1455
|
-
}
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
.gear-wrapper .go-back {
|
|
1460
|
-
font-weight: 600;
|
|
1461
|
-
font-size: 14px;
|
|
1462
|
-
line-height: 20px;
|
|
1463
|
-
width: 100%;
|
|
1464
|
-
text-align: left;
|
|
1465
|
-
padding: 12px;
|
|
1466
|
-
}
|
|
1467
|
-
.gear-wrapper .go-back .arrow-left-icon {
|
|
1468
|
-
float: left;
|
|
1469
|
-
padding-top: 2px;
|
|
1470
|
-
padding-right: 2px;
|
|
1471
|
-
}
|
|
1472
|
-
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
1473
|
-
height: 16px;
|
|
1373
|
+
}.share_plugin[data-share] {
|
|
1374
|
+
pointer-events: auto;
|
|
1375
|
+
z-index: 5;
|
|
1376
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
1474
1377
|
}
|
|
1475
|
-
.
|
|
1476
|
-
|
|
1477
|
-
list-style-type: none;
|
|
1478
|
-
min-width: 60px;
|
|
1479
|
-
border-top: 2px solid rgb(36, 36, 36);
|
|
1378
|
+
.share_plugin[data-share].share-hide .share-button-container {
|
|
1379
|
+
right: -50px;
|
|
1480
1380
|
}
|
|
1481
|
-
.
|
|
1482
|
-
|
|
1483
|
-
|
|
1381
|
+
.share_plugin[data-share] .share-button-container {
|
|
1382
|
+
cursor: pointer;
|
|
1383
|
+
width: 36px;
|
|
1384
|
+
height: 36px;
|
|
1385
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
1386
|
+
border-radius: 4px;
|
|
1387
|
+
position: absolute;
|
|
1388
|
+
right: 10px;
|
|
1389
|
+
top: 10px;
|
|
1390
|
+
padding-top: 6px;
|
|
1391
|
+
transition: all 0.3s ease-out;
|
|
1484
1392
|
}
|
|
1485
|
-
.
|
|
1486
|
-
background-color:
|
|
1487
|
-
|
|
1393
|
+
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
1394
|
+
background-color: transparent;
|
|
1395
|
+
border: 0;
|
|
1396
|
+
margin: 0 6px;
|
|
1397
|
+
padding: 0;
|
|
1398
|
+
cursor: pointer;
|
|
1399
|
+
display: inline-block;
|
|
1400
|
+
width: 19px;
|
|
1401
|
+
height: 20px;
|
|
1488
1402
|
}
|
|
1489
|
-
.
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1403
|
+
.share_plugin[data-share] .share-container {
|
|
1404
|
+
pointer-events: auto;
|
|
1405
|
+
position: absolute;
|
|
1406
|
+
width: 280px;
|
|
1407
|
+
background-color: white;
|
|
1408
|
+
transform: translate(0, 50%);
|
|
1409
|
+
transform: translate(-50%, -50%);
|
|
1410
|
+
left: 50%;
|
|
1411
|
+
/* margin-left: -140px; */
|
|
1412
|
+
top: calc(50% - 20px);
|
|
1413
|
+
/* margin-top: -170px; */
|
|
1496
1414
|
}
|
|
1497
|
-
.
|
|
1498
|
-
|
|
1499
|
-
|
|
1415
|
+
.share_plugin[data-share] .share-container .share-container-header {
|
|
1416
|
+
text-align: left;
|
|
1417
|
+
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
1500
1418
|
}
|
|
1501
|
-
.
|
|
1502
|
-
|
|
1503
|
-
|
|
1419
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
1420
|
+
display: inline-block;
|
|
1421
|
+
font-size: 16px;
|
|
1422
|
+
margin: 5px;
|
|
1504
1423
|
}
|
|
1505
|
-
.
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
float:
|
|
1509
|
-
|
|
1424
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
1425
|
+
display: inline-block;
|
|
1426
|
+
width: 24px;
|
|
1427
|
+
float: right;
|
|
1428
|
+
margin: 5px;
|
|
1429
|
+
cursor: pointer;
|
|
1510
1430
|
}
|
|
1511
|
-
.
|
|
1512
|
-
|
|
1431
|
+
.share_plugin[data-share] .share-container .share-container-main {
|
|
1432
|
+
margin-bottom: 8px;
|
|
1513
1433
|
}
|
|
1514
|
-
.
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1434
|
+
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
1435
|
+
text-align: left;
|
|
1436
|
+
font-size: 14px;
|
|
1437
|
+
padding: 5px;
|
|
1438
|
+
}
|
|
1439
|
+
.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 {
|
|
1440
|
+
overflow: hidden;
|
|
1441
|
+
text-overflow: ellipsis;
|
|
1442
|
+
color: #818181;
|
|
1443
|
+
border: solid 1px #d3d3d3;
|
|
1444
|
+
width: calc(100% - 10px);
|
|
1445
|
+
padding: 5px;
|
|
1446
|
+
}
|
|
1447
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
1448
|
+
max-height: 90px;
|
|
1449
|
+
resize: none;
|
|
1450
|
+
}
|
|
1451
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
1452
|
+
width: 32px;
|
|
1453
|
+
display: inline-block;
|
|
1454
|
+
margin-right: 5px;
|
|
1455
|
+
cursor: pointer;
|
|
1518
1456
|
}.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
|
|
1519
1457
|
height: 0;
|
|
1520
1458
|
}
|
|
@@ -1536,67 +1474,85 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1536
1474
|
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
|
|
1537
1475
|
width: 33.3%;
|
|
1538
1476
|
height: 100%;
|
|
1539
|
-
}.
|
|
1477
|
+
}.player-poster[data-poster] {
|
|
1478
|
+
display: flex;
|
|
1479
|
+
justify-content: center;
|
|
1480
|
+
align-items: center;
|
|
1540
1481
|
position: absolute;
|
|
1541
|
-
|
|
1482
|
+
height: 100%;
|
|
1542
1483
|
width: 100%;
|
|
1543
|
-
|
|
1484
|
+
z-index: 998;
|
|
1485
|
+
top: 0;
|
|
1486
|
+
left: 0;
|
|
1487
|
+
background-color: #000;
|
|
1488
|
+
background-size: cover;
|
|
1489
|
+
background-repeat: no-repeat;
|
|
1490
|
+
background-position: 50% 50%;
|
|
1544
1491
|
}
|
|
1545
|
-
.
|
|
1546
|
-
|
|
1492
|
+
.player-poster[data-poster].clickable {
|
|
1493
|
+
cursor: pointer;
|
|
1547
1494
|
}
|
|
1548
|
-
.
|
|
1549
|
-
|
|
1550
|
-
position: relative;
|
|
1551
|
-
overflow: hidden;
|
|
1552
|
-
background-color: #000;
|
|
1495
|
+
.player-poster[data-poster]:hover .play-wrapper[data-poster] {
|
|
1496
|
+
opacity: 1;
|
|
1553
1497
|
}
|
|
1554
|
-
.
|
|
1555
|
-
|
|
1556
|
-
|
|
1498
|
+
.player-poster[data-poster] .play-wrapper[data-poster] {
|
|
1499
|
+
width: 100%;
|
|
1500
|
+
height: 25%;
|
|
1501
|
+
margin: 0 auto;
|
|
1502
|
+
opacity: 0.75;
|
|
1503
|
+
transition: opacity 0.1s ease;
|
|
1557
1504
|
}
|
|
1558
|
-
.
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
white-space: nowrap;
|
|
1562
|
-
overflow: hidden;
|
|
1563
|
-
text-overflow: ellipsis;
|
|
1564
|
-
color: white;
|
|
1565
|
-
position: absolute;
|
|
1566
|
-
bottom: 23px;
|
|
1567
|
-
width: 100px;
|
|
1505
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg {
|
|
1506
|
+
height: 100%;
|
|
1507
|
+
display: inline;
|
|
1568
1508
|
}
|
|
1569
|
-
.
|
|
1570
|
-
|
|
1571
|
-
|
|
1509
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg path {
|
|
1510
|
+
fill: #fff;
|
|
1511
|
+
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
1512
|
+
order: 99;
|
|
1513
|
+
height: 20px;
|
|
1514
|
+
}
|
|
1515
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
|
|
1572
1516
|
position: absolute;
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
border-radius:
|
|
1517
|
+
right: 16px;
|
|
1518
|
+
bottom: 52px;
|
|
1519
|
+
width: 250px;
|
|
1520
|
+
min-height: 48px;
|
|
1521
|
+
z-index: 9999;
|
|
1522
|
+
border-radius: 4px;
|
|
1579
1523
|
}
|
|
1580
|
-
.
|
|
1581
|
-
|
|
1524
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
|
|
1525
|
+
padding: 8px 0;
|
|
1582
1526
|
}
|
|
1583
|
-
.
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1527
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
|
|
1528
|
+
margin: 0;
|
|
1529
|
+
text-align: left;
|
|
1530
|
+
line-height: 22px;
|
|
1531
|
+
padding: 5px 14px;
|
|
1532
|
+
width: 250px;
|
|
1533
|
+
font-size: 12px;
|
|
1534
|
+
display: flex;
|
|
1535
|
+
align-items: center;
|
|
1536
|
+
justify-content: flex-start;
|
|
1537
|
+
gap: 8px;
|
|
1590
1538
|
}
|
|
1591
|
-
.
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
left: 0;
|
|
1595
|
-
height: 100%;
|
|
1596
|
-
white-space: nowrap;
|
|
1539
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
|
|
1540
|
+
flex: 24px 0 0;
|
|
1541
|
+
height: 24px;
|
|
1597
1542
|
}
|
|
1598
|
-
.
|
|
1599
|
-
|
|
1543
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
|
|
1544
|
+
visibility: hidden;
|
|
1545
|
+
display: inline-block;
|
|
1546
|
+
}
|
|
1547
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
|
|
1548
|
+
flex: 0 1 100%;
|
|
1549
|
+
}
|
|
1550
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
|
|
1551
|
+
flex: 0 0 14px;
|
|
1552
|
+
height: 24px;
|
|
1553
|
+
}
|
|
1554
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
|
|
1555
|
+
flex: 1 0 auto;
|
|
1600
1556
|
}*, :focus, :visited {
|
|
1601
1557
|
outline: none !important;
|
|
1602
1558
|
}
|
|
@@ -1745,89 +1701,227 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1745
1701
|
100% {
|
|
1746
1702
|
color: #B80000;
|
|
1747
1703
|
}
|
|
1748
|
-
}
|
|
1749
|
-
|
|
1750
|
-
z-index: 5;
|
|
1751
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
1704
|
+
}*, :focus, :visited {
|
|
1705
|
+
outline: none !important;
|
|
1752
1706
|
}
|
|
1753
|
-
|
|
1754
|
-
|
|
1707
|
+
|
|
1708
|
+
.gear-wrapper .go-back {
|
|
1709
|
+
font-weight: 600;
|
|
1710
|
+
font-size: 14px;
|
|
1711
|
+
line-height: 20px;
|
|
1712
|
+
width: 100%;
|
|
1713
|
+
text-align: left;
|
|
1714
|
+
padding: 12px;
|
|
1755
1715
|
}
|
|
1756
|
-
.
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
1761
|
-
border-radius: 4px;
|
|
1762
|
-
position: absolute;
|
|
1763
|
-
right: 10px;
|
|
1764
|
-
top: 10px;
|
|
1765
|
-
padding-top: 6px;
|
|
1766
|
-
transition: all 0.3s ease-out;
|
|
1716
|
+
.gear-wrapper .go-back .arrow-left-icon {
|
|
1717
|
+
float: left;
|
|
1718
|
+
padding-top: 2px;
|
|
1719
|
+
padding-right: 2px;
|
|
1767
1720
|
}
|
|
1768
|
-
.
|
|
1769
|
-
|
|
1770
|
-
border: 0;
|
|
1771
|
-
margin: 0 6px;
|
|
1772
|
-
padding: 0;
|
|
1773
|
-
cursor: pointer;
|
|
1774
|
-
display: inline-block;
|
|
1775
|
-
width: 19px;
|
|
1776
|
-
height: 20px;
|
|
1721
|
+
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
1722
|
+
height: 16px;
|
|
1777
1723
|
}
|
|
1778
|
-
.
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
width:
|
|
1782
|
-
|
|
1783
|
-
transform: translate(0, 50%);
|
|
1784
|
-
transform: translate(-50%, -50%);
|
|
1785
|
-
left: 50%;
|
|
1786
|
-
/* margin-left: -140px; */
|
|
1787
|
-
top: calc(50% - 20px);
|
|
1788
|
-
/* margin-top: -170px; */
|
|
1724
|
+
.gear-wrapper ul.gear-sub-menu {
|
|
1725
|
+
width: 100%;
|
|
1726
|
+
list-style-type: none;
|
|
1727
|
+
min-width: 60px;
|
|
1728
|
+
border-top: 2px solid rgb(36, 36, 36);
|
|
1789
1729
|
}
|
|
1790
|
-
.
|
|
1730
|
+
.gear-wrapper ul.gear-sub-menu li {
|
|
1731
|
+
font-size: 12px;
|
|
1791
1732
|
text-align: left;
|
|
1792
|
-
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
1793
1733
|
}
|
|
1794
|
-
.
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
margin: 5px;
|
|
1734
|
+
.gear-wrapper ul.gear-sub-menu li[data-title] {
|
|
1735
|
+
background-color: #c3c2c2;
|
|
1736
|
+
padding: 5px;
|
|
1798
1737
|
}
|
|
1799
|
-
.
|
|
1800
|
-
display:
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1738
|
+
.gear-wrapper ul.gear-sub-menu li a {
|
|
1739
|
+
display: block;
|
|
1740
|
+
text-decoration: none;
|
|
1741
|
+
height: 32px;
|
|
1742
|
+
padding: 5px 10px;
|
|
1743
|
+
line-height: 22px;
|
|
1744
|
+
color: #fffffe;
|
|
1745
|
+
}
|
|
1746
|
+
.gear-wrapper ul.gear-sub-menu li a:hover {
|
|
1747
|
+
color: white;
|
|
1748
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
1749
|
+
}
|
|
1750
|
+
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
1751
|
+
color: white;
|
|
1752
|
+
text-decoration: none;
|
|
1753
|
+
}
|
|
1754
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
1755
|
+
width: 30px;
|
|
1756
|
+
height: 20px;
|
|
1757
|
+
float: left;
|
|
1758
|
+
display: block;
|
|
1759
|
+
}
|
|
1760
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
1761
|
+
display: none;
|
|
1762
|
+
}
|
|
1763
|
+
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
1764
|
+
display: inline;
|
|
1765
|
+
}.dvr-controls[data-dvr] {
|
|
1766
|
+
display: inline-block;
|
|
1767
|
+
color: var(--player-dvr-color);
|
|
1768
|
+
line-height: 32px;
|
|
1769
|
+
font-size: 10px;
|
|
1770
|
+
font-weight: bold;
|
|
1771
|
+
margin-left: 6px;
|
|
1772
|
+
height: 40px;
|
|
1773
|
+
line-height: 40px;
|
|
1774
|
+
margin-left: 0;
|
|
1775
|
+
}
|
|
1776
|
+
.dvr-controls[data-dvr] .live-info {
|
|
1777
|
+
cursor: default;
|
|
1778
|
+
text-transform: uppercase;
|
|
1779
|
+
}
|
|
1780
|
+
.dvr-controls[data-dvr] .live-info:before {
|
|
1781
|
+
content: "";
|
|
1782
|
+
display: inline-block;
|
|
1783
|
+
position: relative;
|
|
1784
|
+
width: 7px;
|
|
1785
|
+
height: 7px;
|
|
1786
|
+
border-radius: 3.5px;
|
|
1787
|
+
margin-right: 3.5px;
|
|
1788
|
+
background-color: var(--player-live-color);
|
|
1789
|
+
}
|
|
1790
|
+
.dvr-controls[data-dvr] .live-info.disabled {
|
|
1791
|
+
opacity: 0.3;
|
|
1792
|
+
}
|
|
1793
|
+
.dvr-controls[data-dvr] .live-info.disabled:before {
|
|
1794
|
+
background-color: var(--player-dvr-color);
|
|
1795
|
+
}
|
|
1796
|
+
.dvr-controls[data-dvr] .live-button {
|
|
1804
1797
|
cursor: pointer;
|
|
1798
|
+
outline: none;
|
|
1799
|
+
display: none;
|
|
1800
|
+
border: 0;
|
|
1801
|
+
color: var(--player-dvr-color);
|
|
1802
|
+
background-color: transparent;
|
|
1803
|
+
height: 32px;
|
|
1804
|
+
padding: 0;
|
|
1805
|
+
opacity: 0.7;
|
|
1806
|
+
text-transform: uppercase;
|
|
1807
|
+
transition: all 0.1s ease;
|
|
1805
1808
|
}
|
|
1806
|
-
.
|
|
1807
|
-
|
|
1809
|
+
.dvr-controls[data-dvr] .live-button:before {
|
|
1810
|
+
content: "";
|
|
1811
|
+
display: inline-block;
|
|
1812
|
+
position: relative;
|
|
1813
|
+
width: 7px;
|
|
1814
|
+
height: 7px;
|
|
1815
|
+
border-radius: 3.5px;
|
|
1816
|
+
margin-right: 3.5px;
|
|
1817
|
+
background-color: var(--player-dvr-color);
|
|
1808
1818
|
}
|
|
1809
|
-
.
|
|
1810
|
-
|
|
1819
|
+
.dvr-controls[data-dvr] .live-button:hover {
|
|
1820
|
+
opacity: 1;
|
|
1821
|
+
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
1822
|
+
}
|
|
1823
|
+
.dvr-controls[data-dvr] .live-info {
|
|
1811
1824
|
font-size: 14px;
|
|
1812
|
-
|
|
1825
|
+
letter-spacing: 0.8px;
|
|
1826
|
+
font-weight: 500;
|
|
1827
|
+
color: #fffffe;
|
|
1828
|
+
margin-left: 21px;
|
|
1813
1829
|
}
|
|
1814
|
-
.
|
|
1830
|
+
.dvr-controls[data-dvr] .live-info::before {
|
|
1831
|
+
width: 10px;
|
|
1832
|
+
height: 10px;
|
|
1833
|
+
border-radius: 50%;
|
|
1834
|
+
margin-right: 8px;
|
|
1835
|
+
background-color: #ed4f4a;
|
|
1836
|
+
}
|
|
1837
|
+
.dvr-controls[data-dvr] .live-button {
|
|
1838
|
+
height: 40px;
|
|
1839
|
+
opacity: 1;
|
|
1840
|
+
font-size: 14px;
|
|
1841
|
+
letter-spacing: 0.8px;
|
|
1842
|
+
font-weight: 500;
|
|
1843
|
+
margin-left: 20px;
|
|
1844
|
+
}
|
|
1845
|
+
.dvr-controls[data-dvr] .live-button::before {
|
|
1846
|
+
width: 10px;
|
|
1847
|
+
height: 10px;
|
|
1848
|
+
border-radius: 50%;
|
|
1849
|
+
margin-right: 8px;
|
|
1850
|
+
background-color: #cacaca;
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
.dvr .dvr-controls[data-dvr] .live-info {
|
|
1854
|
+
display: none;
|
|
1855
|
+
}
|
|
1856
|
+
.dvr .dvr-controls[data-dvr] .live-button {
|
|
1857
|
+
display: block;
|
|
1858
|
+
}.scrub-thumbnails {
|
|
1859
|
+
position: absolute;
|
|
1860
|
+
bottom: 52px;
|
|
1861
|
+
width: 100%;
|
|
1862
|
+
transition: opacity 0.3s ease;
|
|
1863
|
+
}
|
|
1864
|
+
.scrub-thumbnails.hidden {
|
|
1865
|
+
opacity: 0;
|
|
1866
|
+
}
|
|
1867
|
+
.scrub-thumbnails .thumbnail-container {
|
|
1868
|
+
display: inline-block;
|
|
1869
|
+
position: relative;
|
|
1870
|
+
overflow: hidden;
|
|
1871
|
+
background-color: #000;
|
|
1872
|
+
}
|
|
1873
|
+
.scrub-thumbnails .thumbnail-container .thumbnail-img {
|
|
1874
|
+
position: absolute;
|
|
1875
|
+
width: auto;
|
|
1876
|
+
}
|
|
1877
|
+
.scrub-thumbnails .thumbnails-text {
|
|
1878
|
+
background-color: rgba(74, 74, 74, 0.7);
|
|
1879
|
+
border-radius: 3px;
|
|
1880
|
+
white-space: nowrap;
|
|
1815
1881
|
overflow: hidden;
|
|
1816
1882
|
text-overflow: ellipsis;
|
|
1817
|
-
color:
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1883
|
+
color: white;
|
|
1884
|
+
position: absolute;
|
|
1885
|
+
bottom: 23px;
|
|
1886
|
+
width: 100px;
|
|
1821
1887
|
}
|
|
1822
|
-
.
|
|
1823
|
-
|
|
1824
|
-
|
|
1888
|
+
.scrub-thumbnails .spotlight {
|
|
1889
|
+
background-color: #4a4a4a;
|
|
1890
|
+
overflow: hidden;
|
|
1891
|
+
position: absolute;
|
|
1892
|
+
bottom: 0;
|
|
1893
|
+
left: 0;
|
|
1894
|
+
border-color: #4a4a4a;
|
|
1895
|
+
border-style: solid;
|
|
1896
|
+
border-width: 3px;
|
|
1897
|
+
border-radius: 3px;
|
|
1825
1898
|
}
|
|
1826
|
-
.
|
|
1827
|
-
width:
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1899
|
+
.scrub-thumbnails .spotlight img {
|
|
1900
|
+
width: auto;
|
|
1901
|
+
}
|
|
1902
|
+
.scrub-thumbnails .backdrop {
|
|
1903
|
+
position: absolute;
|
|
1904
|
+
left: 0;
|
|
1905
|
+
bottom: 0;
|
|
1906
|
+
right: 0;
|
|
1907
|
+
background-color: #000;
|
|
1908
|
+
overflow: hidden;
|
|
1909
|
+
}
|
|
1910
|
+
.scrub-thumbnails .backdrop .carousel {
|
|
1911
|
+
position: absolute;
|
|
1912
|
+
top: 0;
|
|
1913
|
+
left: 0;
|
|
1914
|
+
height: 100%;
|
|
1915
|
+
white-space: nowrap;
|
|
1916
|
+
}
|
|
1917
|
+
.scrub-thumbnails .backdrop .carousel img {
|
|
1918
|
+
width: auto;
|
|
1919
|
+
}.quality-levels li.disabled {
|
|
1920
|
+
opacity: 0.5;
|
|
1921
|
+
pointer-events: none;
|
|
1922
|
+
}
|
|
1923
|
+
.quality-levels li.current {
|
|
1924
|
+
background-color: #000;
|
|
1831
1925
|
}.spinner-three-bounce[data-spinner] {
|
|
1832
1926
|
position: absolute;
|
|
1833
1927
|
width: 70px;
|
|
@@ -1866,6 +1960,15 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1866
1960
|
40% {
|
|
1867
1961
|
transform: scale(1);
|
|
1868
1962
|
}
|
|
1963
|
+
}.player-logo[data-logo] {
|
|
1964
|
+
position: absolute;
|
|
1965
|
+
z-index: 2;
|
|
1966
|
+
width: 100%;
|
|
1967
|
+
height: 100%;
|
|
1968
|
+
}
|
|
1969
|
+
|
|
1970
|
+
.clappr-logo {
|
|
1971
|
+
position: absolute;
|
|
1869
1972
|
}*,
|
|
1870
1973
|
:focus,
|
|
1871
1974
|
:visited {
|
|
@@ -1940,95 +2043,4 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1940
2043
|
.ios-fullscreen::cue {
|
|
1941
2044
|
visibility: visible !important;
|
|
1942
2045
|
font-size: 1em !important;
|
|
1943
|
-
}.media-control-pip {
|
|
1944
|
-
order: 95;
|
|
1945
|
-
display: flex;
|
|
1946
|
-
}
|
|
1947
|
-
.media-control-pip button {
|
|
1948
|
-
height: 20px;
|
|
1949
|
-
}
|
|
1950
|
-
.media-control-pip button svg {
|
|
1951
|
-
height: 20px;
|
|
1952
|
-
}.player-logo[data-logo] {
|
|
1953
|
-
position: absolute;
|
|
1954
|
-
z-index: 2;
|
|
1955
|
-
width: 100%;
|
|
1956
|
-
height: 100%;
|
|
1957
|
-
}
|
|
1958
|
-
|
|
1959
|
-
.clappr-logo {
|
|
1960
|
-
position: absolute;
|
|
1961
|
-
}.quality-levels li.disabled {
|
|
1962
|
-
opacity: 0.5;
|
|
1963
|
-
pointer-events: none;
|
|
1964
|
-
}
|
|
1965
|
-
.quality-levels li.current {
|
|
1966
|
-
background-color: #000;
|
|
1967
|
-
}.player-poster[data-poster] {
|
|
1968
|
-
display: flex;
|
|
1969
|
-
justify-content: center;
|
|
1970
|
-
align-items: center;
|
|
1971
|
-
position: absolute;
|
|
1972
|
-
height: 100%;
|
|
1973
|
-
width: 100%;
|
|
1974
|
-
z-index: 998;
|
|
1975
|
-
top: 0;
|
|
1976
|
-
left: 0;
|
|
1977
|
-
background-color: #000;
|
|
1978
|
-
background-size: cover;
|
|
1979
|
-
background-repeat: no-repeat;
|
|
1980
|
-
background-position: 50% 50%;
|
|
1981
|
-
}
|
|
1982
|
-
.player-poster[data-poster].clickable {
|
|
1983
|
-
cursor: pointer;
|
|
1984
|
-
}
|
|
1985
|
-
.player-poster[data-poster]:hover .play-wrapper[data-poster] {
|
|
1986
|
-
opacity: 1;
|
|
1987
|
-
}
|
|
1988
|
-
.player-poster[data-poster] .play-wrapper[data-poster] {
|
|
1989
|
-
width: 100%;
|
|
1990
|
-
height: 25%;
|
|
1991
|
-
margin: 0 auto;
|
|
1992
|
-
opacity: 0.75;
|
|
1993
|
-
transition: opacity 0.1s ease;
|
|
1994
|
-
}
|
|
1995
|
-
.player-poster[data-poster] .play-wrapper[data-poster] svg {
|
|
1996
|
-
height: 100%;
|
|
1997
|
-
display: inline;
|
|
1998
|
-
}
|
|
1999
|
-
.player-poster[data-poster] .play-wrapper[data-poster] svg path {
|
|
2000
|
-
fill: #fff;
|
|
2001
|
-
}.seek-time[data-seek-time] {
|
|
2002
|
-
position: absolute;
|
|
2003
|
-
white-space: nowrap;
|
|
2004
|
-
height: 20px;
|
|
2005
|
-
line-height: 20px;
|
|
2006
|
-
font-size: 0;
|
|
2007
|
-
left: -100%;
|
|
2008
|
-
bottom: 55px;
|
|
2009
|
-
background-color: rgba(2, 2, 2, 0.5);
|
|
2010
|
-
z-index: 9999;
|
|
2011
|
-
transition: opacity 0.1s ease;
|
|
2012
|
-
}
|
|
2013
|
-
.seek-time[data-seek-time].hidden[data-seek-time] {
|
|
2014
|
-
opacity: 0;
|
|
2015
|
-
}
|
|
2016
|
-
.seek-time[data-seek-time] [data-seek-time] {
|
|
2017
|
-
display: inline-block;
|
|
2018
|
-
color: white;
|
|
2019
|
-
font-size: 10px;
|
|
2020
|
-
padding-left: 7px;
|
|
2021
|
-
padding-right: 7px;
|
|
2022
|
-
vertical-align: top;
|
|
2023
|
-
}
|
|
2024
|
-
.seek-time[data-seek-time] [data-duration] {
|
|
2025
|
-
display: inline-block;
|
|
2026
|
-
color: rgba(255, 255, 255, 0.5);
|
|
2027
|
-
font-size: 10px;
|
|
2028
|
-
padding-right: 7px;
|
|
2029
|
-
vertical-align: top;
|
|
2030
|
-
}
|
|
2031
|
-
.seek-time[data-seek-time] [data-duration]::before {
|
|
2032
|
-
content: "|";
|
|
2033
|
-
margin-right: 7px;
|
|
2034
2046
|
}
|