@gcorevideo/player 2.22.15 → 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/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 +1 -1
- package/dist/index.css +602 -602
- package/dist/index.js +252 -229
- package/dist/player.d.ts +211 -144
- package/dist/plugins/index.css +1198 -1198
- package/dist/plugins/index.js +185 -167
- 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/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/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/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/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__/__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
|
@@ -122,6 +122,189 @@
|
|
|
122
122
|
.gplayer-lite-btn::-moz-focus-inner {
|
|
123
123
|
border: 0;
|
|
124
124
|
padding: 0;
|
|
125
|
+
}*,
|
|
126
|
+
:focus,
|
|
127
|
+
:visited {
|
|
128
|
+
outline: none !important;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.media-control-audiotracks {
|
|
132
|
+
position: relative;
|
|
133
|
+
}
|
|
134
|
+
.media-control-audiotracks button {
|
|
135
|
+
background-color: transparent;
|
|
136
|
+
color: #fff;
|
|
137
|
+
-webkit-font-smoothing: antialiased;
|
|
138
|
+
border: none;
|
|
139
|
+
cursor: pointer;
|
|
140
|
+
display: flex;
|
|
141
|
+
align-items: center;
|
|
142
|
+
padding: 0;
|
|
143
|
+
}
|
|
144
|
+
.media-control-audiotracks button .audio-text {
|
|
145
|
+
text-overflow: ellipsis;
|
|
146
|
+
overflow: hidden;
|
|
147
|
+
white-space: nowrap;
|
|
148
|
+
max-width: 100px;
|
|
149
|
+
background-color: transparent;
|
|
150
|
+
-webkit-font-smoothing: antialiased;
|
|
151
|
+
border: none;
|
|
152
|
+
cursor: pointer;
|
|
153
|
+
}
|
|
154
|
+
.media-control-audiotracks button:hover {
|
|
155
|
+
color: white;
|
|
156
|
+
}
|
|
157
|
+
.media-control-audiotracks button.changing {
|
|
158
|
+
animation: pulse 0.5s infinite alternate;
|
|
159
|
+
}
|
|
160
|
+
.media-control-audiotracks button span.audio-arrow {
|
|
161
|
+
width: 9px;
|
|
162
|
+
height: 6px;
|
|
163
|
+
margin-left: 5px;
|
|
164
|
+
}
|
|
165
|
+
.media-control-audiotracks .menu {
|
|
166
|
+
max-width: 114px;
|
|
167
|
+
list-style-type: none;
|
|
168
|
+
position: absolute;
|
|
169
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
170
|
+
border: none;
|
|
171
|
+
min-width: 60px;
|
|
172
|
+
border-radius: 4px;
|
|
173
|
+
bottom: 40px;
|
|
174
|
+
right: -2px;
|
|
175
|
+
}
|
|
176
|
+
.media-control-audiotracks .menu.hidden {
|
|
177
|
+
display: none;
|
|
178
|
+
}
|
|
179
|
+
.media-control-audiotracks li {
|
|
180
|
+
font-size: var(--font-size-media-controls-dropdown);
|
|
181
|
+
text-align: right;
|
|
182
|
+
height: 30px;
|
|
183
|
+
}
|
|
184
|
+
.media-control-audiotracks li[data-title] {
|
|
185
|
+
background-color: #c3c2c2;
|
|
186
|
+
padding: 5px;
|
|
187
|
+
}
|
|
188
|
+
.media-control-audiotracks li a {
|
|
189
|
+
display: block;
|
|
190
|
+
text-decoration: none;
|
|
191
|
+
text-overflow: ellipsis;
|
|
192
|
+
overflow: hidden;
|
|
193
|
+
white-space: nowrap;
|
|
194
|
+
height: 30px;
|
|
195
|
+
padding: 5px 10px;
|
|
196
|
+
color: #fffffe;
|
|
197
|
+
}
|
|
198
|
+
.media-control-audiotracks li a:hover {
|
|
199
|
+
text-decoration: none;
|
|
200
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
201
|
+
color: white;
|
|
202
|
+
}
|
|
203
|
+
.media-control-audiotracks li.current a {
|
|
204
|
+
color: #f00;
|
|
205
|
+
}
|
|
206
|
+
.media-control-audiotracks li:first-child a {
|
|
207
|
+
border-bottom-left-radius: 4px;
|
|
208
|
+
border-bottom-right-radius: 4px;
|
|
209
|
+
}
|
|
210
|
+
.media-control-audiotracks li:last-child a {
|
|
211
|
+
border-top-left-radius: 4px;
|
|
212
|
+
border-top-right-radius: 4px;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
@keyframes pulse {
|
|
216
|
+
0% {
|
|
217
|
+
color: #fff;
|
|
218
|
+
}
|
|
219
|
+
50% {
|
|
220
|
+
color: #ff0101;
|
|
221
|
+
}
|
|
222
|
+
100% {
|
|
223
|
+
color: #B80000;
|
|
224
|
+
}
|
|
225
|
+
}.big-mute-icon-wrapper[data-big-mute] {
|
|
226
|
+
position: absolute;
|
|
227
|
+
z-index: 9998;
|
|
228
|
+
background-color: transparent;
|
|
229
|
+
display: flex;
|
|
230
|
+
justify-content: center;
|
|
231
|
+
width: 100%;
|
|
232
|
+
height: calc(100% - 50px);
|
|
233
|
+
margin: 0 auto;
|
|
234
|
+
opacity: 0.75;
|
|
235
|
+
transition: opacity 0.1s ease;
|
|
236
|
+
pointer-events: auto;
|
|
237
|
+
}
|
|
238
|
+
.big-mute-icon-wrapper[data-big-mute].hide {
|
|
239
|
+
display: none;
|
|
240
|
+
}
|
|
241
|
+
.big-mute-icon-wrapper[data-big-mute]:hover {
|
|
242
|
+
cursor: pointer;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.big-mute-icon[data-big-mute-icon] {
|
|
246
|
+
display: flex;
|
|
247
|
+
align-items: center;
|
|
248
|
+
justify-content: center;
|
|
249
|
+
align-self: center;
|
|
250
|
+
width: 120px;
|
|
251
|
+
height: 120px;
|
|
252
|
+
border: 2px solid white;
|
|
253
|
+
border-radius: 50%;
|
|
254
|
+
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
255
|
+
filter: alpha(opacity=60);
|
|
256
|
+
opacity: 1;
|
|
257
|
+
box-shadow: 0 0 1px 0 white;
|
|
258
|
+
background: rgba(240, 243, 247, 0.9411764706);
|
|
259
|
+
z-index: 10000;
|
|
260
|
+
}
|
|
261
|
+
.big-mute-icon[data-big-mute-icon] svg {
|
|
262
|
+
margin-left: 5px;
|
|
263
|
+
width: 80px;
|
|
264
|
+
height: 80px;
|
|
265
|
+
}
|
|
266
|
+
.big-mute-icon[data-big-mute-icon] svg path {
|
|
267
|
+
fill: #1f1e1e !important;
|
|
268
|
+
}
|
|
269
|
+
.big-mute-icon[data-big-mute-icon]:hover {
|
|
270
|
+
background: rgba(240, 243, 247, 0.8784313725);
|
|
271
|
+
}
|
|
272
|
+
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
273
|
+
fill: #151515 !important;
|
|
274
|
+
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
275
|
+
color: #CCCACA;
|
|
276
|
+
position: absolute;
|
|
277
|
+
top: 0;
|
|
278
|
+
height: 100%;
|
|
279
|
+
width: 100%;
|
|
280
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
281
|
+
z-index: 2000;
|
|
282
|
+
display: flex;
|
|
283
|
+
flex-direction: column;
|
|
284
|
+
justify-content: center;
|
|
285
|
+
}
|
|
286
|
+
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
287
|
+
font-size: 14px;
|
|
288
|
+
color: #CCCACA;
|
|
289
|
+
margin-top: 45px;
|
|
290
|
+
}
|
|
291
|
+
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
292
|
+
font-weight: bold;
|
|
293
|
+
line-height: 30px;
|
|
294
|
+
font-size: 18px;
|
|
295
|
+
}
|
|
296
|
+
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
297
|
+
width: 90%;
|
|
298
|
+
margin: 0 auto;
|
|
299
|
+
}
|
|
300
|
+
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
301
|
+
font-size: 13px;
|
|
302
|
+
margin-top: 15px;
|
|
303
|
+
}
|
|
304
|
+
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
305
|
+
cursor: pointer;
|
|
306
|
+
width: 30px;
|
|
307
|
+
margin: 15px auto 0;
|
|
125
308
|
}:root {
|
|
126
309
|
--primary-background-color: #000;
|
|
127
310
|
--secondary-background-color: #262626;
|
|
@@ -470,43 +653,143 @@
|
|
|
470
653
|
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
|
|
471
654
|
width: 25%;
|
|
472
655
|
}
|
|
473
|
-
}
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
.container .media-control-notransition {
|
|
478
|
-
transition: none !important;
|
|
656
|
+
}@charset "UTF-8";
|
|
657
|
+
.media-control-clips {
|
|
658
|
+
display: flex;
|
|
659
|
+
gap: 6px;
|
|
479
660
|
}
|
|
480
|
-
.
|
|
481
|
-
|
|
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;
|
|
482
671
|
}
|
|
483
|
-
.
|
|
484
|
-
|
|
672
|
+
.media-control-clips .media-clip-text::before {
|
|
673
|
+
content: "•";
|
|
674
|
+
padding-right: 6px;
|
|
485
675
|
}
|
|
486
|
-
.
|
|
676
|
+
.media-control-clips .media-clip-text {
|
|
677
|
+
max-width: 100px;
|
|
678
|
+
}.context-menu {
|
|
679
|
+
z-index: 999;
|
|
487
680
|
position: absolute;
|
|
488
|
-
|
|
489
|
-
|
|
681
|
+
top: 0;
|
|
682
|
+
left: 0;
|
|
683
|
+
text-align: center;
|
|
490
684
|
}
|
|
491
|
-
.
|
|
492
|
-
|
|
493
|
-
|
|
685
|
+
.context-menu .context-menu-list {
|
|
686
|
+
font-family: "Proxima Nova", sans-serif;
|
|
687
|
+
font-size: 12px;
|
|
688
|
+
line-height: 12px;
|
|
689
|
+
list-style-type: none;
|
|
690
|
+
text-align: left;
|
|
691
|
+
padding: 5px;
|
|
692
|
+
margin-left: auto;
|
|
693
|
+
margin-right: auto;
|
|
694
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
695
|
+
border: 1px solid #666;
|
|
696
|
+
border-radius: 4px;
|
|
697
|
+
}
|
|
698
|
+
.context-menu .context-menu-list-item button {
|
|
699
|
+
border: none;
|
|
700
|
+
background-color: transparent;
|
|
701
|
+
padding: 0;
|
|
494
702
|
color: white;
|
|
495
|
-
display:
|
|
703
|
+
display: flex;
|
|
704
|
+
gap: 8px;
|
|
705
|
+
align-items: center;
|
|
706
|
+
justify-content: center;
|
|
707
|
+
cursor: pointer;
|
|
708
|
+
padding: 5px;
|
|
709
|
+
width: 100%;
|
|
496
710
|
}
|
|
497
|
-
.
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
margin-left: -60px;
|
|
711
|
+
.context-menu .context-menu-list-item_icon {
|
|
712
|
+
width: 20px;
|
|
713
|
+
height: 20px;
|
|
714
|
+
}.seek-time[data-seek-time] {
|
|
502
715
|
position: absolute;
|
|
503
|
-
|
|
504
|
-
height:
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
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);
|
|
723
|
+
z-index: 9999;
|
|
724
|
+
transition: opacity 0.1s ease;
|
|
725
|
+
}
|
|
726
|
+
.seek-time[data-seek-time].hidden[data-seek-time] {
|
|
727
|
+
opacity: 0;
|
|
728
|
+
}
|
|
729
|
+
.seek-time[data-seek-time] [data-seek-time] {
|
|
730
|
+
display: inline-block;
|
|
731
|
+
color: white;
|
|
732
|
+
font-size: 10px;
|
|
733
|
+
padding-left: 7px;
|
|
734
|
+
padding-right: 7px;
|
|
735
|
+
vertical-align: top;
|
|
736
|
+
}
|
|
737
|
+
.seek-time[data-seek-time] [data-duration] {
|
|
738
|
+
display: inline-block;
|
|
739
|
+
color: rgba(255, 255, 255, 0.5);
|
|
740
|
+
font-size: 10px;
|
|
741
|
+
padding-right: 7px;
|
|
742
|
+
vertical-align: top;
|
|
743
|
+
}
|
|
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;
|
|
750
|
+
}
|
|
751
|
+
.media-control-pip button {
|
|
752
|
+
height: 20px;
|
|
753
|
+
}
|
|
754
|
+
.media-control-pip button svg {
|
|
755
|
+
height: 20px;
|
|
756
|
+
}[data-player] {
|
|
757
|
+
--bottom-panel: 40px;
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
.container .media-control-notransition {
|
|
761
|
+
transition: none !important;
|
|
762
|
+
}
|
|
763
|
+
.container .player-poster[data-poster] .play-wrapper[data-poster] {
|
|
764
|
+
opacity: 1;
|
|
765
|
+
}
|
|
766
|
+
.container.crop-video [data-html5-video] {
|
|
767
|
+
object-fit: cover;
|
|
768
|
+
}
|
|
769
|
+
.container .cc-line {
|
|
770
|
+
position: absolute;
|
|
771
|
+
bottom: calc(var(--bottom-panel) + 5px);
|
|
772
|
+
width: 100%;
|
|
773
|
+
}
|
|
774
|
+
.container .cc-line p {
|
|
775
|
+
width: auto;
|
|
776
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
777
|
+
color: white;
|
|
778
|
+
display: inline-block;
|
|
779
|
+
}
|
|
780
|
+
.container .circle-poster[data-poster] {
|
|
781
|
+
top: 50%;
|
|
782
|
+
margin-top: -60px;
|
|
783
|
+
left: 50%;
|
|
784
|
+
margin-left: -60px;
|
|
785
|
+
position: absolute;
|
|
786
|
+
width: 120px;
|
|
787
|
+
height: 120px;
|
|
788
|
+
border: 2px solid white;
|
|
789
|
+
border-radius: 50%;
|
|
790
|
+
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
791
|
+
filter: alpha(opacity=60);
|
|
792
|
+
opacity: 1;
|
|
510
793
|
box-shadow: 0 0 1px 0 white;
|
|
511
794
|
}
|
|
512
795
|
.container .circle-poster[data-poster] svg {
|
|
@@ -684,12 +967,13 @@
|
|
|
684
967
|
height: 17px;
|
|
685
968
|
}
|
|
686
969
|
.media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .media-clip-container .media-clip-text,
|
|
687
|
-
.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 {
|
|
688
971
|
line-height: 33px;
|
|
689
972
|
font-size: 11px;
|
|
690
973
|
}
|
|
691
|
-
.media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .media-clip-container .media-clip-text
|
|
692
|
-
|
|
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;
|
|
693
977
|
}
|
|
694
978
|
.media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .drawer-container[data-volume] {
|
|
695
979
|
height: 32px;
|
|
@@ -860,27 +1144,6 @@
|
|
|
860
1144
|
content: "|";
|
|
861
1145
|
margin-right: 7px;
|
|
862
1146
|
}
|
|
863
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .media-clip-container {
|
|
864
|
-
display: none;
|
|
865
|
-
}
|
|
866
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .media-clip-container .media-clip-text,
|
|
867
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .media-clip-container .media-clip-point {
|
|
868
|
-
text-overflow: ellipsis;
|
|
869
|
-
white-space: nowrap;
|
|
870
|
-
overflow: hidden;
|
|
871
|
-
display: inline-block;
|
|
872
|
-
float: left;
|
|
873
|
-
color: white;
|
|
874
|
-
cursor: default;
|
|
875
|
-
line-height: var(--bottom-panel);
|
|
876
|
-
position: relative;
|
|
877
|
-
}
|
|
878
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .media-clip-container .media-clip-point {
|
|
879
|
-
margin-right: 6px;
|
|
880
|
-
}
|
|
881
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .media-clip-container .media-clip-text {
|
|
882
|
-
max-width: calc(80% - 240px);
|
|
883
|
-
}
|
|
884
1147
|
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .bar-container[data-seekbar] {
|
|
885
1148
|
position: absolute;
|
|
886
1149
|
top: -11px;
|
|
@@ -1107,227 +1370,189 @@
|
|
|
1107
1370
|
}
|
|
1108
1371
|
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
|
|
1109
1372
|
display: none !important;
|
|
1110
|
-
}.
|
|
1111
|
-
position: absolute;
|
|
1112
|
-
z-index: 9998;
|
|
1113
|
-
background-color: transparent;
|
|
1114
|
-
display: flex;
|
|
1115
|
-
justify-content: center;
|
|
1116
|
-
width: 100%;
|
|
1117
|
-
height: calc(100% - 50px);
|
|
1118
|
-
margin: 0 auto;
|
|
1119
|
-
opacity: 0.75;
|
|
1120
|
-
transition: opacity 0.1s ease;
|
|
1373
|
+
}.share_plugin[data-share] {
|
|
1121
1374
|
pointer-events: auto;
|
|
1375
|
+
z-index: 5;
|
|
1376
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
1122
1377
|
}
|
|
1123
|
-
.
|
|
1124
|
-
|
|
1378
|
+
.share_plugin[data-share].share-hide .share-button-container {
|
|
1379
|
+
right: -50px;
|
|
1125
1380
|
}
|
|
1126
|
-
.
|
|
1381
|
+
.share_plugin[data-share] .share-button-container {
|
|
1127
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;
|
|
1128
1392
|
}
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
border-radius: 50%;
|
|
1139
|
-
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
1140
|
-
filter: alpha(opacity=60);
|
|
1141
|
-
opacity: 1;
|
|
1142
|
-
box-shadow: 0 0 1px 0 white;
|
|
1143
|
-
background: rgba(240, 243, 247, 0.9411764706);
|
|
1144
|
-
z-index: 10000;
|
|
1145
|
-
}
|
|
1146
|
-
.big-mute-icon[data-big-mute-icon] svg {
|
|
1147
|
-
margin-left: 5px;
|
|
1148
|
-
width: 80px;
|
|
1149
|
-
height: 80px;
|
|
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;
|
|
1150
1402
|
}
|
|
1151
|
-
.
|
|
1152
|
-
|
|
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; */
|
|
1153
1414
|
}
|
|
1154
|
-
.
|
|
1155
|
-
|
|
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);
|
|
1156
1418
|
}
|
|
1157
|
-
.
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
width: 70px;
|
|
1162
|
-
text-align: center;
|
|
1163
|
-
z-index: 999;
|
|
1164
|
-
left: 0;
|
|
1165
|
-
right: 0;
|
|
1166
|
-
margin: 0 auto;
|
|
1167
|
-
margin-left: auto;
|
|
1168
|
-
margin-right: auto;
|
|
1169
|
-
/* center vertically */
|
|
1170
|
-
top: 50%;
|
|
1171
|
-
transform: translateY(-50%);
|
|
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;
|
|
1172
1423
|
}
|
|
1173
|
-
.
|
|
1174
|
-
width: 18px;
|
|
1175
|
-
height: 18px;
|
|
1176
|
-
background-color: #FFF;
|
|
1177
|
-
border-radius: 100%;
|
|
1424
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
1178
1425
|
display: inline-block;
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1426
|
+
width: 24px;
|
|
1427
|
+
float: right;
|
|
1428
|
+
margin: 5px;
|
|
1429
|
+
cursor: pointer;
|
|
1182
1430
|
}
|
|
1183
|
-
.
|
|
1184
|
-
|
|
1431
|
+
.share_plugin[data-share] .share-container .share-container-main {
|
|
1432
|
+
margin-bottom: 8px;
|
|
1185
1433
|
}
|
|
1186
|
-
.
|
|
1187
|
-
|
|
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;
|
|
1456
|
+
}.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
|
|
1457
|
+
height: 0;
|
|
1188
1458
|
}
|
|
1189
1459
|
|
|
1190
|
-
|
|
1191
|
-
0%, 80%, 100% {
|
|
1192
|
-
transform: scale(0);
|
|
1193
|
-
}
|
|
1194
|
-
40% {
|
|
1195
|
-
transform: scale(1);
|
|
1196
|
-
}
|
|
1197
|
-
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
1198
|
-
color: #CCCACA;
|
|
1460
|
+
.skip_time_plugin[data-skip-time] {
|
|
1199
1461
|
position: absolute;
|
|
1200
|
-
top: 0;
|
|
1201
|
-
height: 100%;
|
|
1202
1462
|
width: 100%;
|
|
1203
|
-
|
|
1204
|
-
z-index:
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
justify-content: center;
|
|
1463
|
+
height: calc(100% - 50px);
|
|
1464
|
+
z-index: 9998;
|
|
1465
|
+
background-color: transparent;
|
|
1466
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1208
1467
|
}
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
1215
|
-
font-weight: bold;
|
|
1216
|
-
line-height: 30px;
|
|
1217
|
-
font-size: 18px;
|
|
1218
|
-
}
|
|
1219
|
-
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
1220
|
-
width: 90%;
|
|
1221
|
-
margin: 0 auto;
|
|
1222
|
-
}
|
|
1223
|
-
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
1224
|
-
font-size: 13px;
|
|
1225
|
-
margin-top: 15px;
|
|
1226
|
-
}
|
|
1227
|
-
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
1228
|
-
cursor: pointer;
|
|
1229
|
-
width: 30px;
|
|
1230
|
-
margin: 15px auto 0;
|
|
1231
|
-
}*,
|
|
1232
|
-
:focus,
|
|
1233
|
-
:visited {
|
|
1234
|
-
outline: none !important;
|
|
1235
|
-
}
|
|
1236
|
-
|
|
1237
|
-
.media-control-audiotracks {
|
|
1238
|
-
position: relative;
|
|
1468
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
|
|
1469
|
+
width: 100%;
|
|
1470
|
+
height: 100%;
|
|
1471
|
+
display: flex;
|
|
1472
|
+
justify-content: space-between;
|
|
1239
1473
|
}
|
|
1240
|
-
.
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
border: none;
|
|
1245
|
-
cursor: pointer;
|
|
1474
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
|
|
1475
|
+
width: 33.3%;
|
|
1476
|
+
height: 100%;
|
|
1477
|
+
}.player-poster[data-poster] {
|
|
1246
1478
|
display: flex;
|
|
1479
|
+
justify-content: center;
|
|
1247
1480
|
align-items: center;
|
|
1248
|
-
|
|
1481
|
+
position: absolute;
|
|
1482
|
+
height: 100%;
|
|
1483
|
+
width: 100%;
|
|
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%;
|
|
1249
1491
|
}
|
|
1250
|
-
.
|
|
1251
|
-
text-overflow: ellipsis;
|
|
1252
|
-
overflow: hidden;
|
|
1253
|
-
white-space: nowrap;
|
|
1254
|
-
max-width: 100px;
|
|
1255
|
-
background-color: transparent;
|
|
1256
|
-
-webkit-font-smoothing: antialiased;
|
|
1257
|
-
border: none;
|
|
1492
|
+
.player-poster[data-poster].clickable {
|
|
1258
1493
|
cursor: pointer;
|
|
1259
1494
|
}
|
|
1260
|
-
.
|
|
1261
|
-
|
|
1495
|
+
.player-poster[data-poster]:hover .play-wrapper[data-poster] {
|
|
1496
|
+
opacity: 1;
|
|
1262
1497
|
}
|
|
1263
|
-
.
|
|
1264
|
-
|
|
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;
|
|
1265
1504
|
}
|
|
1266
|
-
.
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
margin-left: 5px;
|
|
1505
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg {
|
|
1506
|
+
height: 100%;
|
|
1507
|
+
display: inline;
|
|
1270
1508
|
}
|
|
1271
|
-
.
|
|
1272
|
-
|
|
1273
|
-
|
|
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 {
|
|
1274
1516
|
position: absolute;
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1517
|
+
right: 16px;
|
|
1518
|
+
bottom: 52px;
|
|
1519
|
+
width: 250px;
|
|
1520
|
+
min-height: 48px;
|
|
1521
|
+
z-index: 9999;
|
|
1278
1522
|
border-radius: 4px;
|
|
1279
|
-
bottom: 40px;
|
|
1280
|
-
right: -2px;
|
|
1281
|
-
}
|
|
1282
|
-
.media-control-audiotracks .menu.hidden {
|
|
1283
|
-
display: none;
|
|
1284
|
-
}
|
|
1285
|
-
.media-control-audiotracks li {
|
|
1286
|
-
font-size: var(--font-size-media-controls-dropdown);
|
|
1287
|
-
text-align: right;
|
|
1288
|
-
height: 30px;
|
|
1289
1523
|
}
|
|
1290
|
-
.media-control-
|
|
1291
|
-
|
|
1292
|
-
padding: 5px;
|
|
1524
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
|
|
1525
|
+
padding: 8px 0;
|
|
1293
1526
|
}
|
|
1294
|
-
.media-control-
|
|
1295
|
-
|
|
1296
|
-
text-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
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;
|
|
1303
1538
|
}
|
|
1304
|
-
.media-control-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
color: white;
|
|
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;
|
|
1308
1542
|
}
|
|
1309
|
-
.media-control-
|
|
1310
|
-
|
|
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;
|
|
1311
1546
|
}
|
|
1312
|
-
.media-control-
|
|
1313
|
-
|
|
1314
|
-
border-bottom-right-radius: 4px;
|
|
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%;
|
|
1315
1549
|
}
|
|
1316
|
-
.media-control-
|
|
1317
|
-
|
|
1318
|
-
|
|
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;
|
|
1319
1553
|
}
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
0% {
|
|
1323
|
-
color: #fff;
|
|
1324
|
-
}
|
|
1325
|
-
50% {
|
|
1326
|
-
color: #ff0101;
|
|
1327
|
-
}
|
|
1328
|
-
100% {
|
|
1329
|
-
color: #B80000;
|
|
1330
|
-
}
|
|
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;
|
|
1331
1556
|
}*, :focus, :visited {
|
|
1332
1557
|
outline: none !important;
|
|
1333
1558
|
}
|
|
@@ -1476,42 +1701,67 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1476
1701
|
100% {
|
|
1477
1702
|
color: #B80000;
|
|
1478
1703
|
}
|
|
1479
|
-
}
|
|
1480
|
-
|
|
1481
|
-
position: absolute;
|
|
1482
|
-
top: 0;
|
|
1483
|
-
left: 0;
|
|
1484
|
-
text-align: center;
|
|
1704
|
+
}*, :focus, :visited {
|
|
1705
|
+
outline: none !important;
|
|
1485
1706
|
}
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
font-
|
|
1489
|
-
|
|
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;
|
|
1715
|
+
}
|
|
1716
|
+
.gear-wrapper .go-back .arrow-left-icon {
|
|
1717
|
+
float: left;
|
|
1718
|
+
padding-top: 2px;
|
|
1719
|
+
padding-right: 2px;
|
|
1720
|
+
}
|
|
1721
|
+
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
1722
|
+
height: 16px;
|
|
1723
|
+
}
|
|
1724
|
+
.gear-wrapper ul.gear-sub-menu {
|
|
1725
|
+
width: 100%;
|
|
1490
1726
|
list-style-type: none;
|
|
1727
|
+
min-width: 60px;
|
|
1728
|
+
border-top: 2px solid rgb(36, 36, 36);
|
|
1729
|
+
}
|
|
1730
|
+
.gear-wrapper ul.gear-sub-menu li {
|
|
1731
|
+
font-size: 12px;
|
|
1491
1732
|
text-align: left;
|
|
1733
|
+
}
|
|
1734
|
+
.gear-wrapper ul.gear-sub-menu li[data-title] {
|
|
1735
|
+
background-color: #c3c2c2;
|
|
1492
1736
|
padding: 5px;
|
|
1493
|
-
margin-left: auto;
|
|
1494
|
-
margin-right: auto;
|
|
1495
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
1496
|
-
border: 1px solid #666;
|
|
1497
|
-
border-radius: 4px;
|
|
1498
1737
|
}
|
|
1499
|
-
.
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
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 {
|
|
1503
1747
|
color: white;
|
|
1504
|
-
|
|
1505
|
-
gap: 8px;
|
|
1506
|
-
align-items: center;
|
|
1507
|
-
justify-content: center;
|
|
1508
|
-
cursor: pointer;
|
|
1509
|
-
padding: 5px;
|
|
1510
|
-
width: 100%;
|
|
1748
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
1511
1749
|
}
|
|
1512
|
-
.
|
|
1513
|
-
|
|
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;
|
|
1514
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;
|
|
1515
1765
|
}.dvr-controls[data-dvr] {
|
|
1516
1766
|
display: inline-block;
|
|
1517
1767
|
color: var(--player-dvr-color);
|
|
@@ -1605,172 +1855,120 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1605
1855
|
}
|
|
1606
1856
|
.dvr .dvr-controls[data-dvr] .live-button {
|
|
1607
1857
|
display: block;
|
|
1608
|
-
}.
|
|
1609
|
-
order: 99;
|
|
1610
|
-
height: 20px;
|
|
1611
|
-
}
|
|
1612
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
|
|
1858
|
+
}.scrub-thumbnails {
|
|
1613
1859
|
position: absolute;
|
|
1614
|
-
right: 16px;
|
|
1615
1860
|
bottom: 52px;
|
|
1616
|
-
width: 250px;
|
|
1617
|
-
min-height: 48px;
|
|
1618
|
-
z-index: 9999;
|
|
1619
|
-
border-radius: 4px;
|
|
1620
|
-
}
|
|
1621
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
|
|
1622
|
-
padding: 8px 0;
|
|
1623
|
-
}
|
|
1624
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
|
|
1625
|
-
margin: 0;
|
|
1626
|
-
text-align: left;
|
|
1627
|
-
line-height: 22px;
|
|
1628
|
-
padding: 5px 14px;
|
|
1629
|
-
width: 250px;
|
|
1630
|
-
font-size: 12px;
|
|
1631
|
-
display: flex;
|
|
1632
|
-
align-items: center;
|
|
1633
|
-
justify-content: flex-start;
|
|
1634
|
-
gap: 8px;
|
|
1635
|
-
}
|
|
1636
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
|
|
1637
|
-
flex: 24px 0 0;
|
|
1638
|
-
height: 24px;
|
|
1639
|
-
}
|
|
1640
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
|
|
1641
|
-
visibility: hidden;
|
|
1642
|
-
display: inline-block;
|
|
1643
|
-
}
|
|
1644
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
|
|
1645
|
-
flex: 0 1 100%;
|
|
1646
|
-
}
|
|
1647
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
|
|
1648
|
-
flex: 0 0 14px;
|
|
1649
|
-
height: 24px;
|
|
1650
|
-
}
|
|
1651
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
|
|
1652
|
-
flex: 1 0 auto;
|
|
1653
|
-
}*, :focus, :visited {
|
|
1654
|
-
outline: none !important;
|
|
1655
|
-
}
|
|
1656
|
-
|
|
1657
|
-
.gear-wrapper .go-back {
|
|
1658
|
-
font-weight: 600;
|
|
1659
|
-
font-size: 14px;
|
|
1660
|
-
line-height: 20px;
|
|
1661
|
-
width: 100%;
|
|
1662
|
-
text-align: left;
|
|
1663
|
-
padding: 12px;
|
|
1664
|
-
}
|
|
1665
|
-
.gear-wrapper .go-back .arrow-left-icon {
|
|
1666
|
-
float: left;
|
|
1667
|
-
padding-top: 2px;
|
|
1668
|
-
padding-right: 2px;
|
|
1669
|
-
}
|
|
1670
|
-
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
1671
|
-
height: 16px;
|
|
1672
|
-
}
|
|
1673
|
-
.gear-wrapper ul.gear-sub-menu {
|
|
1674
1861
|
width: 100%;
|
|
1675
|
-
|
|
1676
|
-
min-width: 60px;
|
|
1677
|
-
border-top: 2px solid rgb(36, 36, 36);
|
|
1862
|
+
transition: opacity 0.3s ease;
|
|
1678
1863
|
}
|
|
1679
|
-
.
|
|
1680
|
-
|
|
1681
|
-
text-align: left;
|
|
1864
|
+
.scrub-thumbnails.hidden {
|
|
1865
|
+
opacity: 0;
|
|
1682
1866
|
}
|
|
1683
|
-
.
|
|
1684
|
-
|
|
1685
|
-
|
|
1867
|
+
.scrub-thumbnails .thumbnail-container {
|
|
1868
|
+
display: inline-block;
|
|
1869
|
+
position: relative;
|
|
1870
|
+
overflow: hidden;
|
|
1871
|
+
background-color: #000;
|
|
1686
1872
|
}
|
|
1687
|
-
.
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
height: 32px;
|
|
1691
|
-
padding: 5px 10px;
|
|
1692
|
-
line-height: 22px;
|
|
1693
|
-
color: #fffffe;
|
|
1873
|
+
.scrub-thumbnails .thumbnail-container .thumbnail-img {
|
|
1874
|
+
position: absolute;
|
|
1875
|
+
width: auto;
|
|
1694
1876
|
}
|
|
1695
|
-
.
|
|
1877
|
+
.scrub-thumbnails .thumbnails-text {
|
|
1878
|
+
background-color: rgba(74, 74, 74, 0.7);
|
|
1879
|
+
border-radius: 3px;
|
|
1880
|
+
white-space: nowrap;
|
|
1881
|
+
overflow: hidden;
|
|
1882
|
+
text-overflow: ellipsis;
|
|
1696
1883
|
color: white;
|
|
1697
|
-
|
|
1884
|
+
position: absolute;
|
|
1885
|
+
bottom: 23px;
|
|
1886
|
+
width: 100px;
|
|
1698
1887
|
}
|
|
1699
|
-
.
|
|
1700
|
-
color:
|
|
1701
|
-
|
|
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;
|
|
1702
1898
|
}
|
|
1703
|
-
.
|
|
1704
|
-
width:
|
|
1705
|
-
height: 20px;
|
|
1706
|
-
float: left;
|
|
1707
|
-
display: block;
|
|
1899
|
+
.scrub-thumbnails .spotlight img {
|
|
1900
|
+
width: auto;
|
|
1708
1901
|
}
|
|
1709
|
-
.
|
|
1710
|
-
|
|
1902
|
+
.scrub-thumbnails .backdrop {
|
|
1903
|
+
position: absolute;
|
|
1904
|
+
left: 0;
|
|
1905
|
+
bottom: 0;
|
|
1906
|
+
right: 0;
|
|
1907
|
+
background-color: #000;
|
|
1908
|
+
overflow: hidden;
|
|
1711
1909
|
}
|
|
1712
|
-
.
|
|
1713
|
-
|
|
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;
|
|
1714
1919
|
}.quality-levels li.disabled {
|
|
1715
1920
|
opacity: 0.5;
|
|
1716
1921
|
pointer-events: none;
|
|
1717
1922
|
}
|
|
1718
1923
|
.quality-levels li.current {
|
|
1719
1924
|
background-color: #000;
|
|
1720
|
-
}.
|
|
1925
|
+
}.spinner-three-bounce[data-spinner] {
|
|
1721
1926
|
position: absolute;
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
opacity: 0;
|
|
1927
|
+
width: 70px;
|
|
1928
|
+
text-align: center;
|
|
1929
|
+
z-index: 999;
|
|
1930
|
+
left: 0;
|
|
1931
|
+
right: 0;
|
|
1932
|
+
margin: 0 auto;
|
|
1933
|
+
margin-left: auto;
|
|
1934
|
+
margin-right: auto;
|
|
1935
|
+
/* center vertically */
|
|
1936
|
+
top: 50%;
|
|
1937
|
+
transform: translateY(-50%);
|
|
1734
1938
|
}
|
|
1735
|
-
.
|
|
1939
|
+
.spinner-three-bounce[data-spinner] > div {
|
|
1940
|
+
width: 18px;
|
|
1941
|
+
height: 18px;
|
|
1942
|
+
background-color: #FFF;
|
|
1943
|
+
border-radius: 100%;
|
|
1736
1944
|
display: inline-block;
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
padding-right: 7px;
|
|
1741
|
-
vertical-align: top;
|
|
1945
|
+
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
1946
|
+
/* Prevent first frame from flickering when animation starts */
|
|
1947
|
+
animation-fill-mode: both;
|
|
1742
1948
|
}
|
|
1743
|
-
.
|
|
1744
|
-
|
|
1745
|
-
color: rgba(255, 255, 255, 0.5);
|
|
1746
|
-
font-size: 10px;
|
|
1747
|
-
padding-right: 7px;
|
|
1748
|
-
vertical-align: top;
|
|
1949
|
+
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
1950
|
+
animation-delay: -0.32s;
|
|
1749
1951
|
}
|
|
1750
|
-
.
|
|
1751
|
-
|
|
1752
|
-
margin-right: 7px;
|
|
1753
|
-
}.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
|
|
1754
|
-
height: 0;
|
|
1952
|
+
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
1953
|
+
animation-delay: -0.16s;
|
|
1755
1954
|
}
|
|
1756
1955
|
|
|
1757
|
-
|
|
1956
|
+
@keyframes bouncedelay {
|
|
1957
|
+
0%, 80%, 100% {
|
|
1958
|
+
transform: scale(0);
|
|
1959
|
+
}
|
|
1960
|
+
40% {
|
|
1961
|
+
transform: scale(1);
|
|
1962
|
+
}
|
|
1963
|
+
}.player-logo[data-logo] {
|
|
1758
1964
|
position: absolute;
|
|
1759
|
-
|
|
1760
|
-
height: calc(100% - 50px);
|
|
1761
|
-
z-index: 9998;
|
|
1762
|
-
background-color: transparent;
|
|
1763
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1764
|
-
}
|
|
1765
|
-
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
|
|
1965
|
+
z-index: 2;
|
|
1766
1966
|
width: 100%;
|
|
1767
1967
|
height: 100%;
|
|
1768
|
-
display: flex;
|
|
1769
|
-
justify-content: space-between;
|
|
1770
1968
|
}
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1969
|
+
|
|
1970
|
+
.clappr-logo {
|
|
1971
|
+
position: absolute;
|
|
1774
1972
|
}*,
|
|
1775
1973
|
:focus,
|
|
1776
1974
|
:visited {
|
|
@@ -1845,202 +2043,4 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1845
2043
|
.ios-fullscreen::cue {
|
|
1846
2044
|
visibility: visible !important;
|
|
1847
2045
|
font-size: 1em !important;
|
|
1848
|
-
}.share_plugin[data-share] {
|
|
1849
|
-
pointer-events: auto;
|
|
1850
|
-
z-index: 5;
|
|
1851
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
1852
|
-
}
|
|
1853
|
-
.share_plugin[data-share].share-hide .share-button-container {
|
|
1854
|
-
right: -50px;
|
|
1855
|
-
}
|
|
1856
|
-
.share_plugin[data-share] .share-button-container {
|
|
1857
|
-
cursor: pointer;
|
|
1858
|
-
width: 36px;
|
|
1859
|
-
height: 36px;
|
|
1860
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
1861
|
-
border-radius: 4px;
|
|
1862
|
-
position: absolute;
|
|
1863
|
-
right: 10px;
|
|
1864
|
-
top: 10px;
|
|
1865
|
-
padding-top: 6px;
|
|
1866
|
-
transition: all 0.3s ease-out;
|
|
1867
|
-
}
|
|
1868
|
-
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
1869
|
-
background-color: transparent;
|
|
1870
|
-
border: 0;
|
|
1871
|
-
margin: 0 6px;
|
|
1872
|
-
padding: 0;
|
|
1873
|
-
cursor: pointer;
|
|
1874
|
-
display: inline-block;
|
|
1875
|
-
width: 19px;
|
|
1876
|
-
height: 20px;
|
|
1877
|
-
}
|
|
1878
|
-
.share_plugin[data-share] .share-container {
|
|
1879
|
-
pointer-events: auto;
|
|
1880
|
-
position: absolute;
|
|
1881
|
-
width: 280px;
|
|
1882
|
-
background-color: white;
|
|
1883
|
-
transform: translate(0, 50%);
|
|
1884
|
-
transform: translate(-50%, -50%);
|
|
1885
|
-
left: 50%;
|
|
1886
|
-
/* margin-left: -140px; */
|
|
1887
|
-
top: calc(50% - 20px);
|
|
1888
|
-
/* margin-top: -170px; */
|
|
1889
|
-
}
|
|
1890
|
-
.share_plugin[data-share] .share-container .share-container-header {
|
|
1891
|
-
text-align: left;
|
|
1892
|
-
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
1893
|
-
}
|
|
1894
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
1895
|
-
display: inline-block;
|
|
1896
|
-
font-size: 16px;
|
|
1897
|
-
margin: 5px;
|
|
1898
|
-
}
|
|
1899
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
1900
|
-
display: inline-block;
|
|
1901
|
-
width: 24px;
|
|
1902
|
-
float: right;
|
|
1903
|
-
margin: 5px;
|
|
1904
|
-
cursor: pointer;
|
|
1905
|
-
}
|
|
1906
|
-
.share_plugin[data-share] .share-container .share-container-main {
|
|
1907
|
-
margin-bottom: 8px;
|
|
1908
|
-
}
|
|
1909
|
-
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
1910
|
-
text-align: left;
|
|
1911
|
-
font-size: 14px;
|
|
1912
|
-
padding: 5px;
|
|
1913
|
-
}
|
|
1914
|
-
.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 {
|
|
1915
|
-
overflow: hidden;
|
|
1916
|
-
text-overflow: ellipsis;
|
|
1917
|
-
color: #818181;
|
|
1918
|
-
border: solid 1px #d3d3d3;
|
|
1919
|
-
width: calc(100% - 10px);
|
|
1920
|
-
padding: 5px;
|
|
1921
|
-
}
|
|
1922
|
-
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
1923
|
-
max-height: 90px;
|
|
1924
|
-
resize: none;
|
|
1925
|
-
}
|
|
1926
|
-
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
1927
|
-
width: 32px;
|
|
1928
|
-
display: inline-block;
|
|
1929
|
-
margin-right: 5px;
|
|
1930
|
-
cursor: pointer;
|
|
1931
|
-
}.player-poster[data-poster] {
|
|
1932
|
-
display: flex;
|
|
1933
|
-
justify-content: center;
|
|
1934
|
-
align-items: center;
|
|
1935
|
-
position: absolute;
|
|
1936
|
-
height: 100%;
|
|
1937
|
-
width: 100%;
|
|
1938
|
-
z-index: 998;
|
|
1939
|
-
top: 0;
|
|
1940
|
-
left: 0;
|
|
1941
|
-
background-color: #000;
|
|
1942
|
-
background-size: cover;
|
|
1943
|
-
background-repeat: no-repeat;
|
|
1944
|
-
background-position: 50% 50%;
|
|
1945
|
-
}
|
|
1946
|
-
.player-poster[data-poster].clickable {
|
|
1947
|
-
cursor: pointer;
|
|
1948
|
-
}
|
|
1949
|
-
.player-poster[data-poster]:hover .play-wrapper[data-poster] {
|
|
1950
|
-
opacity: 1;
|
|
1951
|
-
}
|
|
1952
|
-
.player-poster[data-poster] .play-wrapper[data-poster] {
|
|
1953
|
-
width: 100%;
|
|
1954
|
-
height: 25%;
|
|
1955
|
-
margin: 0 auto;
|
|
1956
|
-
opacity: 0.75;
|
|
1957
|
-
transition: opacity 0.1s ease;
|
|
1958
|
-
}
|
|
1959
|
-
.player-poster[data-poster] .play-wrapper[data-poster] svg {
|
|
1960
|
-
height: 100%;
|
|
1961
|
-
display: inline;
|
|
1962
|
-
}
|
|
1963
|
-
.player-poster[data-poster] .play-wrapper[data-poster] svg path {
|
|
1964
|
-
fill: #fff;
|
|
1965
|
-
}.clips.bar-container[data-seekbar] {
|
|
1966
|
-
clip-path: url("#myClip");
|
|
1967
|
-
}.player-logo[data-logo] {
|
|
1968
|
-
position: absolute;
|
|
1969
|
-
z-index: 2;
|
|
1970
|
-
width: 100%;
|
|
1971
|
-
height: 100%;
|
|
1972
|
-
}
|
|
1973
|
-
|
|
1974
|
-
.clappr-logo {
|
|
1975
|
-
position: absolute;
|
|
1976
|
-
}.media-control-pip {
|
|
1977
|
-
order: 95;
|
|
1978
|
-
display: flex;
|
|
1979
|
-
}
|
|
1980
|
-
.media-control-pip button {
|
|
1981
|
-
height: 20px;
|
|
1982
|
-
}
|
|
1983
|
-
.media-control-pip button svg {
|
|
1984
|
-
height: 20px;
|
|
1985
|
-
}.scrub-thumbnails {
|
|
1986
|
-
position: absolute;
|
|
1987
|
-
bottom: 52px;
|
|
1988
|
-
width: 100%;
|
|
1989
|
-
transition: opacity 0.3s ease;
|
|
1990
|
-
}
|
|
1991
|
-
.scrub-thumbnails.hidden {
|
|
1992
|
-
opacity: 0;
|
|
1993
|
-
}
|
|
1994
|
-
.scrub-thumbnails .thumbnail-container {
|
|
1995
|
-
display: inline-block;
|
|
1996
|
-
position: relative;
|
|
1997
|
-
overflow: hidden;
|
|
1998
|
-
background-color: #000;
|
|
1999
|
-
}
|
|
2000
|
-
.scrub-thumbnails .thumbnail-container .thumbnail-img {
|
|
2001
|
-
position: absolute;
|
|
2002
|
-
width: auto;
|
|
2003
|
-
}
|
|
2004
|
-
.scrub-thumbnails .thumbnails-text {
|
|
2005
|
-
background-color: rgba(74, 74, 74, 0.7);
|
|
2006
|
-
border-radius: 3px;
|
|
2007
|
-
white-space: nowrap;
|
|
2008
|
-
overflow: hidden;
|
|
2009
|
-
text-overflow: ellipsis;
|
|
2010
|
-
color: white;
|
|
2011
|
-
position: absolute;
|
|
2012
|
-
bottom: 23px;
|
|
2013
|
-
width: 100px;
|
|
2014
|
-
}
|
|
2015
|
-
.scrub-thumbnails .spotlight {
|
|
2016
|
-
background-color: #4a4a4a;
|
|
2017
|
-
overflow: hidden;
|
|
2018
|
-
position: absolute;
|
|
2019
|
-
bottom: 0;
|
|
2020
|
-
left: 0;
|
|
2021
|
-
border-color: #4a4a4a;
|
|
2022
|
-
border-style: solid;
|
|
2023
|
-
border-width: 3px;
|
|
2024
|
-
border-radius: 3px;
|
|
2025
|
-
}
|
|
2026
|
-
.scrub-thumbnails .spotlight img {
|
|
2027
|
-
width: auto;
|
|
2028
|
-
}
|
|
2029
|
-
.scrub-thumbnails .backdrop {
|
|
2030
|
-
position: absolute;
|
|
2031
|
-
left: 0;
|
|
2032
|
-
bottom: 0;
|
|
2033
|
-
right: 0;
|
|
2034
|
-
background-color: #000;
|
|
2035
|
-
overflow: hidden;
|
|
2036
|
-
}
|
|
2037
|
-
.scrub-thumbnails .backdrop .carousel {
|
|
2038
|
-
position: absolute;
|
|
2039
|
-
top: 0;
|
|
2040
|
-
left: 0;
|
|
2041
|
-
height: 100%;
|
|
2042
|
-
white-space: nowrap;
|
|
2043
|
-
}
|
|
2044
|
-
.scrub-thumbnails .backdrop .carousel img {
|
|
2045
|
-
width: auto;
|
|
2046
2046
|
}
|