@gcorevideo/player 2.22.18 → 2.22.21

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 (94) 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/assets/level-selector/button.ejs +1 -1
  5. package/dist/core.js +1 -1
  6. package/dist/index.css +664 -671
  7. package/dist/index.js +285 -260
  8. package/dist/player.d.ts +144 -123
  9. package/dist/plugins/index.css +758 -765
  10. package/dist/plugins/index.js +194 -172
  11. package/docs/api/player.clapprstats.exportmetrics.md +2 -2
  12. package/docs/api/player.clapprstats.md +0 -4
  13. package/docs/api/player.clapprstatsbitratetrack.md +20 -0
  14. package/docs/api/player.clapprstatschronograph.md +115 -0
  15. package/docs/api/player.clapprstatscounter.md +211 -0
  16. package/docs/api/player.clapprstatsevents.md +51 -0
  17. package/docs/api/player.clapprstatsmetrics.md +52 -0
  18. package/docs/api/player.clipspluginsettings.md +1 -1
  19. package/docs/api/player.gearevents.md +1 -1
  20. package/docs/api/player.md +57 -2
  21. package/docs/api/player.mediacontrol.mount.md +0 -5
  22. package/docs/api/player.mediacontrol.putelement.md +5 -0
  23. package/docs/api/player.mediacontrol.toggleelement.md +1 -1
  24. package/docs/api/player.nerdstats.md +3 -3
  25. package/docs/api/player.playerconfig.md +1 -1
  26. package/docs/api/player.playerconfig.playbacktype.md +6 -1
  27. package/docs/api/player.timeupdate.md +6 -3
  28. package/lib/plugins/audio-selector/AudioSelector.d.ts +1 -1
  29. package/lib/plugins/audio-selector/AudioSelector.d.ts.map +1 -1
  30. package/lib/plugins/audio-selector/AudioSelector.js +15 -8
  31. package/lib/plugins/bottom-gear/BottomGear.d.ts +1 -1
  32. package/lib/plugins/bottom-gear/BottomGear.js +2 -2
  33. package/lib/plugins/clappr-nerd-stats/NerdStats.d.ts +4 -4
  34. package/lib/plugins/clappr-nerd-stats/NerdStats.js +4 -4
  35. package/lib/plugins/clappr-stats/ClapprStats.d.ts +5 -2
  36. package/lib/plugins/clappr-stats/ClapprStats.d.ts.map +1 -1
  37. package/lib/plugins/clappr-stats/ClapprStats.js +31 -33
  38. package/lib/plugins/clappr-stats/types.d.ts +21 -21
  39. package/lib/plugins/clappr-stats/types.d.ts.map +1 -1
  40. package/lib/plugins/clappr-stats/types.js +22 -22
  41. package/lib/plugins/clappr-stats/utils.d.ts +2 -2
  42. package/lib/plugins/clappr-stats/utils.d.ts.map +1 -1
  43. package/lib/plugins/click-to-pause/ClickToPause.js +1 -1
  44. package/lib/plugins/clips/Clips.d.ts +1 -1
  45. package/lib/plugins/dvr-controls/DvrControls.d.ts +6 -2
  46. package/lib/plugins/dvr-controls/DvrControls.d.ts.map +1 -1
  47. package/lib/plugins/dvr-controls/DvrControls.js +39 -27
  48. package/lib/plugins/media-control/MediaControl.d.ts +9 -2
  49. package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
  50. package/lib/plugins/media-control/MediaControl.js +26 -10
  51. package/lib/plugins/picture-in-picture/PictureInPicture.js +1 -1
  52. package/lib/plugins/subtitles/ClosedCaptions.js +1 -1
  53. package/lib/plugins/vast-ads/VastAds.js +1 -1
  54. package/lib/plugins/vast-ads/rollmanager.js +1 -1
  55. package/lib/plugins/volume-fade/VolumeFade.d.ts +25 -10
  56. package/lib/plugins/volume-fade/VolumeFade.d.ts.map +1 -1
  57. package/lib/plugins/volume-fade/VolumeFade.js +62 -60
  58. package/lib/testUtils.d.ts.map +1 -1
  59. package/lib/testUtils.js +7 -4
  60. package/lib/types.d.ts +1 -1
  61. package/package.json +3 -3
  62. package/src/playback/__tests__/HTML5Video.test.ts +2 -2
  63. package/src/plugins/audio-selector/AudioSelector.ts +14 -7
  64. package/src/plugins/audio-selector/__tests__/AudioSelector.test.ts +8 -8
  65. package/src/plugins/audio-selector/__tests__/__snapshots__/AudioSelector.test.ts.snap +15 -15
  66. package/src/plugins/bottom-gear/BottomGear.ts +2 -2
  67. package/src/plugins/bottom-gear/__tests__/BottomGear.test.ts +8 -5
  68. package/src/plugins/bottom-gear/__tests__/__snapshots__/BottomGear.test.ts.snap +3 -3
  69. package/src/plugins/clappr-nerd-stats/NerdStats.ts +5 -5
  70. package/src/plugins/clappr-stats/ClapprStats.ts +41 -40
  71. package/src/plugins/clappr-stats/__tests__/ClapprStats.test.ts +12 -12
  72. package/src/plugins/clappr-stats/types.ts +21 -21
  73. package/src/plugins/clappr-stats/utils.ts +2 -2
  74. package/src/plugins/click-to-pause/ClickToPause.ts +1 -1
  75. package/src/plugins/clips/Clips.ts +1 -1
  76. package/src/plugins/clips/__tests__/Clips.test.ts +1 -1
  77. package/src/plugins/clips/__tests__/__snapshots__/Clips.test.ts.snap +1 -1
  78. package/src/plugins/dvr-controls/DvrControls.ts +51 -37
  79. package/src/plugins/dvr-controls/__tests__/DvrControls.test.ts +84 -26
  80. package/src/plugins/dvr-controls/__tests__/__snapshots__/DvrControls.test.ts.snap +0 -12
  81. package/src/plugins/level-selector/__tests__/__snapshots__/QualityLevels.test.ts.snap +1 -1
  82. package/src/plugins/media-control/MediaControl.ts +27 -10
  83. package/src/plugins/media-control/__tests__/MediaControl.test.ts +8 -5
  84. package/src/plugins/media-control/__tests__/__snapshots__/MediaControl.test.ts.snap +20 -20
  85. package/src/plugins/picture-in-picture/PictureInPicture.ts +1 -1
  86. package/src/plugins/subtitles/ClosedCaptions.ts +1 -1
  87. package/src/plugins/subtitles/__tests__/ClosedCaptions.test.ts +1 -1
  88. package/src/plugins/vast-ads/VastAds.ts +1 -1
  89. package/src/plugins/vast-ads/rollmanager.ts +1 -1
  90. package/src/plugins/volume-fade/VolumeFade.ts +92 -75
  91. package/src/testUtils.ts +11 -5
  92. package/src/types.ts +1 -1
  93. package/temp/player.api.json +634 -16
  94. package/tsconfig.tsbuildinfo +1 -1
package/dist/index.css CHANGED
@@ -122,238 +122,6 @@
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;
137
- }
138
- .big-mute-icon-wrapper[data-big-mute].hide {
139
- display: none;
140
- }
141
- .big-mute-icon-wrapper[data-big-mute]:hover {
142
- cursor: pointer;
143
- }
144
-
145
- .big-mute-icon[data-big-mute-icon] {
146
- display: flex;
147
- 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);
171
- }
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;
178
- }
179
- .media-control-clips .media-clip-text {
180
- text-overflow: ellipsis;
181
- white-space: nowrap;
182
- overflow: hidden;
183
- display: inline-block;
184
- text-overflow: ellipsis;
185
- color: white;
186
- cursor: default;
187
- line-height: var(--bottom-panel);
188
- position: relative;
189
- }
190
- .media-control-clips .media-clip-text::before {
191
- content: "•";
192
- padding-right: 6px;
193
- }
194
- .media-control-clips .media-clip-text {
195
- max-width: 100px;
196
- }*,
197
- :focus,
198
- :visited {
199
- outline: none !important;
200
- }
201
-
202
- .media-control-audiotracks {
203
- position: relative;
204
- }
205
- .media-control-audiotracks button {
206
- background-color: transparent;
207
- color: #fff;
208
- -webkit-font-smoothing: antialiased;
209
- border: none;
210
- cursor: pointer;
211
- display: flex;
212
- align-items: center;
213
- padding: 0;
214
- }
215
- .media-control-audiotracks button .audio-text {
216
- text-overflow: ellipsis;
217
- overflow: hidden;
218
- white-space: nowrap;
219
- max-width: 100px;
220
- background-color: transparent;
221
- -webkit-font-smoothing: antialiased;
222
- border: none;
223
- cursor: pointer;
224
- }
225
- .media-control-audiotracks button:hover {
226
- color: white;
227
- }
228
- .media-control-audiotracks button.changing {
229
- animation: pulse 0.5s infinite alternate;
230
- }
231
- .media-control-audiotracks button span.audio-arrow {
232
- width: 9px;
233
- height: 6px;
234
- margin-left: 5px;
235
- }
236
- .media-control-audiotracks .menu {
237
- max-width: 114px;
238
- list-style-type: none;
239
- position: absolute;
240
- background-color: rgba(74, 74, 74, 0.6);
241
- border: none;
242
- min-width: 60px;
243
- border-radius: 4px;
244
- bottom: 40px;
245
- right: -2px;
246
- }
247
- .media-control-audiotracks .menu.hidden {
248
- display: none;
249
- }
250
- .media-control-audiotracks li {
251
- font-size: var(--font-size-media-controls-dropdown);
252
- text-align: right;
253
- height: 30px;
254
- }
255
- .media-control-audiotracks li[data-title] {
256
- background-color: #c3c2c2;
257
- padding: 5px;
258
- }
259
- .media-control-audiotracks li a {
260
- display: block;
261
- text-decoration: none;
262
- text-overflow: ellipsis;
263
- overflow: hidden;
264
- white-space: nowrap;
265
- height: 30px;
266
- padding: 5px 10px;
267
- color: #fffffe;
268
- }
269
- .media-control-audiotracks li a:hover {
270
- text-decoration: none;
271
- background-color: rgba(0, 0, 0, 0.4);
272
- color: white;
273
- }
274
- .media-control-audiotracks li.current a {
275
- color: #f00;
276
- }
277
- .media-control-audiotracks li:first-child a {
278
- border-bottom-left-radius: 4px;
279
- border-bottom-right-radius: 4px;
280
- }
281
- .media-control-audiotracks li:last-child a {
282
- border-top-left-radius: 4px;
283
- border-top-right-radius: 4px;
284
- }
285
-
286
- @keyframes pulse {
287
- 0% {
288
- color: #fff;
289
- }
290
- 50% {
291
- color: #ff0101;
292
- }
293
- 100% {
294
- color: #B80000;
295
- }
296
- }*, :focus, :visited {
297
- outline: none !important;
298
- }
299
-
300
- .gear-wrapper .go-back {
301
- font-weight: 600;
302
- font-size: 14px;
303
- line-height: 20px;
304
- width: 100%;
305
- text-align: left;
306
- padding: 12px;
307
- }
308
- .gear-wrapper .go-back .arrow-left-icon {
309
- float: left;
310
- padding-top: 2px;
311
- padding-right: 2px;
312
- }
313
- .gear-wrapper .go-back .arrow-left-icon svg {
314
- height: 16px;
315
- }
316
- .gear-wrapper ul.gear-sub-menu {
317
- width: 100%;
318
- list-style-type: none;
319
- min-width: 60px;
320
- border-top: 2px solid rgb(36, 36, 36);
321
- }
322
- .gear-wrapper ul.gear-sub-menu li {
323
- font-size: 12px;
324
- text-align: left;
325
- }
326
- .gear-wrapper ul.gear-sub-menu li[data-title] {
327
- background-color: #c3c2c2;
328
- padding: 5px;
329
- }
330
- .gear-wrapper ul.gear-sub-menu li a {
331
- display: block;
332
- text-decoration: none;
333
- height: 32px;
334
- padding: 5px 10px;
335
- line-height: 22px;
336
- color: #fffffe;
337
- }
338
- .gear-wrapper ul.gear-sub-menu li a:hover {
339
- color: white;
340
- background-color: rgba(0, 0, 0, 0.4);
341
- }
342
- .gear-wrapper ul.gear-sub-menu li a:hover a {
343
- color: white;
344
- text-decoration: none;
345
- }
346
- .gear-wrapper ul.gear-sub-menu li a .check-icon {
347
- width: 30px;
348
- height: 20px;
349
- float: left;
350
- display: block;
351
- }
352
- .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
353
- display: none;
354
- }
355
- .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
356
- display: inline;
357
125
  }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
358
126
  order: 99;
359
127
  height: 20px;
@@ -399,381 +167,67 @@
399
167
  }
400
168
  .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
401
169
  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;
170
+ }*, :focus, :visited {
171
+ outline: none !important;
412
172
  }
413
- .dvr-controls[data-dvr] .live-info {
414
- cursor: default;
415
- text-transform: uppercase;
173
+
174
+ .gear-wrapper .go-back {
175
+ font-weight: 600;
176
+ font-size: 14px;
177
+ line-height: 20px;
178
+ width: 100%;
179
+ text-align: left;
180
+ padding: 12px;
416
181
  }
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);
426
- }
427
- .dvr-controls[data-dvr] .live-info.disabled {
428
- opacity: 0.3;
429
- }
430
- .dvr-controls[data-dvr] .live-info.disabled:before {
431
- background-color: var(--player-dvr-color);
432
- }
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;
445
- }
446
- .dvr-controls[data-dvr] .live-button:before {
447
- content: "";
448
- display: inline-block;
449
- 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);
455
- }
456
- .dvr-controls[data-dvr] .live-button:hover {
457
- opacity: 1;
458
- text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
459
- }
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;
466
- }
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;
481
- }
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;
488
- }
489
-
490
- .dvr .dvr-controls[data-dvr] .live-info {
491
- display: none;
492
- }
493
- .dvr .dvr-controls[data-dvr] .live-button {
494
- display: block;
495
- }.context-menu {
496
- z-index: 999;
497
- position: absolute;
498
- top: 0;
499
- left: 0;
500
- text-align: center;
501
- }
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;
514
- }
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;
526
- width: 100%;
527
- }
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;
533
- }
534
-
535
- .skip_time_plugin[data-skip-time] {
536
- position: absolute;
537
- width: 100%;
538
- height: calc(100% - 50px);
539
- z-index: 9998;
540
- background-color: transparent;
541
- font-family: Roboto, "Open Sans", Arial, sans-serif;
542
- }
543
- .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
544
- width: 100%;
545
- height: 100%;
546
- display: flex;
547
- justify-content: space-between;
548
- }
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;
554
- }
555
-
556
- .multicamera[data-multicamera] {
557
- float: right;
558
- margin-top: 4px;
559
- position: relative;
560
- margin-right: 20px;
561
- width: 20px;
562
- }
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;
571
- }
572
- .multicamera[data-multicamera] button svg {
573
- height: 20px;
574
- position: relative;
575
- margin-top: 6px;
576
- }
577
- .multicamera[data-multicamera] button:hover {
578
- color: #c9c9c9;
579
- }
580
- .multicamera[data-multicamera] button.changing {
581
- animation: pulse 0.5s infinite alternate;
582
- }
583
- .multicamera[data-multicamera] button span.quality-arrow {
584
- width: 9px;
585
- height: 6px;
586
- margin-top: 11px;
587
- margin-left: 5px;
588
- }
589
- .multicamera[data-multicamera] > ul {
590
- padding: 6px 0;
591
- right: -24px;
592
- width: 245px;
593
- list-style-type: none;
594
- position: absolute;
595
- bottom: 48px;
596
- border-radius: 4px;
597
- display: none;
598
- background-color: rgba(74, 74, 74, 0.9);
599
- }
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;
611
- }
612
- .multicamera[data-multicamera] li {
613
- font-size: 10px;
614
- cursor: pointer;
615
- }
616
- .multicamera[data-multicamera] li .multicamera-item {
617
- display: flex;
618
- padding: 10px 0;
619
- justify-content: center;
620
- position: relative;
621
- }
622
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
623
- pointer-events: none;
624
- }
625
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
626
- opacity: 0.5;
627
- }
628
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
629
- opacity: 0.5;
630
- }
631
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
632
- background-color: rgba(0, 0, 0, 0);
633
- }
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);
636
- }
637
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
638
- width: 80px;
639
- height: 60px;
640
- }
641
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
642
- width: 80px;
643
- height: 60px;
644
- }
645
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
646
- width: 120px;
647
- text-align: left;
648
- margin-left: 15px;
649
- }
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;
654
- 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;
664
- }
665
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
666
- opacity: 0.6;
667
- }
668
- .multicamera[data-multicamera] li[data-title] {
669
- background-color: #c3c2c2;
670
- padding: 5px;
671
- }
672
- .multicamera[data-multicamera] li a {
673
- color: #444;
674
- padding: 2px 10px;
675
- display: block;
676
- text-decoration: none;
677
- }
678
- .multicamera[data-multicamera] li a:hover {
679
- background-color: #555;
680
- color: white;
681
- }
682
- .multicamera[data-multicamera] li a:hover a {
683
- color: white;
684
- text-decoration: none;
685
- }
686
- .multicamera[data-multicamera] li.current a {
687
- color: #f00;
688
- }
689
-
690
- @keyframes pulse {
691
- 0% {
692
- color: #fff;
693
- }
694
- 50% {
695
- color: #ff0101;
696
- }
697
- 100% {
698
- color: #B80000;
699
- }
700
- }.media-control-pip {
701
- order: 95;
702
- display: flex;
703
- }
704
- .media-control-pip button {
705
- height: 20px;
182
+ .gear-wrapper .go-back .arrow-left-icon {
183
+ float: left;
184
+ padding-top: 2px;
185
+ padding-right: 2px;
706
186
  }
707
- .media-control-pip button svg {
708
- 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;
187
+ .gear-wrapper .go-back .arrow-left-icon svg {
188
+ height: 16px;
720
189
  }
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;
190
+ .gear-wrapper ul.gear-sub-menu {
191
+ width: 100%;
192
+ list-style-type: none;
193
+ min-width: 60px;
194
+ border-top: 2px solid rgb(36, 36, 36);
725
195
  }
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;
196
+ .gear-wrapper ul.gear-sub-menu li {
197
+ font-size: 12px;
198
+ text-align: left;
730
199
  }
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;
200
+ .gear-wrapper ul.gear-sub-menu li[data-title] {
201
+ background-color: #c3c2c2;
202
+ padding: 5px;
734
203
  }
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;
204
+ .gear-wrapper ul.gear-sub-menu li a {
205
+ display: block;
206
+ text-decoration: none;
207
+ height: 32px;
208
+ padding: 5px 10px;
209
+ line-height: 22px;
210
+ color: #fffffe;
738
211
  }
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
- }.player-poster[data-poster] {
744
- display: flex;
745
- justify-content: center;
746
- align-items: center;
747
- position: absolute;
748
- height: 100%;
749
- width: 100%;
750
- z-index: 998;
751
- top: 0;
752
- left: 0;
753
- background-color: #000;
754
- background-size: cover;
755
- background-repeat: no-repeat;
756
- background-position: 50% 50%;
212
+ .gear-wrapper ul.gear-sub-menu li a:hover {
213
+ color: white;
214
+ background-color: rgba(0, 0, 0, 0.4);
757
215
  }
758
- .player-poster[data-poster].clickable {
759
- cursor: pointer;
216
+ .gear-wrapper ul.gear-sub-menu li a:hover a {
217
+ color: white;
218
+ text-decoration: none;
760
219
  }
761
- .player-poster[data-poster]:hover .play-wrapper[data-poster] {
762
- opacity: 1;
220
+ .gear-wrapper ul.gear-sub-menu li a .check-icon {
221
+ width: 30px;
222
+ height: 20px;
223
+ float: left;
224
+ display: block;
763
225
  }
764
- .player-poster[data-poster] .play-wrapper[data-poster] {
765
- width: 100%;
766
- height: 25%;
767
- margin: 0 auto;
768
- opacity: 0.75;
769
- transition: opacity 0.1s ease;
226
+ .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
227
+ display: none;
770
228
  }
771
- .player-poster[data-poster] .play-wrapper[data-poster] svg {
772
- height: 100%;
229
+ .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
773
230
  display: inline;
774
- }
775
- .player-poster[data-poster] .play-wrapper[data-poster] svg path {
776
- fill: #fff;
777
231
  }:root {
778
232
  --primary-background-color: #000;
779
233
  --secondary-background-color: #262626;
@@ -1119,16 +573,237 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1119
573
  transform: translate(-50%, -50%);
1120
574
  }
1121
575
  }
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;
576
+ @media only screen and (orientation: landscape) {
577
+ .mobile .clappr-nerd-stats .stats-box ul {
578
+ width: 25%;
579
+ }
580
+ }@charset "UTF-8";
581
+ .media-control-clips {
582
+ display: flex;
583
+ gap: 6px;
584
+ }
585
+ .media-control-clips .media-clip-text {
586
+ text-overflow: ellipsis;
587
+ white-space: nowrap;
588
+ overflow: hidden;
589
+ display: inline-block;
590
+ text-overflow: ellipsis;
591
+ color: white;
592
+ cursor: default;
593
+ line-height: var(--bottom-panel);
594
+ position: relative;
595
+ }
596
+ .media-control-clips .media-clip-text::before {
597
+ content: "•";
598
+ padding-right: 6px;
599
+ }
600
+ .media-control-clips .media-clip-text {
601
+ max-width: 100px;
602
+ }div.player-error-screen, [data-player] div.player-error-screen {
603
+ color: #CCCACA;
604
+ position: absolute;
605
+ top: 0;
606
+ height: 100%;
607
+ width: 100%;
608
+ background-color: rgba(0, 0, 0, 0.7);
609
+ z-index: 2000;
610
+ display: flex;
611
+ flex-direction: column;
612
+ justify-content: center;
613
+ }
614
+ div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
615
+ font-size: 14px;
616
+ color: #CCCACA;
617
+ margin-top: 45px;
618
+ }
619
+ div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
620
+ font-weight: bold;
621
+ line-height: 30px;
622
+ font-size: 18px;
623
+ }
624
+ div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
625
+ width: 90%;
626
+ margin: 0 auto;
627
+ }
628
+ div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
629
+ font-size: 13px;
630
+ margin-top: 15px;
631
+ }
632
+ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
633
+ cursor: pointer;
634
+ width: 30px;
635
+ margin: 15px auto 0;
636
+ }.big-mute-icon-wrapper[data-big-mute] {
637
+ position: absolute;
638
+ z-index: 9998;
639
+ background-color: transparent;
640
+ display: flex;
641
+ justify-content: center;
642
+ width: 100%;
643
+ height: calc(100% - 50px);
644
+ margin: 0 auto;
645
+ opacity: 0.75;
646
+ transition: opacity 0.1s ease;
647
+ pointer-events: auto;
648
+ }
649
+ .big-mute-icon-wrapper[data-big-mute].hide {
650
+ display: none;
651
+ }
652
+ .big-mute-icon-wrapper[data-big-mute]:hover {
653
+ cursor: pointer;
654
+ }
655
+
656
+ .big-mute-icon[data-big-mute-icon] {
657
+ display: flex;
658
+ align-items: center;
659
+ justify-content: center;
660
+ align-self: center;
661
+ width: 120px;
662
+ height: 120px;
663
+ border: 2px solid white;
664
+ border-radius: 50%;
665
+ filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
666
+ filter: alpha(opacity=60);
667
+ opacity: 1;
668
+ box-shadow: 0 0 1px 0 white;
669
+ background: rgba(240, 243, 247, 0.9411764706);
670
+ z-index: 10000;
671
+ }
672
+ .big-mute-icon[data-big-mute-icon] svg {
673
+ margin-left: 5px;
674
+ width: 80px;
675
+ height: 80px;
676
+ }
677
+ .big-mute-icon[data-big-mute-icon] svg path {
678
+ fill: #1f1e1e !important;
679
+ }
680
+ .big-mute-icon[data-big-mute-icon]:hover {
681
+ background: rgba(240, 243, 247, 0.8784313725);
682
+ }
683
+ .big-mute-icon[data-big-mute-icon]:hover svg path {
684
+ fill: #151515 !important;
685
+ }.dvr-controls[data-dvr] {
686
+ display: inline-block;
687
+ color: var(--player-dvr-color);
688
+ line-height: 32px;
689
+ font-size: 10px;
690
+ font-weight: bold;
691
+ margin-left: 6px;
692
+ height: 40px;
693
+ line-height: 40px;
694
+ margin-left: 0;
695
+ }
696
+ .dvr-controls[data-dvr] .live-info {
697
+ cursor: default;
698
+ text-transform: uppercase;
699
+ }
700
+ .dvr-controls[data-dvr] .live-info:before {
701
+ content: "";
702
+ display: inline-block;
703
+ position: relative;
704
+ width: 7px;
705
+ height: 7px;
706
+ border-radius: 3.5px;
707
+ margin-right: 3.5px;
708
+ background-color: var(--player-live-color);
709
+ }
710
+ .dvr-controls[data-dvr] .live-info.disabled {
711
+ opacity: 0.3;
712
+ }
713
+ .dvr-controls[data-dvr] .live-info.disabled:before {
714
+ background-color: var(--player-dvr-color);
715
+ }
716
+ .dvr-controls[data-dvr] .live-button {
717
+ cursor: pointer;
718
+ outline: none;
719
+ display: none;
720
+ border: 0;
721
+ color: var(--player-dvr-color);
722
+ background-color: transparent;
723
+ height: 32px;
724
+ padding: 0;
725
+ opacity: 0.7;
726
+ text-transform: uppercase;
727
+ transition: all 0.1s ease;
728
+ }
729
+ .dvr-controls[data-dvr] .live-button:before {
730
+ content: "";
731
+ display: inline-block;
732
+ position: relative;
733
+ width: 7px;
734
+ height: 7px;
735
+ border-radius: 3.5px;
736
+ margin-right: 3.5px;
737
+ background-color: var(--player-dvr-color);
738
+ }
739
+ .dvr-controls[data-dvr] .live-button:hover {
740
+ opacity: 1;
741
+ text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
742
+ }
743
+ .dvr-controls[data-dvr] .live-info {
744
+ font-size: 14px;
745
+ letter-spacing: 0.8px;
746
+ font-weight: 500;
747
+ color: #fffffe;
748
+ margin-left: 21px;
749
+ }
750
+ .dvr-controls[data-dvr] .live-info::before {
751
+ width: 10px;
752
+ height: 10px;
753
+ border-radius: 50%;
754
+ margin-right: 8px;
755
+ background-color: #ed4f4a;
756
+ }
757
+ .dvr-controls[data-dvr] .live-button {
758
+ height: 40px;
759
+ opacity: 1;
760
+ font-size: 14px;
761
+ letter-spacing: 0.8px;
762
+ font-weight: 500;
763
+ margin-left: 20px;
1129
764
  }
1130
- .quality-levels li.current {
1131
- background-color: #000;
765
+ .dvr-controls[data-dvr] .live-button::before {
766
+ width: 10px;
767
+ height: 10px;
768
+ border-radius: 50%;
769
+ margin-right: 8px;
770
+ background-color: #cacaca;
771
+ }.context-menu {
772
+ z-index: 999;
773
+ position: absolute;
774
+ top: 0;
775
+ left: 0;
776
+ text-align: center;
777
+ }
778
+ .context-menu .context-menu-list {
779
+ font-family: "Proxima Nova", sans-serif;
780
+ font-size: 12px;
781
+ line-height: 12px;
782
+ list-style-type: none;
783
+ text-align: left;
784
+ padding: 5px;
785
+ margin-left: auto;
786
+ margin-right: auto;
787
+ background-color: rgba(0, 0, 0, 0.75);
788
+ border: 1px solid #666;
789
+ border-radius: 4px;
790
+ }
791
+ .context-menu .context-menu-list-item button {
792
+ border: none;
793
+ background-color: transparent;
794
+ padding: 0;
795
+ color: white;
796
+ display: flex;
797
+ gap: 8px;
798
+ align-items: center;
799
+ justify-content: center;
800
+ cursor: pointer;
801
+ padding: 5px;
802
+ width: 100%;
803
+ }
804
+ .context-menu .context-menu-list-item_icon {
805
+ width: 20px;
806
+ height: 20px;
1132
807
  }.seek-time[data-seek-time] {
1133
808
  position: absolute;
1134
809
  white-space: nowrap;
@@ -1162,6 +837,53 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1162
837
  .seek-time[data-seek-time] [data-duration]::before {
1163
838
  content: "|";
1164
839
  margin-right: 7px;
840
+ }.spinner-three-bounce[data-spinner] {
841
+ position: absolute;
842
+ width: 70px;
843
+ text-align: center;
844
+ z-index: 999;
845
+ left: 0;
846
+ right: 0;
847
+ margin: 0 auto;
848
+ margin-left: auto;
849
+ margin-right: auto;
850
+ /* center vertically */
851
+ top: 50%;
852
+ transform: translateY(-50%);
853
+ }
854
+ .spinner-three-bounce[data-spinner] > div {
855
+ width: 18px;
856
+ height: 18px;
857
+ background-color: #FFF;
858
+ border-radius: 100%;
859
+ display: inline-block;
860
+ animation: bouncedelay 1.4s infinite ease-in-out;
861
+ /* Prevent first frame from flickering when animation starts */
862
+ animation-fill-mode: both;
863
+ }
864
+ .spinner-three-bounce[data-spinner] [data-bounce1] {
865
+ animation-delay: -0.32s;
866
+ }
867
+ .spinner-three-bounce[data-spinner] [data-bounce2] {
868
+ animation-delay: -0.16s;
869
+ }
870
+
871
+ @keyframes bouncedelay {
872
+ 0%, 80%, 100% {
873
+ transform: scale(0);
874
+ }
875
+ 40% {
876
+ transform: scale(1);
877
+ }
878
+ }.media-control-pip {
879
+ order: 95;
880
+ display: flex;
881
+ }
882
+ .media-control-pip button {
883
+ height: 20px;
884
+ }
885
+ .media-control-pip button svg {
886
+ height: 20px;
1165
887
  }.share_plugin[data-share] {
1166
888
  pointer-events: auto;
1167
889
  z-index: 5;
@@ -1245,97 +967,277 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1245
967
  display: inline-block;
1246
968
  margin-right: 5px;
1247
969
  cursor: pointer;
1248
- }.spinner-three-bounce[data-spinner] {
970
+ }.quality-levels li.disabled {
971
+ opacity: 0.5;
972
+ pointer-events: none;
973
+ }
974
+ .quality-levels li.current {
975
+ background-color: #000;
976
+ }.player-poster[data-poster] {
977
+ display: flex;
978
+ justify-content: center;
979
+ align-items: center;
1249
980
  position: absolute;
1250
- width: 70px;
1251
- text-align: center;
1252
- z-index: 999;
981
+ height: 100%;
982
+ width: 100%;
983
+ z-index: 998;
984
+ top: 0;
1253
985
  left: 0;
1254
- right: 0;
1255
- margin: 0 auto;
1256
- margin-left: auto;
1257
- margin-right: auto;
1258
- /* center vertically */
1259
- top: 50%;
1260
- transform: translateY(-50%);
986
+ background-color: #000;
987
+ background-size: cover;
988
+ background-repeat: no-repeat;
989
+ background-position: 50% 50%;
1261
990
  }
1262
- .spinner-three-bounce[data-spinner] > div {
1263
- width: 18px;
1264
- height: 18px;
1265
- background-color: #FFF;
1266
- border-radius: 100%;
1267
- display: inline-block;
1268
- animation: bouncedelay 1.4s infinite ease-in-out;
1269
- /* Prevent first frame from flickering when animation starts */
1270
- animation-fill-mode: both;
991
+ .player-poster[data-poster].clickable {
992
+ cursor: pointer;
1271
993
  }
1272
- .spinner-three-bounce[data-spinner] [data-bounce1] {
1273
- animation-delay: -0.32s;
994
+ .player-poster[data-poster]:hover .play-wrapper[data-poster] {
995
+ opacity: 1;
1274
996
  }
1275
- .spinner-three-bounce[data-spinner] [data-bounce2] {
1276
- animation-delay: -0.16s;
997
+ .player-poster[data-poster] .play-wrapper[data-poster] {
998
+ width: 100%;
999
+ height: 25%;
1000
+ margin: 0 auto;
1001
+ opacity: 0.75;
1002
+ transition: opacity 0.1s ease;
1003
+ }
1004
+ .player-poster[data-poster] .play-wrapper[data-poster] svg {
1005
+ height: 100%;
1006
+ display: inline;
1007
+ }
1008
+ .player-poster[data-poster] .play-wrapper[data-poster] svg path {
1009
+ fill: #fff;
1010
+ }.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
1011
+ height: 0;
1277
1012
  }
1278
1013
 
1279
- @keyframes bouncedelay {
1280
- 0%, 80%, 100% {
1281
- transform: scale(0);
1282
- }
1283
- 40% {
1284
- transform: scale(1);
1285
- }
1014
+ .skip_time_plugin[data-skip-time] {
1015
+ position: absolute;
1016
+ width: 100%;
1017
+ height: calc(100% - 50px);
1018
+ z-index: 9998;
1019
+ background-color: transparent;
1020
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1021
+ }
1022
+ .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
1023
+ width: 100%;
1024
+ height: 100%;
1025
+ display: flex;
1026
+ justify-content: space-between;
1027
+ }
1028
+ .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
1029
+ width: 33.3%;
1030
+ height: 100%;
1286
1031
  }*,
1287
1032
  :focus,
1288
1033
  :visited {
1289
1034
  outline: none !important;
1290
1035
  }
1291
1036
 
1292
- .media-control-cc[data-cc] {
1037
+ .media-control-cc[data-cc] {
1038
+ position: relative;
1039
+ order: 85;
1040
+ }
1041
+ .media-control-cc[data-cc] button {
1042
+ background-color: transparent;
1043
+ color: #fff;
1044
+ -webkit-font-smoothing: antialiased;
1045
+ border: none;
1046
+ cursor: pointer;
1047
+ }
1048
+ .media-control-cc[data-cc] button .cc-text svg {
1049
+ fill: white;
1050
+ }
1051
+ .media-control-cc[data-cc] button:hover {
1052
+ color: #c9c9c9;
1053
+ }
1054
+ .media-control-cc[data-cc] button.changing {
1055
+ animation: pulse 0.5s infinite alternate;
1056
+ }
1057
+ .media-control-cc[data-cc] ul {
1058
+ width: 80px;
1059
+ list-style-type: none;
1060
+ position: absolute;
1061
+ bottom: 25px;
1062
+ border: 1px solid black;
1063
+ display: none;
1064
+ background-color: #e6e6e6;
1065
+ padding: 8px 0;
1066
+ }
1067
+ .media-control-cc[data-cc] li a {
1068
+ color: #444;
1069
+ padding: 2px 10px;
1070
+ display: block;
1071
+ text-decoration: none;
1072
+ }
1073
+ .media-control-cc[data-cc] li a:hover {
1074
+ background-color: #555;
1075
+ color: white;
1076
+ }
1077
+ .media-control-cc[data-cc] li a:hover a {
1078
+ color: white;
1079
+ text-decoration: none;
1080
+ }
1081
+ .media-control-cc[data-cc] li.current a {
1082
+ color: #f00;
1083
+ background-color: #555;
1084
+ }
1085
+
1086
+ @keyframes pulse {
1087
+ 0% {
1088
+ color: #fff;
1089
+ }
1090
+ 50% {
1091
+ color: #ff0101;
1092
+ }
1093
+ 100% {
1094
+ color: #B80000;
1095
+ }
1096
+ }
1097
+ ::cue {
1098
+ visibility: hidden !important;
1099
+ font-size: 0 !important;
1100
+ }
1101
+
1102
+ .ios-fullscreen::cue {
1103
+ visibility: visible !important;
1104
+ font-size: 1em !important;
1105
+ }*, :focus, :visited {
1106
+ outline: none !important;
1107
+ }
1108
+
1109
+ .multicamera[data-multicamera] {
1110
+ float: right;
1111
+ margin-top: 4px;
1293
1112
  position: relative;
1294
- order: 85;
1113
+ margin-right: 20px;
1114
+ width: 20px;
1295
1115
  }
1296
- .media-control-cc[data-cc] button {
1116
+ .multicamera[data-multicamera] button {
1297
1117
  background-color: transparent;
1298
1118
  color: #fff;
1119
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1299
1120
  -webkit-font-smoothing: antialiased;
1300
1121
  border: none;
1301
- cursor: pointer;
1122
+ font-size: 14px;
1123
+ padding: 0;
1302
1124
  }
1303
- .media-control-cc[data-cc] button .cc-text svg {
1304
- fill: white;
1125
+ .multicamera[data-multicamera] button svg {
1126
+ height: 20px;
1127
+ position: relative;
1128
+ margin-top: 6px;
1305
1129
  }
1306
- .media-control-cc[data-cc] button:hover {
1130
+ .multicamera[data-multicamera] button:hover {
1307
1131
  color: #c9c9c9;
1308
1132
  }
1309
- .media-control-cc[data-cc] button.changing {
1133
+ .multicamera[data-multicamera] button.changing {
1310
1134
  animation: pulse 0.5s infinite alternate;
1311
1135
  }
1312
- .media-control-cc[data-cc] ul {
1313
- width: 80px;
1136
+ .multicamera[data-multicamera] button span.quality-arrow {
1137
+ width: 9px;
1138
+ height: 6px;
1139
+ margin-top: 11px;
1140
+ margin-left: 5px;
1141
+ }
1142
+ .multicamera[data-multicamera] > ul {
1143
+ padding: 6px 0;
1144
+ right: -24px;
1145
+ width: 245px;
1314
1146
  list-style-type: none;
1315
1147
  position: absolute;
1316
- bottom: 25px;
1317
- border: 1px solid black;
1148
+ bottom: 48px;
1149
+ border-radius: 4px;
1318
1150
  display: none;
1319
- background-color: #e6e6e6;
1320
- padding: 8px 0;
1151
+ background-color: rgba(74, 74, 74, 0.9);
1321
1152
  }
1322
- .media-control-cc[data-cc] li a {
1153
+ .multicamera[data-multicamera] > ul::after {
1154
+ content: "";
1155
+ position: absolute;
1156
+ top: 100%;
1157
+ left: 85%;
1158
+ margin-left: -10px;
1159
+ width: 0;
1160
+ height: 0;
1161
+ border-top: 10px solid rgba(74, 74, 74, 0.9);
1162
+ border-right: 10px solid transparent;
1163
+ border-left: 10px solid transparent;
1164
+ }
1165
+ .multicamera[data-multicamera] li {
1166
+ font-size: 10px;
1167
+ cursor: pointer;
1168
+ }
1169
+ .multicamera[data-multicamera] li .multicamera-item {
1170
+ display: flex;
1171
+ padding: 10px 0;
1172
+ justify-content: center;
1173
+ position: relative;
1174
+ }
1175
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
1176
+ pointer-events: none;
1177
+ }
1178
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
1179
+ opacity: 0.5;
1180
+ }
1181
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
1182
+ opacity: 0.5;
1183
+ }
1184
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
1185
+ background-color: rgba(0, 0, 0, 0);
1186
+ }
1187
+ .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
1188
+ background-color: rgba(0, 0, 0, 0.3);
1189
+ }
1190
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
1191
+ width: 80px;
1192
+ height: 60px;
1193
+ }
1194
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
1195
+ width: 80px;
1196
+ height: 60px;
1197
+ }
1198
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
1199
+ width: 120px;
1200
+ text-align: left;
1201
+ margin-left: 15px;
1202
+ }
1203
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1204
+ width: 120px;
1205
+ height: 20px;
1206
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1207
+ font-size: 14px;
1208
+ font-weight: normal;
1209
+ font-style: normal;
1210
+ font-stretch: normal;
1211
+ line-height: 1.43;
1212
+ letter-spacing: normal;
1213
+ text-align: left;
1214
+ color: #fff;
1215
+ text-overflow: ellipsis;
1216
+ overflow: hidden;
1217
+ }
1218
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1219
+ opacity: 0.6;
1220
+ }
1221
+ .multicamera[data-multicamera] li[data-title] {
1222
+ background-color: #c3c2c2;
1223
+ padding: 5px;
1224
+ }
1225
+ .multicamera[data-multicamera] li a {
1323
1226
  color: #444;
1324
1227
  padding: 2px 10px;
1325
1228
  display: block;
1326
1229
  text-decoration: none;
1327
1230
  }
1328
- .media-control-cc[data-cc] li a:hover {
1231
+ .multicamera[data-multicamera] li a:hover {
1329
1232
  background-color: #555;
1330
1233
  color: white;
1331
1234
  }
1332
- .media-control-cc[data-cc] li a:hover a {
1235
+ .multicamera[data-multicamera] li a:hover a {
1333
1236
  color: white;
1334
1237
  text-decoration: none;
1335
1238
  }
1336
- .media-control-cc[data-cc] li.current a {
1239
+ .multicamera[data-multicamera] li.current a {
1337
1240
  color: #f00;
1338
- background-color: #555;
1339
1241
  }
1340
1242
 
1341
1243
  @keyframes pulse {
@@ -1348,15 +1250,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1348
1250
  100% {
1349
1251
  color: #B80000;
1350
1252
  }
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
1253
  }[data-player] {
1361
1254
  --bottom-panel: 40px;
1362
1255
  }
@@ -1974,6 +1867,115 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1974
1867
  }
1975
1868
  .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
1976
1869
  display: none !important;
1870
+ }*,
1871
+ :focus,
1872
+ :visited {
1873
+ outline: none !important;
1874
+ }
1875
+
1876
+ .media-control-audiotracks {
1877
+ position: relative;
1878
+ }
1879
+ .media-control-audiotracks button {
1880
+ background-color: transparent;
1881
+ color: #fff;
1882
+ -webkit-font-smoothing: antialiased;
1883
+ border: none;
1884
+ cursor: pointer;
1885
+ display: flex;
1886
+ align-items: center;
1887
+ padding: 0;
1888
+ }
1889
+ .media-control-audiotracks button .audio-text {
1890
+ text-overflow: ellipsis;
1891
+ overflow: hidden;
1892
+ white-space: nowrap;
1893
+ max-width: 100px;
1894
+ background-color: transparent;
1895
+ -webkit-font-smoothing: antialiased;
1896
+ border: none;
1897
+ cursor: pointer;
1898
+ }
1899
+ .media-control-audiotracks button:hover {
1900
+ color: white;
1901
+ }
1902
+ .media-control-audiotracks button.changing {
1903
+ animation: pulse 0.5s infinite alternate;
1904
+ }
1905
+ .media-control-audiotracks button span.audio-arrow {
1906
+ width: 9px;
1907
+ height: 6px;
1908
+ margin-left: 5px;
1909
+ }
1910
+ .media-control-audiotracks .menu {
1911
+ max-width: 114px;
1912
+ list-style-type: none;
1913
+ position: absolute;
1914
+ background-color: rgba(74, 74, 74, 0.6);
1915
+ border: none;
1916
+ min-width: 60px;
1917
+ border-radius: 4px;
1918
+ bottom: 40px;
1919
+ right: -2px;
1920
+ }
1921
+ .media-control-audiotracks .menu.hidden {
1922
+ display: none;
1923
+ }
1924
+ .media-control-audiotracks li {
1925
+ font-size: var(--font-size-media-controls-dropdown);
1926
+ text-align: right;
1927
+ height: 30px;
1928
+ }
1929
+ .media-control-audiotracks li[data-title] {
1930
+ background-color: #c3c2c2;
1931
+ padding: 5px;
1932
+ }
1933
+ .media-control-audiotracks li a {
1934
+ display: block;
1935
+ text-decoration: none;
1936
+ text-overflow: ellipsis;
1937
+ overflow: hidden;
1938
+ white-space: nowrap;
1939
+ height: 30px;
1940
+ padding: 5px 10px;
1941
+ color: #fffffe;
1942
+ }
1943
+ .media-control-audiotracks li a:hover {
1944
+ text-decoration: none;
1945
+ background-color: rgba(0, 0, 0, 0.4);
1946
+ color: white;
1947
+ }
1948
+ .media-control-audiotracks li.current a {
1949
+ color: #f00;
1950
+ }
1951
+ .media-control-audiotracks li:first-child a {
1952
+ border-bottom-left-radius: 4px;
1953
+ border-bottom-right-radius: 4px;
1954
+ }
1955
+ .media-control-audiotracks li:last-child a {
1956
+ border-top-left-radius: 4px;
1957
+ border-top-right-radius: 4px;
1958
+ }
1959
+
1960
+ @keyframes pulse {
1961
+ 0% {
1962
+ color: #fff;
1963
+ }
1964
+ 50% {
1965
+ color: #ff0101;
1966
+ }
1967
+ 100% {
1968
+ color: #B80000;
1969
+ }
1970
+ }.player-logo[data-logo] {
1971
+ position: absolute;
1972
+ z-index: 2;
1973
+ width: 100%;
1974
+ height: 100%;
1975
+ }
1976
+
1977
+ .clappr-logo {
1978
+ position: absolute;
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
  }