@gcorevideo/player 2.22.18 → 2.22.20

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 (84) hide show
  1. package/assets/audio-selector/track-selector.ejs +3 -3
  2. package/assets/bottom-gear/bottomgear.ejs +3 -3
  3. package/assets/dvr-controls/dvr_controls.scss +0 -12
  4. package/dist/core.js +1 -1
  5. package/dist/index.css +803 -810
  6. package/dist/index.js +195 -176
  7. package/dist/player.d.ts +121 -108
  8. package/dist/plugins/index.css +904 -911
  9. package/dist/plugins/index.js +132 -112
  10. package/docs/api/player.bitratetrackrecord.md +20 -0
  11. package/docs/api/player.clapprstats.exportmetrics.md +2 -2
  12. package/docs/api/player.clapprstats.md +0 -4
  13. package/docs/api/player.clapprstatschronograph.md +115 -0
  14. package/docs/api/player.clapprstatscounter.md +211 -0
  15. package/docs/api/player.clapprstatsevents.md +51 -0
  16. package/docs/api/player.clapprstatsmetrics.md +52 -0
  17. package/docs/api/player.clipspluginsettings.md +1 -1
  18. package/docs/api/player.md +57 -2
  19. package/docs/api/player.nerdstats.md +3 -3
  20. package/docs/api/player.playerconfig.md +1 -1
  21. package/docs/api/player.playerconfig.playbacktype.md +6 -1
  22. package/docs/api/player.timeupdate.md +6 -3
  23. package/lib/plugins/audio-selector/AudioSelector.d.ts +1 -1
  24. package/lib/plugins/audio-selector/AudioSelector.d.ts.map +1 -1
  25. package/lib/plugins/audio-selector/AudioSelector.js +15 -8
  26. package/lib/plugins/bottom-gear/BottomGear.d.ts +1 -1
  27. package/lib/plugins/bottom-gear/BottomGear.js +2 -2
  28. package/lib/plugins/clappr-nerd-stats/NerdStats.d.ts +4 -4
  29. package/lib/plugins/clappr-nerd-stats/NerdStats.js +4 -4
  30. package/lib/plugins/clappr-stats/ClapprStats.d.ts +5 -2
  31. package/lib/plugins/clappr-stats/ClapprStats.d.ts.map +1 -1
  32. package/lib/plugins/clappr-stats/ClapprStats.js +31 -33
  33. package/lib/plugins/clappr-stats/types.d.ts +21 -21
  34. package/lib/plugins/clappr-stats/types.d.ts.map +1 -1
  35. package/lib/plugins/clappr-stats/types.js +22 -22
  36. package/lib/plugins/clappr-stats/utils.d.ts +2 -2
  37. package/lib/plugins/clappr-stats/utils.d.ts.map +1 -1
  38. package/lib/plugins/click-to-pause/ClickToPause.js +1 -1
  39. package/lib/plugins/clips/Clips.d.ts +1 -1
  40. package/lib/plugins/dvr-controls/DvrControls.d.ts +6 -2
  41. package/lib/plugins/dvr-controls/DvrControls.d.ts.map +1 -1
  42. package/lib/plugins/dvr-controls/DvrControls.js +39 -27
  43. package/lib/plugins/media-control/MediaControl.d.ts +6 -2
  44. package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
  45. package/lib/plugins/media-control/MediaControl.js +20 -9
  46. package/lib/plugins/picture-in-picture/PictureInPicture.js +1 -1
  47. package/lib/plugins/subtitles/ClosedCaptions.js +1 -1
  48. package/lib/plugins/vast-ads/VastAds.js +1 -1
  49. package/lib/plugins/vast-ads/rollmanager.js +1 -1
  50. package/lib/testUtils.d.ts.map +1 -1
  51. package/lib/testUtils.js +7 -4
  52. package/lib/types.d.ts +1 -1
  53. package/package.json +3 -3
  54. package/src/playback/__tests__/HTML5Video.test.ts +2 -2
  55. package/src/plugins/audio-selector/AudioSelector.ts +14 -7
  56. package/src/plugins/audio-selector/__tests__/AudioSelector.test.ts +8 -8
  57. package/src/plugins/audio-selector/__tests__/__snapshots__/AudioSelector.test.ts.snap +15 -15
  58. package/src/plugins/bottom-gear/BottomGear.ts +2 -2
  59. package/src/plugins/bottom-gear/__tests__/BottomGear.test.ts +8 -5
  60. package/src/plugins/bottom-gear/__tests__/__snapshots__/BottomGear.test.ts.snap +3 -3
  61. package/src/plugins/clappr-nerd-stats/NerdStats.ts +5 -5
  62. package/src/plugins/clappr-stats/ClapprStats.ts +41 -40
  63. package/src/plugins/clappr-stats/__tests__/ClapprStats.test.ts +12 -12
  64. package/src/plugins/clappr-stats/types.ts +21 -21
  65. package/src/plugins/clappr-stats/utils.ts +2 -2
  66. package/src/plugins/click-to-pause/ClickToPause.ts +1 -1
  67. package/src/plugins/clips/Clips.ts +1 -1
  68. package/src/plugins/clips/__tests__/Clips.test.ts +1 -1
  69. package/src/plugins/clips/__tests__/__snapshots__/Clips.test.ts.snap +1 -1
  70. package/src/plugins/dvr-controls/DvrControls.ts +51 -37
  71. package/src/plugins/dvr-controls/__tests__/DvrControls.test.ts +84 -26
  72. package/src/plugins/dvr-controls/__tests__/__snapshots__/DvrControls.test.ts.snap +0 -12
  73. package/src/plugins/media-control/MediaControl.ts +21 -9
  74. package/src/plugins/media-control/__tests__/MediaControl.test.ts +8 -5
  75. package/src/plugins/media-control/__tests__/__snapshots__/MediaControl.test.ts.snap +20 -20
  76. package/src/plugins/picture-in-picture/PictureInPicture.ts +1 -1
  77. package/src/plugins/subtitles/ClosedCaptions.ts +1 -1
  78. package/src/plugins/subtitles/__tests__/ClosedCaptions.test.ts +1 -1
  79. package/src/plugins/vast-ads/VastAds.ts +1 -1
  80. package/src/plugins/vast-ads/rollmanager.ts +1 -1
  81. package/src/testUtils.ts +11 -5
  82. package/src/types.ts +1 -1
  83. package/temp/player.api.json +630 -12
  84. package/tsconfig.tsbuildinfo +1 -1
package/dist/index.css CHANGED
@@ -122,77 +122,51 @@
122
122
  .gplayer-lite-btn::-moz-focus-inner {
123
123
  border: 0;
124
124
  padding: 0;
125
- }.big-mute-icon-wrapper[data-big-mute] {
126
- position: absolute;
127
- z-index: 9998;
128
- background-color: transparent;
129
- display: flex;
130
- justify-content: center;
131
- width: 100%;
132
- height: calc(100% - 50px);
133
- margin: 0 auto;
134
- opacity: 0.75;
135
- transition: opacity 0.1s ease;
136
- pointer-events: auto;
125
+ }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
126
+ order: 99;
127
+ height: 20px;
137
128
  }
138
- .big-mute-icon-wrapper[data-big-mute].hide {
139
- display: none;
129
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
130
+ position: absolute;
131
+ right: 16px;
132
+ bottom: 52px;
133
+ width: 250px;
134
+ min-height: 48px;
135
+ z-index: 9999;
136
+ border-radius: 4px;
140
137
  }
141
- .big-mute-icon-wrapper[data-big-mute]:hover {
142
- cursor: pointer;
138
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
139
+ padding: 8px 0;
143
140
  }
144
-
145
- .big-mute-icon[data-big-mute-icon] {
141
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
142
+ margin: 0;
143
+ text-align: left;
144
+ line-height: 22px;
145
+ padding: 5px 14px;
146
+ width: 250px;
147
+ font-size: 12px;
146
148
  display: flex;
147
149
  align-items: center;
148
- justify-content: center;
149
- align-self: center;
150
- width: 120px;
151
- height: 120px;
152
- border: 2px solid white;
153
- border-radius: 50%;
154
- filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
155
- filter: alpha(opacity=60);
156
- opacity: 1;
157
- box-shadow: 0 0 1px 0 white;
158
- background: rgba(240, 243, 247, 0.9411764706);
159
- z-index: 10000;
160
- }
161
- .big-mute-icon[data-big-mute-icon] svg {
162
- margin-left: 5px;
163
- width: 80px;
164
- height: 80px;
165
- }
166
- .big-mute-icon[data-big-mute-icon] svg path {
167
- fill: #1f1e1e !important;
168
- }
169
- .big-mute-icon[data-big-mute-icon]:hover {
170
- background: rgba(240, 243, 247, 0.8784313725);
150
+ justify-content: flex-start;
151
+ gap: 8px;
171
152
  }
172
- .big-mute-icon[data-big-mute-icon]:hover svg path {
173
- fill: #151515 !important;
174
- }@charset "UTF-8";
175
- .media-control-clips {
176
- display: flex;
177
- gap: 6px;
153
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
154
+ flex: 24px 0 0;
155
+ height: 24px;
178
156
  }
179
- .media-control-clips .media-clip-text {
180
- text-overflow: ellipsis;
181
- white-space: nowrap;
182
- overflow: hidden;
157
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
158
+ visibility: hidden;
183
159
  display: inline-block;
184
- text-overflow: ellipsis;
185
- color: white;
186
- cursor: default;
187
- line-height: var(--bottom-panel);
188
- position: relative;
189
160
  }
190
- .media-control-clips .media-clip-text::before {
191
- content: "•";
192
- padding-right: 6px;
161
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
162
+ flex: 0 1 100%;
193
163
  }
194
- .media-control-clips .media-clip-text {
195
- max-width: 100px;
164
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
165
+ flex: 0 0 14px;
166
+ height: 24px;
167
+ }
168
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
169
+ flex: 1 0 auto;
196
170
  }*,
197
171
  :focus,
198
172
  :visited {
@@ -354,349 +328,560 @@
354
328
  }
355
329
  .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
356
330
  display: inline;
357
- }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
358
- order: 99;
359
- height: 20px;
331
+ }:root {
332
+ --primary-background-color: #000;
333
+ --secondary-background-color: #262626;
334
+ --primary-text-color: #fff;
335
+ --secondary-text-color: #fff4f2;
336
+ --hover-text-color: #f9b090;
337
+ --speedtest-red: #df564d;
338
+ --speedtest-orange: #df934d;
339
+ --speedtest-yellow: #dfd04d;
340
+ --speedtest-light-green: #c2df4d;
341
+ --speedtest-green: #73df4d;
360
342
  }
361
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
343
+
344
+ .clappr-nerd-stats .stats-box {
362
345
  position: absolute;
363
- right: 16px;
346
+ display: inline-block;
364
347
  bottom: 52px;
365
- width: 250px;
366
- min-height: 48px;
367
- z-index: 9999;
368
- border-radius: 4px;
369
- }
370
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
371
- padding: 8px 0;
372
- }
373
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
348
+ right: 0;
349
+ top: 0;
350
+ left: 0;
351
+ bottom: 0;
352
+ padding: 0 10px 12px;
374
353
  margin: 0;
375
- text-align: left;
376
- line-height: 22px;
377
- padding: 5px 14px;
378
- width: 250px;
354
+ line-height: 20px;
379
355
  font-size: 12px;
380
- display: flex;
381
- align-items: center;
382
- justify-content: flex-start;
383
- gap: 8px;
384
- }
385
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
386
- flex: 24px 0 0;
387
- height: 24px;
388
- }
389
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
390
- visibility: hidden;
391
- display: inline-block;
356
+ font-weight: 500;
357
+ background: var(--primary-background-color);
358
+ color: #fff;
359
+ z-index: 20000;
360
+ overflow: auto;
392
361
  }
393
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
394
- flex: 0 1 100%;
362
+ .clappr-nerd-stats .stats-box-top {
363
+ position: absolute;
364
+ top: 0;
365
+ left: 0;
366
+ z-index: 99990;
367
+ width: 100%;
368
+ height: 32px;
369
+ background: var(--primary-background-color);
395
370
  }
396
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
397
- flex: 0 0 14px;
398
- height: 24px;
371
+ .clappr-nerd-stats .stats-box-top .close-button {
372
+ float: right;
373
+ margin-right: 12px;
374
+ margin-top: 10px;
375
+ display: block;
376
+ width: 12px;
377
+ height: 12px;
399
378
  }
400
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
401
- flex: 1 0 auto;
402
- }.dvr-controls[data-dvr] {
403
- display: inline-block;
404
- color: var(--player-dvr-color);
405
- line-height: 32px;
406
- font-size: 10px;
407
- font-weight: bold;
408
- margin-left: 6px;
409
- height: 40px;
410
- line-height: 40px;
411
- margin-left: 0;
379
+ .clappr-nerd-stats .stats-box-top .close-button svg path {
380
+ fill: var(--primary-text-color);
412
381
  }
413
- .dvr-controls[data-dvr] .live-info {
414
- cursor: default;
415
- text-transform: uppercase;
382
+ .clappr-nerd-stats .stats-box-top .close-button:hover svg path {
383
+ fill: var(--hover-text-color);
416
384
  }
417
- .dvr-controls[data-dvr] .live-info:before {
418
- content: "";
419
- display: inline-block;
420
- position: relative;
421
- width: 7px;
422
- height: 7px;
423
- border-radius: 3.5px;
424
- margin-right: 3.5px;
425
- background-color: var(--player-live-color);
385
+ .clappr-nerd-stats .stats-box-main {
386
+ overflow: hidden;
387
+ margin-top: 44px;
426
388
  }
427
- .dvr-controls[data-dvr] .live-info.disabled {
428
- opacity: 0.3;
389
+ .clappr-nerd-stats .stats-box.wide {
390
+ width: 820px;
429
391
  }
430
- .dvr-controls[data-dvr] .live-info.disabled:before {
431
- background-color: var(--player-dvr-color);
392
+ .clappr-nerd-stats .stats-box ul, .clappr-nerd-stats .stats-box li {
393
+ list-style-type: none;
432
394
  }
433
- .dvr-controls[data-dvr] .live-button {
434
- cursor: pointer;
435
- outline: none;
436
- display: none;
437
- border: 0;
438
- color: var(--player-dvr-color);
439
- background-color: transparent;
440
- height: 32px;
441
- padding: 0;
442
- opacity: 0.7;
443
- text-transform: uppercase;
444
- transition: all 0.1s ease;
395
+ .clappr-nerd-stats .stats-box ul div, .clappr-nerd-stats .stats-box li div {
396
+ padding-left: 2px;
397
+ padding-right: 2px;
398
+ background: var(--primary-background-color);
445
399
  }
446
- .dvr-controls[data-dvr] .live-button:before {
447
- content: "";
400
+ .clappr-nerd-stats .stats-box ul {
448
401
  display: inline-block;
402
+ float: left;
403
+ padding: 5px;
404
+ width: 200px;
405
+ }
406
+ .clappr-nerd-stats .stats-box ul li {
449
407
  position: relative;
450
- width: 7px;
451
- height: 7px;
452
- border-radius: 3.5px;
453
- margin-right: 3.5px;
454
- background-color: var(--player-dvr-color);
408
+ padding: 0 5px;
409
+ text-align: left;
455
410
  }
456
- .dvr-controls[data-dvr] .live-button:hover {
457
- opacity: 1;
458
- text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
411
+ .clappr-nerd-stats .stats-box ul li.canvas-wrapper {
412
+ padding: 0;
459
413
  }
460
- .dvr-controls[data-dvr] .live-info {
461
- font-size: 14px;
462
- letter-spacing: 0.8px;
463
- font-weight: 500;
464
- color: #fffffe;
465
- margin-left: 21px;
414
+ .clappr-nerd-stats .stats-box ul li.canvas-wrapper canvas {
415
+ width: 100%;
466
416
  }
467
- .dvr-controls[data-dvr] .live-info::before {
468
- width: 10px;
469
- height: 10px;
470
- border-radius: 50%;
471
- margin-right: 8px;
472
- background-color: #ed4f4a;
473
- }
474
- .dvr-controls[data-dvr] .live-button {
475
- height: 40px;
476
- opacity: 1;
477
- font-size: 14px;
478
- letter-spacing: 0.8px;
479
- font-weight: 500;
480
- margin-left: 20px;
417
+ .clappr-nerd-stats .stats-box ul li:nth-child(2n) {
418
+ background: var(--secondary-background-color);
481
419
  }
482
- .dvr-controls[data-dvr] .live-button::before {
483
- width: 10px;
484
- height: 10px;
485
- border-radius: 50%;
486
- margin-right: 8px;
487
- background-color: #cacaca;
420
+ .clappr-nerd-stats .stats-box ul li:nth-child(2n) div {
421
+ background: var(--secondary-background-color);
488
422
  }
489
-
490
- .dvr .dvr-controls[data-dvr] .live-info {
491
- display: none;
423
+ .clappr-nerd-stats .stats-box ul li.title {
424
+ text-align: center;
425
+ font-weight: bold;
426
+ padding-bottom: 4px;
427
+ font-size: 14px;
492
428
  }
493
- .dvr .dvr-controls[data-dvr] .live-button {
494
- display: block;
495
- }.context-menu {
496
- z-index: 999;
429
+ .clappr-nerd-stats .stats-box ul li div {
430
+ margin: 0;
497
431
  position: absolute;
432
+ right: 0;
498
433
  top: 0;
499
- left: 0;
500
- text-align: center;
501
434
  }
502
- .context-menu .context-menu-list {
503
- font-family: "Proxima Nova", sans-serif;
504
- font-size: 12px;
505
- line-height: 12px;
506
- list-style-type: none;
507
- text-align: left;
508
- padding: 5px;
509
- margin-left: auto;
510
- margin-right: auto;
511
- background-color: rgba(0, 0, 0, 0.75);
512
- border: 1px solid #666;
513
- border-radius: 4px;
435
+
436
+ .desktop .clappr-nerd-stats .stats-box.narrow {
437
+ width: 250px;
514
438
  }
515
- .context-menu .context-menu-list-item button {
516
- border: none;
517
- background-color: transparent;
518
- padding: 0;
519
- color: white;
520
- display: flex;
521
- gap: 8px;
522
- align-items: center;
523
- justify-content: center;
524
- cursor: pointer;
525
- padding: 5px;
439
+ .desktop .clappr-nerd-stats .stats-box.narrow ul {
526
440
  width: 100%;
527
441
  }
528
- .context-menu .context-menu-list-item_icon {
529
- width: 20px;
530
- height: 20px;
531
- }.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
532
- height: 0;
442
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary {
443
+ padding: 0 5px;
444
+ height: auto;
533
445
  }
534
-
535
- .skip_time_plugin[data-skip-time] {
536
- position: absolute;
446
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block {
537
447
  width: 100%;
538
- height: calc(100% - 50px);
539
- z-index: 9998;
540
- background-color: transparent;
541
- font-family: Roboto, "Open Sans", Arial, sans-serif;
448
+ flex-direction: column;
542
449
  }
543
- .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
450
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock {
544
451
  width: 100%;
545
- height: 100%;
546
- display: flex;
547
- justify-content: space-between;
548
452
  }
549
- .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
550
- width: 33.3%;
551
- height: 100%;
552
- }*, :focus, :visited {
553
- outline: none !important;
453
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock-content {
454
+ width: 100%;
554
455
  }
555
-
556
- .multicamera[data-multicamera] {
557
- float: right;
558
- margin-top: 4px;
559
- position: relative;
560
- margin-right: 20px;
561
- width: 20px;
456
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-header {
457
+ padding-top: 12px;
458
+ height: 38px;
459
+ text-align: center;
562
460
  }
563
- .multicamera[data-multicamera] button {
564
- background-color: transparent;
565
- color: #fff;
566
- font-family: Roboto, "Open Sans", Arial, sans-serif;
567
- -webkit-font-smoothing: antialiased;
568
- border: none;
569
- font-size: 14px;
570
- padding: 0;
461
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-quality-header {
462
+ text-align: center;
571
463
  }
572
- .multicamera[data-multicamera] button svg {
573
- height: 20px;
574
- position: relative;
575
- margin-top: 6px;
464
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer {
465
+ height: 80px;
576
466
  }
577
- .multicamera[data-multicamera] button:hover {
578
- color: #c9c9c9;
467
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer-about-link {
468
+ bottom: 0;
469
+ left: 0;
579
470
  }
580
- .multicamera[data-multicamera] button.changing {
581
- animation: pulse 0.5s infinite alternate;
471
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer .speedtest-footer-refresh {
472
+ inset: 50% auto auto 50%;
473
+ transform: translate(-50%, -50%);
582
474
  }
583
- .multicamera[data-multicamera] button span.quality-arrow {
584
- width: 9px;
585
- height: 6px;
586
- margin-top: 11px;
587
- margin-left: 5px;
475
+
476
+ .speed-test-button {
477
+ margin: 10px 0 0;
478
+ color: #000;
588
479
  }
589
- .multicamera[data-multicamera] > ul {
590
- padding: 6px 0;
591
- right: -24px;
592
- width: 245px;
593
- list-style-type: none;
480
+
481
+ .speed-test {
594
482
  position: absolute;
595
- bottom: 48px;
596
- border-radius: 4px;
597
- display: none;
598
- background-color: rgba(74, 74, 74, 0.9);
483
+ top: 0;
484
+ left: 0;
485
+ width: 100%;
486
+ height: 100%;
487
+ z-index: 9999;
599
488
  }
600
- .multicamera[data-multicamera] > ul::after {
601
- content: "";
602
- position: absolute;
603
- top: 100%;
604
- left: 85%;
605
- margin-left: -10px;
606
- width: 0;
607
- height: 0;
608
- border-top: 10px solid rgba(74, 74, 74, 0.9);
609
- border-right: 10px solid transparent;
610
- border-left: 10px solid transparent;
489
+ .speed-test .speed-test-header {
490
+ width: 100%;
491
+ height: 32px;
611
492
  }
612
- .multicamera[data-multicamera] li {
613
- font-size: 10px;
493
+ .speed-test .speed-test-header .close-speed-test {
494
+ float: right;
495
+ margin-right: 5px;
496
+ line-height: 32px;
614
497
  cursor: pointer;
498
+ color: var(--primary-text-color);
615
499
  }
616
- .multicamera[data-multicamera] li .multicamera-item {
617
- display: flex;
618
- padding: 10px 0;
619
- justify-content: center;
620
- position: relative;
500
+ .speed-test .speed-test-header .close-speed-test:hover {
501
+ color: var(--hover-text-color);
621
502
  }
622
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
623
- pointer-events: none;
503
+
504
+ .settings-button {
505
+ float: right;
506
+ margin: 0 12px 0 0;
507
+ height: 40px;
508
+ width: 24px;
509
+ border: none;
510
+ padding: 0;
624
511
  }
625
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
626
- opacity: 0.5;
512
+
513
+ .speedtest-summary {
514
+ width: 100%;
515
+ border-top: 1px solid var(--secondary-background-color) !important;
516
+ border-bottom: 1px solid var(--secondary-background-color) !important;
517
+ display: flex !important;
518
+ flex-direction: column;
519
+ align-items: stretch;
520
+ justify-content: space-between;
627
521
  }
628
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
629
- opacity: 0.5;
522
+ .speedtest-summary .speedtest-summary-header {
523
+ width: 100%;
524
+ padding-top: 4px;
525
+ text-align: left;
526
+ height: 32px;
527
+ font-size: 14px;
528
+ font-weight: 500;
529
+ line-height: 20px;
630
530
  }
631
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
632
- background-color: rgba(0, 0, 0, 0);
531
+ .speedtest-summary .speedtest-summary-block {
532
+ position: relative;
533
+ display: flex;
534
+ flex-direction: row;
535
+ width: 100%;
633
536
  }
634
- .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
635
- background-color: rgba(0, 0, 0, 0.3);
537
+ .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock {
538
+ width: 50%;
539
+ margin-top: 4px;
540
+ margin-bottom: 12px;
636
541
  }
637
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
638
- width: 80px;
639
- height: 60px;
542
+ .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock-content {
543
+ padding: 2px;
544
+ width: 248px;
545
+ max-width: 100%;
640
546
  }
641
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
642
- width: 80px;
643
- height: 60px;
547
+
548
+ .speedtest-quality {
549
+ width: 100%;
550
+ height: 36px;
551
+ display: flex !important;
552
+ flex-direction: column !important;
553
+ justify-content: space-between !important;
644
554
  }
645
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
646
- width: 120px;
555
+ .speedtest-quality .speedtest-quality-header {
556
+ font-size: 12px;
557
+ height: 20px;
558
+ border-left: 2px solid var(--secondary-background-color) !important;
559
+ background-color: var(--secondary-background-color);
647
560
  text-align: left;
648
- margin-left: 15px;
649
561
  }
650
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
651
- width: 120px;
652
- height: 20px;
653
- font-family: Roboto, "Open Sans", Arial, sans-serif;
562
+ .speedtest-quality-content {
563
+ width: 100%;
564
+ margin-top: 8px;
565
+ height: 8px;
566
+ display: flex !important;
567
+ flex-direction: row !important;
568
+ align-items: stretch !important;
569
+ justify-content: space-between;
570
+ }
571
+ .speedtest-quality-content-item {
572
+ width: 18.8%;
573
+ background-color: #fff;
574
+ }
575
+ .speedtest-quality-content-item.speedtest-quality-value-1 {
576
+ background-color: var(--speedtest-red);
577
+ }
578
+ .speedtest-quality-content-item.speedtest-quality-value-2 {
579
+ background-color: var(--speedtest-orange);
580
+ }
581
+ .speedtest-quality-content-item.speedtest-quality-value-3 {
582
+ background-color: var(--speedtest-yellow);
583
+ }
584
+ .speedtest-quality-content-item.speedtest-quality-value-4 {
585
+ background-color: var(--speedtest-light-green);
586
+ }
587
+ .speedtest-quality-content-item.speedtest-quality-value-5 {
588
+ background-color: var(--speedtest-green);
589
+ }
590
+
591
+ .speedtest-footer {
592
+ position: relative;
593
+ float: left;
594
+ width: 100%;
595
+ height: 30px;
596
+ line-height: 16px;
597
+ }
598
+ .speedtest-footer-about-link {
599
+ position: absolute;
600
+ bottom: 0;
601
+ left: 0;
602
+ color: var(--secondary-text-color);
603
+ text-decoration: underline !important;
604
+ }
605
+ .speedtest-footer-about-link:hover {
606
+ color: var(--hover-text-color);
607
+ }
608
+ .speedtest-footer .speedtest-footer-refresh {
609
+ position: absolute;
610
+ bottom: 0;
611
+ right: 0;
612
+ color: var(--secondary-text-color);
654
613
  font-size: 14px;
655
- font-weight: normal;
656
- font-style: normal;
657
- font-stretch: normal;
658
- line-height: 1.43;
659
- letter-spacing: normal;
660
- text-align: left;
661
- color: #fff;
662
- text-overflow: ellipsis;
663
- overflow: hidden;
614
+ font-weight: 400;
615
+ line-height: 16px;
616
+ height: 16px;
617
+ display: flex;
618
+ align-items: center;
619
+ gap: 4px;
664
620
  }
665
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
666
- opacity: 0.6;
621
+ .speedtest-footer .speedtest-footer-refresh svg path {
622
+ fill: var(--secondary-text-color);
667
623
  }
668
- .multicamera[data-multicamera] li[data-title] {
669
- background-color: #c3c2c2;
670
- padding: 5px;
624
+ .speedtest-footer .speedtest-footer-refresh:hover {
625
+ color: var(--hover-text-color);
671
626
  }
672
- .multicamera[data-multicamera] li a {
673
- color: #444;
674
- padding: 2px 10px;
675
- display: block;
676
- text-decoration: none;
627
+ .speedtest-footer .speedtest-footer-refresh:hover svg path {
628
+ fill: var(--hover-text-color);
677
629
  }
678
- .multicamera[data-multicamera] li a:hover {
679
- background-color: #555;
630
+
631
+ .mobile .clappr-nerd-stats .stats-box {
632
+ position: fixed;
633
+ height: auto;
634
+ width: auto;
635
+ inset: 0;
636
+ min-width: 100vw;
637
+ padding-bottom: 4px;
638
+ padding-left: 4px;
639
+ padding-right: 4px;
640
+ }
641
+ .mobile .clappr-nerd-stats .stats-box-top {
642
+ position: fixed;
643
+ }
644
+ .mobile .clappr-nerd-stats .stats-box ul {
645
+ width: 50%;
646
+ }
647
+
648
+ @media only screen and (orientation: portrait) {
649
+ .mobile .speedtest-summary {
650
+ padding: 0 5px;
651
+ height: auto;
652
+ }
653
+ .mobile .speedtest-summary-block {
654
+ width: 100%;
655
+ flex-direction: column;
656
+ }
657
+ .mobile .speedtest-summary-block .speedtest-summary-subblock {
658
+ width: 100%;
659
+ }
660
+ .mobile .speedtest-summary-block .speedtest-summary-subblock-content {
661
+ width: 100%;
662
+ }
663
+ .mobile .speedtest-summary-header {
664
+ padding-top: 12px;
665
+ height: 38px;
666
+ text-align: center;
667
+ }
668
+ .mobile .speedtest-quality-header {
669
+ text-align: center;
670
+ }
671
+ .mobile .speedtest-footer .speedtest-footer-refresh {
672
+ inset: 50% auto auto 50%;
673
+ transform: translate(-50%, -50%);
674
+ }
675
+ }
676
+ @media only screen and (orientation: landscape) {
677
+ .mobile .clappr-nerd-stats .stats-box ul {
678
+ width: 25%;
679
+ }
680
+ }.context-menu {
681
+ z-index: 999;
682
+ position: absolute;
683
+ top: 0;
684
+ left: 0;
685
+ text-align: center;
686
+ }
687
+ .context-menu .context-menu-list {
688
+ font-family: "Proxima Nova", sans-serif;
689
+ font-size: 12px;
690
+ line-height: 12px;
691
+ list-style-type: none;
692
+ text-align: left;
693
+ padding: 5px;
694
+ margin-left: auto;
695
+ margin-right: auto;
696
+ background-color: rgba(0, 0, 0, 0.75);
697
+ border: 1px solid #666;
698
+ border-radius: 4px;
699
+ }
700
+ .context-menu .context-menu-list-item button {
701
+ border: none;
702
+ background-color: transparent;
703
+ padding: 0;
680
704
  color: white;
705
+ display: flex;
706
+ gap: 8px;
707
+ align-items: center;
708
+ justify-content: center;
709
+ cursor: pointer;
710
+ padding: 5px;
711
+ width: 100%;
681
712
  }
682
- .multicamera[data-multicamera] li a:hover a {
713
+ .context-menu .context-menu-list-item_icon {
714
+ width: 20px;
715
+ height: 20px;
716
+ }.dvr-controls[data-dvr] {
717
+ display: inline-block;
718
+ color: var(--player-dvr-color);
719
+ line-height: 32px;
720
+ font-size: 10px;
721
+ font-weight: bold;
722
+ margin-left: 6px;
723
+ height: 40px;
724
+ line-height: 40px;
725
+ margin-left: 0;
726
+ }
727
+ .dvr-controls[data-dvr] .live-info {
728
+ cursor: default;
729
+ text-transform: uppercase;
730
+ }
731
+ .dvr-controls[data-dvr] .live-info:before {
732
+ content: "";
733
+ display: inline-block;
734
+ position: relative;
735
+ width: 7px;
736
+ height: 7px;
737
+ border-radius: 3.5px;
738
+ margin-right: 3.5px;
739
+ background-color: var(--player-live-color);
740
+ }
741
+ .dvr-controls[data-dvr] .live-info.disabled {
742
+ opacity: 0.3;
743
+ }
744
+ .dvr-controls[data-dvr] .live-info.disabled:before {
745
+ background-color: var(--player-dvr-color);
746
+ }
747
+ .dvr-controls[data-dvr] .live-button {
748
+ cursor: pointer;
749
+ outline: none;
750
+ display: none;
751
+ border: 0;
752
+ color: var(--player-dvr-color);
753
+ background-color: transparent;
754
+ height: 32px;
755
+ padding: 0;
756
+ opacity: 0.7;
757
+ text-transform: uppercase;
758
+ transition: all 0.1s ease;
759
+ }
760
+ .dvr-controls[data-dvr] .live-button:before {
761
+ content: "";
762
+ display: inline-block;
763
+ position: relative;
764
+ width: 7px;
765
+ height: 7px;
766
+ border-radius: 3.5px;
767
+ margin-right: 3.5px;
768
+ background-color: var(--player-dvr-color);
769
+ }
770
+ .dvr-controls[data-dvr] .live-button:hover {
771
+ opacity: 1;
772
+ text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
773
+ }
774
+ .dvr-controls[data-dvr] .live-info {
775
+ font-size: 14px;
776
+ letter-spacing: 0.8px;
777
+ font-weight: 500;
778
+ color: #fffffe;
779
+ margin-left: 21px;
780
+ }
781
+ .dvr-controls[data-dvr] .live-info::before {
782
+ width: 10px;
783
+ height: 10px;
784
+ border-radius: 50%;
785
+ margin-right: 8px;
786
+ background-color: #ed4f4a;
787
+ }
788
+ .dvr-controls[data-dvr] .live-button {
789
+ height: 40px;
790
+ opacity: 1;
791
+ font-size: 14px;
792
+ letter-spacing: 0.8px;
793
+ font-weight: 500;
794
+ margin-left: 20px;
795
+ }
796
+ .dvr-controls[data-dvr] .live-button::before {
797
+ width: 10px;
798
+ height: 10px;
799
+ border-radius: 50%;
800
+ margin-right: 8px;
801
+ background-color: #cacaca;
802
+ }div.player-error-screen, [data-player] div.player-error-screen {
803
+ color: #CCCACA;
804
+ position: absolute;
805
+ top: 0;
806
+ height: 100%;
807
+ width: 100%;
808
+ background-color: rgba(0, 0, 0, 0.7);
809
+ z-index: 2000;
810
+ display: flex;
811
+ flex-direction: column;
812
+ justify-content: center;
813
+ }
814
+ div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
815
+ font-size: 14px;
816
+ color: #CCCACA;
817
+ margin-top: 45px;
818
+ }
819
+ div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
820
+ font-weight: bold;
821
+ line-height: 30px;
822
+ font-size: 18px;
823
+ }
824
+ div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
825
+ width: 90%;
826
+ margin: 0 auto;
827
+ }
828
+ div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
829
+ font-size: 13px;
830
+ margin-top: 15px;
831
+ }
832
+ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
833
+ cursor: pointer;
834
+ width: 30px;
835
+ margin: 15px auto 0;
836
+ }@charset "UTF-8";
837
+ .media-control-clips {
838
+ display: flex;
839
+ gap: 6px;
840
+ }
841
+ .media-control-clips .media-clip-text {
842
+ text-overflow: ellipsis;
843
+ white-space: nowrap;
844
+ overflow: hidden;
845
+ display: inline-block;
846
+ text-overflow: ellipsis;
683
847
  color: white;
684
- text-decoration: none;
848
+ cursor: default;
849
+ line-height: var(--bottom-panel);
850
+ position: relative;
685
851
  }
686
- .multicamera[data-multicamera] li.current a {
687
- color: #f00;
852
+ .media-control-clips .media-clip-text::before {
853
+ content: "•";
854
+ padding-right: 6px;
855
+ }
856
+ .media-control-clips .media-clip-text {
857
+ max-width: 100px;
858
+ }.quality-levels li.disabled {
859
+ opacity: 0.5;
860
+ pointer-events: none;
861
+ }
862
+ .quality-levels li.current {
863
+ background-color: #000;
864
+ }.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
865
+ height: 0;
866
+ }
867
+
868
+ .skip_time_plugin[data-skip-time] {
869
+ position: absolute;
870
+ width: 100%;
871
+ height: calc(100% - 50px);
872
+ z-index: 9998;
873
+ background-color: transparent;
874
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
875
+ }
876
+ .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
877
+ width: 100%;
878
+ height: 100%;
879
+ display: flex;
880
+ justify-content: space-between;
688
881
  }
689
-
690
- @keyframes pulse {
691
- 0% {
692
- color: #fff;
693
- }
694
- 50% {
695
- color: #ff0101;
696
- }
697
- 100% {
698
- color: #B80000;
699
- }
882
+ .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
883
+ width: 33.3%;
884
+ height: 100%;
700
885
  }.media-control-pip {
701
886
  order: 95;
702
887
  display: flex;
@@ -706,40 +891,6 @@
706
891
  }
707
892
  .media-control-pip button svg {
708
893
  height: 20px;
709
- }div.player-error-screen, [data-player] div.player-error-screen {
710
- color: #CCCACA;
711
- position: absolute;
712
- top: 0;
713
- height: 100%;
714
- width: 100%;
715
- background-color: rgba(0, 0, 0, 0.7);
716
- z-index: 2000;
717
- display: flex;
718
- flex-direction: column;
719
- justify-content: center;
720
- }
721
- div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
722
- font-size: 14px;
723
- color: #CCCACA;
724
- margin-top: 45px;
725
- }
726
- div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
727
- font-weight: bold;
728
- line-height: 30px;
729
- font-size: 18px;
730
- }
731
- div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
732
- width: 90%;
733
- margin: 0 auto;
734
- }
735
- div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
736
- font-size: 13px;
737
- margin-top: 15px;
738
- }
739
- div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
740
- cursor: pointer;
741
- width: 30px;
742
- margin: 15px auto 0;
743
894
  }.player-poster[data-poster] {
744
895
  display: flex;
745
896
  justify-content: center;
@@ -772,396 +923,238 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
772
923
  height: 100%;
773
924
  display: inline;
774
925
  }
775
- .player-poster[data-poster] .play-wrapper[data-poster] svg path {
776
- fill: #fff;
777
- }:root {
778
- --primary-background-color: #000;
779
- --secondary-background-color: #262626;
780
- --primary-text-color: #fff;
781
- --secondary-text-color: #fff4f2;
782
- --hover-text-color: #f9b090;
783
- --speedtest-red: #df564d;
784
- --speedtest-orange: #df934d;
785
- --speedtest-yellow: #dfd04d;
786
- --speedtest-light-green: #c2df4d;
787
- --speedtest-green: #73df4d;
788
- }
789
-
790
- .clappr-nerd-stats .stats-box {
791
- position: absolute;
792
- display: inline-block;
793
- bottom: 52px;
794
- right: 0;
795
- top: 0;
796
- left: 0;
797
- bottom: 0;
798
- padding: 0 10px 12px;
799
- margin: 0;
800
- line-height: 20px;
801
- font-size: 12px;
802
- font-weight: 500;
803
- background: var(--primary-background-color);
804
- color: #fff;
805
- z-index: 20000;
806
- overflow: auto;
807
- }
808
- .clappr-nerd-stats .stats-box-top {
809
- position: absolute;
810
- top: 0;
811
- left: 0;
812
- z-index: 99990;
813
- width: 100%;
814
- height: 32px;
815
- background: var(--primary-background-color);
816
- }
817
- .clappr-nerd-stats .stats-box-top .close-button {
818
- float: right;
819
- margin-right: 12px;
820
- margin-top: 10px;
821
- display: block;
822
- width: 12px;
823
- height: 12px;
824
- }
825
- .clappr-nerd-stats .stats-box-top .close-button svg path {
826
- fill: var(--primary-text-color);
827
- }
828
- .clappr-nerd-stats .stats-box-top .close-button:hover svg path {
829
- fill: var(--hover-text-color);
830
- }
831
- .clappr-nerd-stats .stats-box-main {
832
- overflow: hidden;
833
- margin-top: 44px;
834
- }
835
- .clappr-nerd-stats .stats-box.wide {
836
- width: 820px;
837
- }
838
- .clappr-nerd-stats .stats-box ul, .clappr-nerd-stats .stats-box li {
839
- list-style-type: none;
840
- }
841
- .clappr-nerd-stats .stats-box ul div, .clappr-nerd-stats .stats-box li div {
842
- padding-left: 2px;
843
- padding-right: 2px;
844
- background: var(--primary-background-color);
845
- }
846
- .clappr-nerd-stats .stats-box ul {
847
- display: inline-block;
848
- float: left;
849
- padding: 5px;
850
- width: 200px;
851
- }
852
- .clappr-nerd-stats .stats-box ul li {
853
- position: relative;
854
- padding: 0 5px;
855
- text-align: left;
856
- }
857
- .clappr-nerd-stats .stats-box ul li.canvas-wrapper {
858
- padding: 0;
859
- }
860
- .clappr-nerd-stats .stats-box ul li.canvas-wrapper canvas {
861
- width: 100%;
862
- }
863
- .clappr-nerd-stats .stats-box ul li:nth-child(2n) {
864
- background: var(--secondary-background-color);
865
- }
866
- .clappr-nerd-stats .stats-box ul li:nth-child(2n) div {
867
- background: var(--secondary-background-color);
868
- }
869
- .clappr-nerd-stats .stats-box ul li.title {
870
- text-align: center;
871
- font-weight: bold;
872
- padding-bottom: 4px;
873
- font-size: 14px;
874
- }
875
- .clappr-nerd-stats .stats-box ul li div {
876
- margin: 0;
877
- position: absolute;
878
- right: 0;
879
- top: 0;
880
- }
881
-
882
- .desktop .clappr-nerd-stats .stats-box.narrow {
883
- width: 250px;
884
- }
885
- .desktop .clappr-nerd-stats .stats-box.narrow ul {
886
- width: 100%;
887
- }
888
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary {
889
- padding: 0 5px;
890
- height: auto;
891
- }
892
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block {
893
- width: 100%;
894
- flex-direction: column;
895
- }
896
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock {
897
- width: 100%;
898
- }
899
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock-content {
900
- width: 100%;
901
- }
902
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-header {
903
- padding-top: 12px;
904
- height: 38px;
905
- text-align: center;
906
- }
907
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-quality-header {
908
- text-align: center;
909
- }
910
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer {
911
- height: 80px;
912
- }
913
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer-about-link {
914
- bottom: 0;
915
- left: 0;
916
- }
917
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer .speedtest-footer-refresh {
918
- inset: 50% auto auto 50%;
919
- transform: translate(-50%, -50%);
920
- }
921
-
922
- .speed-test-button {
923
- margin: 10px 0 0;
924
- color: #000;
925
- }
926
-
927
- .speed-test {
928
- position: absolute;
929
- top: 0;
930
- left: 0;
931
- width: 100%;
932
- height: 100%;
933
- z-index: 9999;
934
- }
935
- .speed-test .speed-test-header {
936
- width: 100%;
937
- height: 32px;
938
- }
939
- .speed-test .speed-test-header .close-speed-test {
940
- float: right;
941
- margin-right: 5px;
942
- line-height: 32px;
943
- cursor: pointer;
944
- color: var(--primary-text-color);
945
- }
946
- .speed-test .speed-test-header .close-speed-test:hover {
947
- color: var(--hover-text-color);
948
- }
949
-
950
- .settings-button {
951
- float: right;
952
- margin: 0 12px 0 0;
953
- height: 40px;
954
- width: 24px;
955
- border: none;
956
- padding: 0;
957
- }
958
-
959
- .speedtest-summary {
960
- width: 100%;
961
- border-top: 1px solid var(--secondary-background-color) !important;
962
- border-bottom: 1px solid var(--secondary-background-color) !important;
963
- display: flex !important;
964
- flex-direction: column;
965
- align-items: stretch;
966
- justify-content: space-between;
967
- }
968
- .speedtest-summary .speedtest-summary-header {
969
- width: 100%;
970
- padding-top: 4px;
971
- text-align: left;
972
- height: 32px;
973
- font-size: 14px;
974
- font-weight: 500;
975
- line-height: 20px;
976
- }
977
- .speedtest-summary .speedtest-summary-block {
978
- position: relative;
926
+ .player-poster[data-poster] .play-wrapper[data-poster] svg path {
927
+ fill: #fff;
928
+ }.big-mute-icon-wrapper[data-big-mute] {
929
+ position: absolute;
930
+ z-index: 9998;
931
+ background-color: transparent;
979
932
  display: flex;
980
- flex-direction: row;
933
+ justify-content: center;
981
934
  width: 100%;
935
+ height: calc(100% - 50px);
936
+ margin: 0 auto;
937
+ opacity: 0.75;
938
+ transition: opacity 0.1s ease;
939
+ pointer-events: auto;
982
940
  }
983
- .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock {
984
- width: 50%;
985
- margin-top: 4px;
986
- margin-bottom: 12px;
941
+ .big-mute-icon-wrapper[data-big-mute].hide {
942
+ display: none;
987
943
  }
988
- .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock-content {
989
- padding: 2px;
990
- width: 248px;
991
- max-width: 100%;
944
+ .big-mute-icon-wrapper[data-big-mute]:hover {
945
+ cursor: pointer;
992
946
  }
993
947
 
994
- .speedtest-quality {
995
- width: 100%;
996
- height: 36px;
997
- display: flex !important;
998
- flex-direction: column !important;
999
- justify-content: space-between !important;
948
+ .big-mute-icon[data-big-mute-icon] {
949
+ display: flex;
950
+ align-items: center;
951
+ justify-content: center;
952
+ align-self: center;
953
+ width: 120px;
954
+ height: 120px;
955
+ border: 2px solid white;
956
+ border-radius: 50%;
957
+ filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
958
+ filter: alpha(opacity=60);
959
+ opacity: 1;
960
+ box-shadow: 0 0 1px 0 white;
961
+ background: rgba(240, 243, 247, 0.9411764706);
962
+ z-index: 10000;
1000
963
  }
1001
- .speedtest-quality .speedtest-quality-header {
1002
- font-size: 12px;
1003
- height: 20px;
1004
- border-left: 2px solid var(--secondary-background-color) !important;
1005
- background-color: var(--secondary-background-color);
1006
- text-align: left;
964
+ .big-mute-icon[data-big-mute-icon] svg {
965
+ margin-left: 5px;
966
+ width: 80px;
967
+ height: 80px;
1007
968
  }
1008
- .speedtest-quality-content {
1009
- width: 100%;
1010
- margin-top: 8px;
1011
- height: 8px;
1012
- display: flex !important;
1013
- flex-direction: row !important;
1014
- align-items: stretch !important;
1015
- justify-content: space-between;
969
+ .big-mute-icon[data-big-mute-icon] svg path {
970
+ fill: #1f1e1e !important;
1016
971
  }
1017
- .speedtest-quality-content-item {
1018
- width: 18.8%;
1019
- background-color: #fff;
972
+ .big-mute-icon[data-big-mute-icon]:hover {
973
+ background: rgba(240, 243, 247, 0.8784313725);
1020
974
  }
1021
- .speedtest-quality-content-item.speedtest-quality-value-1 {
1022
- background-color: var(--speedtest-red);
975
+ .big-mute-icon[data-big-mute-icon]:hover svg path {
976
+ fill: #151515 !important;
977
+ }.seek-time[data-seek-time] {
978
+ position: absolute;
979
+ white-space: nowrap;
980
+ height: 20px;
981
+ line-height: 20px;
982
+ font-size: 0;
983
+ left: -100%;
984
+ bottom: 55px;
985
+ background-color: rgba(2, 2, 2, 0.5);
986
+ z-index: 9999;
987
+ transition: opacity 0.1s ease;
1023
988
  }
1024
- .speedtest-quality-content-item.speedtest-quality-value-2 {
1025
- background-color: var(--speedtest-orange);
989
+ .seek-time[data-seek-time].hidden[data-seek-time] {
990
+ opacity: 0;
1026
991
  }
1027
- .speedtest-quality-content-item.speedtest-quality-value-3 {
1028
- background-color: var(--speedtest-yellow);
992
+ .seek-time[data-seek-time] [data-seek-time] {
993
+ display: inline-block;
994
+ color: white;
995
+ font-size: 10px;
996
+ padding-left: 7px;
997
+ padding-right: 7px;
998
+ vertical-align: top;
1029
999
  }
1030
- .speedtest-quality-content-item.speedtest-quality-value-4 {
1031
- background-color: var(--speedtest-light-green);
1000
+ .seek-time[data-seek-time] [data-duration] {
1001
+ display: inline-block;
1002
+ color: rgba(255, 255, 255, 0.5);
1003
+ font-size: 10px;
1004
+ padding-right: 7px;
1005
+ vertical-align: top;
1032
1006
  }
1033
- .speedtest-quality-content-item.speedtest-quality-value-5 {
1034
- background-color: var(--speedtest-green);
1007
+ .seek-time[data-seek-time] [data-duration]::before {
1008
+ content: "|";
1009
+ margin-right: 7px;
1010
+ }*, :focus, :visited {
1011
+ outline: none !important;
1035
1012
  }
1036
1013
 
1037
- .speedtest-footer {
1014
+ .multicamera[data-multicamera] {
1015
+ float: right;
1016
+ margin-top: 4px;
1038
1017
  position: relative;
1039
- float: left;
1040
- width: 100%;
1041
- height: 30px;
1042
- line-height: 16px;
1018
+ margin-right: 20px;
1019
+ width: 20px;
1043
1020
  }
1044
- .speedtest-footer-about-link {
1045
- position: absolute;
1046
- bottom: 0;
1047
- left: 0;
1048
- color: var(--secondary-text-color);
1049
- text-decoration: underline !important;
1021
+ .multicamera[data-multicamera] button {
1022
+ background-color: transparent;
1023
+ color: #fff;
1024
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1025
+ -webkit-font-smoothing: antialiased;
1026
+ border: none;
1027
+ font-size: 14px;
1028
+ padding: 0;
1050
1029
  }
1051
- .speedtest-footer-about-link:hover {
1052
- color: var(--hover-text-color);
1030
+ .multicamera[data-multicamera] button svg {
1031
+ height: 20px;
1032
+ position: relative;
1033
+ margin-top: 6px;
1053
1034
  }
1054
- .speedtest-footer .speedtest-footer-refresh {
1035
+ .multicamera[data-multicamera] button:hover {
1036
+ color: #c9c9c9;
1037
+ }
1038
+ .multicamera[data-multicamera] button.changing {
1039
+ animation: pulse 0.5s infinite alternate;
1040
+ }
1041
+ .multicamera[data-multicamera] button span.quality-arrow {
1042
+ width: 9px;
1043
+ height: 6px;
1044
+ margin-top: 11px;
1045
+ margin-left: 5px;
1046
+ }
1047
+ .multicamera[data-multicamera] > ul {
1048
+ padding: 6px 0;
1049
+ right: -24px;
1050
+ width: 245px;
1051
+ list-style-type: none;
1055
1052
  position: absolute;
1056
- bottom: 0;
1057
- right: 0;
1058
- color: var(--secondary-text-color);
1059
- font-size: 14px;
1060
- font-weight: 400;
1061
- line-height: 16px;
1062
- height: 16px;
1063
- display: flex;
1064
- align-items: center;
1065
- gap: 4px;
1053
+ bottom: 48px;
1054
+ border-radius: 4px;
1055
+ display: none;
1056
+ background-color: rgba(74, 74, 74, 0.9);
1066
1057
  }
1067
- .speedtest-footer .speedtest-footer-refresh svg path {
1068
- fill: var(--secondary-text-color);
1058
+ .multicamera[data-multicamera] > ul::after {
1059
+ content: "";
1060
+ position: absolute;
1061
+ top: 100%;
1062
+ left: 85%;
1063
+ margin-left: -10px;
1064
+ width: 0;
1065
+ height: 0;
1066
+ border-top: 10px solid rgba(74, 74, 74, 0.9);
1067
+ border-right: 10px solid transparent;
1068
+ border-left: 10px solid transparent;
1069
1069
  }
1070
- .speedtest-footer .speedtest-footer-refresh:hover {
1071
- color: var(--hover-text-color);
1070
+ .multicamera[data-multicamera] li {
1071
+ font-size: 10px;
1072
+ cursor: pointer;
1072
1073
  }
1073
- .speedtest-footer .speedtest-footer-refresh:hover svg path {
1074
- fill: var(--hover-text-color);
1074
+ .multicamera[data-multicamera] li .multicamera-item {
1075
+ display: flex;
1076
+ padding: 10px 0;
1077
+ justify-content: center;
1078
+ position: relative;
1075
1079
  }
1076
-
1077
- .mobile .clappr-nerd-stats .stats-box {
1078
- position: fixed;
1079
- height: auto;
1080
- width: auto;
1081
- inset: 0;
1082
- min-width: 100vw;
1083
- padding-bottom: 4px;
1084
- padding-left: 4px;
1085
- padding-right: 4px;
1080
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
1081
+ pointer-events: none;
1086
1082
  }
1087
- .mobile .clappr-nerd-stats .stats-box-top {
1088
- position: fixed;
1083
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
1084
+ opacity: 0.5;
1089
1085
  }
1090
- .mobile .clappr-nerd-stats .stats-box ul {
1091
- width: 50%;
1086
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
1087
+ opacity: 0.5;
1092
1088
  }
1093
-
1094
- @media only screen and (orientation: portrait) {
1095
- .mobile .speedtest-summary {
1096
- padding: 0 5px;
1097
- height: auto;
1098
- }
1099
- .mobile .speedtest-summary-block {
1100
- width: 100%;
1101
- flex-direction: column;
1102
- }
1103
- .mobile .speedtest-summary-block .speedtest-summary-subblock {
1104
- width: 100%;
1105
- }
1106
- .mobile .speedtest-summary-block .speedtest-summary-subblock-content {
1107
- width: 100%;
1108
- }
1109
- .mobile .speedtest-summary-header {
1110
- padding-top: 12px;
1111
- height: 38px;
1112
- text-align: center;
1113
- }
1114
- .mobile .speedtest-quality-header {
1115
- text-align: center;
1116
- }
1117
- .mobile .speedtest-footer .speedtest-footer-refresh {
1118
- inset: 50% auto auto 50%;
1119
- transform: translate(-50%, -50%);
1120
- }
1089
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
1090
+ background-color: rgba(0, 0, 0, 0);
1091
+ }
1092
+ .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
1093
+ background-color: rgba(0, 0, 0, 0.3);
1094
+ }
1095
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
1096
+ width: 80px;
1097
+ height: 60px;
1121
1098
  }
1122
- @media only screen and (orientation: landscape) {
1123
- .mobile .clappr-nerd-stats .stats-box ul {
1124
- width: 25%;
1125
- }
1126
- }.quality-levels li.disabled {
1127
- opacity: 0.5;
1128
- pointer-events: none;
1099
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
1100
+ width: 80px;
1101
+ height: 60px;
1129
1102
  }
1130
- .quality-levels li.current {
1131
- background-color: #000;
1132
- }.seek-time[data-seek-time] {
1133
- position: absolute;
1134
- white-space: nowrap;
1103
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
1104
+ width: 120px;
1105
+ text-align: left;
1106
+ margin-left: 15px;
1107
+ }
1108
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1109
+ width: 120px;
1135
1110
  height: 20px;
1136
- line-height: 20px;
1137
- font-size: 0;
1138
- left: -100%;
1139
- bottom: 55px;
1140
- background-color: rgba(2, 2, 2, 0.5);
1141
- z-index: 9999;
1142
- transition: opacity 0.1s ease;
1111
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1112
+ font-size: 14px;
1113
+ font-weight: normal;
1114
+ font-style: normal;
1115
+ font-stretch: normal;
1116
+ line-height: 1.43;
1117
+ letter-spacing: normal;
1118
+ text-align: left;
1119
+ color: #fff;
1120
+ text-overflow: ellipsis;
1121
+ overflow: hidden;
1143
1122
  }
1144
- .seek-time[data-seek-time].hidden[data-seek-time] {
1145
- opacity: 0;
1123
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1124
+ opacity: 0.6;
1146
1125
  }
1147
- .seek-time[data-seek-time] [data-seek-time] {
1148
- display: inline-block;
1126
+ .multicamera[data-multicamera] li[data-title] {
1127
+ background-color: #c3c2c2;
1128
+ padding: 5px;
1129
+ }
1130
+ .multicamera[data-multicamera] li a {
1131
+ color: #444;
1132
+ padding: 2px 10px;
1133
+ display: block;
1134
+ text-decoration: none;
1135
+ }
1136
+ .multicamera[data-multicamera] li a:hover {
1137
+ background-color: #555;
1149
1138
  color: white;
1150
- font-size: 10px;
1151
- padding-left: 7px;
1152
- padding-right: 7px;
1153
- vertical-align: top;
1154
1139
  }
1155
- .seek-time[data-seek-time] [data-duration] {
1156
- display: inline-block;
1157
- color: rgba(255, 255, 255, 0.5);
1158
- font-size: 10px;
1159
- padding-right: 7px;
1160
- vertical-align: top;
1140
+ .multicamera[data-multicamera] li a:hover a {
1141
+ color: white;
1142
+ text-decoration: none;
1161
1143
  }
1162
- .seek-time[data-seek-time] [data-duration]::before {
1163
- content: "|";
1164
- margin-right: 7px;
1144
+ .multicamera[data-multicamera] li.current a {
1145
+ color: #f00;
1146
+ }
1147
+
1148
+ @keyframes pulse {
1149
+ 0% {
1150
+ color: #fff;
1151
+ }
1152
+ 50% {
1153
+ color: #ff0101;
1154
+ }
1155
+ 100% {
1156
+ color: #B80000;
1157
+ }
1165
1158
  }.share_plugin[data-share] {
1166
1159
  pointer-events: auto;
1167
1160
  z-index: 5;
@@ -1283,80 +1276,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1283
1276
  40% {
1284
1277
  transform: scale(1);
1285
1278
  }
1286
- }*,
1287
- :focus,
1288
- :visited {
1289
- outline: none !important;
1290
- }
1291
-
1292
- .media-control-cc[data-cc] {
1293
- position: relative;
1294
- order: 85;
1295
- }
1296
- .media-control-cc[data-cc] button {
1297
- background-color: transparent;
1298
- color: #fff;
1299
- -webkit-font-smoothing: antialiased;
1300
- border: none;
1301
- cursor: pointer;
1302
- }
1303
- .media-control-cc[data-cc] button .cc-text svg {
1304
- fill: white;
1305
- }
1306
- .media-control-cc[data-cc] button:hover {
1307
- color: #c9c9c9;
1308
- }
1309
- .media-control-cc[data-cc] button.changing {
1310
- animation: pulse 0.5s infinite alternate;
1311
- }
1312
- .media-control-cc[data-cc] ul {
1313
- width: 80px;
1314
- list-style-type: none;
1315
- position: absolute;
1316
- bottom: 25px;
1317
- border: 1px solid black;
1318
- display: none;
1319
- background-color: #e6e6e6;
1320
- padding: 8px 0;
1321
- }
1322
- .media-control-cc[data-cc] li a {
1323
- color: #444;
1324
- padding: 2px 10px;
1325
- display: block;
1326
- text-decoration: none;
1327
- }
1328
- .media-control-cc[data-cc] li a:hover {
1329
- background-color: #555;
1330
- color: white;
1331
- }
1332
- .media-control-cc[data-cc] li a:hover a {
1333
- color: white;
1334
- text-decoration: none;
1335
- }
1336
- .media-control-cc[data-cc] li.current a {
1337
- color: #f00;
1338
- background-color: #555;
1339
- }
1340
-
1341
- @keyframes pulse {
1342
- 0% {
1343
- color: #fff;
1344
- }
1345
- 50% {
1346
- color: #ff0101;
1347
- }
1348
- 100% {
1349
- color: #B80000;
1350
- }
1351
- }
1352
- ::cue {
1353
- visibility: hidden !important;
1354
- font-size: 0 !important;
1355
- }
1356
-
1357
- .ios-fullscreen::cue {
1358
- visibility: visible !important;
1359
- font-size: 1em !important;
1360
1279
  }[data-player] {
1361
1280
  --bottom-panel: 40px;
1362
1281
  }
@@ -1974,6 +1893,89 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1974
1893
  }
1975
1894
  .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
1976
1895
  display: none !important;
1896
+ }.player-logo[data-logo] {
1897
+ position: absolute;
1898
+ z-index: 2;
1899
+ width: 100%;
1900
+ height: 100%;
1901
+ }
1902
+
1903
+ .clappr-logo {
1904
+ position: absolute;
1905
+ }*,
1906
+ :focus,
1907
+ :visited {
1908
+ outline: none !important;
1909
+ }
1910
+
1911
+ .media-control-cc[data-cc] {
1912
+ position: relative;
1913
+ order: 85;
1914
+ }
1915
+ .media-control-cc[data-cc] button {
1916
+ background-color: transparent;
1917
+ color: #fff;
1918
+ -webkit-font-smoothing: antialiased;
1919
+ border: none;
1920
+ cursor: pointer;
1921
+ }
1922
+ .media-control-cc[data-cc] button .cc-text svg {
1923
+ fill: white;
1924
+ }
1925
+ .media-control-cc[data-cc] button:hover {
1926
+ color: #c9c9c9;
1927
+ }
1928
+ .media-control-cc[data-cc] button.changing {
1929
+ animation: pulse 0.5s infinite alternate;
1930
+ }
1931
+ .media-control-cc[data-cc] ul {
1932
+ width: 80px;
1933
+ list-style-type: none;
1934
+ position: absolute;
1935
+ bottom: 25px;
1936
+ border: 1px solid black;
1937
+ display: none;
1938
+ background-color: #e6e6e6;
1939
+ padding: 8px 0;
1940
+ }
1941
+ .media-control-cc[data-cc] li a {
1942
+ color: #444;
1943
+ padding: 2px 10px;
1944
+ display: block;
1945
+ text-decoration: none;
1946
+ }
1947
+ .media-control-cc[data-cc] li a:hover {
1948
+ background-color: #555;
1949
+ color: white;
1950
+ }
1951
+ .media-control-cc[data-cc] li a:hover a {
1952
+ color: white;
1953
+ text-decoration: none;
1954
+ }
1955
+ .media-control-cc[data-cc] li.current a {
1956
+ color: #f00;
1957
+ background-color: #555;
1958
+ }
1959
+
1960
+ @keyframes pulse {
1961
+ 0% {
1962
+ color: #fff;
1963
+ }
1964
+ 50% {
1965
+ color: #ff0101;
1966
+ }
1967
+ 100% {
1968
+ color: #B80000;
1969
+ }
1970
+ }
1971
+ ::cue {
1972
+ visibility: hidden !important;
1973
+ font-size: 0 !important;
1974
+ }
1975
+
1976
+ .ios-fullscreen::cue {
1977
+ visibility: visible !important;
1978
+ font-size: 1em !important;
1977
1979
  }.scrub-thumbnails {
1978
1980
  position: absolute;
1979
1981
  bottom: 52px;
@@ -2035,13 +2037,4 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
2035
2037
  }
2036
2038
  .scrub-thumbnails .backdrop .carousel img {
2037
2039
  width: auto;
2038
- }.player-logo[data-logo] {
2039
- position: absolute;
2040
- z-index: 2;
2041
- width: 100%;
2042
- height: 100%;
2043
- }
2044
-
2045
- .clappr-logo {
2046
- position: absolute;
2047
2040
  }