@gcorevideo/player 2.24.13 → 2.24.14
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/dvr-controls/dvr_controls.scss +19 -20
- package/dist/core.js +1 -1
- package/dist/index.css +807 -810
- package/dist/index.embed.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/dist/index.css
CHANGED
|
@@ -222,55 +222,28 @@
|
|
|
222
222
|
100% {
|
|
223
223
|
color: #B80000;
|
|
224
224
|
}
|
|
225
|
-
}
|
|
226
|
-
|
|
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] {
|
|
225
|
+
}@charset "UTF-8";
|
|
226
|
+
.media-control-clips {
|
|
246
227
|
display: flex;
|
|
247
|
-
|
|
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;
|
|
228
|
+
gap: 6px;
|
|
265
229
|
}
|
|
266
|
-
.
|
|
267
|
-
|
|
230
|
+
.media-control-clips .media-clip-text {
|
|
231
|
+
text-overflow: ellipsis;
|
|
232
|
+
white-space: nowrap;
|
|
233
|
+
overflow: hidden;
|
|
234
|
+
display: inline-block;
|
|
235
|
+
text-overflow: ellipsis;
|
|
236
|
+
color: white;
|
|
237
|
+
cursor: default;
|
|
238
|
+
line-height: var(--bottom-panel);
|
|
239
|
+
position: relative;
|
|
268
240
|
}
|
|
269
|
-
.
|
|
270
|
-
|
|
241
|
+
.media-control-clips .media-clip-text::before {
|
|
242
|
+
content: "•";
|
|
243
|
+
padding-right: 6px;
|
|
271
244
|
}
|
|
272
|
-
.
|
|
273
|
-
|
|
245
|
+
.media-control-clips .media-clip-text {
|
|
246
|
+
max-width: 100px;
|
|
274
247
|
}.dvr-controls {
|
|
275
248
|
--disabled-opacity: 0.3;
|
|
276
249
|
--circle-radius: 5px;
|
|
@@ -308,17 +281,14 @@
|
|
|
308
281
|
.dvr-controls.disabled:before {
|
|
309
282
|
background-color: var(--player-dvr-color);
|
|
310
283
|
}
|
|
311
|
-
|
|
312
|
-
.live-info {
|
|
284
|
+
.dvr-controls .live-info {
|
|
313
285
|
text-transform: uppercase;
|
|
314
286
|
color: #fffffe;
|
|
315
287
|
}
|
|
316
|
-
.live-info::before {
|
|
317
|
-
background-color: var(--player-live-color);
|
|
288
|
+
.dvr-controls .live-info::before {
|
|
318
289
|
background-color: #ed4f4a;
|
|
319
290
|
}
|
|
320
|
-
|
|
321
|
-
.live-button {
|
|
291
|
+
.dvr-controls .live-button {
|
|
322
292
|
cursor: pointer;
|
|
323
293
|
outline: none;
|
|
324
294
|
border: 0;
|
|
@@ -328,758 +298,790 @@
|
|
|
328
298
|
opacity: 0.7;
|
|
329
299
|
transition: all 0.1s ease;
|
|
330
300
|
}
|
|
331
|
-
.live-button:hover {
|
|
301
|
+
.dvr-controls .live-button:hover {
|
|
332
302
|
opacity: 1;
|
|
333
303
|
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
334
|
-
}.
|
|
304
|
+
}.big-mute-icon-wrapper[data-big-mute] {
|
|
305
|
+
position: absolute;
|
|
306
|
+
z-index: 9998;
|
|
307
|
+
background-color: transparent;
|
|
335
308
|
display: flex;
|
|
336
309
|
justify-content: center;
|
|
337
|
-
align-items: center;
|
|
338
|
-
position: absolute;
|
|
339
|
-
height: 100%;
|
|
340
|
-
width: 100%;
|
|
341
|
-
z-index: 998;
|
|
342
|
-
top: 0;
|
|
343
|
-
left: 0;
|
|
344
|
-
background-color: #000;
|
|
345
|
-
background-size: cover;
|
|
346
|
-
background-repeat: no-repeat;
|
|
347
|
-
background-position: 50% 50%;
|
|
348
|
-
}
|
|
349
|
-
.player-poster.clickable {
|
|
350
|
-
cursor: pointer;
|
|
351
|
-
}
|
|
352
|
-
.player-poster:hover .play-wrapper {
|
|
353
|
-
opacity: 1;
|
|
354
|
-
}
|
|
355
|
-
.player-poster .play-wrapper {
|
|
356
310
|
width: 100%;
|
|
357
|
-
height:
|
|
311
|
+
height: calc(100% - 50px);
|
|
358
312
|
margin: 0 auto;
|
|
359
313
|
opacity: 0.75;
|
|
360
314
|
transition: opacity 0.1s ease;
|
|
315
|
+
pointer-events: auto;
|
|
361
316
|
}
|
|
362
|
-
.
|
|
363
|
-
|
|
364
|
-
display: inline;
|
|
317
|
+
.big-mute-icon-wrapper[data-big-mute].hide {
|
|
318
|
+
display: none;
|
|
365
319
|
}
|
|
366
|
-
.
|
|
367
|
-
|
|
368
|
-
}:root {
|
|
369
|
-
--primary-background-color: #000;
|
|
370
|
-
--secondary-background-color: #262626;
|
|
371
|
-
--primary-text-color: #fff;
|
|
372
|
-
--secondary-text-color: #fff4f2;
|
|
373
|
-
--hover-text-color: #f9b090;
|
|
374
|
-
--speedtest-red: #df564d;
|
|
375
|
-
--speedtest-orange: #df934d;
|
|
376
|
-
--speedtest-yellow: #dfd04d;
|
|
377
|
-
--speedtest-light-green: #c2df4d;
|
|
378
|
-
--speedtest-green: #73df4d;
|
|
320
|
+
.big-mute-icon-wrapper[data-big-mute]:hover {
|
|
321
|
+
cursor: pointer;
|
|
379
322
|
}
|
|
380
323
|
|
|
381
|
-
.
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
font-weight: 500;
|
|
397
|
-
background: var(--primary-background-color);
|
|
398
|
-
color: #fff;
|
|
399
|
-
z-index: 20000;
|
|
400
|
-
overflow: auto;
|
|
401
|
-
max-width: 100%;
|
|
402
|
-
}
|
|
403
|
-
.clappr-nerd-stats .stats-box-top {
|
|
404
|
-
position: absolute;
|
|
405
|
-
top: 0;
|
|
406
|
-
left: 0;
|
|
407
|
-
z-index: 9999;
|
|
408
|
-
width: 100%;
|
|
409
|
-
height: 32px;
|
|
410
|
-
background: var(--primary-background-color);
|
|
324
|
+
.big-mute-icon[data-big-mute-icon] {
|
|
325
|
+
display: flex;
|
|
326
|
+
align-items: center;
|
|
327
|
+
justify-content: center;
|
|
328
|
+
align-self: center;
|
|
329
|
+
width: 120px;
|
|
330
|
+
height: 120px;
|
|
331
|
+
border: 2px solid white;
|
|
332
|
+
border-radius: 50%;
|
|
333
|
+
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
334
|
+
filter: alpha(opacity=60);
|
|
335
|
+
opacity: 1;
|
|
336
|
+
box-shadow: 0 0 1px 0 white;
|
|
337
|
+
background: rgba(240, 243, 247, 0.9411764706);
|
|
338
|
+
z-index: 10000;
|
|
411
339
|
}
|
|
412
|
-
.
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
display: block;
|
|
417
|
-
width: 12px;
|
|
418
|
-
height: 12px;
|
|
340
|
+
.big-mute-icon[data-big-mute-icon] svg {
|
|
341
|
+
margin-left: 5px;
|
|
342
|
+
width: 80px;
|
|
343
|
+
height: 80px;
|
|
419
344
|
}
|
|
420
|
-
.
|
|
421
|
-
fill:
|
|
345
|
+
.big-mute-icon[data-big-mute-icon] svg path {
|
|
346
|
+
fill: #1f1e1e !important;
|
|
422
347
|
}
|
|
423
|
-
.
|
|
424
|
-
|
|
348
|
+
.big-mute-icon[data-big-mute-icon]:hover {
|
|
349
|
+
background: rgba(240, 243, 247, 0.8784313725);
|
|
425
350
|
}
|
|
426
|
-
.
|
|
427
|
-
|
|
428
|
-
|
|
351
|
+
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
352
|
+
fill: #151515 !important;
|
|
353
|
+
}.media-control-pip {
|
|
354
|
+
order: 95;
|
|
429
355
|
display: flex;
|
|
430
|
-
flex-wrap: wrap;
|
|
431
356
|
}
|
|
432
|
-
.
|
|
433
|
-
|
|
434
|
-
min-width: 200px;
|
|
357
|
+
.media-control-pip button {
|
|
358
|
+
height: 20px;
|
|
435
359
|
}
|
|
436
|
-
.
|
|
437
|
-
|
|
360
|
+
.media-control-pip button svg {
|
|
361
|
+
height: 20px;
|
|
362
|
+
}*, :focus, :visited {
|
|
363
|
+
outline: none !important;
|
|
438
364
|
}
|
|
439
|
-
|
|
440
|
-
|
|
365
|
+
|
|
366
|
+
.gear-wrapper .go-back {
|
|
367
|
+
font-weight: 600;
|
|
368
|
+
font-size: 14px;
|
|
369
|
+
line-height: 20px;
|
|
370
|
+
width: 100%;
|
|
371
|
+
text-align: left;
|
|
372
|
+
padding: 12px;
|
|
441
373
|
}
|
|
442
|
-
.
|
|
443
|
-
|
|
374
|
+
.gear-wrapper .go-back .arrow-left-icon {
|
|
375
|
+
float: left;
|
|
376
|
+
padding-top: 2px;
|
|
444
377
|
padding-right: 2px;
|
|
445
|
-
background: var(--primary-background-color);
|
|
446
|
-
gap: 10px;
|
|
447
378
|
}
|
|
448
|
-
.
|
|
449
|
-
|
|
450
|
-
width: 200px;
|
|
451
|
-
flex: 0 1 50%;
|
|
379
|
+
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
380
|
+
height: 16px;
|
|
452
381
|
}
|
|
453
|
-
.
|
|
454
|
-
|
|
455
|
-
|
|
382
|
+
.gear-wrapper ul.gear-sub-menu {
|
|
383
|
+
width: 100%;
|
|
384
|
+
list-style-type: none;
|
|
385
|
+
min-width: 60px;
|
|
386
|
+
border-top: 2px solid rgb(36, 36, 36);
|
|
387
|
+
overflow-y: auto;
|
|
388
|
+
}
|
|
389
|
+
.gear-wrapper ul.gear-sub-menu li {
|
|
390
|
+
font-size: 12px;
|
|
456
391
|
text-align: left;
|
|
457
392
|
}
|
|
458
|
-
.
|
|
459
|
-
|
|
393
|
+
.gear-wrapper ul.gear-sub-menu li[data-title] {
|
|
394
|
+
background-color: #c3c2c2;
|
|
395
|
+
padding: 5px;
|
|
460
396
|
}
|
|
461
|
-
.
|
|
462
|
-
|
|
397
|
+
.gear-wrapper ul.gear-sub-menu li a {
|
|
398
|
+
display: block;
|
|
399
|
+
text-decoration: none;
|
|
400
|
+
height: 32px;
|
|
401
|
+
padding: 5px 10px;
|
|
402
|
+
line-height: 22px;
|
|
403
|
+
color: #fffffe;
|
|
463
404
|
}
|
|
464
|
-
.
|
|
465
|
-
|
|
405
|
+
.gear-wrapper ul.gear-sub-menu li a:hover {
|
|
406
|
+
color: white;
|
|
407
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
466
408
|
}
|
|
467
|
-
.
|
|
468
|
-
|
|
409
|
+
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
410
|
+
color: white;
|
|
411
|
+
text-decoration: none;
|
|
469
412
|
}
|
|
470
|
-
.
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
413
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
414
|
+
width: 30px;
|
|
415
|
+
height: 20px;
|
|
416
|
+
float: left;
|
|
417
|
+
display: block;
|
|
475
418
|
}
|
|
476
|
-
.
|
|
477
|
-
|
|
478
|
-
position: absolute;
|
|
479
|
-
right: 0;
|
|
480
|
-
top: 0;
|
|
419
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
420
|
+
display: none;
|
|
481
421
|
}
|
|
482
|
-
|
|
483
|
-
|
|
422
|
+
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
423
|
+
display: inline;
|
|
424
|
+
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
425
|
+
order: 99;
|
|
426
|
+
height: 20px;
|
|
427
|
+
}
|
|
428
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
|
|
429
|
+
position: absolute;
|
|
430
|
+
right: 16px;
|
|
431
|
+
bottom: 52px;
|
|
484
432
|
width: 250px;
|
|
433
|
+
min-height: 48px;
|
|
434
|
+
z-index: 9999;
|
|
435
|
+
border-radius: 4px;
|
|
485
436
|
}
|
|
486
|
-
.
|
|
487
|
-
|
|
437
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
|
|
438
|
+
padding: 8px 0;
|
|
488
439
|
}
|
|
489
|
-
.
|
|
490
|
-
|
|
491
|
-
|
|
440
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
|
|
441
|
+
margin: 0;
|
|
442
|
+
text-align: left;
|
|
443
|
+
line-height: 22px;
|
|
444
|
+
padding: 5px 14px;
|
|
445
|
+
width: 250px;
|
|
446
|
+
font-size: 12px;
|
|
447
|
+
display: flex;
|
|
448
|
+
align-items: center;
|
|
449
|
+
justify-content: flex-start;
|
|
450
|
+
gap: 8px;
|
|
492
451
|
}
|
|
493
|
-
.
|
|
494
|
-
|
|
495
|
-
|
|
452
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
|
|
453
|
+
flex: 24px 0 0;
|
|
454
|
+
height: 24px;
|
|
496
455
|
}
|
|
497
|
-
.
|
|
498
|
-
|
|
456
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
|
|
457
|
+
visibility: hidden;
|
|
458
|
+
display: inline-block;
|
|
499
459
|
}
|
|
500
|
-
.
|
|
501
|
-
|
|
460
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
|
|
461
|
+
flex: 0 1 100%;
|
|
502
462
|
}
|
|
503
|
-
.
|
|
504
|
-
|
|
505
|
-
height:
|
|
506
|
-
text-align: center;
|
|
463
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
|
|
464
|
+
flex: 0 0 14px;
|
|
465
|
+
height: 24px;
|
|
507
466
|
}
|
|
508
|
-
.
|
|
509
|
-
|
|
467
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
|
|
468
|
+
flex: 1 0 auto;
|
|
469
|
+
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
470
|
+
color: #CCCACA;
|
|
471
|
+
position: absolute;
|
|
472
|
+
top: 0;
|
|
473
|
+
height: 100%;
|
|
474
|
+
width: 100%;
|
|
475
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
476
|
+
z-index: 2000;
|
|
477
|
+
display: flex;
|
|
478
|
+
flex-direction: column;
|
|
479
|
+
justify-content: center;
|
|
510
480
|
}
|
|
511
|
-
.
|
|
512
|
-
|
|
481
|
+
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
482
|
+
font-size: 14px;
|
|
483
|
+
color: #CCCACA;
|
|
484
|
+
margin-top: 45px;
|
|
513
485
|
}
|
|
514
|
-
.
|
|
515
|
-
|
|
516
|
-
|
|
486
|
+
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
487
|
+
font-weight: bold;
|
|
488
|
+
line-height: 30px;
|
|
489
|
+
font-size: 18px;
|
|
517
490
|
}
|
|
518
|
-
.
|
|
519
|
-
|
|
520
|
-
|
|
491
|
+
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
492
|
+
width: 90%;
|
|
493
|
+
margin: 0 auto;
|
|
521
494
|
}
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
margin:
|
|
525
|
-
color: #000;
|
|
495
|
+
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
496
|
+
font-size: 13px;
|
|
497
|
+
margin-top: 15px;
|
|
526
498
|
}
|
|
527
|
-
|
|
528
|
-
|
|
499
|
+
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
500
|
+
cursor: pointer;
|
|
501
|
+
width: 30px;
|
|
502
|
+
margin: 15px auto 0;
|
|
503
|
+
}.context-menu {
|
|
504
|
+
z-index: 999;
|
|
529
505
|
position: absolute;
|
|
530
506
|
top: 0;
|
|
531
507
|
left: 0;
|
|
532
|
-
|
|
533
|
-
height: 100%;
|
|
534
|
-
z-index: 9999;
|
|
508
|
+
text-align: center;
|
|
535
509
|
}
|
|
536
|
-
.
|
|
537
|
-
|
|
538
|
-
|
|
510
|
+
.context-menu .context-menu-list {
|
|
511
|
+
font-family: "Proxima Nova", sans-serif;
|
|
512
|
+
font-size: 12px;
|
|
513
|
+
line-height: 12px;
|
|
514
|
+
list-style-type: none;
|
|
515
|
+
text-align: left;
|
|
516
|
+
padding: 5px;
|
|
517
|
+
margin-left: auto;
|
|
518
|
+
margin-right: auto;
|
|
519
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
520
|
+
border: 1px solid #666;
|
|
521
|
+
border-radius: 4px;
|
|
539
522
|
}
|
|
540
|
-
.
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
523
|
+
.context-menu .context-menu-list-item button {
|
|
524
|
+
border: none;
|
|
525
|
+
background-color: transparent;
|
|
526
|
+
padding: 0;
|
|
527
|
+
color: white;
|
|
528
|
+
display: flex;
|
|
529
|
+
gap: 8px;
|
|
530
|
+
align-items: center;
|
|
531
|
+
justify-content: center;
|
|
544
532
|
cursor: pointer;
|
|
545
|
-
|
|
533
|
+
padding: 5px;
|
|
534
|
+
width: 100%;
|
|
546
535
|
}
|
|
547
|
-
.
|
|
548
|
-
|
|
536
|
+
.context-menu .context-menu-list-item_icon {
|
|
537
|
+
width: 20px;
|
|
538
|
+
height: 20px;
|
|
539
|
+
}*, :focus, :visited {
|
|
540
|
+
outline: none !important;
|
|
549
541
|
}
|
|
550
542
|
|
|
551
|
-
.
|
|
543
|
+
.multicamera[data-multicamera] {
|
|
552
544
|
float: right;
|
|
553
|
-
margin:
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
padding: 0;
|
|
558
|
-
}
|
|
559
|
-
|
|
560
|
-
.speedtest-summary {
|
|
561
|
-
width: 100%;
|
|
562
|
-
border-top: 1px solid var(--secondary-background-color) !important;
|
|
563
|
-
border-bottom: 1px solid var(--secondary-background-color) !important;
|
|
564
|
-
display: flex !important;
|
|
565
|
-
flex-direction: column;
|
|
566
|
-
align-items: stretch;
|
|
567
|
-
justify-content: space-between;
|
|
545
|
+
margin-top: 4px;
|
|
546
|
+
position: relative;
|
|
547
|
+
margin-right: 20px;
|
|
548
|
+
width: 20px;
|
|
568
549
|
}
|
|
569
|
-
.
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
550
|
+
.multicamera[data-multicamera] button {
|
|
551
|
+
background-color: transparent;
|
|
552
|
+
color: #fff;
|
|
553
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
554
|
+
-webkit-font-smoothing: antialiased;
|
|
555
|
+
border: none;
|
|
574
556
|
font-size: 14px;
|
|
575
|
-
|
|
576
|
-
line-height: 20px;
|
|
557
|
+
padding: 0;
|
|
577
558
|
}
|
|
578
|
-
.
|
|
559
|
+
.multicamera[data-multicamera] button svg {
|
|
560
|
+
height: 20px;
|
|
579
561
|
position: relative;
|
|
580
|
-
|
|
581
|
-
flex-direction: row;
|
|
582
|
-
width: 100%;
|
|
583
|
-
}
|
|
584
|
-
.speedtest-summary .speedtest-summary-block .speedtest-summary-subblock {
|
|
585
|
-
width: 50%;
|
|
586
|
-
margin-top: 4px;
|
|
587
|
-
margin-bottom: 12px;
|
|
562
|
+
margin-top: 6px;
|
|
588
563
|
}
|
|
589
|
-
.
|
|
590
|
-
|
|
591
|
-
width: 248px;
|
|
592
|
-
max-width: 100%;
|
|
564
|
+
.multicamera[data-multicamera] button:hover {
|
|
565
|
+
color: #c9c9c9;
|
|
593
566
|
}
|
|
594
|
-
|
|
595
|
-
.
|
|
596
|
-
width: 100%;
|
|
597
|
-
height: 36px;
|
|
598
|
-
display: flex !important;
|
|
599
|
-
flex-direction: column !important;
|
|
600
|
-
justify-content: space-between !important;
|
|
567
|
+
.multicamera[data-multicamera] button.changing {
|
|
568
|
+
animation: pulse 0.5s infinite alternate;
|
|
601
569
|
}
|
|
602
|
-
.
|
|
603
|
-
|
|
604
|
-
height:
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
text-align: left;
|
|
570
|
+
.multicamera[data-multicamera] button span.quality-arrow {
|
|
571
|
+
width: 9px;
|
|
572
|
+
height: 6px;
|
|
573
|
+
margin-top: 11px;
|
|
574
|
+
margin-left: 5px;
|
|
608
575
|
}
|
|
609
|
-
.
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
576
|
+
.multicamera[data-multicamera] > ul {
|
|
577
|
+
padding: 6px 0;
|
|
578
|
+
right: -24px;
|
|
579
|
+
width: 245px;
|
|
580
|
+
list-style-type: none;
|
|
581
|
+
position: absolute;
|
|
582
|
+
bottom: 48px;
|
|
583
|
+
border-radius: 4px;
|
|
584
|
+
display: none;
|
|
585
|
+
background-color: rgba(74, 74, 74, 0.9);
|
|
617
586
|
}
|
|
618
|
-
.
|
|
619
|
-
|
|
620
|
-
|
|
587
|
+
.multicamera[data-multicamera] > ul::after {
|
|
588
|
+
content: "";
|
|
589
|
+
position: absolute;
|
|
590
|
+
top: 100%;
|
|
591
|
+
left: 85%;
|
|
592
|
+
margin-left: -10px;
|
|
593
|
+
width: 0;
|
|
594
|
+
height: 0;
|
|
595
|
+
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
596
|
+
border-right: 10px solid transparent;
|
|
597
|
+
border-left: 10px solid transparent;
|
|
621
598
|
}
|
|
622
|
-
.
|
|
623
|
-
|
|
599
|
+
.multicamera[data-multicamera] li {
|
|
600
|
+
font-size: 10px;
|
|
601
|
+
cursor: pointer;
|
|
624
602
|
}
|
|
625
|
-
.
|
|
626
|
-
|
|
603
|
+
.multicamera[data-multicamera] li .multicamera-item {
|
|
604
|
+
display: flex;
|
|
605
|
+
padding: 10px 0;
|
|
606
|
+
justify-content: center;
|
|
607
|
+
position: relative;
|
|
627
608
|
}
|
|
628
|
-
.
|
|
629
|
-
|
|
609
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
610
|
+
pointer-events: none;
|
|
630
611
|
}
|
|
631
|
-
.
|
|
632
|
-
|
|
612
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
613
|
+
opacity: 0.5;
|
|
633
614
|
}
|
|
634
|
-
.
|
|
635
|
-
|
|
615
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
616
|
+
opacity: 0.5;
|
|
636
617
|
}
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
position: relative;
|
|
640
|
-
float: left;
|
|
641
|
-
width: 100%;
|
|
642
|
-
height: 30px;
|
|
643
|
-
line-height: 16px;
|
|
618
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
619
|
+
background-color: rgba(0, 0, 0, 0);
|
|
644
620
|
}
|
|
645
|
-
.
|
|
646
|
-
|
|
647
|
-
bottom: 0;
|
|
648
|
-
left: 0;
|
|
649
|
-
color: var(--secondary-text-color);
|
|
650
|
-
text-decoration: underline !important;
|
|
621
|
+
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
622
|
+
background-color: rgba(0, 0, 0, 0.3);
|
|
651
623
|
}
|
|
652
|
-
.
|
|
653
|
-
|
|
624
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
625
|
+
width: 80px;
|
|
626
|
+
height: 60px;
|
|
654
627
|
}
|
|
655
|
-
.
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
628
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
|
|
629
|
+
width: 80px;
|
|
630
|
+
height: 60px;
|
|
631
|
+
}
|
|
632
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
633
|
+
width: 120px;
|
|
634
|
+
text-align: left;
|
|
635
|
+
margin-left: 15px;
|
|
636
|
+
}
|
|
637
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
638
|
+
width: 120px;
|
|
639
|
+
height: 20px;
|
|
640
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
660
641
|
font-size: 14px;
|
|
661
|
-
font-weight:
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
642
|
+
font-weight: normal;
|
|
643
|
+
font-style: normal;
|
|
644
|
+
font-stretch: normal;
|
|
645
|
+
line-height: 1.43;
|
|
646
|
+
letter-spacing: normal;
|
|
647
|
+
text-align: left;
|
|
648
|
+
color: #fff;
|
|
649
|
+
text-overflow: ellipsis;
|
|
650
|
+
overflow: hidden;
|
|
667
651
|
}
|
|
668
|
-
.
|
|
669
|
-
|
|
652
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
653
|
+
opacity: 0.6;
|
|
670
654
|
}
|
|
671
|
-
.
|
|
672
|
-
color:
|
|
655
|
+
.multicamera[data-multicamera] li[data-title] {
|
|
656
|
+
background-color: #c3c2c2;
|
|
657
|
+
padding: 5px;
|
|
673
658
|
}
|
|
674
|
-
.
|
|
675
|
-
|
|
659
|
+
.multicamera[data-multicamera] li a {
|
|
660
|
+
color: #444;
|
|
661
|
+
padding: 2px 10px;
|
|
662
|
+
display: block;
|
|
663
|
+
text-decoration: none;
|
|
676
664
|
}
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
height: auto;
|
|
681
|
-
width: auto;
|
|
682
|
-
inset: 0;
|
|
683
|
-
min-width: 100vw;
|
|
684
|
-
padding-bottom: 4px;
|
|
685
|
-
padding-left: 4px;
|
|
686
|
-
padding-right: 4px;
|
|
665
|
+
.multicamera[data-multicamera] li a:hover {
|
|
666
|
+
background-color: #555;
|
|
667
|
+
color: white;
|
|
687
668
|
}
|
|
688
|
-
.
|
|
689
|
-
|
|
669
|
+
.multicamera[data-multicamera] li a:hover a {
|
|
670
|
+
color: white;
|
|
671
|
+
text-decoration: none;
|
|
690
672
|
}
|
|
691
|
-
.
|
|
692
|
-
|
|
673
|
+
.multicamera[data-multicamera] li.current a {
|
|
674
|
+
color: #f00;
|
|
693
675
|
}
|
|
694
676
|
|
|
695
|
-
@
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
height: auto;
|
|
699
|
-
}
|
|
700
|
-
.mobile .speedtest-summary-block {
|
|
701
|
-
width: 100%;
|
|
702
|
-
flex-direction: column;
|
|
703
|
-
}
|
|
704
|
-
.mobile .speedtest-summary-block .speedtest-summary-subblock {
|
|
705
|
-
width: 100%;
|
|
706
|
-
}
|
|
707
|
-
.mobile .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
708
|
-
width: 100%;
|
|
709
|
-
}
|
|
710
|
-
.mobile .speedtest-summary-header {
|
|
711
|
-
padding-top: 12px;
|
|
712
|
-
height: 38px;
|
|
713
|
-
text-align: center;
|
|
677
|
+
@keyframes pulse {
|
|
678
|
+
0% {
|
|
679
|
+
color: #fff;
|
|
714
680
|
}
|
|
715
|
-
|
|
716
|
-
|
|
681
|
+
50% {
|
|
682
|
+
color: #ff0101;
|
|
717
683
|
}
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
transform: translate(-50%, -50%);
|
|
684
|
+
100% {
|
|
685
|
+
color: #B80000;
|
|
721
686
|
}
|
|
687
|
+
}.player-poster {
|
|
688
|
+
display: flex;
|
|
689
|
+
justify-content: center;
|
|
690
|
+
align-items: center;
|
|
691
|
+
position: absolute;
|
|
692
|
+
height: 100%;
|
|
693
|
+
width: 100%;
|
|
694
|
+
z-index: 998;
|
|
695
|
+
top: 0;
|
|
696
|
+
left: 0;
|
|
697
|
+
background-color: #000;
|
|
698
|
+
background-size: cover;
|
|
699
|
+
background-repeat: no-repeat;
|
|
700
|
+
background-position: 50% 50%;
|
|
722
701
|
}
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
flex-basis: 1fr;
|
|
726
|
-
}
|
|
702
|
+
.player-poster.clickable {
|
|
703
|
+
cursor: pointer;
|
|
727
704
|
}
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
top: unset;
|
|
731
|
-
}
|
|
732
|
-
}@charset "UTF-8";
|
|
733
|
-
.media-control-clips {
|
|
734
|
-
display: flex;
|
|
735
|
-
gap: 6px;
|
|
705
|
+
.player-poster:hover .play-wrapper {
|
|
706
|
+
opacity: 1;
|
|
736
707
|
}
|
|
737
|
-
.
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
color: white;
|
|
744
|
-
cursor: default;
|
|
745
|
-
line-height: var(--bottom-panel);
|
|
746
|
-
position: relative;
|
|
708
|
+
.player-poster .play-wrapper {
|
|
709
|
+
width: 100%;
|
|
710
|
+
height: 25%;
|
|
711
|
+
margin: 0 auto;
|
|
712
|
+
opacity: 0.75;
|
|
713
|
+
transition: opacity 0.1s ease;
|
|
747
714
|
}
|
|
748
|
-
.
|
|
749
|
-
|
|
750
|
-
|
|
715
|
+
.player-poster .play-wrapper svg {
|
|
716
|
+
height: 100%;
|
|
717
|
+
display: inline;
|
|
751
718
|
}
|
|
752
|
-
.
|
|
753
|
-
|
|
754
|
-
}
|
|
755
|
-
|
|
719
|
+
.player-poster .play-wrapper svg path {
|
|
720
|
+
fill: #fff;
|
|
721
|
+
}:root {
|
|
722
|
+
--primary-background-color: #000;
|
|
723
|
+
--secondary-background-color: #262626;
|
|
724
|
+
--primary-text-color: #fff;
|
|
725
|
+
--secondary-text-color: #fff4f2;
|
|
726
|
+
--hover-text-color: #f9b090;
|
|
727
|
+
--speedtest-red: #df564d;
|
|
728
|
+
--speedtest-orange: #df934d;
|
|
729
|
+
--speedtest-yellow: #dfd04d;
|
|
730
|
+
--speedtest-light-green: #c2df4d;
|
|
731
|
+
--speedtest-green: #73df4d;
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
.clappr-nerd-stats {
|
|
735
|
+
cursor: default;
|
|
736
|
+
}
|
|
737
|
+
.clappr-nerd-stats .stats-box {
|
|
756
738
|
position: absolute;
|
|
739
|
+
display: inline-block;
|
|
740
|
+
bottom: 52px;
|
|
741
|
+
right: 0;
|
|
757
742
|
top: 0;
|
|
758
743
|
left: 0;
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
744
|
+
bottom: 0;
|
|
745
|
+
padding: 0 10px 12px;
|
|
746
|
+
margin: 0;
|
|
747
|
+
line-height: 20px;
|
|
763
748
|
font-size: 12px;
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
771
|
-
border: 1px solid #666;
|
|
772
|
-
border-radius: 4px;
|
|
749
|
+
font-weight: 500;
|
|
750
|
+
background: var(--primary-background-color);
|
|
751
|
+
color: #fff;
|
|
752
|
+
z-index: 20000;
|
|
753
|
+
overflow: auto;
|
|
754
|
+
max-width: 100%;
|
|
773
755
|
}
|
|
774
|
-
.
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
display: flex;
|
|
780
|
-
gap: 8px;
|
|
781
|
-
align-items: center;
|
|
782
|
-
justify-content: center;
|
|
783
|
-
cursor: pointer;
|
|
784
|
-
padding: 5px;
|
|
756
|
+
.clappr-nerd-stats .stats-box-top {
|
|
757
|
+
position: absolute;
|
|
758
|
+
top: 0;
|
|
759
|
+
left: 0;
|
|
760
|
+
z-index: 9999;
|
|
785
761
|
width: 100%;
|
|
762
|
+
height: 32px;
|
|
763
|
+
background: var(--primary-background-color);
|
|
786
764
|
}
|
|
787
|
-
.
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
765
|
+
.clappr-nerd-stats .stats-box-top .close-button {
|
|
766
|
+
position: absolute;
|
|
767
|
+
right: 12px;
|
|
768
|
+
top: 10px;
|
|
769
|
+
display: block;
|
|
770
|
+
width: 12px;
|
|
771
|
+
height: 12px;
|
|
792
772
|
}
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
font-weight: 600;
|
|
796
|
-
font-size: 14px;
|
|
797
|
-
line-height: 20px;
|
|
798
|
-
width: 100%;
|
|
799
|
-
text-align: left;
|
|
800
|
-
padding: 12px;
|
|
773
|
+
.clappr-nerd-stats .stats-box-top .close-button svg path {
|
|
774
|
+
fill: var(--primary-text-color);
|
|
801
775
|
}
|
|
802
|
-
.
|
|
803
|
-
|
|
804
|
-
padding-top: 2px;
|
|
805
|
-
padding-right: 2px;
|
|
776
|
+
.clappr-nerd-stats .stats-box-top .close-button:hover svg path {
|
|
777
|
+
fill: var(--hover-text-color);
|
|
806
778
|
}
|
|
807
|
-
.
|
|
808
|
-
|
|
779
|
+
.clappr-nerd-stats .stats-box-main {
|
|
780
|
+
overflow: hidden;
|
|
781
|
+
margin-top: 44px;
|
|
782
|
+
display: flex;
|
|
783
|
+
flex-wrap: wrap;
|
|
809
784
|
}
|
|
810
|
-
.
|
|
811
|
-
|
|
785
|
+
.clappr-nerd-stats .stats-box-main ul {
|
|
786
|
+
flex: 0 1 1fr;
|
|
787
|
+
min-width: 200px;
|
|
788
|
+
}
|
|
789
|
+
.clappr-nerd-stats .stats-box.wide {
|
|
790
|
+
width: 820px;
|
|
791
|
+
}
|
|
792
|
+
.clappr-nerd-stats .stats-box ul, .clappr-nerd-stats .stats-box li {
|
|
812
793
|
list-style-type: none;
|
|
813
|
-
min-width: 60px;
|
|
814
|
-
border-top: 2px solid rgb(36, 36, 36);
|
|
815
|
-
overflow-y: auto;
|
|
816
794
|
}
|
|
817
|
-
.
|
|
818
|
-
|
|
819
|
-
|
|
795
|
+
.clappr-nerd-stats .stats-box ul div, .clappr-nerd-stats .stats-box li div {
|
|
796
|
+
padding-left: 2px;
|
|
797
|
+
padding-right: 2px;
|
|
798
|
+
background: var(--primary-background-color);
|
|
799
|
+
gap: 10px;
|
|
820
800
|
}
|
|
821
|
-
.
|
|
822
|
-
background-color: #c3c2c2;
|
|
801
|
+
.clappr-nerd-stats .stats-box ul {
|
|
823
802
|
padding: 5px;
|
|
803
|
+
width: 200px;
|
|
804
|
+
flex: 0 1 50%;
|
|
824
805
|
}
|
|
825
|
-
.
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
padding: 5px 10px;
|
|
830
|
-
line-height: 22px;
|
|
831
|
-
color: #fffffe;
|
|
806
|
+
.clappr-nerd-stats .stats-box ul li {
|
|
807
|
+
position: relative;
|
|
808
|
+
padding: 0 5px;
|
|
809
|
+
text-align: left;
|
|
832
810
|
}
|
|
833
|
-
.
|
|
834
|
-
|
|
835
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
811
|
+
.clappr-nerd-stats .stats-box ul li.canvas-wrapper {
|
|
812
|
+
padding: 0;
|
|
836
813
|
}
|
|
837
|
-
.
|
|
838
|
-
|
|
839
|
-
text-decoration: none;
|
|
814
|
+
.clappr-nerd-stats .stats-box ul li.canvas-wrapper canvas {
|
|
815
|
+
width: 100%;
|
|
840
816
|
}
|
|
841
|
-
.
|
|
842
|
-
|
|
843
|
-
height: 20px;
|
|
844
|
-
float: left;
|
|
845
|
-
display: block;
|
|
817
|
+
.clappr-nerd-stats .stats-box ul li:nth-child(2n) {
|
|
818
|
+
background: var(--secondary-background-color);
|
|
846
819
|
}
|
|
847
|
-
.
|
|
848
|
-
|
|
820
|
+
.clappr-nerd-stats .stats-box ul li:nth-child(2n) div {
|
|
821
|
+
background: var(--secondary-background-color);
|
|
849
822
|
}
|
|
850
|
-
.
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
823
|
+
.clappr-nerd-stats .stats-box ul li.title {
|
|
824
|
+
text-align: center;
|
|
825
|
+
font-weight: bold;
|
|
826
|
+
padding-bottom: 4px;
|
|
827
|
+
font-size: 14px;
|
|
855
828
|
}
|
|
856
|
-
.
|
|
829
|
+
.clappr-nerd-stats .stats-box ul li div {
|
|
830
|
+
margin: 0;
|
|
857
831
|
position: absolute;
|
|
858
|
-
right:
|
|
859
|
-
|
|
860
|
-
width: 250px;
|
|
861
|
-
min-height: 48px;
|
|
862
|
-
z-index: 9999;
|
|
863
|
-
border-radius: 4px;
|
|
864
|
-
}
|
|
865
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
|
|
866
|
-
padding: 8px 0;
|
|
832
|
+
right: 0;
|
|
833
|
+
top: 0;
|
|
867
834
|
}
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
text-align: left;
|
|
871
|
-
line-height: 22px;
|
|
872
|
-
padding: 5px 14px;
|
|
835
|
+
|
|
836
|
+
.desktop .clappr-nerd-stats .stats-box.narrow {
|
|
873
837
|
width: 250px;
|
|
874
|
-
font-size: 12px;
|
|
875
|
-
display: flex;
|
|
876
|
-
align-items: center;
|
|
877
|
-
justify-content: flex-start;
|
|
878
|
-
gap: 8px;
|
|
879
838
|
}
|
|
880
|
-
.
|
|
881
|
-
|
|
882
|
-
height: 24px;
|
|
839
|
+
.desktop .clappr-nerd-stats .stats-box.narrow ul {
|
|
840
|
+
width: 100%;
|
|
883
841
|
}
|
|
884
|
-
.
|
|
885
|
-
|
|
886
|
-
|
|
842
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary {
|
|
843
|
+
padding: 0 5px;
|
|
844
|
+
height: auto;
|
|
887
845
|
}
|
|
888
|
-
.
|
|
889
|
-
|
|
846
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block {
|
|
847
|
+
width: 100%;
|
|
848
|
+
flex-direction: column;
|
|
890
849
|
}
|
|
891
|
-
.
|
|
892
|
-
|
|
893
|
-
height: 24px;
|
|
850
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock {
|
|
851
|
+
width: 100%;
|
|
894
852
|
}
|
|
895
|
-
.
|
|
896
|
-
|
|
897
|
-
}.share_plugin[data-share] {
|
|
898
|
-
pointer-events: auto;
|
|
899
|
-
z-index: 5;
|
|
900
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
853
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
854
|
+
width: 100%;
|
|
901
855
|
}
|
|
902
|
-
.
|
|
903
|
-
|
|
856
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-header {
|
|
857
|
+
padding-top: 12px;
|
|
858
|
+
height: 38px;
|
|
859
|
+
text-align: center;
|
|
904
860
|
}
|
|
905
|
-
.
|
|
906
|
-
|
|
907
|
-
width: 36px;
|
|
908
|
-
height: 36px;
|
|
909
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
910
|
-
border-radius: 4px;
|
|
911
|
-
position: absolute;
|
|
912
|
-
right: 10px;
|
|
913
|
-
top: 10px;
|
|
914
|
-
padding-top: 6px;
|
|
915
|
-
transition: all 0.3s ease-out;
|
|
861
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-quality-header {
|
|
862
|
+
text-align: center;
|
|
916
863
|
}
|
|
917
|
-
.
|
|
918
|
-
|
|
919
|
-
border: 0;
|
|
920
|
-
margin: 0 6px;
|
|
921
|
-
padding: 0;
|
|
922
|
-
cursor: pointer;
|
|
923
|
-
display: inline-block;
|
|
924
|
-
width: 19px;
|
|
925
|
-
height: 20px;
|
|
864
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer {
|
|
865
|
+
height: 80px;
|
|
926
866
|
}
|
|
927
|
-
.
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
867
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer-about-link {
|
|
868
|
+
bottom: 0;
|
|
869
|
+
left: 0;
|
|
870
|
+
}
|
|
871
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer .speedtest-footer-refresh {
|
|
872
|
+
inset: 50% auto auto 50%;
|
|
933
873
|
transform: translate(-50%, -50%);
|
|
934
|
-
left: 50%;
|
|
935
|
-
/* margin-left: -140px; */
|
|
936
|
-
top: calc(50% - 20px);
|
|
937
|
-
/* margin-top: -170px; */
|
|
938
874
|
}
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
875
|
+
|
|
876
|
+
.speed-test-button {
|
|
877
|
+
margin: 10px 0 0;
|
|
878
|
+
color: #000;
|
|
942
879
|
}
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
880
|
+
|
|
881
|
+
.speed-test {
|
|
882
|
+
position: absolute;
|
|
883
|
+
top: 0;
|
|
884
|
+
left: 0;
|
|
885
|
+
width: 100%;
|
|
886
|
+
height: 100%;
|
|
887
|
+
z-index: 9999;
|
|
947
888
|
}
|
|
948
|
-
.
|
|
949
|
-
|
|
950
|
-
|
|
889
|
+
.speed-test .speed-test-header {
|
|
890
|
+
width: 100%;
|
|
891
|
+
height: 32px;
|
|
892
|
+
}
|
|
893
|
+
.speed-test .speed-test-header .close-speed-test {
|
|
951
894
|
float: right;
|
|
952
|
-
margin: 5px;
|
|
895
|
+
margin-right: 5px;
|
|
896
|
+
line-height: 32px;
|
|
953
897
|
cursor: pointer;
|
|
898
|
+
color: var(--primary-text-color);
|
|
954
899
|
}
|
|
955
|
-
.
|
|
956
|
-
|
|
900
|
+
.speed-test .speed-test-header .close-speed-test:hover {
|
|
901
|
+
color: var(--hover-text-color);
|
|
957
902
|
}
|
|
958
|
-
|
|
903
|
+
|
|
904
|
+
.settings-button {
|
|
905
|
+
float: right;
|
|
906
|
+
margin: 0 12px 0 0;
|
|
907
|
+
height: 40px;
|
|
908
|
+
width: 24px;
|
|
909
|
+
border: none;
|
|
910
|
+
padding: 0;
|
|
911
|
+
}
|
|
912
|
+
|
|
913
|
+
.speedtest-summary {
|
|
914
|
+
width: 100%;
|
|
915
|
+
border-top: 1px solid var(--secondary-background-color) !important;
|
|
916
|
+
border-bottom: 1px solid var(--secondary-background-color) !important;
|
|
917
|
+
display: flex !important;
|
|
918
|
+
flex-direction: column;
|
|
919
|
+
align-items: stretch;
|
|
920
|
+
justify-content: space-between;
|
|
921
|
+
}
|
|
922
|
+
.speedtest-summary .speedtest-summary-header {
|
|
923
|
+
width: 100%;
|
|
924
|
+
padding-top: 4px;
|
|
959
925
|
text-align: left;
|
|
926
|
+
height: 32px;
|
|
960
927
|
font-size: 14px;
|
|
961
|
-
|
|
928
|
+
font-weight: 500;
|
|
929
|
+
line-height: 20px;
|
|
962
930
|
}
|
|
963
|
-
.
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
width: calc(100% - 10px);
|
|
969
|
-
padding: 5px;
|
|
931
|
+
.speedtest-summary .speedtest-summary-block {
|
|
932
|
+
position: relative;
|
|
933
|
+
display: flex;
|
|
934
|
+
flex-direction: row;
|
|
935
|
+
width: 100%;
|
|
970
936
|
}
|
|
971
|
-
.
|
|
972
|
-
|
|
973
|
-
|
|
937
|
+
.speedtest-summary .speedtest-summary-block .speedtest-summary-subblock {
|
|
938
|
+
width: 50%;
|
|
939
|
+
margin-top: 4px;
|
|
940
|
+
margin-bottom: 12px;
|
|
974
941
|
}
|
|
975
|
-
.
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
position: absolute;
|
|
983
|
-
top: 0;
|
|
984
|
-
height: 100%;
|
|
942
|
+
.speedtest-summary .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
943
|
+
padding: 2px;
|
|
944
|
+
width: 248px;
|
|
945
|
+
max-width: 100%;
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
.speedtest-quality {
|
|
985
949
|
width: 100%;
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
justify-content: center;
|
|
950
|
+
height: 36px;
|
|
951
|
+
display: flex !important;
|
|
952
|
+
flex-direction: column !important;
|
|
953
|
+
justify-content: space-between !important;
|
|
991
954
|
}
|
|
992
|
-
|
|
993
|
-
font-size:
|
|
994
|
-
|
|
995
|
-
|
|
955
|
+
.speedtest-quality .speedtest-quality-header {
|
|
956
|
+
font-size: 12px;
|
|
957
|
+
height: 20px;
|
|
958
|
+
border-left: 2px solid var(--secondary-background-color) !important;
|
|
959
|
+
background-color: var(--secondary-background-color);
|
|
960
|
+
text-align: left;
|
|
996
961
|
}
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
962
|
+
.speedtest-quality-content {
|
|
963
|
+
width: 100%;
|
|
964
|
+
margin-top: 8px;
|
|
965
|
+
height: 8px;
|
|
966
|
+
display: flex !important;
|
|
967
|
+
flex-direction: row !important;
|
|
968
|
+
align-items: stretch !important;
|
|
969
|
+
justify-content: space-between;
|
|
1001
970
|
}
|
|
1002
|
-
|
|
1003
|
-
width:
|
|
1004
|
-
|
|
971
|
+
.speedtest-quality-content-item {
|
|
972
|
+
width: 18.8%;
|
|
973
|
+
background-color: #fff;
|
|
1005
974
|
}
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
margin-top: 15px;
|
|
975
|
+
.speedtest-quality-content-item.speedtest-quality-value-1 {
|
|
976
|
+
background-color: var(--speedtest-red);
|
|
1009
977
|
}
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
width: 30px;
|
|
1013
|
-
margin: 15px auto 0;
|
|
1014
|
-
}.media-control-pip {
|
|
1015
|
-
order: 95;
|
|
1016
|
-
display: flex;
|
|
978
|
+
.speedtest-quality-content-item.speedtest-quality-value-2 {
|
|
979
|
+
background-color: var(--speedtest-orange);
|
|
1017
980
|
}
|
|
1018
|
-
.
|
|
1019
|
-
|
|
981
|
+
.speedtest-quality-content-item.speedtest-quality-value-3 {
|
|
982
|
+
background-color: var(--speedtest-yellow);
|
|
1020
983
|
}
|
|
1021
|
-
.
|
|
1022
|
-
|
|
1023
|
-
}
|
|
1024
|
-
|
|
984
|
+
.speedtest-quality-content-item.speedtest-quality-value-4 {
|
|
985
|
+
background-color: var(--speedtest-light-green);
|
|
986
|
+
}
|
|
987
|
+
.speedtest-quality-content-item.speedtest-quality-value-5 {
|
|
988
|
+
background-color: var(--speedtest-green);
|
|
1025
989
|
}
|
|
1026
990
|
|
|
1027
|
-
.
|
|
1028
|
-
position:
|
|
991
|
+
.speedtest-footer {
|
|
992
|
+
position: relative;
|
|
993
|
+
float: left;
|
|
1029
994
|
width: 100%;
|
|
1030
|
-
height:
|
|
1031
|
-
|
|
1032
|
-
background-color: transparent;
|
|
1033
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
995
|
+
height: 30px;
|
|
996
|
+
line-height: 16px;
|
|
1034
997
|
}
|
|
1035
|
-
.
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
998
|
+
.speedtest-footer-about-link {
|
|
999
|
+
position: absolute;
|
|
1000
|
+
bottom: 0;
|
|
1001
|
+
left: 0;
|
|
1002
|
+
color: var(--secondary-text-color);
|
|
1003
|
+
text-decoration: underline !important;
|
|
1040
1004
|
}
|
|
1041
|
-
.
|
|
1042
|
-
|
|
1043
|
-
height: 100%;
|
|
1044
|
-
}.quality-levels li.disabled {
|
|
1045
|
-
opacity: 0.5;
|
|
1046
|
-
pointer-events: none;
|
|
1005
|
+
.speedtest-footer-about-link:hover {
|
|
1006
|
+
color: var(--hover-text-color);
|
|
1047
1007
|
}
|
|
1048
|
-
.
|
|
1049
|
-
background-color: #000;
|
|
1050
|
-
}.seek-time {
|
|
1008
|
+
.speedtest-footer .speedtest-footer-refresh {
|
|
1051
1009
|
position: absolute;
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
font-size:
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1010
|
+
bottom: 0;
|
|
1011
|
+
right: 0;
|
|
1012
|
+
color: var(--secondary-text-color);
|
|
1013
|
+
font-size: 14px;
|
|
1014
|
+
font-weight: 400;
|
|
1015
|
+
line-height: 16px;
|
|
1016
|
+
height: 16px;
|
|
1017
|
+
display: flex;
|
|
1018
|
+
align-items: center;
|
|
1019
|
+
gap: 4px;
|
|
1061
1020
|
}
|
|
1062
|
-
.
|
|
1063
|
-
|
|
1021
|
+
.speedtest-footer .speedtest-footer-refresh svg path {
|
|
1022
|
+
fill: var(--secondary-text-color);
|
|
1064
1023
|
}
|
|
1065
|
-
.
|
|
1066
|
-
|
|
1067
|
-
color: white;
|
|
1068
|
-
font-size: 10px;
|
|
1069
|
-
padding-left: 7px;
|
|
1070
|
-
padding-right: 7px;
|
|
1071
|
-
vertical-align: top;
|
|
1024
|
+
.speedtest-footer .speedtest-footer-refresh:hover {
|
|
1025
|
+
color: var(--hover-text-color);
|
|
1072
1026
|
}
|
|
1073
|
-
.
|
|
1074
|
-
|
|
1075
|
-
color: rgba(255, 255, 255, 0.5);
|
|
1076
|
-
font-size: 10px;
|
|
1077
|
-
padding-right: 7px;
|
|
1078
|
-
vertical-align: top;
|
|
1027
|
+
.speedtest-footer .speedtest-footer-refresh:hover svg path {
|
|
1028
|
+
fill: var(--hover-text-color);
|
|
1079
1029
|
}
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1030
|
+
|
|
1031
|
+
.mobile .clappr-nerd-stats .stats-box {
|
|
1032
|
+
position: fixed;
|
|
1033
|
+
height: auto;
|
|
1034
|
+
width: auto;
|
|
1035
|
+
inset: 0;
|
|
1036
|
+
min-width: 100vw;
|
|
1037
|
+
padding-bottom: 4px;
|
|
1038
|
+
padding-left: 4px;
|
|
1039
|
+
padding-right: 4px;
|
|
1040
|
+
}
|
|
1041
|
+
.mobile .clappr-nerd-stats .stats-box-top {
|
|
1042
|
+
position: fixed;
|
|
1043
|
+
}
|
|
1044
|
+
.mobile .clappr-nerd-stats .stats-box-main ul {
|
|
1045
|
+
flex: 0 1 50%;
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
@media only screen and (orientation: portrait) {
|
|
1049
|
+
.mobile .speedtest-summary {
|
|
1050
|
+
padding: 0 5px;
|
|
1051
|
+
height: auto;
|
|
1052
|
+
}
|
|
1053
|
+
.mobile .speedtest-summary-block {
|
|
1054
|
+
width: 100%;
|
|
1055
|
+
flex-direction: column;
|
|
1056
|
+
}
|
|
1057
|
+
.mobile .speedtest-summary-block .speedtest-summary-subblock {
|
|
1058
|
+
width: 100%;
|
|
1059
|
+
}
|
|
1060
|
+
.mobile .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
1061
|
+
width: 100%;
|
|
1062
|
+
}
|
|
1063
|
+
.mobile .speedtest-summary-header {
|
|
1064
|
+
padding-top: 12px;
|
|
1065
|
+
height: 38px;
|
|
1066
|
+
text-align: center;
|
|
1067
|
+
}
|
|
1068
|
+
.mobile .speedtest-quality-header {
|
|
1069
|
+
text-align: center;
|
|
1070
|
+
}
|
|
1071
|
+
.mobile .speedtest-footer .speedtest-footer-refresh {
|
|
1072
|
+
inset: 50% auto auto 50%;
|
|
1073
|
+
transform: translate(-50%, -50%);
|
|
1074
|
+
}
|
|
1075
|
+
}
|
|
1076
|
+
@media only screen and (orientation: landscape) {
|
|
1077
|
+
.mobile .clappr-nerd-stats .stats-box-main ul {
|
|
1078
|
+
flex-basis: 1fr;
|
|
1079
|
+
}
|
|
1080
|
+
}
|
|
1081
|
+
@media only screen and (min-width: 1100px) {
|
|
1082
|
+
.fullscreen .clappr-nerd-stats .stats-box {
|
|
1083
|
+
top: unset;
|
|
1084
|
+
}
|
|
1083
1085
|
}[data-player] {
|
|
1084
1086
|
--bottom-panel: 40px;
|
|
1085
1087
|
}
|
|
@@ -1693,192 +1695,122 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1693
1695
|
.media-control-skin-1[data-media-control-skin-1] .seek-time .seek-time__pos {
|
|
1694
1696
|
padding-left: 8px;
|
|
1695
1697
|
padding-right: 8px;
|
|
1696
|
-
}.
|
|
1698
|
+
}.seek-time {
|
|
1697
1699
|
position: absolute;
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
top: 50%;
|
|
1708
|
-
transform: translateY(-50%);
|
|
1709
|
-
}
|
|
1710
|
-
.spinner-three-bounce[data-spinner] > div {
|
|
1711
|
-
width: 18px;
|
|
1712
|
-
height: 18px;
|
|
1713
|
-
background-color: #FFF;
|
|
1714
|
-
border-radius: 100%;
|
|
1715
|
-
display: inline-block;
|
|
1716
|
-
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
1717
|
-
/* Prevent first frame from flickering when animation starts */
|
|
1718
|
-
animation-fill-mode: both;
|
|
1719
|
-
}
|
|
1720
|
-
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
1721
|
-
animation-delay: -0.32s;
|
|
1722
|
-
}
|
|
1723
|
-
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
1724
|
-
animation-delay: -0.16s;
|
|
1725
|
-
}
|
|
1726
|
-
|
|
1727
|
-
@keyframes bouncedelay {
|
|
1728
|
-
0%, 80%, 100% {
|
|
1729
|
-
transform: scale(0);
|
|
1730
|
-
}
|
|
1731
|
-
40% {
|
|
1732
|
-
transform: scale(1);
|
|
1733
|
-
}
|
|
1734
|
-
}*, :focus, :visited {
|
|
1735
|
-
outline: none !important;
|
|
1736
|
-
}
|
|
1737
|
-
|
|
1738
|
-
.multicamera[data-multicamera] {
|
|
1739
|
-
float: right;
|
|
1740
|
-
margin-top: 4px;
|
|
1741
|
-
position: relative;
|
|
1742
|
-
margin-right: 20px;
|
|
1743
|
-
width: 20px;
|
|
1700
|
+
white-space: nowrap;
|
|
1701
|
+
height: 20px;
|
|
1702
|
+
line-height: 20px;
|
|
1703
|
+
font-size: 0;
|
|
1704
|
+
left: -100%;
|
|
1705
|
+
bottom: 55px;
|
|
1706
|
+
background-color: rgba(2, 2, 2, 0.5);
|
|
1707
|
+
z-index: 9999;
|
|
1708
|
+
transition: opacity 0.1s ease;
|
|
1744
1709
|
}
|
|
1745
|
-
.
|
|
1746
|
-
|
|
1747
|
-
color: #fff;
|
|
1748
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1749
|
-
-webkit-font-smoothing: antialiased;
|
|
1750
|
-
border: none;
|
|
1751
|
-
font-size: 14px;
|
|
1752
|
-
padding: 0;
|
|
1710
|
+
.seek-time.hidden {
|
|
1711
|
+
opacity: 0;
|
|
1753
1712
|
}
|
|
1754
|
-
.
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1713
|
+
.seek-time .seek-time__pos {
|
|
1714
|
+
display: inline-block;
|
|
1715
|
+
color: white;
|
|
1716
|
+
font-size: 10px;
|
|
1717
|
+
padding-left: 7px;
|
|
1718
|
+
padding-right: 7px;
|
|
1719
|
+
vertical-align: top;
|
|
1758
1720
|
}
|
|
1759
|
-
.
|
|
1760
|
-
|
|
1721
|
+
.seek-time .seek-time__duration {
|
|
1722
|
+
display: inline-block;
|
|
1723
|
+
color: rgba(255, 255, 255, 0.5);
|
|
1724
|
+
font-size: 10px;
|
|
1725
|
+
padding-right: 7px;
|
|
1726
|
+
vertical-align: top;
|
|
1761
1727
|
}
|
|
1762
|
-
.
|
|
1763
|
-
|
|
1728
|
+
.seek-time .seek-time__duration::before {
|
|
1729
|
+
content: "|";
|
|
1730
|
+
margin-right: 7px;
|
|
1731
|
+
}.share_plugin[data-share] {
|
|
1732
|
+
pointer-events: auto;
|
|
1733
|
+
z-index: 5;
|
|
1734
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
1764
1735
|
}
|
|
1765
|
-
.
|
|
1766
|
-
|
|
1767
|
-
height: 6px;
|
|
1768
|
-
margin-top: 11px;
|
|
1769
|
-
margin-left: 5px;
|
|
1736
|
+
.share_plugin[data-share].share-hide .share-button-container {
|
|
1737
|
+
right: -50px;
|
|
1770
1738
|
}
|
|
1771
|
-
.
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
position: absolute;
|
|
1777
|
-
bottom: 48px;
|
|
1739
|
+
.share_plugin[data-share] .share-button-container {
|
|
1740
|
+
cursor: pointer;
|
|
1741
|
+
width: 36px;
|
|
1742
|
+
height: 36px;
|
|
1743
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
1778
1744
|
border-radius: 4px;
|
|
1779
|
-
display: none;
|
|
1780
|
-
background-color: rgba(74, 74, 74, 0.9);
|
|
1781
|
-
}
|
|
1782
|
-
.multicamera[data-multicamera] > ul::after {
|
|
1783
|
-
content: "";
|
|
1784
1745
|
position: absolute;
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
height: 0;
|
|
1790
|
-
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
1791
|
-
border-right: 10px solid transparent;
|
|
1792
|
-
border-left: 10px solid transparent;
|
|
1746
|
+
right: 10px;
|
|
1747
|
+
top: 10px;
|
|
1748
|
+
padding-top: 6px;
|
|
1749
|
+
transition: all 0.3s ease-out;
|
|
1793
1750
|
}
|
|
1794
|
-
.
|
|
1795
|
-
|
|
1751
|
+
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
1752
|
+
background-color: transparent;
|
|
1753
|
+
border: 0;
|
|
1754
|
+
margin: 0 6px;
|
|
1755
|
+
padding: 0;
|
|
1796
1756
|
cursor: pointer;
|
|
1757
|
+
display: inline-block;
|
|
1758
|
+
width: 19px;
|
|
1759
|
+
height: 20px;
|
|
1797
1760
|
}
|
|
1798
|
-
.
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
}
|
|
1810
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
1811
|
-
opacity: 0.5;
|
|
1761
|
+
.share_plugin[data-share] .share-container {
|
|
1762
|
+
pointer-events: auto;
|
|
1763
|
+
position: absolute;
|
|
1764
|
+
width: 280px;
|
|
1765
|
+
background-color: white;
|
|
1766
|
+
transform: translate(0, 50%);
|
|
1767
|
+
transform: translate(-50%, -50%);
|
|
1768
|
+
left: 50%;
|
|
1769
|
+
/* margin-left: -140px; */
|
|
1770
|
+
top: calc(50% - 20px);
|
|
1771
|
+
/* margin-top: -170px; */
|
|
1812
1772
|
}
|
|
1813
|
-
.
|
|
1814
|
-
|
|
1773
|
+
.share_plugin[data-share] .share-container .share-container-header {
|
|
1774
|
+
text-align: left;
|
|
1775
|
+
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
1815
1776
|
}
|
|
1816
|
-
.
|
|
1817
|
-
|
|
1777
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
1778
|
+
display: inline-block;
|
|
1779
|
+
font-size: 16px;
|
|
1780
|
+
margin: 5px;
|
|
1818
1781
|
}
|
|
1819
|
-
.
|
|
1820
|
-
|
|
1821
|
-
|
|
1782
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
1783
|
+
display: inline-block;
|
|
1784
|
+
width: 24px;
|
|
1785
|
+
float: right;
|
|
1786
|
+
margin: 5px;
|
|
1787
|
+
cursor: pointer;
|
|
1822
1788
|
}
|
|
1823
|
-
.
|
|
1824
|
-
|
|
1825
|
-
height: 60px;
|
|
1789
|
+
.share_plugin[data-share] .share-container .share-container-main {
|
|
1790
|
+
margin-bottom: 8px;
|
|
1826
1791
|
}
|
|
1827
|
-
.
|
|
1828
|
-
width: 120px;
|
|
1792
|
+
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
1829
1793
|
text-align: left;
|
|
1830
|
-
margin-left: 15px;
|
|
1831
|
-
}
|
|
1832
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1833
|
-
width: 120px;
|
|
1834
|
-
height: 20px;
|
|
1835
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1836
1794
|
font-size: 14px;
|
|
1837
|
-
font-weight: normal;
|
|
1838
|
-
font-style: normal;
|
|
1839
|
-
font-stretch: normal;
|
|
1840
|
-
line-height: 1.43;
|
|
1841
|
-
letter-spacing: normal;
|
|
1842
|
-
text-align: left;
|
|
1843
|
-
color: #fff;
|
|
1844
|
-
text-overflow: ellipsis;
|
|
1845
|
-
overflow: hidden;
|
|
1846
|
-
}
|
|
1847
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1848
|
-
opacity: 0.6;
|
|
1849
|
-
}
|
|
1850
|
-
.multicamera[data-multicamera] li[data-title] {
|
|
1851
|
-
background-color: #c3c2c2;
|
|
1852
1795
|
padding: 5px;
|
|
1853
1796
|
}
|
|
1854
|
-
.
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
background-color: #555;
|
|
1862
|
-
color: white;
|
|
1863
|
-
}
|
|
1864
|
-
.multicamera[data-multicamera] li a:hover a {
|
|
1865
|
-
color: white;
|
|
1866
|
-
text-decoration: none;
|
|
1797
|
+
.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 {
|
|
1798
|
+
overflow: hidden;
|
|
1799
|
+
text-overflow: ellipsis;
|
|
1800
|
+
color: #818181;
|
|
1801
|
+
border: solid 1px #d3d3d3;
|
|
1802
|
+
width: calc(100% - 10px);
|
|
1803
|
+
padding: 5px;
|
|
1867
1804
|
}
|
|
1868
|
-
.
|
|
1869
|
-
|
|
1805
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
1806
|
+
max-height: 90px;
|
|
1807
|
+
resize: none;
|
|
1870
1808
|
}
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
50% {
|
|
1877
|
-
color: #ff0101;
|
|
1878
|
-
}
|
|
1879
|
-
100% {
|
|
1880
|
-
color: #B80000;
|
|
1881
|
-
}
|
|
1809
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
1810
|
+
width: 32px;
|
|
1811
|
+
display: inline-block;
|
|
1812
|
+
margin-right: 5px;
|
|
1813
|
+
cursor: pointer;
|
|
1882
1814
|
}*,
|
|
1883
1815
|
:focus,
|
|
1884
1816
|
:visited {
|
|
@@ -1952,6 +1884,12 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1952
1884
|
.ios-fullscreen::cue {
|
|
1953
1885
|
visibility: visible !important;
|
|
1954
1886
|
font-size: 1em !important;
|
|
1887
|
+
}.quality-levels li.disabled {
|
|
1888
|
+
opacity: 0.5;
|
|
1889
|
+
pointer-events: none;
|
|
1890
|
+
}
|
|
1891
|
+
.quality-levels li.current {
|
|
1892
|
+
background-color: #000;
|
|
1955
1893
|
}.scrub-thumbnails {
|
|
1956
1894
|
position: absolute;
|
|
1957
1895
|
bottom: 52px;
|
|
@@ -2015,6 +1953,65 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
2015
1953
|
}
|
|
2016
1954
|
.scrub-thumbnails .backdrop .carousel img {
|
|
2017
1955
|
width: auto;
|
|
1956
|
+
}.container-with-poster-clickable .mc-skip-time {
|
|
1957
|
+
height: 0;
|
|
1958
|
+
}
|
|
1959
|
+
|
|
1960
|
+
.mc-skip-time {
|
|
1961
|
+
position: absolute;
|
|
1962
|
+
width: 100%;
|
|
1963
|
+
height: calc(100% - 50px);
|
|
1964
|
+
z-index: 9998;
|
|
1965
|
+
background-color: transparent;
|
|
1966
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1967
|
+
}
|
|
1968
|
+
.mc-skip-time .skip-container {
|
|
1969
|
+
width: 100%;
|
|
1970
|
+
height: 100%;
|
|
1971
|
+
display: flex;
|
|
1972
|
+
justify-content: space-between;
|
|
1973
|
+
}
|
|
1974
|
+
.mc-skip-time .skip-container .skip-item {
|
|
1975
|
+
flex: 1 0 0px;
|
|
1976
|
+
height: 100%;
|
|
1977
|
+
}.spinner-three-bounce[data-spinner] {
|
|
1978
|
+
position: absolute;
|
|
1979
|
+
width: 70px;
|
|
1980
|
+
text-align: center;
|
|
1981
|
+
z-index: 999;
|
|
1982
|
+
left: 0;
|
|
1983
|
+
right: 0;
|
|
1984
|
+
margin: 0 auto;
|
|
1985
|
+
margin-left: auto;
|
|
1986
|
+
margin-right: auto;
|
|
1987
|
+
/* center vertically */
|
|
1988
|
+
top: 50%;
|
|
1989
|
+
transform: translateY(-50%);
|
|
1990
|
+
}
|
|
1991
|
+
.spinner-three-bounce[data-spinner] > div {
|
|
1992
|
+
width: 18px;
|
|
1993
|
+
height: 18px;
|
|
1994
|
+
background-color: #FFF;
|
|
1995
|
+
border-radius: 100%;
|
|
1996
|
+
display: inline-block;
|
|
1997
|
+
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
1998
|
+
/* Prevent first frame from flickering when animation starts */
|
|
1999
|
+
animation-fill-mode: both;
|
|
2000
|
+
}
|
|
2001
|
+
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
2002
|
+
animation-delay: -0.32s;
|
|
2003
|
+
}
|
|
2004
|
+
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
2005
|
+
animation-delay: -0.16s;
|
|
2006
|
+
}
|
|
2007
|
+
|
|
2008
|
+
@keyframes bouncedelay {
|
|
2009
|
+
0%, 80%, 100% {
|
|
2010
|
+
transform: scale(0);
|
|
2011
|
+
}
|
|
2012
|
+
40% {
|
|
2013
|
+
transform: scale(1);
|
|
2014
|
+
}
|
|
2018
2015
|
}.player-logo[data-logo] {
|
|
2019
2016
|
position: absolute;
|
|
2020
2017
|
z-index: 2;
|