@gcorevideo/player 2.24.14 → 2.25.0

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 (40) hide show
  1. package/assets/clips/clips.ejs +1 -1
  2. package/assets/clips/clips.scss +7 -5
  3. package/assets/media-control/width370.scss +3 -5
  4. package/dist/core.js +1 -1
  5. package/dist/index.css +870 -871
  6. package/dist/index.embed.js +171 -100
  7. package/dist/index.js +150 -78
  8. package/dist/player.d.ts +106 -42
  9. package/docs/api/player.md +18 -20
  10. package/docs/api/player.mediacontrol.defaultsettings.md +32 -0
  11. package/docs/api/player.mediacontrol.extendsettings.md +77 -0
  12. package/docs/api/player.mediacontrol.md +31 -11
  13. package/docs/api/player.mediacontrol.mount.md +8 -8
  14. package/docs/api/player.mediacontrol.slot.md +97 -0
  15. package/docs/api/player.mediacontrolelement.md +6 -3
  16. package/docs/api/player.mediacontrolpluginsettings.md +13 -0
  17. package/docs/api/player.mediacontrolsettings.md +5 -5
  18. package/docs/api/{player.mediacontrol.enablecontrolbutton.md → player.mediacontrolslotmountpoint.md} +4 -8
  19. package/docs/api/{player.mediacontrol.disabledcontrolbutton.md → player.standardmediacontrolelement.md} +4 -8
  20. package/lib/plugins/clips/Clips.d.ts +1 -0
  21. package/lib/plugins/clips/Clips.d.ts.map +1 -1
  22. package/lib/plugins/clips/Clips.js +16 -2
  23. package/lib/plugins/dvr-controls/DvrControls.js +1 -1
  24. package/lib/plugins/media-control/MediaControl.d.ts +87 -34
  25. package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
  26. package/lib/plugins/media-control/MediaControl.js +121 -76
  27. package/package.json +1 -1
  28. package/src/plugins/clips/Clips.ts +17 -2
  29. package/src/plugins/clips/__tests__/Clips.test.ts +1 -1
  30. package/src/plugins/clips/__tests__/__snapshots__/Clips.test.ts.snap +1 -1
  31. package/src/plugins/dvr-controls/DvrControls.ts +1 -1
  32. package/src/plugins/dvr-controls/__tests__/DvrControls.test.ts +1 -1
  33. package/src/plugins/media-control/MediaControl.ts +170 -141
  34. package/src/plugins/media-control/__tests__/MediaControl.test.ts +24 -17
  35. package/src/plugins/media-control/__tests__/__snapshots__/MediaControl.test.ts.snap +125 -93
  36. package/temp/player.api.json +186 -108
  37. package/tsconfig.tsbuildinfo +1 -1
  38. package/docs/api/player.mediacontrollayerelement.md +0 -16
  39. package/docs/api/player.mediacontrolleftelement.md +0 -16
  40. package/docs/api/player.mediacontrolrightelement.md +0 -16
package/dist/index.css CHANGED
@@ -122,243 +122,6 @@
122
122
  .gplayer-lite-btn::-moz-focus-inner {
123
123
  border: 0;
124
124
  padding: 0;
125
- }*,
126
- :focus,
127
- :visited {
128
- outline: none !important;
129
- }
130
-
131
- .media-control-audiotracks {
132
- position: relative;
133
- }
134
- .media-control-audiotracks button {
135
- background-color: transparent;
136
- color: #fff;
137
- -webkit-font-smoothing: antialiased;
138
- border: none;
139
- cursor: pointer;
140
- display: flex;
141
- align-items: center;
142
- padding: 0;
143
- }
144
- .media-control-audiotracks button .audio-text {
145
- text-overflow: ellipsis;
146
- overflow: hidden;
147
- white-space: nowrap;
148
- max-width: 100px;
149
- background-color: transparent;
150
- -webkit-font-smoothing: antialiased;
151
- border: none;
152
- cursor: pointer;
153
- }
154
- .media-control-audiotracks button:hover {
155
- color: white;
156
- }
157
- .media-control-audiotracks button.changing {
158
- animation: pulse 0.5s infinite alternate;
159
- }
160
- .media-control-audiotracks button span.audio-arrow {
161
- width: 9px;
162
- height: 6px;
163
- margin-left: 5px;
164
- }
165
- .media-control-audiotracks .menu {
166
- max-width: 114px;
167
- list-style-type: none;
168
- position: absolute;
169
- background-color: rgba(74, 74, 74, 0.6);
170
- border: none;
171
- min-width: 60px;
172
- border-radius: 4px;
173
- bottom: 40px;
174
- right: -2px;
175
- }
176
- .media-control-audiotracks .menu.hidden {
177
- display: none;
178
- }
179
- .media-control-audiotracks li {
180
- font-size: var(--font-size-media-controls-dropdown);
181
- text-align: right;
182
- height: 30px;
183
- }
184
- .media-control-audiotracks li[data-title] {
185
- background-color: #c3c2c2;
186
- padding: 5px;
187
- }
188
- .media-control-audiotracks li a {
189
- display: block;
190
- text-decoration: none;
191
- text-overflow: ellipsis;
192
- overflow: hidden;
193
- white-space: nowrap;
194
- height: 30px;
195
- padding: 5px 10px;
196
- color: #fffffe;
197
- }
198
- .media-control-audiotracks li a:hover {
199
- text-decoration: none;
200
- background-color: rgba(0, 0, 0, 0.4);
201
- color: white;
202
- }
203
- .media-control-audiotracks li.current a {
204
- color: #f00;
205
- }
206
- .media-control-audiotracks li:first-child a {
207
- border-bottom-left-radius: 4px;
208
- border-bottom-right-radius: 4px;
209
- }
210
- .media-control-audiotracks li:last-child a {
211
- border-top-left-radius: 4px;
212
- border-top-right-radius: 4px;
213
- }
214
-
215
- @keyframes pulse {
216
- 0% {
217
- color: #fff;
218
- }
219
- 50% {
220
- color: #ff0101;
221
- }
222
- 100% {
223
- color: #B80000;
224
- }
225
- }@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;
304
- }.big-mute-icon-wrapper[data-big-mute] {
305
- position: absolute;
306
- z-index: 9998;
307
- background-color: transparent;
308
- display: flex;
309
- justify-content: center;
310
- width: 100%;
311
- height: calc(100% - 50px);
312
- margin: 0 auto;
313
- opacity: 0.75;
314
- transition: opacity 0.1s ease;
315
- pointer-events: auto;
316
- }
317
- .big-mute-icon-wrapper[data-big-mute].hide {
318
- display: none;
319
- }
320
- .big-mute-icon-wrapper[data-big-mute]:hover {
321
- cursor: pointer;
322
- }
323
-
324
- .big-mute-icon[data-big-mute-icon] {
325
- display: flex;
326
- align-items: center;
327
- justify-content: center;
328
- align-self: center;
329
- width: 120px;
330
- height: 120px;
331
- border: 2px solid white;
332
- border-radius: 50%;
333
- filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
334
- filter: alpha(opacity=60);
335
- opacity: 1;
336
- box-shadow: 0 0 1px 0 white;
337
- background: rgba(240, 243, 247, 0.9411764706);
338
- z-index: 10000;
339
- }
340
- .big-mute-icon[data-big-mute-icon] svg {
341
- margin-left: 5px;
342
- width: 80px;
343
- height: 80px;
344
- }
345
- .big-mute-icon[data-big-mute-icon] svg path {
346
- fill: #1f1e1e !important;
347
- }
348
- .big-mute-icon[data-big-mute-icon]:hover {
349
- background: rgba(240, 243, 247, 0.8784313725);
350
- }
351
- .big-mute-icon[data-big-mute-icon]:hover svg path {
352
- fill: #151515 !important;
353
- }.media-control-pip {
354
- order: 95;
355
- display: flex;
356
- }
357
- .media-control-pip button {
358
- height: 20px;
359
- }
360
- .media-control-pip button svg {
361
- height: 20px;
362
125
  }*, :focus, :visited {
363
126
  outline: none !important;
364
127
  }
@@ -466,40 +229,479 @@
466
229
  }
467
230
  .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
468
231
  flex: 1 0 auto;
469
- }div.player-error-screen, [data-player] div.player-error-screen {
470
- color: #CCCACA;
232
+ }:root {
233
+ --primary-background-color: #000;
234
+ --secondary-background-color: #262626;
235
+ --primary-text-color: #fff;
236
+ --secondary-text-color: #fff4f2;
237
+ --hover-text-color: #f9b090;
238
+ --speedtest-red: #df564d;
239
+ --speedtest-orange: #df934d;
240
+ --speedtest-yellow: #dfd04d;
241
+ --speedtest-light-green: #c2df4d;
242
+ --speedtest-green: #73df4d;
243
+ }
244
+
245
+ .clappr-nerd-stats {
246
+ cursor: default;
247
+ }
248
+ .clappr-nerd-stats .stats-box {
471
249
  position: absolute;
250
+ display: inline-block;
251
+ bottom: 52px;
252
+ right: 0;
472
253
  top: 0;
473
- height: 100%;
254
+ left: 0;
255
+ bottom: 0;
256
+ padding: 0 10px 12px;
257
+ margin: 0;
258
+ line-height: 20px;
259
+ font-size: 12px;
260
+ font-weight: 500;
261
+ background: var(--primary-background-color);
262
+ color: #fff;
263
+ z-index: 20000;
264
+ overflow: auto;
265
+ max-width: 100%;
266
+ }
267
+ .clappr-nerd-stats .stats-box-top {
268
+ position: absolute;
269
+ top: 0;
270
+ left: 0;
271
+ z-index: 9999;
474
272
  width: 100%;
475
- background-color: rgba(0, 0, 0, 0.7);
476
- z-index: 2000;
273
+ height: 32px;
274
+ background: var(--primary-background-color);
275
+ }
276
+ .clappr-nerd-stats .stats-box-top .close-button {
277
+ position: absolute;
278
+ right: 12px;
279
+ top: 10px;
280
+ display: block;
281
+ width: 12px;
282
+ height: 12px;
283
+ }
284
+ .clappr-nerd-stats .stats-box-top .close-button svg path {
285
+ fill: var(--primary-text-color);
286
+ }
287
+ .clappr-nerd-stats .stats-box-top .close-button:hover svg path {
288
+ fill: var(--hover-text-color);
289
+ }
290
+ .clappr-nerd-stats .stats-box-main {
291
+ overflow: hidden;
292
+ margin-top: 44px;
477
293
  display: flex;
294
+ flex-wrap: wrap;
295
+ }
296
+ .clappr-nerd-stats .stats-box-main ul {
297
+ flex: 0 1 1fr;
298
+ min-width: 200px;
299
+ }
300
+ .clappr-nerd-stats .stats-box.wide {
301
+ width: 820px;
302
+ }
303
+ .clappr-nerd-stats .stats-box ul, .clappr-nerd-stats .stats-box li {
304
+ list-style-type: none;
305
+ }
306
+ .clappr-nerd-stats .stats-box ul div, .clappr-nerd-stats .stats-box li div {
307
+ padding-left: 2px;
308
+ padding-right: 2px;
309
+ background: var(--primary-background-color);
310
+ gap: 10px;
311
+ }
312
+ .clappr-nerd-stats .stats-box ul {
313
+ padding: 5px;
314
+ width: 200px;
315
+ flex: 0 1 50%;
316
+ }
317
+ .clappr-nerd-stats .stats-box ul li {
318
+ position: relative;
319
+ padding: 0 5px;
320
+ text-align: left;
321
+ }
322
+ .clappr-nerd-stats .stats-box ul li.canvas-wrapper {
323
+ padding: 0;
324
+ }
325
+ .clappr-nerd-stats .stats-box ul li.canvas-wrapper canvas {
326
+ width: 100%;
327
+ }
328
+ .clappr-nerd-stats .stats-box ul li:nth-child(2n) {
329
+ background: var(--secondary-background-color);
330
+ }
331
+ .clappr-nerd-stats .stats-box ul li:nth-child(2n) div {
332
+ background: var(--secondary-background-color);
333
+ }
334
+ .clappr-nerd-stats .stats-box ul li.title {
335
+ text-align: center;
336
+ font-weight: bold;
337
+ padding-bottom: 4px;
338
+ font-size: 14px;
339
+ }
340
+ .clappr-nerd-stats .stats-box ul li div {
341
+ margin: 0;
342
+ position: absolute;
343
+ right: 0;
344
+ top: 0;
345
+ }
346
+
347
+ .desktop .clappr-nerd-stats .stats-box.narrow {
348
+ width: 250px;
349
+ }
350
+ .desktop .clappr-nerd-stats .stats-box.narrow ul {
351
+ width: 100%;
352
+ }
353
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary {
354
+ padding: 0 5px;
355
+ height: auto;
356
+ }
357
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block {
358
+ width: 100%;
478
359
  flex-direction: column;
479
- justify-content: center;
480
360
  }
481
- div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
361
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock {
362
+ width: 100%;
363
+ }
364
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock-content {
365
+ width: 100%;
366
+ }
367
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-header {
368
+ padding-top: 12px;
369
+ height: 38px;
370
+ text-align: center;
371
+ }
372
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-quality-header {
373
+ text-align: center;
374
+ }
375
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer {
376
+ height: 80px;
377
+ }
378
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer-about-link {
379
+ bottom: 0;
380
+ left: 0;
381
+ }
382
+ .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer .speedtest-footer-refresh {
383
+ inset: 50% auto auto 50%;
384
+ transform: translate(-50%, -50%);
385
+ }
386
+
387
+ .speed-test-button {
388
+ margin: 10px 0 0;
389
+ color: #000;
390
+ }
391
+
392
+ .speed-test {
393
+ position: absolute;
394
+ top: 0;
395
+ left: 0;
396
+ width: 100%;
397
+ height: 100%;
398
+ z-index: 9999;
399
+ }
400
+ .speed-test .speed-test-header {
401
+ width: 100%;
402
+ height: 32px;
403
+ }
404
+ .speed-test .speed-test-header .close-speed-test {
405
+ float: right;
406
+ margin-right: 5px;
407
+ line-height: 32px;
408
+ cursor: pointer;
409
+ color: var(--primary-text-color);
410
+ }
411
+ .speed-test .speed-test-header .close-speed-test:hover {
412
+ color: var(--hover-text-color);
413
+ }
414
+
415
+ .settings-button {
416
+ float: right;
417
+ margin: 0 12px 0 0;
418
+ height: 40px;
419
+ width: 24px;
420
+ border: none;
421
+ padding: 0;
422
+ }
423
+
424
+ .speedtest-summary {
425
+ width: 100%;
426
+ border-top: 1px solid var(--secondary-background-color) !important;
427
+ border-bottom: 1px solid var(--secondary-background-color) !important;
428
+ display: flex !important;
429
+ flex-direction: column;
430
+ align-items: stretch;
431
+ justify-content: space-between;
432
+ }
433
+ .speedtest-summary .speedtest-summary-header {
434
+ width: 100%;
435
+ padding-top: 4px;
436
+ text-align: left;
437
+ height: 32px;
482
438
  font-size: 14px;
483
- color: #CCCACA;
484
- margin-top: 45px;
439
+ font-weight: 500;
440
+ line-height: 20px;
485
441
  }
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;
442
+ .speedtest-summary .speedtest-summary-block {
443
+ position: relative;
444
+ display: flex;
445
+ flex-direction: row;
446
+ width: 100%;
490
447
  }
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;
448
+ .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock {
449
+ width: 50%;
450
+ margin-top: 4px;
451
+ margin-bottom: 12px;
452
+ }
453
+ .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock-content {
454
+ padding: 2px;
455
+ width: 248px;
456
+ max-width: 100%;
457
+ }
458
+
459
+ .speedtest-quality {
460
+ width: 100%;
461
+ height: 36px;
462
+ display: flex !important;
463
+ flex-direction: column !important;
464
+ justify-content: space-between !important;
465
+ }
466
+ .speedtest-quality .speedtest-quality-header {
467
+ font-size: 12px;
468
+ height: 20px;
469
+ border-left: 2px solid var(--secondary-background-color) !important;
470
+ background-color: var(--secondary-background-color);
471
+ text-align: left;
472
+ }
473
+ .speedtest-quality-content {
474
+ width: 100%;
475
+ margin-top: 8px;
476
+ height: 8px;
477
+ display: flex !important;
478
+ flex-direction: row !important;
479
+ align-items: stretch !important;
480
+ justify-content: space-between;
481
+ }
482
+ .speedtest-quality-content-item {
483
+ width: 18.8%;
484
+ background-color: #fff;
485
+ }
486
+ .speedtest-quality-content-item.speedtest-quality-value-1 {
487
+ background-color: var(--speedtest-red);
488
+ }
489
+ .speedtest-quality-content-item.speedtest-quality-value-2 {
490
+ background-color: var(--speedtest-orange);
491
+ }
492
+ .speedtest-quality-content-item.speedtest-quality-value-3 {
493
+ background-color: var(--speedtest-yellow);
494
+ }
495
+ .speedtest-quality-content-item.speedtest-quality-value-4 {
496
+ background-color: var(--speedtest-light-green);
497
+ }
498
+ .speedtest-quality-content-item.speedtest-quality-value-5 {
499
+ background-color: var(--speedtest-green);
500
+ }
501
+
502
+ .speedtest-footer {
503
+ position: relative;
504
+ float: left;
505
+ width: 100%;
506
+ height: 30px;
507
+ line-height: 16px;
508
+ }
509
+ .speedtest-footer-about-link {
510
+ position: absolute;
511
+ bottom: 0;
512
+ left: 0;
513
+ color: var(--secondary-text-color);
514
+ text-decoration: underline !important;
515
+ }
516
+ .speedtest-footer-about-link:hover {
517
+ color: var(--hover-text-color);
518
+ }
519
+ .speedtest-footer .speedtest-footer-refresh {
520
+ position: absolute;
521
+ bottom: 0;
522
+ right: 0;
523
+ color: var(--secondary-text-color);
524
+ font-size: 14px;
525
+ font-weight: 400;
526
+ line-height: 16px;
527
+ height: 16px;
528
+ display: flex;
529
+ align-items: center;
530
+ gap: 4px;
531
+ }
532
+ .speedtest-footer .speedtest-footer-refresh svg path {
533
+ fill: var(--secondary-text-color);
534
+ }
535
+ .speedtest-footer .speedtest-footer-refresh:hover {
536
+ color: var(--hover-text-color);
537
+ }
538
+ .speedtest-footer .speedtest-footer-refresh:hover svg path {
539
+ fill: var(--hover-text-color);
540
+ }
541
+
542
+ .mobile .clappr-nerd-stats .stats-box {
543
+ position: fixed;
544
+ height: auto;
545
+ width: auto;
546
+ inset: 0;
547
+ min-width: 100vw;
548
+ padding-bottom: 4px;
549
+ padding-left: 4px;
550
+ padding-right: 4px;
551
+ }
552
+ .mobile .clappr-nerd-stats .stats-box-top {
553
+ position: fixed;
554
+ }
555
+ .mobile .clappr-nerd-stats .stats-box-main ul {
556
+ flex: 0 1 50%;
557
+ }
558
+
559
+ @media only screen and (orientation: portrait) {
560
+ .mobile .speedtest-summary {
561
+ padding: 0 5px;
562
+ height: auto;
563
+ }
564
+ .mobile .speedtest-summary-block {
565
+ width: 100%;
566
+ flex-direction: column;
567
+ }
568
+ .mobile .speedtest-summary-block .speedtest-summary-subblock {
569
+ width: 100%;
570
+ }
571
+ .mobile .speedtest-summary-block .speedtest-summary-subblock-content {
572
+ width: 100%;
573
+ }
574
+ .mobile .speedtest-summary-header {
575
+ padding-top: 12px;
576
+ height: 38px;
577
+ text-align: center;
578
+ }
579
+ .mobile .speedtest-quality-header {
580
+ text-align: center;
581
+ }
582
+ .mobile .speedtest-footer .speedtest-footer-refresh {
583
+ inset: 50% auto auto 50%;
584
+ transform: translate(-50%, -50%);
585
+ }
586
+ }
587
+ @media only screen and (orientation: landscape) {
588
+ .mobile .clappr-nerd-stats .stats-box-main ul {
589
+ flex-basis: 1fr;
590
+ }
591
+ }
592
+ @media only screen and (min-width: 1100px) {
593
+ .fullscreen .clappr-nerd-stats .stats-box {
594
+ top: unset;
595
+ }
596
+ }*,
597
+ :focus,
598
+ :visited {
599
+ outline: none !important;
600
+ }
601
+
602
+ .media-control-audiotracks {
603
+ position: relative;
604
+ }
605
+ .media-control-audiotracks button {
606
+ background-color: transparent;
607
+ color: #fff;
608
+ -webkit-font-smoothing: antialiased;
609
+ border: none;
610
+ cursor: pointer;
611
+ display: flex;
612
+ align-items: center;
613
+ padding: 0;
614
+ }
615
+ .media-control-audiotracks button .audio-text {
616
+ text-overflow: ellipsis;
617
+ overflow: hidden;
618
+ white-space: nowrap;
619
+ max-width: 100px;
620
+ background-color: transparent;
621
+ -webkit-font-smoothing: antialiased;
622
+ border: none;
623
+ cursor: pointer;
624
+ }
625
+ .media-control-audiotracks button:hover {
626
+ color: white;
627
+ }
628
+ .media-control-audiotracks button.changing {
629
+ animation: pulse 0.5s infinite alternate;
630
+ }
631
+ .media-control-audiotracks button span.audio-arrow {
632
+ width: 9px;
633
+ height: 6px;
634
+ margin-left: 5px;
635
+ }
636
+ .media-control-audiotracks .menu {
637
+ max-width: 114px;
638
+ list-style-type: none;
639
+ position: absolute;
640
+ background-color: rgba(74, 74, 74, 0.6);
641
+ border: none;
642
+ min-width: 60px;
643
+ border-radius: 4px;
644
+ bottom: 40px;
645
+ right: -2px;
646
+ }
647
+ .media-control-audiotracks .menu.hidden {
648
+ display: none;
649
+ }
650
+ .media-control-audiotracks li {
651
+ font-size: var(--font-size-media-controls-dropdown);
652
+ text-align: right;
653
+ height: 30px;
654
+ }
655
+ .media-control-audiotracks li[data-title] {
656
+ background-color: #c3c2c2;
657
+ padding: 5px;
658
+ }
659
+ .media-control-audiotracks li a {
660
+ display: block;
661
+ text-decoration: none;
662
+ text-overflow: ellipsis;
663
+ overflow: hidden;
664
+ white-space: nowrap;
665
+ height: 30px;
666
+ padding: 5px 10px;
667
+ color: #fffffe;
668
+ }
669
+ .media-control-audiotracks li a:hover {
670
+ text-decoration: none;
671
+ background-color: rgba(0, 0, 0, 0.4);
672
+ color: white;
673
+ }
674
+ .media-control-audiotracks li.current a {
675
+ color: #f00;
676
+ }
677
+ .media-control-audiotracks li:first-child a {
678
+ border-bottom-left-radius: 4px;
679
+ border-bottom-right-radius: 4px;
680
+ }
681
+ .media-control-audiotracks li:last-child a {
682
+ border-top-left-radius: 4px;
683
+ border-top-right-radius: 4px;
684
+ }
685
+
686
+ @keyframes pulse {
687
+ 0% {
688
+ color: #fff;
689
+ }
690
+ 50% {
691
+ color: #ff0101;
692
+ }
693
+ 100% {
694
+ color: #B80000;
695
+ }
696
+ }.media-control-pip {
697
+ order: 95;
698
+ display: flex;
494
699
  }
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;
700
+ .media-control-pip button {
701
+ height: 20px;
498
702
  }
499
- div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
500
- cursor: pointer;
501
- width: 30px;
502
- margin: 15px auto 0;
703
+ .media-control-pip button svg {
704
+ height: 20px;
503
705
  }.context-menu {
504
706
  z-index: 999;
505
707
  position: absolute;
@@ -536,154 +738,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
536
738
  .context-menu .context-menu-list-item_icon {
537
739
  width: 20px;
538
740
  height: 20px;
539
- }*, :focus, :visited {
540
- outline: none !important;
541
- }
542
-
543
- .multicamera[data-multicamera] {
544
- float: right;
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;
555
- border: none;
556
- font-size: 14px;
557
- padding: 0;
558
- }
559
- .multicamera[data-multicamera] button svg {
560
- height: 20px;
561
- position: relative;
562
- margin-top: 6px;
563
- }
564
- .multicamera[data-multicamera] button:hover {
565
- color: #c9c9c9;
566
- }
567
- .multicamera[data-multicamera] button.changing {
568
- animation: pulse 0.5s infinite alternate;
569
- }
570
- .multicamera[data-multicamera] button span.quality-arrow {
571
- width: 9px;
572
- height: 6px;
573
- margin-top: 11px;
574
- margin-left: 5px;
575
- }
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);
586
- }
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;
598
- }
599
- .multicamera[data-multicamera] li {
600
- font-size: 10px;
601
- cursor: pointer;
602
- }
603
- .multicamera[data-multicamera] li .multicamera-item {
604
- display: flex;
605
- padding: 10px 0;
606
- justify-content: center;
607
- position: relative;
608
- }
609
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
610
- pointer-events: none;
611
- }
612
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
613
- opacity: 0.5;
614
- }
615
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
616
- opacity: 0.5;
617
- }
618
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
619
- background-color: rgba(0, 0, 0, 0);
620
- }
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);
623
- }
624
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
625
- width: 80px;
626
- height: 60px;
627
- }
628
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
629
- width: 80px;
630
- height: 60px;
631
- }
632
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
633
- width: 120px;
634
- text-align: left;
635
- margin-left: 15px;
636
- }
637
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
638
- width: 120px;
639
- height: 20px;
640
- font-family: Roboto, "Open Sans", Arial, sans-serif;
641
- font-size: 14px;
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;
651
- }
652
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
653
- opacity: 0.6;
654
- }
655
- .multicamera[data-multicamera] li[data-title] {
656
- background-color: #c3c2c2;
657
- padding: 5px;
658
- }
659
- .multicamera[data-multicamera] li a {
660
- color: #444;
661
- padding: 2px 10px;
662
- display: block;
663
- text-decoration: none;
664
- }
665
- .multicamera[data-multicamera] li a:hover {
666
- background-color: #555;
667
- color: white;
668
- }
669
- .multicamera[data-multicamera] li a:hover a {
670
- color: white;
671
- text-decoration: none;
672
- }
673
- .multicamera[data-multicamera] li.current a {
674
- color: #f00;
675
- }
676
-
677
- @keyframes pulse {
678
- 0% {
679
- color: #fff;
680
- }
681
- 50% {
682
- color: #ff0101;
683
- }
684
- 100% {
685
- color: #B80000;
686
- }
687
741
  }.player-poster {
688
742
  display: flex;
689
743
  justify-content: center;
@@ -718,369 +772,354 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
718
772
  }
719
773
  .player-poster .play-wrapper svg path {
720
774
  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;
775
+ }@charset "UTF-8";
776
+ .gplayer-mc-clips {
777
+ display: flex;
778
+ gap: 6px;
732
779
  }
733
-
734
- .clappr-nerd-stats {
780
+ .gplayer-mc-clips .gplayer-mc-clips-text {
781
+ text-overflow: ellipsis;
782
+ white-space: nowrap;
783
+ overflow: hidden;
784
+ display: inline-block;
785
+ text-overflow: ellipsis;
786
+ color: white;
735
787
  cursor: default;
788
+ line-height: var(--bottom-panel);
789
+ position: relative;
790
+ max-width: 150px;
736
791
  }
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%;
792
+ .gplayer-mc-clips .gplayer-mc-clips-text::before {
793
+ content: "•";
794
+ padding-right: 6px;
755
795
  }
756
- .clappr-nerd-stats .stats-box-top {
796
+ .gplayer-mc-clips .gplayer-mc-clips-text.compact {
797
+ max-width: 100px;
798
+ }div.player-error-screen, [data-player] div.player-error-screen {
799
+ color: #CCCACA;
757
800
  position: absolute;
758
801
  top: 0;
759
- left: 0;
760
- z-index: 9999;
802
+ height: 100%;
761
803
  width: 100%;
762
- height: 32px;
763
- background: var(--primary-background-color);
764
- }
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;
804
+ background-color: rgba(0, 0, 0, 0.7);
805
+ z-index: 2000;
782
806
  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 {
793
- list-style-type: none;
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;
807
+ flex-direction: column;
808
+ justify-content: center;
800
809
  }
801
- .clappr-nerd-stats .stats-box ul {
802
- padding: 5px;
803
- width: 200px;
804
- flex: 0 1 50%;
810
+ div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
811
+ font-size: 14px;
812
+ color: #CCCACA;
813
+ margin-top: 45px;
805
814
  }
806
- .clappr-nerd-stats .stats-box ul li {
807
- position: relative;
808
- padding: 0 5px;
809
- text-align: left;
815
+ div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
816
+ font-weight: bold;
817
+ line-height: 30px;
818
+ font-size: 18px;
810
819
  }
811
- .clappr-nerd-stats .stats-box ul li.canvas-wrapper {
812
- padding: 0;
820
+ div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
821
+ width: 90%;
822
+ margin: 0 auto;
813
823
  }
814
- .clappr-nerd-stats .stats-box ul li.canvas-wrapper canvas {
815
- width: 100%;
824
+ div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
825
+ font-size: 13px;
826
+ margin-top: 15px;
816
827
  }
817
- .clappr-nerd-stats .stats-box ul li:nth-child(2n) {
818
- background: var(--secondary-background-color);
828
+ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
829
+ cursor: pointer;
830
+ width: 30px;
831
+ margin: 15px auto 0;
832
+ }*, :focus, :visited {
833
+ outline: none !important;
819
834
  }
820
- .clappr-nerd-stats .stats-box ul li:nth-child(2n) div {
821
- background: var(--secondary-background-color);
835
+
836
+ .multicamera[data-multicamera] {
837
+ float: right;
838
+ margin-top: 4px;
839
+ position: relative;
840
+ margin-right: 20px;
841
+ width: 20px;
822
842
  }
823
- .clappr-nerd-stats .stats-box ul li.title {
824
- text-align: center;
825
- font-weight: bold;
826
- padding-bottom: 4px;
843
+ .multicamera[data-multicamera] button {
844
+ background-color: transparent;
845
+ color: #fff;
846
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
847
+ -webkit-font-smoothing: antialiased;
848
+ border: none;
827
849
  font-size: 14px;
850
+ padding: 0;
828
851
  }
829
- .clappr-nerd-stats .stats-box ul li div {
830
- margin: 0;
831
- position: absolute;
832
- right: 0;
833
- top: 0;
852
+ .multicamera[data-multicamera] button svg {
853
+ height: 20px;
854
+ position: relative;
855
+ margin-top: 6px;
834
856
  }
835
-
836
- .desktop .clappr-nerd-stats .stats-box.narrow {
837
- width: 250px;
857
+ .multicamera[data-multicamera] button:hover {
858
+ color: #c9c9c9;
838
859
  }
839
- .desktop .clappr-nerd-stats .stats-box.narrow ul {
840
- width: 100%;
860
+ .multicamera[data-multicamera] button.changing {
861
+ animation: pulse 0.5s infinite alternate;
841
862
  }
842
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary {
843
- padding: 0 5px;
844
- height: auto;
863
+ .multicamera[data-multicamera] button span.quality-arrow {
864
+ width: 9px;
865
+ height: 6px;
866
+ margin-top: 11px;
867
+ margin-left: 5px;
845
868
  }
846
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block {
847
- width: 100%;
848
- flex-direction: column;
869
+ .multicamera[data-multicamera] > ul {
870
+ padding: 6px 0;
871
+ right: -24px;
872
+ width: 245px;
873
+ list-style-type: none;
874
+ position: absolute;
875
+ bottom: 48px;
876
+ border-radius: 4px;
877
+ display: none;
878
+ background-color: rgba(74, 74, 74, 0.9);
849
879
  }
850
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock {
851
- width: 100%;
880
+ .multicamera[data-multicamera] > ul::after {
881
+ content: "";
882
+ position: absolute;
883
+ top: 100%;
884
+ left: 85%;
885
+ margin-left: -10px;
886
+ width: 0;
887
+ height: 0;
888
+ border-top: 10px solid rgba(74, 74, 74, 0.9);
889
+ border-right: 10px solid transparent;
890
+ border-left: 10px solid transparent;
852
891
  }
853
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock-content {
854
- width: 100%;
892
+ .multicamera[data-multicamera] li {
893
+ font-size: 10px;
894
+ cursor: pointer;
855
895
  }
856
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-header {
857
- padding-top: 12px;
858
- height: 38px;
859
- text-align: center;
896
+ .multicamera[data-multicamera] li .multicamera-item {
897
+ display: flex;
898
+ padding: 10px 0;
899
+ justify-content: center;
900
+ position: relative;
860
901
  }
861
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-quality-header {
862
- text-align: center;
902
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
903
+ pointer-events: none;
863
904
  }
864
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer {
865
- height: 80px;
905
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
906
+ opacity: 0.5;
866
907
  }
867
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer-about-link {
868
- bottom: 0;
869
- left: 0;
908
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
909
+ opacity: 0.5;
870
910
  }
871
- .desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer .speedtest-footer-refresh {
872
- inset: 50% auto auto 50%;
873
- transform: translate(-50%, -50%);
911
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
912
+ background-color: rgba(0, 0, 0, 0);
874
913
  }
875
-
876
- .speed-test-button {
877
- margin: 10px 0 0;
878
- color: #000;
914
+ .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
915
+ background-color: rgba(0, 0, 0, 0.3);
879
916
  }
880
-
881
- .speed-test {
882
- position: absolute;
883
- top: 0;
884
- left: 0;
885
- width: 100%;
886
- height: 100%;
887
- z-index: 9999;
917
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
918
+ width: 80px;
919
+ height: 60px;
888
920
  }
889
- .speed-test .speed-test-header {
890
- width: 100%;
891
- height: 32px;
921
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
922
+ width: 80px;
923
+ height: 60px;
892
924
  }
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);
925
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
926
+ width: 120px;
927
+ text-align: left;
928
+ margin-left: 15px;
899
929
  }
900
- .speed-test .speed-test-header .close-speed-test:hover {
901
- color: var(--hover-text-color);
930
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
931
+ width: 120px;
932
+ height: 20px;
933
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
934
+ font-size: 14px;
935
+ font-weight: normal;
936
+ font-style: normal;
937
+ font-stretch: normal;
938
+ line-height: 1.43;
939
+ letter-spacing: normal;
940
+ text-align: left;
941
+ color: #fff;
942
+ text-overflow: ellipsis;
943
+ overflow: hidden;
902
944
  }
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;
945
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
946
+ opacity: 0.6;
911
947
  }
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;
948
+ .multicamera[data-multicamera] li[data-title] {
949
+ background-color: #c3c2c2;
950
+ padding: 5px;
921
951
  }
922
- .speedtest-summary .speedtest-summary-header {
923
- width: 100%;
924
- padding-top: 4px;
925
- text-align: left;
926
- height: 32px;
927
- font-size: 14px;
928
- font-weight: 500;
929
- line-height: 20px;
952
+ .multicamera[data-multicamera] li a {
953
+ color: #444;
954
+ padding: 2px 10px;
955
+ display: block;
956
+ text-decoration: none;
930
957
  }
931
- .speedtest-summary .speedtest-summary-block {
932
- position: relative;
933
- display: flex;
934
- flex-direction: row;
935
- width: 100%;
958
+ .multicamera[data-multicamera] li a:hover {
959
+ background-color: #555;
960
+ color: white;
936
961
  }
937
- .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock {
938
- width: 50%;
939
- margin-top: 4px;
940
- margin-bottom: 12px;
962
+ .multicamera[data-multicamera] li a:hover a {
963
+ color: white;
964
+ text-decoration: none;
941
965
  }
942
- .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock-content {
943
- padding: 2px;
944
- width: 248px;
945
- max-width: 100%;
966
+ .multicamera[data-multicamera] li.current a {
967
+ color: #f00;
946
968
  }
947
969
 
948
- .speedtest-quality {
970
+ @keyframes pulse {
971
+ 0% {
972
+ color: #fff;
973
+ }
974
+ 50% {
975
+ color: #ff0101;
976
+ }
977
+ 100% {
978
+ color: #B80000;
979
+ }
980
+ }.big-mute-icon-wrapper[data-big-mute] {
981
+ position: absolute;
982
+ z-index: 9998;
983
+ background-color: transparent;
984
+ display: flex;
985
+ justify-content: center;
949
986
  width: 100%;
950
- height: 36px;
951
- display: flex !important;
952
- flex-direction: column !important;
953
- justify-content: space-between !important;
987
+ height: calc(100% - 50px);
988
+ margin: 0 auto;
989
+ opacity: 0.75;
990
+ transition: opacity 0.1s ease;
991
+ pointer-events: auto;
954
992
  }
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;
993
+ .big-mute-icon-wrapper[data-big-mute].hide {
994
+ display: none;
961
995
  }
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;
996
+ .big-mute-icon-wrapper[data-big-mute]:hover {
997
+ cursor: pointer;
970
998
  }
971
- .speedtest-quality-content-item {
972
- width: 18.8%;
973
- background-color: #fff;
999
+
1000
+ .big-mute-icon[data-big-mute-icon] {
1001
+ display: flex;
1002
+ align-items: center;
1003
+ justify-content: center;
1004
+ align-self: center;
1005
+ width: 120px;
1006
+ height: 120px;
1007
+ border: 2px solid white;
1008
+ border-radius: 50%;
1009
+ filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
1010
+ filter: alpha(opacity=60);
1011
+ opacity: 1;
1012
+ box-shadow: 0 0 1px 0 white;
1013
+ background: rgba(240, 243, 247, 0.9411764706);
1014
+ z-index: 10000;
974
1015
  }
975
- .speedtest-quality-content-item.speedtest-quality-value-1 {
976
- background-color: var(--speedtest-red);
1016
+ .big-mute-icon[data-big-mute-icon] svg {
1017
+ margin-left: 5px;
1018
+ width: 80px;
1019
+ height: 80px;
977
1020
  }
978
- .speedtest-quality-content-item.speedtest-quality-value-2 {
979
- background-color: var(--speedtest-orange);
1021
+ .big-mute-icon[data-big-mute-icon] svg path {
1022
+ fill: #1f1e1e !important;
980
1023
  }
981
- .speedtest-quality-content-item.speedtest-quality-value-3 {
982
- background-color: var(--speedtest-yellow);
1024
+ .big-mute-icon[data-big-mute-icon]:hover {
1025
+ background: rgba(240, 243, 247, 0.8784313725);
983
1026
  }
984
- .speedtest-quality-content-item.speedtest-quality-value-4 {
985
- background-color: var(--speedtest-light-green);
1027
+ .big-mute-icon[data-big-mute-icon]:hover svg path {
1028
+ fill: #151515 !important;
1029
+ }.dvr-controls {
1030
+ --disabled-opacity: 0.3;
1031
+ --circle-radius: 5px;
1032
+ display: flex;
1033
+ align-items: center;
1034
+ color: var(--player-dvr-color);
1035
+ font-size: 10px;
1036
+ font-weight: 500;
1037
+ height: var(--bottom-panel);
1038
+ line-height: var(--bottom-panel);
1039
+ margin-left: 0;
986
1040
  }
987
- .speedtest-quality-content-item.speedtest-quality-value-5 {
988
- background-color: var(--speedtest-green);
1041
+ .dvr-controls .live-info,
1042
+ .dvr-controls .live-button {
1043
+ font-size: 14px;
1044
+ font-weight: 500;
1045
+ margin-left: 20px;
1046
+ letter-spacing: 0.8px;
1047
+ text-transform: uppercase;
989
1048
  }
990
-
991
- .speedtest-footer {
1049
+ .dvr-controls .live-info::before,
1050
+ .dvr-controls .live-button::before {
1051
+ margin-right: 8px;
1052
+ content: "";
1053
+ display: inline-block;
992
1054
  position: relative;
993
- float: left;
994
- width: 100%;
995
- height: 30px;
996
- line-height: 16px;
1055
+ width: calc(var(--circle-radius) * 2);
1056
+ height: calc(var(--circle-radius) * 2);
1057
+ border-radius: var(--circle-radius);
1058
+ background-color: var(--player-dvr-color);
997
1059
  }
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;
1060
+ .dvr-controls.disabled {
1061
+ opacity: var(--disabled-opacity);
1004
1062
  }
1005
- .speedtest-footer-about-link:hover {
1006
- color: var(--hover-text-color);
1063
+ .dvr-controls.disabled:before {
1064
+ background-color: var(--player-dvr-color);
1007
1065
  }
1008
- .speedtest-footer .speedtest-footer-refresh {
1009
- position: absolute;
1010
- bottom: 0;
1011
- right: 0;
1012
- color: var(--secondary-text-color);
1013
- font-size: 14px;
1014
- font-weight: 400;
1015
- line-height: 16px;
1016
- height: 16px;
1017
- display: flex;
1018
- align-items: center;
1019
- gap: 4px;
1066
+ .dvr-controls .live-info {
1067
+ text-transform: uppercase;
1068
+ color: #fffffe;
1020
1069
  }
1021
- .speedtest-footer .speedtest-footer-refresh svg path {
1022
- fill: var(--secondary-text-color);
1070
+ .dvr-controls .live-info::before {
1071
+ background-color: #ed4f4a;
1023
1072
  }
1024
- .speedtest-footer .speedtest-footer-refresh:hover {
1025
- color: var(--hover-text-color);
1073
+ .dvr-controls .live-button {
1074
+ cursor: pointer;
1075
+ outline: none;
1076
+ border: 0;
1077
+ color: var(--player-dvr-color);
1078
+ background-color: transparent;
1079
+ padding: 0;
1080
+ opacity: 0.7;
1081
+ transition: all 0.1s ease;
1026
1082
  }
1027
- .speedtest-footer .speedtest-footer-refresh:hover svg path {
1028
- fill: var(--hover-text-color);
1083
+ .dvr-controls .live-button:hover {
1084
+ opacity: 1;
1085
+ text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
1086
+ }.spinner-three-bounce[data-spinner] {
1087
+ position: absolute;
1088
+ width: 70px;
1089
+ text-align: center;
1090
+ z-index: 999;
1091
+ left: 0;
1092
+ right: 0;
1093
+ margin: 0 auto;
1094
+ margin-left: auto;
1095
+ margin-right: auto;
1096
+ /* center vertically */
1097
+ top: 50%;
1098
+ transform: translateY(-50%);
1029
1099
  }
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;
1100
+ .spinner-three-bounce[data-spinner] > div {
1101
+ width: 18px;
1102
+ height: 18px;
1103
+ background-color: #FFF;
1104
+ border-radius: 100%;
1105
+ display: inline-block;
1106
+ animation: bouncedelay 1.4s infinite ease-in-out;
1107
+ /* Prevent first frame from flickering when animation starts */
1108
+ animation-fill-mode: both;
1040
1109
  }
1041
- .mobile .clappr-nerd-stats .stats-box-top {
1042
- position: fixed;
1110
+ .spinner-three-bounce[data-spinner] [data-bounce1] {
1111
+ animation-delay: -0.32s;
1043
1112
  }
1044
- .mobile .clappr-nerd-stats .stats-box-main ul {
1045
- flex: 0 1 50%;
1113
+ .spinner-three-bounce[data-spinner] [data-bounce2] {
1114
+ animation-delay: -0.16s;
1046
1115
  }
1047
1116
 
1048
- @media only screen and (orientation: portrait) {
1049
- .mobile .speedtest-summary {
1050
- padding: 0 5px;
1051
- height: auto;
1052
- }
1053
- .mobile .speedtest-summary-block {
1054
- width: 100%;
1055
- flex-direction: column;
1056
- }
1057
- .mobile .speedtest-summary-block .speedtest-summary-subblock {
1058
- width: 100%;
1059
- }
1060
- .mobile .speedtest-summary-block .speedtest-summary-subblock-content {
1061
- width: 100%;
1062
- }
1063
- .mobile .speedtest-summary-header {
1064
- padding-top: 12px;
1065
- height: 38px;
1066
- text-align: center;
1067
- }
1068
- .mobile .speedtest-quality-header {
1069
- text-align: center;
1070
- }
1071
- .mobile .speedtest-footer .speedtest-footer-refresh {
1072
- inset: 50% auto auto 50%;
1073
- transform: translate(-50%, -50%);
1074
- }
1075
- }
1076
- @media only screen and (orientation: landscape) {
1077
- .mobile .clappr-nerd-stats .stats-box-main ul {
1078
- flex-basis: 1fr;
1117
+ @keyframes bouncedelay {
1118
+ 0%, 80%, 100% {
1119
+ transform: scale(0);
1079
1120
  }
1080
- }
1081
- @media only screen and (min-width: 1100px) {
1082
- .fullscreen .clappr-nerd-stats .stats-box {
1083
- top: unset;
1121
+ 40% {
1122
+ transform: scale(1);
1084
1123
  }
1085
1124
  }[data-player] {
1086
1125
  --bottom-panel: 40px;
@@ -1294,13 +1333,11 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1294
1333
  .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] button.media-control-button svg {
1295
1334
  height: 17px;
1296
1335
  }
1297
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .media-clip-container .media-clip-text,
1298
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .media-control-clips .media-clip-text {
1336
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .gplayer-mc-clips .gplayer-mc-clips-text {
1299
1337
  line-height: 33px;
1300
1338
  font-size: 11px;
1301
1339
  }
1302
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .media-clip-container .media-clip-text,
1303
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .media-control-clips .media-clip-text {
1340
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .gplayer-mc-clips .gplayer-mc-clips-text {
1304
1341
  max-width: 50px;
1305
1342
  }
1306
1343
  .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .drawer-container[data-volume] {
@@ -1695,39 +1732,79 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1695
1732
  .media-control-skin-1[data-media-control-skin-1] .seek-time .seek-time__pos {
1696
1733
  padding-left: 8px;
1697
1734
  padding-right: 8px;
1698
- }.seek-time {
1735
+ }*,
1736
+ :focus,
1737
+ :visited {
1738
+ outline: none !important;
1739
+ }
1740
+
1741
+ .media-control-cc[data-cc] {
1742
+ position: relative;
1743
+ order: 85;
1744
+ }
1745
+ .media-control-cc[data-cc] button {
1746
+ background-color: transparent;
1747
+ color: #fff;
1748
+ -webkit-font-smoothing: antialiased;
1749
+ border: none;
1750
+ cursor: pointer;
1751
+ }
1752
+ .media-control-cc[data-cc] button .cc-text svg {
1753
+ fill: white;
1754
+ }
1755
+ .media-control-cc[data-cc] button:hover {
1756
+ color: #c9c9c9;
1757
+ }
1758
+ .media-control-cc[data-cc] button.changing {
1759
+ animation: pulse 0.5s infinite alternate;
1760
+ }
1761
+ .media-control-cc[data-cc] ul {
1762
+ width: 80px;
1763
+ list-style-type: none;
1699
1764
  position: absolute;
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;
1765
+ bottom: 25px;
1766
+ border: 1px solid black;
1767
+ background-color: #e6e6e6;
1768
+ padding: 8px 0;
1709
1769
  }
1710
- .seek-time.hidden {
1711
- opacity: 0;
1770
+ .media-control-cc[data-cc] li a {
1771
+ color: #444;
1772
+ padding: 2px 10px;
1773
+ display: block;
1774
+ text-decoration: none;
1712
1775
  }
1713
- .seek-time .seek-time__pos {
1714
- display: inline-block;
1776
+ .media-control-cc[data-cc] li a:hover {
1777
+ background-color: #555;
1715
1778
  color: white;
1716
- font-size: 10px;
1717
- padding-left: 7px;
1718
- padding-right: 7px;
1719
- vertical-align: top;
1720
1779
  }
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;
1780
+ .media-control-cc[data-cc] li a:hover a {
1781
+ color: white;
1782
+ text-decoration: none;
1727
1783
  }
1728
- .seek-time .seek-time__duration::before {
1729
- content: "|";
1730
- margin-right: 7px;
1784
+ .media-control-cc[data-cc] li.current a {
1785
+ color: #f00;
1786
+ background-color: #555;
1787
+ }
1788
+
1789
+ @keyframes pulse {
1790
+ 0% {
1791
+ color: #fff;
1792
+ }
1793
+ 50% {
1794
+ color: #ff0101;
1795
+ }
1796
+ 100% {
1797
+ color: #B80000;
1798
+ }
1799
+ }
1800
+ ::cue {
1801
+ visibility: hidden !important;
1802
+ font-size: 0 !important;
1803
+ }
1804
+
1805
+ .ios-fullscreen::cue {
1806
+ visibility: visible !important;
1807
+ font-size: 1em !important;
1731
1808
  }.share_plugin[data-share] {
1732
1809
  pointer-events: auto;
1733
1810
  z-index: 5;
@@ -1811,85 +1888,42 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1811
1888
  display: inline-block;
1812
1889
  margin-right: 5px;
1813
1890
  cursor: pointer;
1814
- }*,
1815
- :focus,
1816
- :visited {
1817
- outline: none !important;
1891
+ }.quality-levels li.disabled {
1892
+ opacity: 0.5;
1893
+ pointer-events: none;
1818
1894
  }
1819
-
1820
- .media-control-cc[data-cc] {
1821
- position: relative;
1822
- order: 85;
1895
+ .quality-levels li.current {
1896
+ background-color: #000;
1897
+ }.container-with-poster-clickable .mc-skip-time {
1898
+ height: 0;
1823
1899
  }
1824
- .media-control-cc[data-cc] button {
1900
+
1901
+ .mc-skip-time {
1902
+ position: absolute;
1903
+ width: 100%;
1904
+ height: calc(100% - 50px);
1905
+ z-index: 9998;
1825
1906
  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;
1907
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1836
1908
  }
1837
- .media-control-cc[data-cc] button.changing {
1838
- animation: pulse 0.5s infinite alternate;
1909
+ .mc-skip-time .skip-container {
1910
+ width: 100%;
1911
+ height: 100%;
1912
+ display: flex;
1913
+ justify-content: space-between;
1839
1914
  }
1840
- .media-control-cc[data-cc] ul {
1841
- width: 80px;
1842
- list-style-type: none;
1915
+ .mc-skip-time .skip-container .skip-item {
1916
+ flex: 1 0 0px;
1917
+ height: 100%;
1918
+ }.player-logo[data-logo] {
1843
1919
  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;
1920
+ z-index: 2;
1921
+ width: 100%;
1922
+ height: 100%;
1882
1923
  }
1883
1924
 
1884
- .ios-fullscreen::cue {
1885
- visibility: visible !important;
1886
- font-size: 1em !important;
1887
- }.quality-levels li.disabled {
1888
- opacity: 0.5;
1889
- pointer-events: none;
1890
- }
1891
- .quality-levels li.current {
1892
- background-color: #000;
1925
+ .clappr-logo {
1926
+ position: absolute;
1893
1927
  }.scrub-thumbnails {
1894
1928
  position: absolute;
1895
1929
  bottom: 52px;
@@ -1953,72 +1987,37 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1953
1987
  }
1954
1988
  .scrub-thumbnails .backdrop .carousel img {
1955
1989
  width: auto;
1956
- }.container-with-poster-clickable .mc-skip-time {
1957
- height: 0;
1958
- }
1959
-
1960
- .mc-skip-time {
1990
+ }.seek-time {
1961
1991
  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;
1992
+ white-space: nowrap;
1993
+ height: 20px;
1994
+ line-height: 20px;
1995
+ font-size: 0;
1996
+ left: -100%;
1997
+ bottom: 55px;
1998
+ background-color: rgba(2, 2, 2, 0.5);
1999
+ z-index: 9999;
2000
+ transition: opacity 0.1s ease;
1973
2001
  }
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%);
2002
+ .seek-time.hidden {
2003
+ opacity: 0;
1990
2004
  }
1991
- .spinner-three-bounce[data-spinner] > div {
1992
- width: 18px;
1993
- height: 18px;
1994
- background-color: #FFF;
1995
- border-radius: 100%;
2005
+ .seek-time .seek-time__pos {
1996
2006
  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;
2007
+ color: white;
2008
+ font-size: 10px;
2009
+ padding-left: 7px;
2010
+ padding-right: 7px;
2011
+ vertical-align: top;
2006
2012
  }
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%;
2013
+ .seek-time .seek-time__duration {
2014
+ display: inline-block;
2015
+ color: rgba(255, 255, 255, 0.5);
2016
+ font-size: 10px;
2017
+ padding-right: 7px;
2018
+ vertical-align: top;
2020
2019
  }
2021
-
2022
- .clappr-logo {
2023
- position: absolute;
2020
+ .seek-time .seek-time__duration::before {
2021
+ content: "|";
2022
+ margin-right: 7px;
2024
2023
  }