@gcorevideo/player 2.24.11 → 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.
Files changed (47) hide show
  1. package/README.md +1 -0
  2. package/assets/dvr-controls/dvr_controls.scss +35 -73
  3. package/assets/dvr-controls/index.ejs +8 -2
  4. package/assets/media-control/width370.scss +1 -1
  5. package/dist/core.js +18 -17
  6. package/dist/index.css +867 -896
  7. package/dist/index.embed.js +91 -65
  8. package/dist/index.js +156 -128
  9. package/dist/player.d.ts +3264 -0
  10. package/lib/playback/dash-playback/DashPlayback.d.ts +2 -0
  11. package/lib/playback/dash-playback/DashPlayback.d.ts.map +1 -1
  12. package/lib/playback/dash-playback/DashPlayback.js +17 -11
  13. package/lib/playback/hls-playback/HlsPlayback.d.ts.map +1 -1
  14. package/lib/playback/hls-playback/HlsPlayback.js +0 -5
  15. package/lib/plugins/audio-selector/AudioTracks.js +1 -1
  16. package/lib/plugins/bottom-gear/BottomGear.js +1 -1
  17. package/lib/plugins/clips/Clips.js +1 -1
  18. package/lib/plugins/dvr-controls/DvrControls.d.ts +3 -3
  19. package/lib/plugins/dvr-controls/DvrControls.d.ts.map +1 -1
  20. package/lib/plugins/dvr-controls/DvrControls.js +14 -12
  21. package/lib/plugins/media-control/MediaControl.d.ts +14 -5
  22. package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
  23. package/lib/plugins/media-control/MediaControl.js +55 -29
  24. package/lib/plugins/picture-in-picture/PictureInPicture.js +1 -1
  25. package/lib/plugins/subtitles/ClosedCaptions.js +1 -1
  26. package/lib/testUtils.d.ts.map +1 -1
  27. package/lib/testUtils.js +2 -0
  28. package/package.json +1 -1
  29. package/src/playback/dash-playback/DashPlayback.ts +20 -13
  30. package/src/playback/hls-playback/HlsPlayback.ts +3 -8
  31. package/src/plugins/audio-selector/AudioTracks.ts +1 -1
  32. package/src/plugins/audio-selector/__tests__/AudioTracks.test.ts +2 -2
  33. package/src/plugins/bottom-gear/BottomGear.ts +1 -1
  34. package/src/plugins/bottom-gear/__tests__/BottomGear.test.ts +2 -2
  35. package/src/plugins/clips/Clips.ts +1 -1
  36. package/src/plugins/clips/__tests__/Clips.test.ts +1 -1
  37. package/src/plugins/dvr-controls/DvrControls.ts +14 -14
  38. package/src/plugins/dvr-controls/__tests__/DvrControls.test.ts +20 -17
  39. package/src/plugins/dvr-controls/__tests__/__snapshots__/DvrControls.test.ts.snap +4 -2
  40. package/src/plugins/media-control/MediaControl.ts +69 -35
  41. package/src/plugins/media-control/__tests__/MediaControl.test.ts +128 -112
  42. package/src/plugins/media-control/__tests__/__snapshots__/MediaControl.test.ts.snap +227 -24
  43. package/src/plugins/picture-in-picture/PictureInPicture.ts +1 -1
  44. package/src/plugins/subtitles/ClosedCaptions.ts +1 -1
  45. package/src/plugins/subtitles/__tests__/ClosedCaptions.test.ts +1 -1
  46. package/src/testUtils.ts +2 -0
  47. package/tsconfig.tsbuildinfo +1 -1
package/dist/index.css CHANGED
@@ -122,147 +122,6 @@
122
122
  .gplayer-lite-btn::-moz-focus-inner {
123
123
  border: 0;
124
124
  padding: 0;
125
- }*, :focus, :visited {
126
- outline: none !important;
127
- }
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;
136
- }
137
- .gear-wrapper .go-back .arrow-left-icon {
138
- float: left;
139
- padding-top: 2px;
140
- padding-right: 2px;
141
- }
142
- .gear-wrapper .go-back .arrow-left-icon svg {
143
- height: 16px;
144
- }
145
- .gear-wrapper ul.gear-sub-menu {
146
- width: 100%;
147
- list-style-type: none;
148
- min-width: 60px;
149
- border-top: 2px solid rgb(36, 36, 36);
150
- overflow-y: auto;
151
- }
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[data-title] {
157
- background-color: #c3c2c2;
158
- padding: 5px;
159
- }
160
- .gear-wrapper ul.gear-sub-menu li a {
161
- display: block;
162
- text-decoration: none;
163
- height: 32px;
164
- padding: 5px 10px;
165
- line-height: 22px;
166
- color: #fffffe;
167
- }
168
- .gear-wrapper ul.gear-sub-menu li a:hover {
169
- color: white;
170
- background-color: rgba(0, 0, 0, 0.4);
171
- }
172
- .gear-wrapper ul.gear-sub-menu li a:hover a {
173
- color: white;
174
- text-decoration: none;
175
- }
176
- .gear-wrapper ul.gear-sub-menu li a .check-icon {
177
- width: 30px;
178
- height: 20px;
179
- float: left;
180
- display: block;
181
- }
182
- .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
183
- display: none;
184
- }
185
- .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
186
- display: inline;
187
- }div.player-error-screen, [data-player] div.player-error-screen {
188
- color: #CCCACA;
189
- position: absolute;
190
- top: 0;
191
- height: 100%;
192
- width: 100%;
193
- background-color: rgba(0, 0, 0, 0.7);
194
- z-index: 2000;
195
- display: flex;
196
- flex-direction: column;
197
- justify-content: center;
198
- }
199
- div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
200
- font-size: 14px;
201
- color: #CCCACA;
202
- margin-top: 45px;
203
- }
204
- div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
205
- font-weight: bold;
206
- line-height: 30px;
207
- font-size: 18px;
208
- }
209
- div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
210
- width: 90%;
211
- margin: 0 auto;
212
- }
213
- div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
214
- font-size: 13px;
215
- margin-top: 15px;
216
- }
217
- div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
218
- cursor: pointer;
219
- width: 30px;
220
- margin: 15px auto 0;
221
- }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
222
- order: 99;
223
- height: 20px;
224
- }
225
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
226
- position: absolute;
227
- right: 16px;
228
- bottom: 52px;
229
- width: 250px;
230
- min-height: 48px;
231
- z-index: 9999;
232
- border-radius: 4px;
233
- }
234
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
235
- padding: 8px 0;
236
- }
237
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
238
- margin: 0;
239
- text-align: left;
240
- line-height: 22px;
241
- padding: 5px 14px;
242
- width: 250px;
243
- font-size: 12px;
244
- display: flex;
245
- align-items: center;
246
- justify-content: flex-start;
247
- gap: 8px;
248
- }
249
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
250
- flex: 24px 0 0;
251
- height: 24px;
252
- }
253
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
254
- visibility: hidden;
255
- display: inline-block;
256
- }
257
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
258
- flex: 0 1 100%;
259
- }
260
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
261
- flex: 0 0 14px;
262
- height: 24px;
263
- }
264
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
265
- flex: 1 0 auto;
266
125
  }*,
267
126
  :focus,
268
127
  :visited {
@@ -363,6 +222,85 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
363
222
  100% {
364
223
  color: #B80000;
365
224
  }
225
+ }@charset "UTF-8";
226
+ .media-control-clips {
227
+ display: flex;
228
+ gap: 6px;
229
+ }
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;
240
+ }
241
+ .media-control-clips .media-clip-text::before {
242
+ content: "•";
243
+ padding-right: 6px;
244
+ }
245
+ .media-control-clips .media-clip-text {
246
+ max-width: 100px;
247
+ }.dvr-controls {
248
+ --disabled-opacity: 0.3;
249
+ --circle-radius: 5px;
250
+ display: flex;
251
+ align-items: center;
252
+ color: var(--player-dvr-color);
253
+ font-size: 10px;
254
+ font-weight: 500;
255
+ height: var(--bottom-panel);
256
+ line-height: var(--bottom-panel);
257
+ margin-left: 0;
258
+ }
259
+ .dvr-controls .live-info,
260
+ .dvr-controls .live-button {
261
+ font-size: 14px;
262
+ font-weight: 500;
263
+ margin-left: 20px;
264
+ letter-spacing: 0.8px;
265
+ text-transform: uppercase;
266
+ }
267
+ .dvr-controls .live-info::before,
268
+ .dvr-controls .live-button::before {
269
+ margin-right: 8px;
270
+ content: "";
271
+ display: inline-block;
272
+ position: relative;
273
+ width: calc(var(--circle-radius) * 2);
274
+ height: calc(var(--circle-radius) * 2);
275
+ border-radius: var(--circle-radius);
276
+ background-color: var(--player-dvr-color);
277
+ }
278
+ .dvr-controls.disabled {
279
+ opacity: var(--disabled-opacity);
280
+ }
281
+ .dvr-controls.disabled:before {
282
+ background-color: var(--player-dvr-color);
283
+ }
284
+ .dvr-controls .live-info {
285
+ text-transform: uppercase;
286
+ color: #fffffe;
287
+ }
288
+ .dvr-controls .live-info::before {
289
+ background-color: #ed4f4a;
290
+ }
291
+ .dvr-controls .live-button {
292
+ cursor: pointer;
293
+ outline: none;
294
+ border: 0;
295
+ color: var(--player-dvr-color);
296
+ background-color: transparent;
297
+ padding: 0;
298
+ opacity: 0.7;
299
+ transition: all 0.1s ease;
300
+ }
301
+ .dvr-controls .live-button:hover {
302
+ opacity: 1;
303
+ text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
366
304
  }.big-mute-icon-wrapper[data-big-mute] {
367
305
  position: absolute;
368
306
  z-index: 9998;
@@ -412,725 +350,738 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
412
350
  }
413
351
  .big-mute-icon[data-big-mute-icon]:hover svg path {
414
352
  fill: #151515 !important;
415
- }:root {
416
- --primary-background-color: #000;
417
- --secondary-background-color: #262626;
418
- --primary-text-color: #fff;
419
- --secondary-text-color: #fff4f2;
420
- --hover-text-color: #f9b090;
421
- --speedtest-red: #df564d;
422
- --speedtest-orange: #df934d;
423
- --speedtest-yellow: #dfd04d;
424
- --speedtest-light-green: #c2df4d;
425
- --speedtest-green: #73df4d;
353
+ }.media-control-pip {
354
+ order: 95;
355
+ display: flex;
426
356
  }
427
-
428
- .clappr-nerd-stats {
429
- cursor: default;
357
+ .media-control-pip button {
358
+ height: 20px;
430
359
  }
431
- .clappr-nerd-stats .stats-box {
432
- position: absolute;
433
- display: inline-block;
434
- bottom: 52px;
435
- right: 0;
436
- top: 0;
437
- left: 0;
438
- bottom: 0;
439
- padding: 0 10px 12px;
440
- margin: 0;
441
- line-height: 20px;
442
- font-size: 12px;
443
- font-weight: 500;
444
- background: var(--primary-background-color);
445
- color: #fff;
446
- z-index: 20000;
447
- overflow: auto;
448
- max-width: 100%;
360
+ .media-control-pip button svg {
361
+ height: 20px;
362
+ }*, :focus, :visited {
363
+ outline: none !important;
449
364
  }
450
- .clappr-nerd-stats .stats-box-top {
451
- position: absolute;
452
- top: 0;
453
- left: 0;
454
- z-index: 9999;
365
+
366
+ .gear-wrapper .go-back {
367
+ font-weight: 600;
368
+ font-size: 14px;
369
+ line-height: 20px;
455
370
  width: 100%;
456
- height: 32px;
457
- background: var(--primary-background-color);
458
- }
459
- .clappr-nerd-stats .stats-box-top .close-button {
460
- position: absolute;
461
- right: 12px;
462
- top: 10px;
463
- display: block;
464
- width: 12px;
465
- height: 12px;
466
- }
467
- .clappr-nerd-stats .stats-box-top .close-button svg path {
468
- fill: var(--primary-text-color);
469
- }
470
- .clappr-nerd-stats .stats-box-top .close-button:hover svg path {
471
- fill: var(--hover-text-color);
472
- }
473
- .clappr-nerd-stats .stats-box-main {
474
- overflow: hidden;
475
- margin-top: 44px;
476
- display: flex;
477
- flex-wrap: wrap;
371
+ text-align: left;
372
+ padding: 12px;
478
373
  }
479
- .clappr-nerd-stats .stats-box-main ul {
480
- flex: 0 1 1fr;
481
- min-width: 200px;
374
+ .gear-wrapper .go-back .arrow-left-icon {
375
+ float: left;
376
+ padding-top: 2px;
377
+ padding-right: 2px;
482
378
  }
483
- .clappr-nerd-stats .stats-box.wide {
484
- width: 820px;
379
+ .gear-wrapper .go-back .arrow-left-icon svg {
380
+ height: 16px;
485
381
  }
486
- .clappr-nerd-stats .stats-box ul, .clappr-nerd-stats .stats-box li {
382
+ .gear-wrapper ul.gear-sub-menu {
383
+ width: 100%;
487
384
  list-style-type: none;
385
+ min-width: 60px;
386
+ border-top: 2px solid rgb(36, 36, 36);
387
+ overflow-y: auto;
488
388
  }
489
- .clappr-nerd-stats .stats-box ul div, .clappr-nerd-stats .stats-box li div {
490
- padding-left: 2px;
491
- padding-right: 2px;
492
- background: var(--primary-background-color);
493
- gap: 10px;
389
+ .gear-wrapper ul.gear-sub-menu li {
390
+ font-size: 12px;
391
+ text-align: left;
494
392
  }
495
- .clappr-nerd-stats .stats-box ul {
393
+ .gear-wrapper ul.gear-sub-menu li[data-title] {
394
+ background-color: #c3c2c2;
496
395
  padding: 5px;
497
- width: 200px;
498
- flex: 0 1 50%;
499
396
  }
500
- .clappr-nerd-stats .stats-box ul li {
501
- position: relative;
502
- padding: 0 5px;
503
- text-align: left;
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;
504
404
  }
505
- .clappr-nerd-stats .stats-box ul li.canvas-wrapper {
506
- padding: 0;
405
+ .gear-wrapper ul.gear-sub-menu li a:hover {
406
+ color: white;
407
+ background-color: rgba(0, 0, 0, 0.4);
507
408
  }
508
- .clappr-nerd-stats .stats-box ul li.canvas-wrapper canvas {
509
- width: 100%;
409
+ .gear-wrapper ul.gear-sub-menu li a:hover a {
410
+ color: white;
411
+ text-decoration: none;
510
412
  }
511
- .clappr-nerd-stats .stats-box ul li:nth-child(2n) {
512
- background: var(--secondary-background-color);
413
+ .gear-wrapper ul.gear-sub-menu li a .check-icon {
414
+ width: 30px;
415
+ height: 20px;
416
+ float: left;
417
+ display: block;
513
418
  }
514
- .clappr-nerd-stats .stats-box ul li:nth-child(2n) div {
515
- background: var(--secondary-background-color);
419
+ .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
420
+ display: none;
516
421
  }
517
- .clappr-nerd-stats .stats-box ul li.title {
518
- text-align: center;
519
- font-weight: bold;
520
- padding-bottom: 4px;
521
- font-size: 14px;
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;
522
427
  }
523
- .clappr-nerd-stats .stats-box ul li div {
524
- margin: 0;
428
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
525
429
  position: absolute;
526
- right: 0;
527
- top: 0;
528
- }
529
-
530
- .desktop .clappr-nerd-stats .stats-box.narrow {
430
+ right: 16px;
431
+ bottom: 52px;
531
432
  width: 250px;
433
+ min-height: 48px;
434
+ z-index: 9999;
435
+ border-radius: 4px;
532
436
  }
533
- .desktop .clappr-nerd-stats .stats-box.narrow ul {
534
- width: 100%;
437
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
438
+ padding: 8px 0;
535
439
  }
536
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary {
537
- padding: 0 5px;
538
- height: auto;
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;
539
451
  }
540
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block {
541
- width: 100%;
542
- flex-direction: column;
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;
543
455
  }
544
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock {
545
- width: 100%;
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;
546
459
  }
547
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock-content {
548
- width: 100%;
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%;
549
462
  }
550
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-header {
551
- padding-top: 12px;
552
- height: 38px;
553
- 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;
554
466
  }
555
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-quality-header {
556
- text-align: center;
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;
557
480
  }
558
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer {
559
- height: 80px;
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;
560
485
  }
561
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer-about-link {
562
- bottom: 0;
563
- left: 0;
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;
564
490
  }
565
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer .speedtest-footer-refresh {
566
- inset: 50% auto auto 50%;
567
- transform: translate(-50%, -50%);
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;
568
494
  }
569
-
570
- .speed-test-button {
571
- margin: 10px 0 0;
572
- 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;
573
498
  }
574
-
575
- .speed-test {
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;
576
505
  position: absolute;
577
506
  top: 0;
578
507
  left: 0;
579
- width: 100%;
580
- height: 100%;
581
- z-index: 9999;
508
+ text-align: center;
582
509
  }
583
- .speed-test .speed-test-header {
584
- width: 100%;
585
- height: 32px;
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;
586
522
  }
587
- .speed-test .speed-test-header .close-speed-test {
588
- float: right;
589
- margin-right: 5px;
590
- line-height: 32px;
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;
591
532
  cursor: pointer;
592
- color: var(--primary-text-color);
533
+ padding: 5px;
534
+ width: 100%;
593
535
  }
594
- .speed-test .speed-test-header .close-speed-test:hover {
595
- color: var(--hover-text-color);
536
+ .context-menu .context-menu-list-item_icon {
537
+ width: 20px;
538
+ height: 20px;
539
+ }*, :focus, :visited {
540
+ outline: none !important;
596
541
  }
597
542
 
598
- .settings-button {
543
+ .multicamera[data-multicamera] {
599
544
  float: right;
600
- margin: 0 12px 0 0;
601
- height: 40px;
602
- width: 24px;
545
+ margin-top: 4px;
546
+ position: relative;
547
+ margin-right: 20px;
548
+ width: 20px;
549
+ }
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;
603
555
  border: none;
556
+ font-size: 14px;
604
557
  padding: 0;
605
558
  }
606
-
607
- .speedtest-summary {
608
- width: 100%;
609
- border-top: 1px solid var(--secondary-background-color) !important;
610
- border-bottom: 1px solid var(--secondary-background-color) !important;
611
- display: flex !important;
612
- flex-direction: column;
613
- align-items: stretch;
614
- justify-content: space-between;
615
- }
616
- .speedtest-summary .speedtest-summary-header {
617
- width: 100%;
618
- padding-top: 4px;
619
- text-align: left;
620
- height: 32px;
621
- font-size: 14px;
622
- font-weight: 500;
623
- line-height: 20px;
624
- }
625
- .speedtest-summary .speedtest-summary-block {
559
+ .multicamera[data-multicamera] button svg {
560
+ height: 20px;
626
561
  position: relative;
627
- display: flex;
628
- flex-direction: row;
629
- width: 100%;
562
+ margin-top: 6px;
630
563
  }
631
- .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock {
632
- width: 50%;
633
- margin-top: 4px;
634
- margin-bottom: 12px;
564
+ .multicamera[data-multicamera] button:hover {
565
+ color: #c9c9c9;
635
566
  }
636
- .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock-content {
637
- padding: 2px;
638
- width: 248px;
639
- max-width: 100%;
567
+ .multicamera[data-multicamera] button.changing {
568
+ animation: pulse 0.5s infinite alternate;
640
569
  }
641
-
642
- .speedtest-quality {
643
- width: 100%;
644
- height: 36px;
645
- display: flex !important;
646
- flex-direction: column !important;
647
- justify-content: space-between !important;
570
+ .multicamera[data-multicamera] button span.quality-arrow {
571
+ width: 9px;
572
+ height: 6px;
573
+ margin-top: 11px;
574
+ margin-left: 5px;
648
575
  }
649
- .speedtest-quality .speedtest-quality-header {
650
- font-size: 12px;
651
- height: 20px;
652
- border-left: 2px solid var(--secondary-background-color) !important;
653
- background-color: var(--secondary-background-color);
654
- text-align: left;
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);
655
586
  }
656
- .speedtest-quality-content {
657
- width: 100%;
658
- margin-top: 8px;
659
- height: 8px;
660
- display: flex !important;
661
- flex-direction: row !important;
662
- align-items: stretch !important;
663
- justify-content: space-between;
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;
664
598
  }
665
- .speedtest-quality-content-item {
666
- width: 18.8%;
667
- background-color: #fff;
599
+ .multicamera[data-multicamera] li {
600
+ font-size: 10px;
601
+ cursor: pointer;
668
602
  }
669
- .speedtest-quality-content-item.speedtest-quality-value-1 {
670
- background-color: var(--speedtest-red);
603
+ .multicamera[data-multicamera] li .multicamera-item {
604
+ display: flex;
605
+ padding: 10px 0;
606
+ justify-content: center;
607
+ position: relative;
671
608
  }
672
- .speedtest-quality-content-item.speedtest-quality-value-2 {
673
- background-color: var(--speedtest-orange);
609
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
610
+ pointer-events: none;
674
611
  }
675
- .speedtest-quality-content-item.speedtest-quality-value-3 {
676
- background-color: var(--speedtest-yellow);
612
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
613
+ opacity: 0.5;
677
614
  }
678
- .speedtest-quality-content-item.speedtest-quality-value-4 {
679
- background-color: var(--speedtest-light-green);
615
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
616
+ opacity: 0.5;
680
617
  }
681
- .speedtest-quality-content-item.speedtest-quality-value-5 {
682
- background-color: var(--speedtest-green);
618
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
619
+ background-color: rgba(0, 0, 0, 0);
683
620
  }
684
-
685
- .speedtest-footer {
686
- position: relative;
687
- float: left;
688
- width: 100%;
689
- height: 30px;
690
- line-height: 16px;
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);
691
623
  }
692
- .speedtest-footer-about-link {
693
- position: absolute;
694
- bottom: 0;
695
- left: 0;
696
- color: var(--secondary-text-color);
697
- text-decoration: underline !important;
624
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
625
+ width: 80px;
626
+ height: 60px;
698
627
  }
699
- .speedtest-footer-about-link:hover {
700
- color: var(--hover-text-color);
628
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
629
+ width: 80px;
630
+ height: 60px;
701
631
  }
702
- .speedtest-footer .speedtest-footer-refresh {
703
- position: absolute;
704
- bottom: 0;
705
- right: 0;
706
- color: var(--secondary-text-color);
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;
707
641
  font-size: 14px;
708
- font-weight: 400;
709
- line-height: 16px;
710
- height: 16px;
711
- display: flex;
712
- align-items: center;
713
- gap: 4px;
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;
714
651
  }
715
- .speedtest-footer .speedtest-footer-refresh svg path {
716
- fill: var(--secondary-text-color);
652
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
653
+ opacity: 0.6;
717
654
  }
718
- .speedtest-footer .speedtest-footer-refresh:hover {
719
- color: var(--hover-text-color);
655
+ .multicamera[data-multicamera] li[data-title] {
656
+ background-color: #c3c2c2;
657
+ padding: 5px;
720
658
  }
721
- .speedtest-footer .speedtest-footer-refresh:hover svg path {
722
- fill: var(--hover-text-color);
659
+ .multicamera[data-multicamera] li a {
660
+ color: #444;
661
+ padding: 2px 10px;
662
+ display: block;
663
+ text-decoration: none;
723
664
  }
724
-
725
- .mobile .clappr-nerd-stats .stats-box {
726
- position: fixed;
727
- height: auto;
728
- width: auto;
729
- inset: 0;
730
- min-width: 100vw;
731
- padding-bottom: 4px;
732
- padding-left: 4px;
733
- padding-right: 4px;
665
+ .multicamera[data-multicamera] li a:hover {
666
+ background-color: #555;
667
+ color: white;
734
668
  }
735
- .mobile .clappr-nerd-stats .stats-box-top {
736
- position: fixed;
669
+ .multicamera[data-multicamera] li a:hover a {
670
+ color: white;
671
+ text-decoration: none;
737
672
  }
738
- .mobile .clappr-nerd-stats .stats-box-main ul {
739
- flex: 0 1 50%;
673
+ .multicamera[data-multicamera] li.current a {
674
+ color: #f00;
740
675
  }
741
676
 
742
- @media only screen and (orientation: portrait) {
743
- .mobile .speedtest-summary {
744
- padding: 0 5px;
745
- height: auto;
746
- }
747
- .mobile .speedtest-summary-block {
748
- width: 100%;
749
- flex-direction: column;
750
- }
751
- .mobile .speedtest-summary-block .speedtest-summary-subblock {
752
- width: 100%;
753
- }
754
- .mobile .speedtest-summary-block .speedtest-summary-subblock-content {
755
- width: 100%;
756
- }
757
- .mobile .speedtest-summary-header {
758
- padding-top: 12px;
759
- height: 38px;
760
- text-align: center;
677
+ @keyframes pulse {
678
+ 0% {
679
+ color: #fff;
761
680
  }
762
- .mobile .speedtest-quality-header {
763
- text-align: center;
681
+ 50% {
682
+ color: #ff0101;
764
683
  }
765
- .mobile .speedtest-footer .speedtest-footer-refresh {
766
- inset: 50% auto auto 50%;
767
- transform: translate(-50%, -50%);
684
+ 100% {
685
+ color: #B80000;
768
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%;
769
701
  }
770
- @media only screen and (orientation: landscape) {
771
- .mobile .clappr-nerd-stats .stats-box-main ul {
772
- flex-basis: 1fr;
773
- }
702
+ .player-poster.clickable {
703
+ cursor: pointer;
774
704
  }
775
- @media only screen and (min-width: 1100px) {
776
- .fullscreen .clappr-nerd-stats .stats-box {
777
- top: unset;
778
- }
779
- }@charset "UTF-8";
780
- .media-control-clips {
781
- display: flex;
782
- gap: 6px;
705
+ .player-poster:hover .play-wrapper {
706
+ opacity: 1;
783
707
  }
784
- .media-control-clips .media-clip-text {
785
- text-overflow: ellipsis;
786
- white-space: nowrap;
787
- overflow: hidden;
788
- display: inline-block;
789
- text-overflow: ellipsis;
790
- color: white;
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;
714
+ }
715
+ .player-poster .play-wrapper svg {
716
+ height: 100%;
717
+ display: inline;
718
+ }
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 {
791
735
  cursor: default;
792
- line-height: var(--bottom-panel);
793
- position: relative;
794
736
  }
795
- .media-control-clips .media-clip-text::before {
796
- content: "•";
797
- padding-right: 6px;
737
+ .clappr-nerd-stats .stats-box {
738
+ position: absolute;
739
+ display: inline-block;
740
+ bottom: 52px;
741
+ right: 0;
742
+ top: 0;
743
+ left: 0;
744
+ bottom: 0;
745
+ padding: 0 10px 12px;
746
+ margin: 0;
747
+ line-height: 20px;
748
+ font-size: 12px;
749
+ font-weight: 500;
750
+ background: var(--primary-background-color);
751
+ color: #fff;
752
+ z-index: 20000;
753
+ overflow: auto;
754
+ max-width: 100%;
798
755
  }
799
- .media-control-clips .media-clip-text {
800
- max-width: 100px;
801
- }.context-menu {
802
- z-index: 999;
756
+ .clappr-nerd-stats .stats-box-top {
803
757
  position: absolute;
804
758
  top: 0;
805
759
  left: 0;
806
- text-align: center;
760
+ z-index: 9999;
761
+ width: 100%;
762
+ height: 32px;
763
+ background: var(--primary-background-color);
807
764
  }
808
- .context-menu .context-menu-list {
809
- font-family: "Proxima Nova", sans-serif;
810
- font-size: 12px;
811
- line-height: 12px;
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;
772
+ }
773
+ .clappr-nerd-stats .stats-box-top .close-button svg path {
774
+ fill: var(--primary-text-color);
775
+ }
776
+ .clappr-nerd-stats .stats-box-top .close-button:hover svg path {
777
+ fill: var(--hover-text-color);
778
+ }
779
+ .clappr-nerd-stats .stats-box-main {
780
+ overflow: hidden;
781
+ margin-top: 44px;
782
+ display: flex;
783
+ flex-wrap: wrap;
784
+ }
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
- text-align: left;
794
+ }
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;
800
+ }
801
+ .clappr-nerd-stats .stats-box ul {
814
802
  padding: 5px;
815
- margin-left: auto;
816
- margin-right: auto;
817
- background-color: rgba(0, 0, 0, 0.75);
818
- border: 1px solid #666;
819
- border-radius: 4px;
803
+ width: 200px;
804
+ flex: 0 1 50%;
820
805
  }
821
- .context-menu .context-menu-list-item button {
822
- border: none;
823
- background-color: transparent;
806
+ .clappr-nerd-stats .stats-box ul li {
807
+ position: relative;
808
+ padding: 0 5px;
809
+ text-align: left;
810
+ }
811
+ .clappr-nerd-stats .stats-box ul li.canvas-wrapper {
824
812
  padding: 0;
825
- color: white;
826
- display: flex;
827
- gap: 8px;
828
- align-items: center;
829
- justify-content: center;
830
- cursor: pointer;
831
- padding: 5px;
813
+ }
814
+ .clappr-nerd-stats .stats-box ul li.canvas-wrapper canvas {
832
815
  width: 100%;
833
816
  }
834
- .context-menu .context-menu-list-item_icon {
835
- width: 20px;
836
- height: 20px;
837
- }.container-with-poster-clickable .mc-skip-time {
838
- height: 0;
817
+ .clappr-nerd-stats .stats-box ul li:nth-child(2n) {
818
+ background: var(--secondary-background-color);
839
819
  }
840
-
841
- .mc-skip-time {
842
- position: absolute;
843
- width: 100%;
844
- height: calc(100% - 50px);
845
- z-index: 9998;
846
- background-color: transparent;
847
- font-family: Roboto, "Open Sans", Arial, sans-serif;
820
+ .clappr-nerd-stats .stats-box ul li:nth-child(2n) div {
821
+ background: var(--secondary-background-color);
848
822
  }
849
- .mc-skip-time .skip-container {
850
- width: 100%;
851
- height: 100%;
852
- display: flex;
853
- justify-content: space-between;
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;
854
828
  }
855
- .mc-skip-time .skip-container .skip-item {
856
- flex: 1 0 0px;
857
- height: 100%;
858
- }*, :focus, :visited {
859
- outline: none !important;
829
+ .clappr-nerd-stats .stats-box ul li div {
830
+ margin: 0;
831
+ position: absolute;
832
+ right: 0;
833
+ top: 0;
860
834
  }
861
835
 
862
- .multicamera[data-multicamera] {
863
- float: right;
864
- margin-top: 4px;
865
- position: relative;
866
- margin-right: 20px;
867
- width: 20px;
836
+ .desktop .clappr-nerd-stats .stats-box.narrow {
837
+ width: 250px;
868
838
  }
869
- .multicamera[data-multicamera] button {
870
- background-color: transparent;
871
- color: #fff;
872
- font-family: Roboto, "Open Sans", Arial, sans-serif;
873
- -webkit-font-smoothing: antialiased;
874
- border: none;
875
- font-size: 14px;
876
- padding: 0;
839
+ .desktop .clappr-nerd-stats .stats-box.narrow ul {
840
+ width: 100%;
877
841
  }
878
- .multicamera[data-multicamera] button svg {
879
- height: 20px;
880
- position: relative;
881
- margin-top: 6px;
842
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary {
843
+ padding: 0 5px;
844
+ height: auto;
882
845
  }
883
- .multicamera[data-multicamera] button:hover {
884
- color: #c9c9c9;
846
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block {
847
+ width: 100%;
848
+ flex-direction: column;
885
849
  }
886
- .multicamera[data-multicamera] button.changing {
887
- animation: pulse 0.5s infinite alternate;
850
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock {
851
+ width: 100%;
888
852
  }
889
- .multicamera[data-multicamera] button span.quality-arrow {
890
- width: 9px;
891
- height: 6px;
892
- margin-top: 11px;
893
- margin-left: 5px;
853
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock-content {
854
+ width: 100%;
894
855
  }
895
- .multicamera[data-multicamera] > ul {
896
- padding: 6px 0;
897
- right: -24px;
898
- width: 245px;
899
- list-style-type: none;
900
- position: absolute;
901
- bottom: 48px;
902
- border-radius: 4px;
903
- display: none;
904
- background-color: rgba(74, 74, 74, 0.9);
856
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-header {
857
+ padding-top: 12px;
858
+ height: 38px;
859
+ text-align: center;
905
860
  }
906
- .multicamera[data-multicamera] > ul::after {
907
- content: "";
908
- position: absolute;
909
- top: 100%;
910
- left: 85%;
911
- margin-left: -10px;
912
- width: 0;
913
- height: 0;
914
- border-top: 10px solid rgba(74, 74, 74, 0.9);
915
- border-right: 10px solid transparent;
916
- border-left: 10px solid transparent;
861
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-quality-header {
862
+ text-align: center;
917
863
  }
918
- .multicamera[data-multicamera] li {
919
- font-size: 10px;
920
- cursor: pointer;
864
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer {
865
+ height: 80px;
921
866
  }
922
- .multicamera[data-multicamera] li .multicamera-item {
923
- display: flex;
924
- padding: 10px 0;
925
- justify-content: center;
926
- position: relative;
867
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer-about-link {
868
+ bottom: 0;
869
+ left: 0;
927
870
  }
928
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
929
- pointer-events: none;
871
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer .speedtest-footer-refresh {
872
+ inset: 50% auto auto 50%;
873
+ transform: translate(-50%, -50%);
930
874
  }
931
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
932
- opacity: 0.5;
875
+
876
+ .speed-test-button {
877
+ margin: 10px 0 0;
878
+ color: #000;
933
879
  }
934
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
935
- opacity: 0.5;
880
+
881
+ .speed-test {
882
+ position: absolute;
883
+ top: 0;
884
+ left: 0;
885
+ width: 100%;
886
+ height: 100%;
887
+ z-index: 9999;
936
888
  }
937
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
938
- background-color: rgba(0, 0, 0, 0);
889
+ .speed-test .speed-test-header {
890
+ width: 100%;
891
+ height: 32px;
939
892
  }
940
- .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
941
- background-color: rgba(0, 0, 0, 0.3);
893
+ .speed-test .speed-test-header .close-speed-test {
894
+ float: right;
895
+ margin-right: 5px;
896
+ line-height: 32px;
897
+ cursor: pointer;
898
+ color: var(--primary-text-color);
942
899
  }
943
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
944
- width: 80px;
945
- height: 60px;
900
+ .speed-test .speed-test-header .close-speed-test:hover {
901
+ color: var(--hover-text-color);
946
902
  }
947
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
948
- width: 80px;
949
- height: 60px;
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;
950
911
  }
951
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
952
- width: 120px;
953
- text-align: left;
954
- margin-left: 15px;
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;
955
921
  }
956
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
957
- width: 120px;
958
- height: 20px;
959
- font-family: Roboto, "Open Sans", Arial, sans-serif;
960
- font-size: 14px;
961
- font-weight: normal;
962
- font-style: normal;
963
- font-stretch: normal;
964
- line-height: 1.43;
965
- letter-spacing: normal;
922
+ .speedtest-summary .speedtest-summary-header {
923
+ width: 100%;
924
+ padding-top: 4px;
966
925
  text-align: left;
967
- color: #fff;
968
- text-overflow: ellipsis;
969
- overflow: hidden;
926
+ height: 32px;
927
+ font-size: 14px;
928
+ font-weight: 500;
929
+ line-height: 20px;
970
930
  }
971
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
972
- opacity: 0.6;
931
+ .speedtest-summary .speedtest-summary-block {
932
+ position: relative;
933
+ display: flex;
934
+ flex-direction: row;
935
+ width: 100%;
973
936
  }
974
- .multicamera[data-multicamera] li[data-title] {
975
- background-color: #c3c2c2;
976
- padding: 5px;
937
+ .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock {
938
+ width: 50%;
939
+ margin-top: 4px;
940
+ margin-bottom: 12px;
977
941
  }
978
- .multicamera[data-multicamera] li a {
979
- color: #444;
980
- padding: 2px 10px;
981
- display: block;
982
- text-decoration: none;
942
+ .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock-content {
943
+ padding: 2px;
944
+ width: 248px;
945
+ max-width: 100%;
983
946
  }
984
- .multicamera[data-multicamera] li a:hover {
985
- background-color: #555;
986
- color: white;
947
+
948
+ .speedtest-quality {
949
+ width: 100%;
950
+ height: 36px;
951
+ display: flex !important;
952
+ flex-direction: column !important;
953
+ justify-content: space-between !important;
987
954
  }
988
- .multicamera[data-multicamera] li a:hover a {
989
- color: white;
990
- text-decoration: none;
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;
991
961
  }
992
- .multicamera[data-multicamera] li.current a {
993
- color: #f00;
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;
994
970
  }
995
-
996
- @keyframes pulse {
997
- 0% {
998
- color: #fff;
999
- }
1000
- 50% {
1001
- color: #ff0101;
1002
- }
1003
- 100% {
1004
- color: #B80000;
1005
- }
1006
- }.dvr-controls[data-dvr] {
1007
- display: inline-block;
1008
- color: var(--player-dvr-color);
1009
- line-height: 32px;
1010
- font-size: 10px;
1011
- font-weight: bold;
1012
- margin-left: 6px;
1013
- height: 40px;
1014
- line-height: 40px;
1015
- margin-left: 0;
971
+ .speedtest-quality-content-item {
972
+ width: 18.8%;
973
+ background-color: #fff;
1016
974
  }
1017
- .dvr-controls[data-dvr] .live-info {
1018
- cursor: default;
1019
- text-transform: uppercase;
975
+ .speedtest-quality-content-item.speedtest-quality-value-1 {
976
+ background-color: var(--speedtest-red);
1020
977
  }
1021
- .dvr-controls[data-dvr] .live-info:before {
1022
- content: "";
1023
- display: inline-block;
1024
- position: relative;
1025
- width: 7px;
1026
- height: 7px;
1027
- border-radius: 3.5px;
1028
- margin-right: 3.5px;
1029
- background-color: var(--player-live-color);
978
+ .speedtest-quality-content-item.speedtest-quality-value-2 {
979
+ background-color: var(--speedtest-orange);
1030
980
  }
1031
- .dvr-controls[data-dvr] .live-info.disabled {
1032
- opacity: 0.3;
981
+ .speedtest-quality-content-item.speedtest-quality-value-3 {
982
+ background-color: var(--speedtest-yellow);
1033
983
  }
1034
- .dvr-controls[data-dvr] .live-info.disabled:before {
1035
- background-color: var(--player-dvr-color);
984
+ .speedtest-quality-content-item.speedtest-quality-value-4 {
985
+ background-color: var(--speedtest-light-green);
1036
986
  }
1037
- .dvr-controls[data-dvr] .live-button {
1038
- cursor: pointer;
1039
- outline: none;
1040
- display: none;
1041
- border: 0;
1042
- color: var(--player-dvr-color);
1043
- background-color: transparent;
1044
- height: 32px;
1045
- padding: 0;
1046
- opacity: 0.7;
1047
- text-transform: uppercase;
1048
- transition: all 0.1s ease;
987
+ .speedtest-quality-content-item.speedtest-quality-value-5 {
988
+ background-color: var(--speedtest-green);
1049
989
  }
1050
- .dvr-controls[data-dvr] .live-button:before {
1051
- content: "";
1052
- display: inline-block;
990
+
991
+ .speedtest-footer {
1053
992
  position: relative;
1054
- width: 7px;
1055
- height: 7px;
1056
- border-radius: 3.5px;
1057
- margin-right: 3.5px;
1058
- background-color: var(--player-dvr-color);
993
+ float: left;
994
+ width: 100%;
995
+ height: 30px;
996
+ line-height: 16px;
1059
997
  }
1060
- .dvr-controls[data-dvr] .live-button:hover {
1061
- opacity: 1;
1062
- text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
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;
1063
1004
  }
1064
- .dvr-controls[data-dvr] .live-info {
1005
+ .speedtest-footer-about-link:hover {
1006
+ color: var(--hover-text-color);
1007
+ }
1008
+ .speedtest-footer .speedtest-footer-refresh {
1009
+ position: absolute;
1010
+ bottom: 0;
1011
+ right: 0;
1012
+ color: var(--secondary-text-color);
1065
1013
  font-size: 14px;
1066
- letter-spacing: 0.8px;
1067
- font-weight: 500;
1068
- color: #fffffe;
1069
- margin-left: 21px;
1014
+ font-weight: 400;
1015
+ line-height: 16px;
1016
+ height: 16px;
1017
+ display: flex;
1018
+ align-items: center;
1019
+ gap: 4px;
1070
1020
  }
1071
- .dvr-controls[data-dvr] .live-info::before {
1072
- width: 10px;
1073
- height: 10px;
1074
- border-radius: 50%;
1075
- margin-right: 8px;
1076
- background-color: #ed4f4a;
1021
+ .speedtest-footer .speedtest-footer-refresh svg path {
1022
+ fill: var(--secondary-text-color);
1077
1023
  }
1078
- .dvr-controls[data-dvr] .live-button {
1079
- height: 40px;
1080
- opacity: 1;
1081
- font-size: 14px;
1082
- letter-spacing: 0.8px;
1083
- font-weight: 500;
1084
- margin-left: 20px;
1024
+ .speedtest-footer .speedtest-footer-refresh:hover {
1025
+ color: var(--hover-text-color);
1085
1026
  }
1086
- .dvr-controls[data-dvr] .live-button::before {
1087
- width: 10px;
1088
- height: 10px;
1089
- border-radius: 50%;
1090
- margin-right: 8px;
1091
- background-color: #cacaca;
1092
- }.media-control-pip {
1093
- order: 95;
1094
- display: flex;
1027
+ .speedtest-footer .speedtest-footer-refresh:hover svg path {
1028
+ fill: var(--hover-text-color);
1095
1029
  }
1096
- .media-control-pip button {
1097
- height: 20px;
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;
1098
1040
  }
1099
- .media-control-pip button svg {
1100
- height: 20px;
1101
- }.seek-time {
1102
- position: absolute;
1103
- white-space: nowrap;
1104
- height: 20px;
1105
- line-height: 20px;
1106
- font-size: 0;
1107
- left: -100%;
1108
- bottom: 55px;
1109
- background-color: rgba(2, 2, 2, 0.5);
1110
- z-index: 9999;
1111
- transition: opacity 0.1s ease;
1041
+ .mobile .clappr-nerd-stats .stats-box-top {
1042
+ position: fixed;
1112
1043
  }
1113
- .seek-time.hidden {
1114
- opacity: 0;
1044
+ .mobile .clappr-nerd-stats .stats-box-main ul {
1045
+ flex: 0 1 50%;
1115
1046
  }
1116
- .seek-time .seek-time__pos {
1117
- display: inline-block;
1118
- color: white;
1119
- font-size: 10px;
1120
- padding-left: 7px;
1121
- padding-right: 7px;
1122
- vertical-align: top;
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
+ }
1123
1075
  }
1124
- .seek-time .seek-time__duration {
1125
- display: inline-block;
1126
- color: rgba(255, 255, 255, 0.5);
1127
- font-size: 10px;
1128
- padding-right: 7px;
1129
- vertical-align: top;
1076
+ @media only screen and (orientation: landscape) {
1077
+ .mobile .clappr-nerd-stats .stats-box-main ul {
1078
+ flex-basis: 1fr;
1079
+ }
1130
1080
  }
1131
- .seek-time .seek-time__duration::before {
1132
- content: "|";
1133
- margin-right: 7px;
1081
+ @media only screen and (min-width: 1100px) {
1082
+ .fullscreen .clappr-nerd-stats .stats-box {
1083
+ top: unset;
1084
+ }
1134
1085
  }[data-player] {
1135
1086
  --bottom-panel: 40px;
1136
1087
  }
@@ -1305,10 +1256,10 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1305
1256
  font-size: 11px;
1306
1257
  line-height: 32px;
1307
1258
  }
1308
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls[data-dvr] {
1259
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls {
1309
1260
  height: 32px;
1310
1261
  }
1311
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls[data-dvr] .live-button {
1262
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls .live-button {
1312
1263
  margin-left: 10px;
1313
1264
  height: 32px;
1314
1265
  font-size: 12px;
@@ -1316,12 +1267,12 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1316
1267
  text-shadow: none;
1317
1268
  letter-spacing: 0.6px;
1318
1269
  }
1319
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls[data-dvr] .live-button::before {
1270
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls .live-button::before {
1320
1271
  width: 8px;
1321
1272
  height: 8px;
1322
1273
  margin-right: 4px;
1323
1274
  }
1324
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls[data-dvr] .live-info {
1275
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls .live-info {
1325
1276
  margin-left: 10px;
1326
1277
  height: 32px;
1327
1278
  font-size: 12px;
@@ -1329,7 +1280,7 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1329
1280
  text-shadow: none;
1330
1281
  letter-spacing: 0.6px;
1331
1282
  }
1332
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls[data-dvr] .live-info::before {
1283
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls .live-info::before {
1333
1284
  width: 8px;
1334
1285
  height: 8px;
1335
1286
  margin-right: 4px;
@@ -1716,179 +1667,67 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1716
1667
  color: #fffffe;
1717
1668
  }
1718
1669
  .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li a:hover {
1719
- background-color: rgba(0, 0, 0, 0.4);
1720
- }
1721
- .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li.current a {
1722
- background-color: rgba(0, 0, 0, 0.4);
1723
- }
1724
- .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li:first-child a {
1725
- border-bottom-left-radius: 4px;
1726
- border-bottom-right-radius: 4px;
1727
- }
1728
- .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li:last-child a {
1729
- border-top-left-radius: 4px;
1730
- border-top-right-radius: 4px;
1731
- }
1732
- .media-control-skin-1[data-media-control-skin-1] .seek-time {
1733
- height: 26px;
1734
- line-height: 26px;
1735
- bottom: 52px;
1736
- border-radius: 3px;
1737
- background-color: rgba(74, 74, 74, 0.7);
1738
- }
1739
- .media-control-skin-1[data-media-control-skin-1] .seek-time span {
1740
- letter-spacing: 0.8px;
1741
- font-size: 14px;
1742
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1743
- }
1744
- .media-control-skin-1[data-media-control-skin-1] .seek-time .seek-time__pos {
1745
- padding-left: 8px;
1746
- padding-right: 8px;
1747
- }.spinner-three-bounce[data-spinner] {
1748
- position: absolute;
1749
- width: 70px;
1750
- text-align: center;
1751
- z-index: 999;
1752
- left: 0;
1753
- right: 0;
1754
- margin: 0 auto;
1755
- margin-left: auto;
1756
- margin-right: auto;
1757
- /* center vertically */
1758
- top: 50%;
1759
- transform: translateY(-50%);
1760
- }
1761
- .spinner-three-bounce[data-spinner] > div {
1762
- width: 18px;
1763
- height: 18px;
1764
- background-color: #FFF;
1765
- border-radius: 100%;
1766
- display: inline-block;
1767
- animation: bouncedelay 1.4s infinite ease-in-out;
1768
- /* Prevent first frame from flickering when animation starts */
1769
- animation-fill-mode: both;
1770
- }
1771
- .spinner-three-bounce[data-spinner] [data-bounce1] {
1772
- animation-delay: -0.32s;
1773
- }
1774
- .spinner-three-bounce[data-spinner] [data-bounce2] {
1775
- animation-delay: -0.16s;
1776
- }
1777
-
1778
- @keyframes bouncedelay {
1779
- 0%, 80%, 100% {
1780
- transform: scale(0);
1781
- }
1782
- 40% {
1783
- transform: scale(1);
1784
- }
1785
- }.player-poster {
1786
- display: flex;
1787
- justify-content: center;
1788
- align-items: center;
1789
- position: absolute;
1790
- height: 100%;
1791
- width: 100%;
1792
- z-index: 998;
1793
- top: 0;
1794
- left: 0;
1795
- background-color: #000;
1796
- background-size: cover;
1797
- background-repeat: no-repeat;
1798
- background-position: 50% 50%;
1799
- }
1800
- .player-poster.clickable {
1801
- cursor: pointer;
1802
- }
1803
- .player-poster:hover .play-wrapper {
1804
- opacity: 1;
1805
- }
1806
- .player-poster .play-wrapper {
1807
- width: 100%;
1808
- height: 25%;
1809
- margin: 0 auto;
1810
- opacity: 0.75;
1811
- transition: opacity 0.1s ease;
1812
- }
1813
- .player-poster .play-wrapper svg {
1814
- height: 100%;
1815
- display: inline;
1816
- }
1817
- .player-poster .play-wrapper svg path {
1818
- fill: #fff;
1819
- }*,
1820
- :focus,
1821
- :visited {
1822
- outline: none !important;
1670
+ background-color: rgba(0, 0, 0, 0.4);
1823
1671
  }
1824
-
1825
- .media-control-cc[data-cc] {
1826
- position: relative;
1827
- order: 85;
1672
+ .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li.current a {
1673
+ background-color: rgba(0, 0, 0, 0.4);
1828
1674
  }
1829
- .media-control-cc[data-cc] button {
1830
- background-color: transparent;
1831
- color: #fff;
1832
- -webkit-font-smoothing: antialiased;
1833
- border: none;
1834
- cursor: pointer;
1675
+ .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li:first-child a {
1676
+ border-bottom-left-radius: 4px;
1677
+ border-bottom-right-radius: 4px;
1835
1678
  }
1836
- .media-control-cc[data-cc] button .cc-text svg {
1837
- fill: white;
1679
+ .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li:last-child a {
1680
+ border-top-left-radius: 4px;
1681
+ border-top-right-radius: 4px;
1838
1682
  }
1839
- .media-control-cc[data-cc] button:hover {
1840
- color: #c9c9c9;
1683
+ .media-control-skin-1[data-media-control-skin-1] .seek-time {
1684
+ height: 26px;
1685
+ line-height: 26px;
1686
+ bottom: 52px;
1687
+ border-radius: 3px;
1688
+ background-color: rgba(74, 74, 74, 0.7);
1841
1689
  }
1842
- .media-control-cc[data-cc] button.changing {
1843
- animation: pulse 0.5s infinite alternate;
1690
+ .media-control-skin-1[data-media-control-skin-1] .seek-time span {
1691
+ letter-spacing: 0.8px;
1692
+ font-size: 14px;
1693
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1844
1694
  }
1845
- .media-control-cc[data-cc] ul {
1846
- width: 80px;
1847
- list-style-type: none;
1695
+ .media-control-skin-1[data-media-control-skin-1] .seek-time .seek-time__pos {
1696
+ padding-left: 8px;
1697
+ padding-right: 8px;
1698
+ }.seek-time {
1848
1699
  position: absolute;
1849
- bottom: 25px;
1850
- border: 1px solid black;
1851
- background-color: #e6e6e6;
1852
- padding: 8px 0;
1853
- }
1854
- .media-control-cc[data-cc] li a {
1855
- color: #444;
1856
- padding: 2px 10px;
1857
- display: block;
1858
- text-decoration: none;
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;
1859
1709
  }
1860
- .media-control-cc[data-cc] li a:hover {
1861
- background-color: #555;
1862
- color: white;
1710
+ .seek-time.hidden {
1711
+ opacity: 0;
1863
1712
  }
1864
- .media-control-cc[data-cc] li a:hover a {
1713
+ .seek-time .seek-time__pos {
1714
+ display: inline-block;
1865
1715
  color: white;
1866
- text-decoration: none;
1867
- }
1868
- .media-control-cc[data-cc] li.current a {
1869
- color: #f00;
1870
- background-color: #555;
1871
- }
1872
-
1873
- @keyframes pulse {
1874
- 0% {
1875
- color: #fff;
1876
- }
1877
- 50% {
1878
- color: #ff0101;
1879
- }
1880
- 100% {
1881
- color: #B80000;
1882
- }
1716
+ font-size: 10px;
1717
+ padding-left: 7px;
1718
+ padding-right: 7px;
1719
+ vertical-align: top;
1883
1720
  }
1884
- ::cue {
1885
- visibility: hidden !important;
1886
- font-size: 0 !important;
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;
1887
1727
  }
1888
-
1889
- .ios-fullscreen::cue {
1890
- visibility: visible !important;
1891
- font-size: 1em !important;
1728
+ .seek-time .seek-time__duration::before {
1729
+ content: "|";
1730
+ margin-right: 7px;
1892
1731
  }.share_plugin[data-share] {
1893
1732
  pointer-events: auto;
1894
1733
  z-index: 5;
@@ -1972,21 +1811,85 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1972
1811
  display: inline-block;
1973
1812
  margin-right: 5px;
1974
1813
  cursor: pointer;
1814
+ }*,
1815
+ :focus,
1816
+ :visited {
1817
+ outline: none !important;
1818
+ }
1819
+
1820
+ .media-control-cc[data-cc] {
1821
+ position: relative;
1822
+ order: 85;
1823
+ }
1824
+ .media-control-cc[data-cc] button {
1825
+ background-color: transparent;
1826
+ color: #fff;
1827
+ -webkit-font-smoothing: antialiased;
1828
+ border: none;
1829
+ cursor: pointer;
1830
+ }
1831
+ .media-control-cc[data-cc] button .cc-text svg {
1832
+ fill: white;
1833
+ }
1834
+ .media-control-cc[data-cc] button:hover {
1835
+ color: #c9c9c9;
1836
+ }
1837
+ .media-control-cc[data-cc] button.changing {
1838
+ animation: pulse 0.5s infinite alternate;
1839
+ }
1840
+ .media-control-cc[data-cc] ul {
1841
+ width: 80px;
1842
+ list-style-type: none;
1843
+ position: absolute;
1844
+ bottom: 25px;
1845
+ border: 1px solid black;
1846
+ background-color: #e6e6e6;
1847
+ padding: 8px 0;
1848
+ }
1849
+ .media-control-cc[data-cc] li a {
1850
+ color: #444;
1851
+ padding: 2px 10px;
1852
+ display: block;
1853
+ text-decoration: none;
1854
+ }
1855
+ .media-control-cc[data-cc] li a:hover {
1856
+ background-color: #555;
1857
+ color: white;
1858
+ }
1859
+ .media-control-cc[data-cc] li a:hover a {
1860
+ color: white;
1861
+ text-decoration: none;
1862
+ }
1863
+ .media-control-cc[data-cc] li.current a {
1864
+ color: #f00;
1865
+ background-color: #555;
1866
+ }
1867
+
1868
+ @keyframes pulse {
1869
+ 0% {
1870
+ color: #fff;
1871
+ }
1872
+ 50% {
1873
+ color: #ff0101;
1874
+ }
1875
+ 100% {
1876
+ color: #B80000;
1877
+ }
1878
+ }
1879
+ ::cue {
1880
+ visibility: hidden !important;
1881
+ font-size: 0 !important;
1882
+ }
1883
+
1884
+ .ios-fullscreen::cue {
1885
+ visibility: visible !important;
1886
+ font-size: 1em !important;
1975
1887
  }.quality-levels li.disabled {
1976
1888
  opacity: 0.5;
1977
1889
  pointer-events: none;
1978
1890
  }
1979
1891
  .quality-levels li.current {
1980
1892
  background-color: #000;
1981
- }.player-logo[data-logo] {
1982
- position: absolute;
1983
- z-index: 2;
1984
- width: 100%;
1985
- height: 100%;
1986
- }
1987
-
1988
- .clappr-logo {
1989
- position: absolute;
1990
1893
  }.scrub-thumbnails {
1991
1894
  position: absolute;
1992
1895
  bottom: 52px;
@@ -2050,4 +1953,72 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
2050
1953
  }
2051
1954
  .scrub-thumbnails .backdrop .carousel img {
2052
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
+ }
2015
+ }.player-logo[data-logo] {
2016
+ position: absolute;
2017
+ z-index: 2;
2018
+ width: 100%;
2019
+ height: 100%;
2020
+ }
2021
+
2022
+ .clappr-logo {
2023
+ position: absolute;
2053
2024
  }