@gcorevideo/player 2.27.0 → 2.28.1
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 +28 -1
- package/dist/index.css +364 -364
- package/dist/index.embed.js +26 -0
- package/dist/index.js +31 -1
- package/dist/player.d.ts +6 -0
- package/docs/api/player.player.load.md +56 -0
- package/docs/api/player.player.md +14 -0
- package/lib/Player.d.ts +7 -1
- package/lib/Player.d.ts.map +1 -1
- package/lib/Player.js +27 -0
- package/lib/plugins/source-controller/SourceController.d.ts.map +1 -1
- package/lib/plugins/source-controller/SourceController.js +3 -0
- package/package.json +1 -1
- package/src/Player.ts +32 -0
- package/src/plugins/source-controller/SourceController.ts +3 -0
- package/temp/player.api.json +53 -0
- package/tsconfig.tsbuildinfo +1 -1
package/dist/index.css
CHANGED
|
@@ -122,78 +122,109 @@
|
|
|
122
122
|
.gplayer-lite-btn::-moz-focus-inner {
|
|
123
123
|
border: 0;
|
|
124
124
|
padding: 0;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
display: flex;
|
|
128
|
-
gap: 6px;
|
|
125
|
+
}*, :focus, :visited {
|
|
126
|
+
outline: none !important;
|
|
129
127
|
}
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
line-height: var(--bottom-panel);
|
|
139
|
-
position: relative;
|
|
140
|
-
max-width: 150px;
|
|
128
|
+
|
|
129
|
+
.gear-wrapper .go-back {
|
|
130
|
+
font-weight: 600;
|
|
131
|
+
font-size: 14px;
|
|
132
|
+
line-height: 20px;
|
|
133
|
+
width: 100%;
|
|
134
|
+
text-align: left;
|
|
135
|
+
padding: 12px;
|
|
141
136
|
}
|
|
142
|
-
.
|
|
143
|
-
|
|
144
|
-
padding-
|
|
137
|
+
.gear-wrapper .go-back .arrow-left-icon {
|
|
138
|
+
float: left;
|
|
139
|
+
padding-top: 2px;
|
|
140
|
+
padding-right: 2px;
|
|
145
141
|
}
|
|
146
|
-
.
|
|
147
|
-
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
z-index: 9998;
|
|
151
|
-
background-color: transparent;
|
|
152
|
-
display: flex;
|
|
153
|
-
justify-content: center;
|
|
142
|
+
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
143
|
+
height: 16px;
|
|
144
|
+
}
|
|
145
|
+
.gear-wrapper ul.gear-sub-menu {
|
|
154
146
|
width: 100%;
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
pointer-events: auto;
|
|
147
|
+
list-style-type: none;
|
|
148
|
+
min-width: 60px;
|
|
149
|
+
border-top: 2px solid rgb(36, 36, 36);
|
|
150
|
+
overflow-y: auto;
|
|
160
151
|
}
|
|
161
|
-
.
|
|
152
|
+
.gear-wrapper ul.gear-sub-menu li {
|
|
153
|
+
font-size: 12px;
|
|
154
|
+
text-align: left;
|
|
155
|
+
}
|
|
156
|
+
.gear-wrapper ul.gear-sub-menu li a {
|
|
157
|
+
display: block;
|
|
158
|
+
text-decoration: none;
|
|
159
|
+
height: 30px;
|
|
160
|
+
padding: 5px 10px;
|
|
161
|
+
line-height: 22px;
|
|
162
|
+
color: var(--gplayer-mc-text-dim-color);
|
|
163
|
+
}
|
|
164
|
+
.gear-wrapper ul.gear-sub-menu li a:hover {
|
|
165
|
+
color: var(--gplayer-mc-text-color);
|
|
166
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
167
|
+
}
|
|
168
|
+
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
169
|
+
color: var(--gplayer-mc-text-color);
|
|
170
|
+
text-decoration: none;
|
|
171
|
+
}
|
|
172
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
173
|
+
width: 30px;
|
|
174
|
+
height: 20px;
|
|
175
|
+
float: left;
|
|
176
|
+
display: block;
|
|
177
|
+
}
|
|
178
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
162
179
|
display: none;
|
|
163
180
|
}
|
|
164
|
-
.
|
|
165
|
-
|
|
181
|
+
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
182
|
+
display: inline;
|
|
183
|
+
}.media-control-skin-1 .media-control-item.media-control-gear {
|
|
184
|
+
order: 99;
|
|
166
185
|
}
|
|
167
|
-
|
|
168
|
-
|
|
186
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-wrapper {
|
|
187
|
+
position: absolute;
|
|
188
|
+
right: 16px;
|
|
189
|
+
bottom: 52px;
|
|
190
|
+
width: 250px;
|
|
191
|
+
min-height: 48px;
|
|
192
|
+
z-index: 9999;
|
|
193
|
+
border-radius: 4px;
|
|
194
|
+
box-shadow: 0 0 1px 1px var(--gplayer-mc-popup-border-color);
|
|
195
|
+
}
|
|
196
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-options-list {
|
|
197
|
+
padding: 8px 0;
|
|
198
|
+
}
|
|
199
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option {
|
|
200
|
+
margin: 0;
|
|
201
|
+
text-align: left;
|
|
202
|
+
line-height: 22px;
|
|
203
|
+
padding: 5px 14px;
|
|
204
|
+
width: 250px;
|
|
205
|
+
font-size: 12px;
|
|
169
206
|
display: flex;
|
|
170
207
|
align-items: center;
|
|
171
|
-
justify-content:
|
|
172
|
-
|
|
173
|
-
width: 120px;
|
|
174
|
-
height: 120px;
|
|
175
|
-
border: 2px solid white;
|
|
176
|
-
border-radius: 50%;
|
|
177
|
-
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
178
|
-
filter: alpha(opacity=60);
|
|
179
|
-
opacity: 1;
|
|
180
|
-
box-shadow: 0 0 1px 0 white;
|
|
181
|
-
background: rgba(240, 243, 247, 0.9411764706);
|
|
182
|
-
z-index: 10000;
|
|
208
|
+
justify-content: flex-start;
|
|
209
|
+
gap: 8px;
|
|
183
210
|
}
|
|
184
|
-
.
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
height: 80px;
|
|
211
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_icon {
|
|
212
|
+
flex: 24px 0 0;
|
|
213
|
+
height: 24px;
|
|
188
214
|
}
|
|
189
|
-
.
|
|
190
|
-
|
|
215
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_icon.hidden {
|
|
216
|
+
visibility: hidden;
|
|
217
|
+
display: inline-block;
|
|
191
218
|
}
|
|
192
|
-
.
|
|
193
|
-
|
|
219
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_label {
|
|
220
|
+
flex: 0 1 100%;
|
|
194
221
|
}
|
|
195
|
-
.
|
|
196
|
-
|
|
222
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_arrow-right-icon {
|
|
223
|
+
flex: 0 0 14px;
|
|
224
|
+
height: 24px;
|
|
225
|
+
}
|
|
226
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_value {
|
|
227
|
+
flex: 1 0 auto;
|
|
197
228
|
}.dvr-controls {
|
|
198
229
|
--disabled-opacity: 0.3;
|
|
199
230
|
--circle-radius: 5px;
|
|
@@ -251,185 +282,63 @@
|
|
|
251
282
|
.dvr-controls .live-button:hover {
|
|
252
283
|
opacity: 1;
|
|
253
284
|
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
}
|
|
257
|
-
.media-control-skin-1 .media-control-item.media-control-gear .gear-wrapper {
|
|
258
|
-
position: absolute;
|
|
259
|
-
right: 16px;
|
|
260
|
-
bottom: 52px;
|
|
261
|
-
width: 250px;
|
|
262
|
-
min-height: 48px;
|
|
263
|
-
z-index: 9999;
|
|
264
|
-
border-radius: 4px;
|
|
265
|
-
box-shadow: 0 0 1px 1px var(--gplayer-mc-popup-border-color);
|
|
266
|
-
}
|
|
267
|
-
.media-control-skin-1 .media-control-item.media-control-gear .gear-options-list {
|
|
268
|
-
padding: 8px 0;
|
|
269
|
-
}
|
|
270
|
-
.media-control-skin-1 .media-control-item.media-control-gear .gear-option {
|
|
271
|
-
margin: 0;
|
|
272
|
-
text-align: left;
|
|
273
|
-
line-height: 22px;
|
|
274
|
-
padding: 5px 14px;
|
|
275
|
-
width: 250px;
|
|
276
|
-
font-size: 12px;
|
|
285
|
+
}@charset "UTF-8";
|
|
286
|
+
.gplayer-mc-clips {
|
|
277
287
|
display: flex;
|
|
278
|
-
|
|
279
|
-
justify-content: flex-start;
|
|
280
|
-
gap: 8px;
|
|
281
|
-
}
|
|
282
|
-
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_icon {
|
|
283
|
-
flex: 24px 0 0;
|
|
284
|
-
height: 24px;
|
|
288
|
+
gap: 6px;
|
|
285
289
|
}
|
|
286
|
-
.
|
|
287
|
-
|
|
290
|
+
.gplayer-mc-clips .gplayer-mc-clips-text {
|
|
291
|
+
text-overflow: ellipsis;
|
|
292
|
+
white-space: nowrap;
|
|
293
|
+
overflow: hidden;
|
|
288
294
|
display: inline-block;
|
|
295
|
+
text-overflow: ellipsis;
|
|
296
|
+
color: white;
|
|
297
|
+
cursor: default;
|
|
298
|
+
line-height: var(--bottom-panel);
|
|
299
|
+
position: relative;
|
|
300
|
+
max-width: 150px;
|
|
289
301
|
}
|
|
290
|
-
.
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_arrow-right-icon {
|
|
294
|
-
flex: 0 0 14px;
|
|
295
|
-
height: 24px;
|
|
296
|
-
}
|
|
297
|
-
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_value {
|
|
298
|
-
flex: 1 0 auto;
|
|
299
|
-
}*, :focus, :visited {
|
|
300
|
-
outline: none !important;
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
.gear-wrapper .go-back {
|
|
304
|
-
font-weight: 600;
|
|
305
|
-
font-size: 14px;
|
|
306
|
-
line-height: 20px;
|
|
307
|
-
width: 100%;
|
|
308
|
-
text-align: left;
|
|
309
|
-
padding: 12px;
|
|
310
|
-
}
|
|
311
|
-
.gear-wrapper .go-back .arrow-left-icon {
|
|
312
|
-
float: left;
|
|
313
|
-
padding-top: 2px;
|
|
314
|
-
padding-right: 2px;
|
|
315
|
-
}
|
|
316
|
-
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
317
|
-
height: 16px;
|
|
318
|
-
}
|
|
319
|
-
.gear-wrapper ul.gear-sub-menu {
|
|
320
|
-
width: 100%;
|
|
321
|
-
list-style-type: none;
|
|
322
|
-
min-width: 60px;
|
|
323
|
-
border-top: 2px solid rgb(36, 36, 36);
|
|
324
|
-
overflow-y: auto;
|
|
325
|
-
}
|
|
326
|
-
.gear-wrapper ul.gear-sub-menu li {
|
|
327
|
-
font-size: 12px;
|
|
328
|
-
text-align: left;
|
|
329
|
-
}
|
|
330
|
-
.gear-wrapper ul.gear-sub-menu li a {
|
|
331
|
-
display: block;
|
|
332
|
-
text-decoration: none;
|
|
333
|
-
height: 30px;
|
|
334
|
-
padding: 5px 10px;
|
|
335
|
-
line-height: 22px;
|
|
336
|
-
color: var(--gplayer-mc-text-dim-color);
|
|
337
|
-
}
|
|
338
|
-
.gear-wrapper ul.gear-sub-menu li a:hover {
|
|
339
|
-
color: var(--gplayer-mc-text-color);
|
|
340
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
341
|
-
}
|
|
342
|
-
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
343
|
-
color: var(--gplayer-mc-text-color);
|
|
344
|
-
text-decoration: none;
|
|
345
|
-
}
|
|
346
|
-
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
347
|
-
width: 30px;
|
|
348
|
-
height: 20px;
|
|
349
|
-
float: left;
|
|
350
|
-
display: block;
|
|
351
|
-
}
|
|
352
|
-
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
353
|
-
display: none;
|
|
302
|
+
.gplayer-mc-clips .gplayer-mc-clips-text::before {
|
|
303
|
+
content: "•";
|
|
304
|
+
padding-right: 6px;
|
|
354
305
|
}
|
|
355
|
-
.
|
|
356
|
-
|
|
357
|
-
}
|
|
358
|
-
color: #CCCACA;
|
|
359
|
-
position: absolute;
|
|
360
|
-
top: 0;
|
|
361
|
-
height: 100%;
|
|
362
|
-
width: 100%;
|
|
363
|
-
background-color: rgba(0, 0, 0, 0.7);
|
|
364
|
-
z-index: 2000;
|
|
306
|
+
.gplayer-mc-clips .gplayer-mc-clips-text.compact {
|
|
307
|
+
max-width: 100px;
|
|
308
|
+
}.player-poster {
|
|
365
309
|
display: flex;
|
|
366
|
-
flex-direction: column;
|
|
367
310
|
justify-content: center;
|
|
368
|
-
|
|
369
|
-
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
370
|
-
font-size: 14px;
|
|
371
|
-
color: #CCCACA;
|
|
372
|
-
margin-top: 45px;
|
|
373
|
-
}
|
|
374
|
-
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
375
|
-
font-weight: bold;
|
|
376
|
-
line-height: 30px;
|
|
377
|
-
font-size: 18px;
|
|
378
|
-
}
|
|
379
|
-
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
380
|
-
width: 90%;
|
|
381
|
-
margin: 0 auto;
|
|
382
|
-
}
|
|
383
|
-
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
384
|
-
font-size: 13px;
|
|
385
|
-
margin-top: 15px;
|
|
386
|
-
}
|
|
387
|
-
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
388
|
-
cursor: pointer;
|
|
389
|
-
width: 30px;
|
|
390
|
-
margin: 15px auto 0;
|
|
391
|
-
}.quality-levels li.disabled {
|
|
392
|
-
opacity: 0.5;
|
|
393
|
-
pointer-events: none;
|
|
394
|
-
}
|
|
395
|
-
.quality-levels li.current {
|
|
396
|
-
background-color: #000;
|
|
397
|
-
}.context-menu {
|
|
398
|
-
z-index: 999;
|
|
311
|
+
align-items: center;
|
|
399
312
|
position: absolute;
|
|
313
|
+
height: 100%;
|
|
314
|
+
width: 100%;
|
|
315
|
+
z-index: 998;
|
|
400
316
|
top: 0;
|
|
401
317
|
left: 0;
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
font-size: 12px;
|
|
407
|
-
line-height: 12px;
|
|
408
|
-
list-style-type: none;
|
|
409
|
-
text-align: left;
|
|
410
|
-
padding: 5px;
|
|
411
|
-
margin-left: auto;
|
|
412
|
-
margin-right: auto;
|
|
413
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
414
|
-
border: 1px solid #666;
|
|
415
|
-
border-radius: 4px;
|
|
318
|
+
background-color: #000;
|
|
319
|
+
background-size: cover;
|
|
320
|
+
background-repeat: no-repeat;
|
|
321
|
+
background-position: 50% 50%;
|
|
416
322
|
}
|
|
417
|
-
.
|
|
418
|
-
border: none;
|
|
419
|
-
background-color: transparent;
|
|
420
|
-
padding: 0;
|
|
421
|
-
color: white;
|
|
422
|
-
display: flex;
|
|
423
|
-
gap: 8px;
|
|
424
|
-
align-items: center;
|
|
425
|
-
justify-content: center;
|
|
323
|
+
.player-poster.clickable {
|
|
426
324
|
cursor: pointer;
|
|
427
|
-
|
|
325
|
+
}
|
|
326
|
+
.player-poster:hover .play-wrapper {
|
|
327
|
+
opacity: 1;
|
|
328
|
+
}
|
|
329
|
+
.player-poster .play-wrapper {
|
|
428
330
|
width: 100%;
|
|
331
|
+
height: 25%;
|
|
332
|
+
margin: 0 auto;
|
|
333
|
+
opacity: 0.75;
|
|
334
|
+
transition: opacity 0.1s ease;
|
|
429
335
|
}
|
|
430
|
-
.
|
|
431
|
-
|
|
432
|
-
|
|
336
|
+
.player-poster .play-wrapper svg {
|
|
337
|
+
height: 100%;
|
|
338
|
+
display: inline;
|
|
339
|
+
}
|
|
340
|
+
.player-poster .play-wrapper svg path {
|
|
341
|
+
fill: #fff;
|
|
433
342
|
}:root {
|
|
434
343
|
--primary-background-color: #000;
|
|
435
344
|
--secondary-background-color: #262626;
|
|
@@ -794,6 +703,125 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
794
703
|
.fullscreen .clappr-nerd-stats .stats-box {
|
|
795
704
|
top: unset;
|
|
796
705
|
}
|
|
706
|
+
}.context-menu {
|
|
707
|
+
z-index: 999;
|
|
708
|
+
position: absolute;
|
|
709
|
+
top: 0;
|
|
710
|
+
left: 0;
|
|
711
|
+
text-align: center;
|
|
712
|
+
}
|
|
713
|
+
.context-menu .context-menu-list {
|
|
714
|
+
font-family: "Proxima Nova", sans-serif;
|
|
715
|
+
font-size: 12px;
|
|
716
|
+
line-height: 12px;
|
|
717
|
+
list-style-type: none;
|
|
718
|
+
text-align: left;
|
|
719
|
+
padding: 5px;
|
|
720
|
+
margin-left: auto;
|
|
721
|
+
margin-right: auto;
|
|
722
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
723
|
+
border: 1px solid #666;
|
|
724
|
+
border-radius: 4px;
|
|
725
|
+
}
|
|
726
|
+
.context-menu .context-menu-list-item button {
|
|
727
|
+
border: none;
|
|
728
|
+
background-color: transparent;
|
|
729
|
+
padding: 0;
|
|
730
|
+
color: white;
|
|
731
|
+
display: flex;
|
|
732
|
+
gap: 8px;
|
|
733
|
+
align-items: center;
|
|
734
|
+
justify-content: center;
|
|
735
|
+
cursor: pointer;
|
|
736
|
+
padding: 5px;
|
|
737
|
+
width: 100%;
|
|
738
|
+
}
|
|
739
|
+
.context-menu .context-menu-list-item_icon {
|
|
740
|
+
width: 20px;
|
|
741
|
+
height: 20px;
|
|
742
|
+
}.share_plugin[data-share] {
|
|
743
|
+
pointer-events: auto;
|
|
744
|
+
z-index: 5;
|
|
745
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
746
|
+
}
|
|
747
|
+
.share_plugin[data-share].share-hide .share-button-container {
|
|
748
|
+
right: -50px;
|
|
749
|
+
}
|
|
750
|
+
.share_plugin[data-share] .share-button-container {
|
|
751
|
+
cursor: pointer;
|
|
752
|
+
width: 36px;
|
|
753
|
+
height: 36px;
|
|
754
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
755
|
+
border-radius: 4px;
|
|
756
|
+
position: absolute;
|
|
757
|
+
right: 10px;
|
|
758
|
+
top: 10px;
|
|
759
|
+
padding-top: 6px;
|
|
760
|
+
transition: all 0.3s ease-out;
|
|
761
|
+
}
|
|
762
|
+
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
763
|
+
background-color: transparent;
|
|
764
|
+
border: 0;
|
|
765
|
+
margin: 0 6px;
|
|
766
|
+
padding: 0;
|
|
767
|
+
cursor: pointer;
|
|
768
|
+
display: inline-block;
|
|
769
|
+
width: 19px;
|
|
770
|
+
height: 20px;
|
|
771
|
+
}
|
|
772
|
+
.share_plugin[data-share] .share-container {
|
|
773
|
+
pointer-events: auto;
|
|
774
|
+
position: absolute;
|
|
775
|
+
width: 280px;
|
|
776
|
+
background-color: white;
|
|
777
|
+
transform: translate(0, 50%);
|
|
778
|
+
transform: translate(-50%, -50%);
|
|
779
|
+
left: 50%;
|
|
780
|
+
/* margin-left: -140px; */
|
|
781
|
+
top: calc(50% - 20px);
|
|
782
|
+
/* margin-top: -170px; */
|
|
783
|
+
}
|
|
784
|
+
.share_plugin[data-share] .share-container .share-container-header {
|
|
785
|
+
text-align: left;
|
|
786
|
+
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
787
|
+
}
|
|
788
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
789
|
+
display: inline-block;
|
|
790
|
+
font-size: 16px;
|
|
791
|
+
margin: 5px;
|
|
792
|
+
}
|
|
793
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
794
|
+
display: inline-block;
|
|
795
|
+
width: 24px;
|
|
796
|
+
float: right;
|
|
797
|
+
margin: 5px;
|
|
798
|
+
cursor: pointer;
|
|
799
|
+
}
|
|
800
|
+
.share_plugin[data-share] .share-container .share-container-main {
|
|
801
|
+
margin-bottom: 8px;
|
|
802
|
+
}
|
|
803
|
+
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
804
|
+
text-align: left;
|
|
805
|
+
font-size: 14px;
|
|
806
|
+
padding: 5px;
|
|
807
|
+
}
|
|
808
|
+
.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 {
|
|
809
|
+
overflow: hidden;
|
|
810
|
+
text-overflow: ellipsis;
|
|
811
|
+
color: #818181;
|
|
812
|
+
border: solid 1px #d3d3d3;
|
|
813
|
+
width: calc(100% - 10px);
|
|
814
|
+
padding: 5px;
|
|
815
|
+
}
|
|
816
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
817
|
+
max-height: 90px;
|
|
818
|
+
resize: none;
|
|
819
|
+
}
|
|
820
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
821
|
+
width: 32px;
|
|
822
|
+
display: inline-block;
|
|
823
|
+
margin-right: 5px;
|
|
824
|
+
cursor: pointer;
|
|
797
825
|
}.spinner-three-bounce[data-spinner] {
|
|
798
826
|
position: absolute;
|
|
799
827
|
width: 70px;
|
|
@@ -861,6 +889,88 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
861
889
|
.mc-skip-time .skip-container .skip-item {
|
|
862
890
|
flex: 1 0 0px;
|
|
863
891
|
height: 100%;
|
|
892
|
+
}.seek-time {
|
|
893
|
+
position: absolute;
|
|
894
|
+
white-space: nowrap;
|
|
895
|
+
height: 20px;
|
|
896
|
+
line-height: 20px;
|
|
897
|
+
font-size: 0;
|
|
898
|
+
left: -100%;
|
|
899
|
+
bottom: 55px;
|
|
900
|
+
background-color: rgba(2, 2, 2, 0.5);
|
|
901
|
+
z-index: 9999;
|
|
902
|
+
transition: opacity 0.1s ease;
|
|
903
|
+
}
|
|
904
|
+
.seek-time.hidden {
|
|
905
|
+
opacity: 0;
|
|
906
|
+
}
|
|
907
|
+
.seek-time .seek-time__pos {
|
|
908
|
+
display: inline-block;
|
|
909
|
+
color: white;
|
|
910
|
+
font-size: 10px;
|
|
911
|
+
padding-left: 7px;
|
|
912
|
+
padding-right: 7px;
|
|
913
|
+
vertical-align: top;
|
|
914
|
+
}
|
|
915
|
+
.seek-time .seek-time__duration {
|
|
916
|
+
display: inline-block;
|
|
917
|
+
color: rgba(255, 255, 255, 0.5);
|
|
918
|
+
font-size: 10px;
|
|
919
|
+
padding-right: 7px;
|
|
920
|
+
vertical-align: top;
|
|
921
|
+
}
|
|
922
|
+
.seek-time .seek-time__duration::before {
|
|
923
|
+
content: "|";
|
|
924
|
+
margin-right: 7px;
|
|
925
|
+
}.big-mute-icon-wrapper[data-big-mute] {
|
|
926
|
+
position: absolute;
|
|
927
|
+
z-index: 9998;
|
|
928
|
+
background-color: transparent;
|
|
929
|
+
display: flex;
|
|
930
|
+
justify-content: center;
|
|
931
|
+
width: 100%;
|
|
932
|
+
height: calc(100% - 50px);
|
|
933
|
+
margin: 0 auto;
|
|
934
|
+
opacity: 0.75;
|
|
935
|
+
transition: opacity 0.1s ease;
|
|
936
|
+
pointer-events: auto;
|
|
937
|
+
}
|
|
938
|
+
.big-mute-icon-wrapper[data-big-mute].hide {
|
|
939
|
+
display: none;
|
|
940
|
+
}
|
|
941
|
+
.big-mute-icon-wrapper[data-big-mute]:hover {
|
|
942
|
+
cursor: pointer;
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
.big-mute-icon[data-big-mute-icon] {
|
|
946
|
+
display: flex;
|
|
947
|
+
align-items: center;
|
|
948
|
+
justify-content: center;
|
|
949
|
+
align-self: center;
|
|
950
|
+
width: 120px;
|
|
951
|
+
height: 120px;
|
|
952
|
+
border: 2px solid white;
|
|
953
|
+
border-radius: 50%;
|
|
954
|
+
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
955
|
+
filter: alpha(opacity=60);
|
|
956
|
+
opacity: 1;
|
|
957
|
+
box-shadow: 0 0 1px 0 white;
|
|
958
|
+
background: rgba(240, 243, 247, 0.9411764706);
|
|
959
|
+
z-index: 10000;
|
|
960
|
+
}
|
|
961
|
+
.big-mute-icon[data-big-mute-icon] svg {
|
|
962
|
+
margin-left: 5px;
|
|
963
|
+
width: 80px;
|
|
964
|
+
height: 80px;
|
|
965
|
+
}
|
|
966
|
+
.big-mute-icon[data-big-mute-icon] svg path {
|
|
967
|
+
fill: #1f1e1e !important;
|
|
968
|
+
}
|
|
969
|
+
.big-mute-icon[data-big-mute-icon]:hover {
|
|
970
|
+
background: rgba(240, 243, 247, 0.8784313725);
|
|
971
|
+
}
|
|
972
|
+
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
973
|
+
fill: #151515 !important;
|
|
864
974
|
}.media-control-skin-1 .media-control-cc button.media-control-button {
|
|
865
975
|
display: flex;
|
|
866
976
|
justify-content: center;
|
|
@@ -908,73 +1018,12 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
908
1018
|
background-color: rgba(0, 0, 0, 0.4);
|
|
909
1019
|
color: white;
|
|
910
1020
|
display: inline-block;
|
|
911
|
-
}.
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
height: 20px;
|
|
915
|
-
line-height: 20px;
|
|
916
|
-
font-size: 0;
|
|
917
|
-
left: -100%;
|
|
918
|
-
bottom: 55px;
|
|
919
|
-
background-color: rgba(2, 2, 2, 0.5);
|
|
920
|
-
z-index: 9999;
|
|
921
|
-
transition: opacity 0.1s ease;
|
|
922
|
-
}
|
|
923
|
-
.seek-time.hidden {
|
|
924
|
-
opacity: 0;
|
|
925
|
-
}
|
|
926
|
-
.seek-time .seek-time__pos {
|
|
927
|
-
display: inline-block;
|
|
928
|
-
color: white;
|
|
929
|
-
font-size: 10px;
|
|
930
|
-
padding-left: 7px;
|
|
931
|
-
padding-right: 7px;
|
|
932
|
-
vertical-align: top;
|
|
933
|
-
}
|
|
934
|
-
.seek-time .seek-time__duration {
|
|
935
|
-
display: inline-block;
|
|
936
|
-
color: rgba(255, 255, 255, 0.5);
|
|
937
|
-
font-size: 10px;
|
|
938
|
-
padding-right: 7px;
|
|
939
|
-
vertical-align: top;
|
|
1021
|
+
}.quality-levels li.disabled {
|
|
1022
|
+
opacity: 0.5;
|
|
1023
|
+
pointer-events: none;
|
|
940
1024
|
}
|
|
941
|
-
.
|
|
942
|
-
content: "|";
|
|
943
|
-
margin-right: 7px;
|
|
944
|
-
}.player-poster {
|
|
945
|
-
display: flex;
|
|
946
|
-
justify-content: center;
|
|
947
|
-
align-items: center;
|
|
948
|
-
position: absolute;
|
|
949
|
-
height: 100%;
|
|
950
|
-
width: 100%;
|
|
951
|
-
z-index: 998;
|
|
952
|
-
top: 0;
|
|
953
|
-
left: 0;
|
|
1025
|
+
.quality-levels li.current {
|
|
954
1026
|
background-color: #000;
|
|
955
|
-
background-size: cover;
|
|
956
|
-
background-repeat: no-repeat;
|
|
957
|
-
background-position: 50% 50%;
|
|
958
|
-
}
|
|
959
|
-
.player-poster.clickable {
|
|
960
|
-
cursor: pointer;
|
|
961
|
-
}
|
|
962
|
-
.player-poster:hover .play-wrapper {
|
|
963
|
-
opacity: 1;
|
|
964
|
-
}
|
|
965
|
-
.player-poster .play-wrapper {
|
|
966
|
-
width: 100%;
|
|
967
|
-
height: 25%;
|
|
968
|
-
margin: 0 auto;
|
|
969
|
-
opacity: 0.75;
|
|
970
|
-
transition: opacity 0.1s ease;
|
|
971
|
-
}
|
|
972
|
-
.player-poster .play-wrapper svg {
|
|
973
|
-
height: 100%;
|
|
974
|
-
display: inline;
|
|
975
|
-
}
|
|
976
|
-
.player-poster .play-wrapper svg path {
|
|
977
|
-
fill: #fff;
|
|
978
1027
|
}[data-player] {
|
|
979
1028
|
--bottom-panel: 40px;
|
|
980
1029
|
}
|
|
@@ -1794,89 +1843,40 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1794
1843
|
}
|
|
1795
1844
|
.multicamera[data-multicamera] li.current a {
|
|
1796
1845
|
color: #f00;
|
|
1797
|
-
}.
|
|
1798
|
-
|
|
1799
|
-
z-index: 5;
|
|
1800
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
1801
|
-
}
|
|
1802
|
-
.share_plugin[data-share].share-hide .share-button-container {
|
|
1803
|
-
right: -50px;
|
|
1804
|
-
}
|
|
1805
|
-
.share_plugin[data-share] .share-button-container {
|
|
1806
|
-
cursor: pointer;
|
|
1807
|
-
width: 36px;
|
|
1808
|
-
height: 36px;
|
|
1809
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
1810
|
-
border-radius: 4px;
|
|
1811
|
-
position: absolute;
|
|
1812
|
-
right: 10px;
|
|
1813
|
-
top: 10px;
|
|
1814
|
-
padding-top: 6px;
|
|
1815
|
-
transition: all 0.3s ease-out;
|
|
1816
|
-
}
|
|
1817
|
-
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
1818
|
-
background-color: transparent;
|
|
1819
|
-
border: 0;
|
|
1820
|
-
margin: 0 6px;
|
|
1821
|
-
padding: 0;
|
|
1822
|
-
cursor: pointer;
|
|
1823
|
-
display: inline-block;
|
|
1824
|
-
width: 19px;
|
|
1825
|
-
height: 20px;
|
|
1826
|
-
}
|
|
1827
|
-
.share_plugin[data-share] .share-container {
|
|
1828
|
-
pointer-events: auto;
|
|
1846
|
+
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
1847
|
+
color: #CCCACA;
|
|
1829
1848
|
position: absolute;
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
}
|
|
1839
|
-
.share_plugin[data-share] .share-container .share-container-header {
|
|
1840
|
-
text-align: left;
|
|
1841
|
-
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
1842
|
-
}
|
|
1843
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
1844
|
-
display: inline-block;
|
|
1845
|
-
font-size: 16px;
|
|
1846
|
-
margin: 5px;
|
|
1847
|
-
}
|
|
1848
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
1849
|
-
display: inline-block;
|
|
1850
|
-
width: 24px;
|
|
1851
|
-
float: right;
|
|
1852
|
-
margin: 5px;
|
|
1853
|
-
cursor: pointer;
|
|
1854
|
-
}
|
|
1855
|
-
.share_plugin[data-share] .share-container .share-container-main {
|
|
1856
|
-
margin-bottom: 8px;
|
|
1849
|
+
top: 0;
|
|
1850
|
+
height: 100%;
|
|
1851
|
+
width: 100%;
|
|
1852
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
1853
|
+
z-index: 2000;
|
|
1854
|
+
display: flex;
|
|
1855
|
+
flex-direction: column;
|
|
1856
|
+
justify-content: center;
|
|
1857
1857
|
}
|
|
1858
|
-
.
|
|
1859
|
-
text-align: left;
|
|
1858
|
+
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
1860
1859
|
font-size: 14px;
|
|
1861
|
-
|
|
1860
|
+
color: #CCCACA;
|
|
1861
|
+
margin-top: 45px;
|
|
1862
1862
|
}
|
|
1863
|
-
.
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
border: solid 1px #d3d3d3;
|
|
1868
|
-
width: calc(100% - 10px);
|
|
1869
|
-
padding: 5px;
|
|
1863
|
+
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
1864
|
+
font-weight: bold;
|
|
1865
|
+
line-height: 30px;
|
|
1866
|
+
font-size: 18px;
|
|
1870
1867
|
}
|
|
1871
|
-
.
|
|
1872
|
-
|
|
1873
|
-
|
|
1868
|
+
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
1869
|
+
width: 90%;
|
|
1870
|
+
margin: 0 auto;
|
|
1874
1871
|
}
|
|
1875
|
-
.
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1872
|
+
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
1873
|
+
font-size: 13px;
|
|
1874
|
+
margin-top: 15px;
|
|
1875
|
+
}
|
|
1876
|
+
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
1879
1877
|
cursor: pointer;
|
|
1878
|
+
width: 30px;
|
|
1879
|
+
margin: 15px auto 0;
|
|
1880
1880
|
}.player-logo[data-logo] {
|
|
1881
1881
|
position: absolute;
|
|
1882
1882
|
z-index: 2;
|