@gcorevideo/player 2.22.15 → 2.22.17

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 (124) hide show
  1. package/assets/clips/clips.ejs +1 -0
  2. package/assets/clips/clips.scss +23 -3
  3. package/assets/level-selector/list.ejs +9 -3
  4. package/assets/media-control/media-control.ejs +1 -9
  5. package/assets/media-control/media-control.scss +0 -25
  6. package/assets/media-control/width370.scss +4 -4
  7. package/dist/core.js +6 -8
  8. package/dist/index.css +855 -855
  9. package/dist/index.js +609 -664
  10. package/dist/player.d.ts +426 -302
  11. package/dist/plugins/index.css +551 -551
  12. package/dist/plugins/index.js +648 -703
  13. package/docs/api/{player.audioselector.md → player.audiotracks.md} +3 -3
  14. package/docs/api/player.clapprstats.exportmetrics.md +1 -1
  15. package/docs/api/player.clapprstats.md +5 -15
  16. package/docs/api/player.clapprstatssettings.md +13 -0
  17. package/docs/api/{player.contextmenupluginsettings.preventshowcontextmenu.md → player.clips.destroy.md} +7 -3
  18. package/docs/api/{player.contextmenupluginsettings.label.md → player.clips.disable.md} +7 -3
  19. package/docs/api/player.clips.enable.md +18 -0
  20. package/docs/api/player.clips.md +170 -0
  21. package/docs/api/player.clips.render.md +18 -0
  22. package/docs/api/player.clips.supportedversion.md +16 -0
  23. package/docs/api/player.clips.version.md +14 -0
  24. package/docs/api/player.clipspluginsettings.md +2 -2
  25. package/docs/api/player.clipspluginsettings.text.md +1 -1
  26. package/docs/api/player.contextmenu.md +2 -0
  27. package/docs/api/player.contextmenupluginsettings.md +2 -40
  28. package/docs/api/{player.contextmenupluginsettings.url.md → player.contextmenupluginsettings.options.md} +3 -3
  29. package/docs/api/player.md +101 -37
  30. package/docs/api/player.mediacontrol.md +9 -15
  31. package/docs/api/{player.mediacontrol.getelement.md → player.mediacontrol.mount.md} +20 -7
  32. package/docs/api/player.mediacontrolelement.md +4 -2
  33. package/docs/api/player.mediacontrollayerelement.md +16 -0
  34. package/docs/api/player.mediacontrolleftelement.md +16 -0
  35. package/docs/api/player.mediacontrolrightelement.md +16 -0
  36. package/docs/api/player.mediacontrolsettings.md +23 -0
  37. package/docs/api/player.menuoption.md +21 -0
  38. package/docs/api/{player.clapprnerdstats._constructor_.md → player.nerdstats._constructor_.md} +3 -3
  39. package/docs/api/{player.clapprnerdstats.md → player.nerdstats.md} +5 -5
  40. package/docs/api/player.playbackrate.md +1 -1
  41. package/docs/api/player.playerconfig.md +1 -1
  42. package/docs/api/player.playerconfig.playbacktype.md +1 -1
  43. package/docs/api/player.qualitylevel.height.md +1 -1
  44. package/docs/api/player.qualitylevel.level.md +1 -1
  45. package/docs/api/player.qualitylevel.md +4 -4
  46. package/docs/api/player.qualitylevel.width.md +1 -1
  47. package/docs/api/{player.levelselector.events.md → player.qualitylevels.events.md} +2 -2
  48. package/docs/api/{player.levelselector.md → player.qualitylevels.md} +6 -6
  49. package/docs/api/{player.levelselectorpluginsettings.labels.md → player.qualitylevelspluginsettings.labels.md} +2 -2
  50. package/docs/api/{player.levelselectorpluginsettings.md → player.qualitylevelspluginsettings.md} +6 -6
  51. package/docs/api/{player.levelselectorpluginsettings.restrictresolution.md → player.qualitylevelspluginsettings.restrictresolution.md} +2 -2
  52. package/docs/api/player.timeposition.current.md +1 -1
  53. package/docs/api/player.timeposition.md +2 -2
  54. package/docs/api/player.timeposition.total.md +1 -1
  55. package/docs/api/player.timeprogress.md +6 -4
  56. package/docs/api/player.timevalue.md +1 -1
  57. package/lib/index.plugins.d.ts +2 -1
  58. package/lib/index.plugins.d.ts.map +1 -1
  59. package/lib/index.plugins.js +2 -1
  60. package/lib/playback/dash-playback/DashPlayback.d.ts.map +1 -1
  61. package/lib/playback/dash-playback/DashPlayback.js +5 -7
  62. package/lib/playback.types.d.ts +22 -9
  63. package/lib/playback.types.d.ts.map +1 -1
  64. package/lib/plugins/clappr-nerd-stats/ClapprNerdStats.d.ts +4 -0
  65. package/lib/plugins/clappr-nerd-stats/ClapprNerdStats.d.ts.map +1 -1
  66. package/lib/plugins/clappr-nerd-stats/ClapprNerdStats.js +20 -23
  67. package/lib/plugins/clappr-nerd-stats/NerdStats.d.ts +83 -0
  68. package/lib/plugins/clappr-nerd-stats/NerdStats.d.ts.map +1 -0
  69. package/lib/plugins/clappr-nerd-stats/NerdStats.js +339 -0
  70. package/lib/plugins/clappr-stats/ClapprStats.d.ts +27 -32
  71. package/lib/plugins/clappr-stats/ClapprStats.d.ts.map +1 -1
  72. package/lib/plugins/clappr-stats/ClapprStats.js +94 -202
  73. package/lib/plugins/clappr-stats/types.d.ts +65 -24
  74. package/lib/plugins/clappr-stats/types.d.ts.map +1 -1
  75. package/lib/plugins/clappr-stats/types.js +37 -2
  76. package/lib/plugins/clappr-stats/utils.d.ts.map +1 -1
  77. package/lib/plugins/clappr-stats/utils.js +1 -2
  78. package/lib/plugins/clips/Clips.d.ts +21 -16
  79. package/lib/plugins/clips/Clips.d.ts.map +1 -1
  80. package/lib/plugins/clips/Clips.js +96 -98
  81. package/lib/plugins/clips/types.d.ts +19 -0
  82. package/lib/plugins/clips/types.d.ts.map +1 -0
  83. package/lib/plugins/clips/types.js +1 -0
  84. package/lib/plugins/clips/utils.d.ts +4 -0
  85. package/lib/plugins/clips/utils.d.ts.map +1 -0
  86. package/lib/plugins/clips/utils.js +36 -0
  87. package/lib/plugins/media-control/MediaControl.d.ts +4 -7
  88. package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
  89. package/lib/plugins/media-control/MediaControl.js +19 -31
  90. package/lib/plugins/utils.d.ts +9 -1
  91. package/lib/plugins/utils.d.ts.map +1 -1
  92. package/lib/plugins/utils.js +9 -10
  93. package/lib/plugins/vast-ads/loaderxml.js +2 -2
  94. package/lib/testUtils.d.ts +2 -1
  95. package/lib/testUtils.d.ts.map +1 -1
  96. package/lib/testUtils.js +5 -7
  97. package/package.json +1 -1
  98. package/src/index.plugins.ts +2 -1
  99. package/src/playback/dash-playback/DashPlayback.ts +5 -8
  100. package/src/playback.types.ts +23 -8
  101. package/src/plugins/clappr-nerd-stats/{ClapprNerdStats.ts → NerdStats.ts} +25 -30
  102. package/src/plugins/clappr-stats/ClapprStats.ts +242 -306
  103. package/src/plugins/clappr-stats/__tests__/ClapprStats.test.ts +133 -0
  104. package/src/plugins/clappr-stats/types.ts +72 -25
  105. package/src/plugins/clappr-stats/utils.ts +1 -2
  106. package/src/plugins/clips/Clips.ts +116 -135
  107. package/src/plugins/clips/__tests__/Clips.test.ts +72 -0
  108. package/src/plugins/clips/__tests__/__snapshots__/Clips.test.ts.snap +14 -0
  109. package/src/plugins/clips/types.ts +22 -0
  110. package/src/plugins/clips/utils.ts +54 -0
  111. package/src/plugins/error-screen/__tests__/ErrorScreen.test.ts +3 -4
  112. package/src/plugins/level-selector/__tests__/__snapshots__/QualityLevels.test.ts.snap +18 -18
  113. package/src/plugins/media-control/MediaControl.ts +31 -58
  114. package/src/plugins/media-control/__tests__/__snapshots__/MediaControl.test.ts.snap +7 -35
  115. package/src/plugins/subtitles/__tests__/ClosedCaptions.test.ts +1 -0
  116. package/src/plugins/utils.ts +9 -7
  117. package/src/plugins/vast-ads/loaderxml.ts +2 -2
  118. package/src/testUtils.ts +5 -7
  119. package/temp/player.api.json +693 -471
  120. package/tsconfig.tsbuildinfo +1 -1
  121. package/docs/api/player.clapprstats.setupdatemetrics.md +0 -56
  122. package/docs/api/player.clipsplugin.gettext.md +0 -58
  123. package/docs/api/player.clipsplugin.md +0 -59
  124. package/docs/api/player.mediacontrol.handlecustomarea.md +0 -52
@@ -122,6 +122,339 @@
122
122
  .gplayer-lite-btn::-moz-focus-inner {
123
123
  border: 0;
124
124
  padding: 0;
125
+ }.dvr-controls[data-dvr] {
126
+ display: inline-block;
127
+ color: var(--player-dvr-color);
128
+ line-height: 32px;
129
+ font-size: 10px;
130
+ font-weight: bold;
131
+ margin-left: 6px;
132
+ height: 40px;
133
+ line-height: 40px;
134
+ margin-left: 0;
135
+ }
136
+ .dvr-controls[data-dvr] .live-info {
137
+ cursor: default;
138
+ text-transform: uppercase;
139
+ }
140
+ .dvr-controls[data-dvr] .live-info:before {
141
+ content: "";
142
+ display: inline-block;
143
+ position: relative;
144
+ width: 7px;
145
+ height: 7px;
146
+ border-radius: 3.5px;
147
+ margin-right: 3.5px;
148
+ background-color: var(--player-live-color);
149
+ }
150
+ .dvr-controls[data-dvr] .live-info.disabled {
151
+ opacity: 0.3;
152
+ }
153
+ .dvr-controls[data-dvr] .live-info.disabled:before {
154
+ background-color: var(--player-dvr-color);
155
+ }
156
+ .dvr-controls[data-dvr] .live-button {
157
+ cursor: pointer;
158
+ outline: none;
159
+ display: none;
160
+ border: 0;
161
+ color: var(--player-dvr-color);
162
+ background-color: transparent;
163
+ height: 32px;
164
+ padding: 0;
165
+ opacity: 0.7;
166
+ text-transform: uppercase;
167
+ transition: all 0.1s ease;
168
+ }
169
+ .dvr-controls[data-dvr] .live-button:before {
170
+ content: "";
171
+ display: inline-block;
172
+ position: relative;
173
+ width: 7px;
174
+ height: 7px;
175
+ border-radius: 3.5px;
176
+ margin-right: 3.5px;
177
+ background-color: var(--player-dvr-color);
178
+ }
179
+ .dvr-controls[data-dvr] .live-button:hover {
180
+ opacity: 1;
181
+ text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
182
+ }
183
+ .dvr-controls[data-dvr] .live-info {
184
+ font-size: 14px;
185
+ letter-spacing: 0.8px;
186
+ font-weight: 500;
187
+ color: #fffffe;
188
+ margin-left: 21px;
189
+ }
190
+ .dvr-controls[data-dvr] .live-info::before {
191
+ width: 10px;
192
+ height: 10px;
193
+ border-radius: 50%;
194
+ margin-right: 8px;
195
+ background-color: #ed4f4a;
196
+ }
197
+ .dvr-controls[data-dvr] .live-button {
198
+ height: 40px;
199
+ opacity: 1;
200
+ font-size: 14px;
201
+ letter-spacing: 0.8px;
202
+ font-weight: 500;
203
+ margin-left: 20px;
204
+ }
205
+ .dvr-controls[data-dvr] .live-button::before {
206
+ width: 10px;
207
+ height: 10px;
208
+ border-radius: 50%;
209
+ margin-right: 8px;
210
+ background-color: #cacaca;
211
+ }
212
+
213
+ .dvr .dvr-controls[data-dvr] .live-info {
214
+ display: none;
215
+ }
216
+ .dvr .dvr-controls[data-dvr] .live-button {
217
+ display: block;
218
+ }*, :focus, :visited {
219
+ outline: none !important;
220
+ }
221
+
222
+ .gear-wrapper .go-back {
223
+ font-weight: 600;
224
+ font-size: 14px;
225
+ line-height: 20px;
226
+ width: 100%;
227
+ text-align: left;
228
+ padding: 12px;
229
+ }
230
+ .gear-wrapper .go-back .arrow-left-icon {
231
+ float: left;
232
+ padding-top: 2px;
233
+ padding-right: 2px;
234
+ }
235
+ .gear-wrapper .go-back .arrow-left-icon svg {
236
+ height: 16px;
237
+ }
238
+ .gear-wrapper ul.gear-sub-menu {
239
+ width: 100%;
240
+ list-style-type: none;
241
+ min-width: 60px;
242
+ border-top: 2px solid rgb(36, 36, 36);
243
+ }
244
+ .gear-wrapper ul.gear-sub-menu li {
245
+ font-size: 12px;
246
+ text-align: left;
247
+ }
248
+ .gear-wrapper ul.gear-sub-menu li[data-title] {
249
+ background-color: #c3c2c2;
250
+ padding: 5px;
251
+ }
252
+ .gear-wrapper ul.gear-sub-menu li a {
253
+ display: block;
254
+ text-decoration: none;
255
+ height: 32px;
256
+ padding: 5px 10px;
257
+ line-height: 22px;
258
+ color: #fffffe;
259
+ }
260
+ .gear-wrapper ul.gear-sub-menu li a:hover {
261
+ color: white;
262
+ background-color: rgba(0, 0, 0, 0.4);
263
+ }
264
+ .gear-wrapper ul.gear-sub-menu li a:hover a {
265
+ color: white;
266
+ text-decoration: none;
267
+ }
268
+ .gear-wrapper ul.gear-sub-menu li a .check-icon {
269
+ width: 30px;
270
+ height: 20px;
271
+ float: left;
272
+ display: block;
273
+ }
274
+ .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
275
+ display: none;
276
+ }
277
+ .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
278
+ display: inline;
279
+ }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
280
+ order: 99;
281
+ height: 20px;
282
+ }
283
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
284
+ position: absolute;
285
+ right: 16px;
286
+ bottom: 52px;
287
+ width: 250px;
288
+ min-height: 48px;
289
+ z-index: 9999;
290
+ border-radius: 4px;
291
+ }
292
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
293
+ padding: 8px 0;
294
+ }
295
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
296
+ margin: 0;
297
+ text-align: left;
298
+ line-height: 22px;
299
+ padding: 5px 14px;
300
+ width: 250px;
301
+ font-size: 12px;
302
+ display: flex;
303
+ align-items: center;
304
+ justify-content: flex-start;
305
+ gap: 8px;
306
+ }
307
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
308
+ flex: 24px 0 0;
309
+ height: 24px;
310
+ }
311
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
312
+ visibility: hidden;
313
+ display: inline-block;
314
+ }
315
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
316
+ flex: 0 1 100%;
317
+ }
318
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
319
+ flex: 0 0 14px;
320
+ height: 24px;
321
+ }
322
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
323
+ flex: 1 0 auto;
324
+ }*,
325
+ :focus,
326
+ :visited {
327
+ outline: none !important;
328
+ }
329
+
330
+ .media-control-audiotracks {
331
+ position: relative;
332
+ }
333
+ .media-control-audiotracks button {
334
+ background-color: transparent;
335
+ color: #fff;
336
+ -webkit-font-smoothing: antialiased;
337
+ border: none;
338
+ cursor: pointer;
339
+ display: flex;
340
+ align-items: center;
341
+ padding: 0;
342
+ }
343
+ .media-control-audiotracks button .audio-text {
344
+ text-overflow: ellipsis;
345
+ overflow: hidden;
346
+ white-space: nowrap;
347
+ max-width: 100px;
348
+ background-color: transparent;
349
+ -webkit-font-smoothing: antialiased;
350
+ border: none;
351
+ cursor: pointer;
352
+ }
353
+ .media-control-audiotracks button:hover {
354
+ color: white;
355
+ }
356
+ .media-control-audiotracks button.changing {
357
+ animation: pulse 0.5s infinite alternate;
358
+ }
359
+ .media-control-audiotracks button span.audio-arrow {
360
+ width: 9px;
361
+ height: 6px;
362
+ margin-left: 5px;
363
+ }
364
+ .media-control-audiotracks .menu {
365
+ max-width: 114px;
366
+ list-style-type: none;
367
+ position: absolute;
368
+ background-color: rgba(74, 74, 74, 0.6);
369
+ border: none;
370
+ min-width: 60px;
371
+ border-radius: 4px;
372
+ bottom: 40px;
373
+ right: -2px;
374
+ }
375
+ .media-control-audiotracks .menu.hidden {
376
+ display: none;
377
+ }
378
+ .media-control-audiotracks li {
379
+ font-size: var(--font-size-media-controls-dropdown);
380
+ text-align: right;
381
+ height: 30px;
382
+ }
383
+ .media-control-audiotracks li[data-title] {
384
+ background-color: #c3c2c2;
385
+ padding: 5px;
386
+ }
387
+ .media-control-audiotracks li a {
388
+ display: block;
389
+ text-decoration: none;
390
+ text-overflow: ellipsis;
391
+ overflow: hidden;
392
+ white-space: nowrap;
393
+ height: 30px;
394
+ padding: 5px 10px;
395
+ color: #fffffe;
396
+ }
397
+ .media-control-audiotracks li a:hover {
398
+ text-decoration: none;
399
+ background-color: rgba(0, 0, 0, 0.4);
400
+ color: white;
401
+ }
402
+ .media-control-audiotracks li.current a {
403
+ color: #f00;
404
+ }
405
+ .media-control-audiotracks li:first-child a {
406
+ border-bottom-left-radius: 4px;
407
+ border-bottom-right-radius: 4px;
408
+ }
409
+ .media-control-audiotracks li:last-child a {
410
+ border-top-left-radius: 4px;
411
+ border-top-right-radius: 4px;
412
+ }
413
+
414
+ @keyframes pulse {
415
+ 0% {
416
+ color: #fff;
417
+ }
418
+ 50% {
419
+ color: #ff0101;
420
+ }
421
+ 100% {
422
+ color: #B80000;
423
+ }
424
+ }div.player-error-screen, [data-player] div.player-error-screen {
425
+ color: #CCCACA;
426
+ position: absolute;
427
+ top: 0;
428
+ height: 100%;
429
+ width: 100%;
430
+ background-color: rgba(0, 0, 0, 0.7);
431
+ z-index: 2000;
432
+ display: flex;
433
+ flex-direction: column;
434
+ justify-content: center;
435
+ }
436
+ div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
437
+ font-size: 14px;
438
+ color: #CCCACA;
439
+ margin-top: 45px;
440
+ }
441
+ div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
442
+ font-weight: bold;
443
+ line-height: 30px;
444
+ font-size: 18px;
445
+ }
446
+ div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
447
+ width: 90%;
448
+ margin: 0 auto;
449
+ }
450
+ div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
451
+ font-size: 13px;
452
+ margin-top: 15px;
453
+ }
454
+ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
455
+ cursor: pointer;
456
+ width: 30px;
457
+ margin: 15px auto 0;
125
458
  }:root {
126
459
  --primary-background-color: #000;
127
460
  --secondary-background-color: #262626;
@@ -470,103 +803,6 @@
470
803
  .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
471
804
  width: 25%;
472
805
  }
473
- }div.player-error-screen, [data-player] div.player-error-screen {
474
- color: #CCCACA;
475
- position: absolute;
476
- top: 0;
477
- height: 100%;
478
- width: 100%;
479
- background-color: rgba(0, 0, 0, 0.7);
480
- z-index: 2000;
481
- display: flex;
482
- flex-direction: column;
483
- justify-content: center;
484
- }
485
- div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
486
- font-size: 14px;
487
- color: #CCCACA;
488
- margin-top: 45px;
489
- }
490
- div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
491
- font-weight: bold;
492
- line-height: 30px;
493
- font-size: 18px;
494
- }
495
- div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
496
- width: 90%;
497
- margin: 0 auto;
498
- }
499
- div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
500
- font-size: 13px;
501
- margin-top: 15px;
502
- }
503
- div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
504
- cursor: pointer;
505
- width: 30px;
506
- margin: 15px auto 0;
507
- }*, :focus, :visited {
508
- outline: none !important;
509
- }
510
-
511
- .gear-wrapper .go-back {
512
- font-weight: 600;
513
- font-size: 14px;
514
- line-height: 20px;
515
- width: 100%;
516
- text-align: left;
517
- padding: 12px;
518
- }
519
- .gear-wrapper .go-back .arrow-left-icon {
520
- float: left;
521
- padding-top: 2px;
522
- padding-right: 2px;
523
- }
524
- .gear-wrapper .go-back .arrow-left-icon svg {
525
- height: 16px;
526
- }
527
- .gear-wrapper ul.gear-sub-menu {
528
- width: 100%;
529
- list-style-type: none;
530
- min-width: 60px;
531
- border-top: 2px solid rgb(36, 36, 36);
532
- }
533
- .gear-wrapper ul.gear-sub-menu li {
534
- font-size: 12px;
535
- text-align: left;
536
- }
537
- .gear-wrapper ul.gear-sub-menu li[data-title] {
538
- background-color: #c3c2c2;
539
- padding: 5px;
540
- }
541
- .gear-wrapper ul.gear-sub-menu li a {
542
- display: block;
543
- text-decoration: none;
544
- height: 32px;
545
- padding: 5px 10px;
546
- line-height: 22px;
547
- color: #fffffe;
548
- }
549
- .gear-wrapper ul.gear-sub-menu li a:hover {
550
- color: white;
551
- background-color: rgba(0, 0, 0, 0.4);
552
- }
553
- .gear-wrapper ul.gear-sub-menu li a:hover a {
554
- color: white;
555
- text-decoration: none;
556
- }
557
- .gear-wrapper ul.gear-sub-menu li a .check-icon {
558
- width: 30px;
559
- height: 20px;
560
- float: left;
561
- display: block;
562
- }
563
- .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
564
- display: none;
565
- }
566
- .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
567
- display: inline;
568
- }.clips.bar-container[data-seekbar] {
569
- clip-path: url("#myClip");
570
806
  }.context-menu {
571
807
  z-index: 999;
572
808
  position: absolute;
@@ -603,144 +839,77 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
603
839
  .context-menu .context-menu-list-item_icon {
604
840
  width: 20px;
605
841
  height: 20px;
606
- }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
607
- order: 99;
608
- height: 20px;
609
- }
610
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
842
+ }.big-mute-icon-wrapper[data-big-mute] {
611
843
  position: absolute;
612
- right: 16px;
613
- bottom: 52px;
614
- width: 250px;
615
- min-height: 48px;
616
- z-index: 9999;
617
- border-radius: 4px;
618
- }
619
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
620
- padding: 8px 0;
621
- }
622
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
623
- margin: 0;
624
- text-align: left;
625
- line-height: 22px;
626
- padding: 5px 14px;
627
- width: 250px;
628
- font-size: 12px;
844
+ z-index: 9998;
845
+ background-color: transparent;
629
846
  display: flex;
630
- align-items: center;
631
- justify-content: flex-start;
632
- gap: 8px;
633
- }
634
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
635
- flex: 24px 0 0;
636
- height: 24px;
637
- }
638
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
639
- visibility: hidden;
640
- display: inline-block;
641
- }
642
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
643
- flex: 0 1 100%;
644
- }
645
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
646
- flex: 0 0 14px;
647
- height: 24px;
648
- }
649
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
650
- flex: 1 0 auto;
651
- }.dvr-controls[data-dvr] {
652
- display: inline-block;
653
- color: var(--player-dvr-color);
654
- line-height: 32px;
655
- font-size: 10px;
656
- font-weight: bold;
657
- margin-left: 6px;
658
- height: 40px;
659
- line-height: 40px;
660
- margin-left: 0;
661
- }
662
- .dvr-controls[data-dvr] .live-info {
663
- cursor: default;
664
- text-transform: uppercase;
665
- }
666
- .dvr-controls[data-dvr] .live-info:before {
667
- content: "";
668
- display: inline-block;
669
- position: relative;
670
- width: 7px;
671
- height: 7px;
672
- border-radius: 3.5px;
673
- margin-right: 3.5px;
674
- background-color: var(--player-live-color);
675
- }
676
- .dvr-controls[data-dvr] .live-info.disabled {
677
- opacity: 0.3;
678
- }
679
- .dvr-controls[data-dvr] .live-info.disabled:before {
680
- background-color: var(--player-dvr-color);
847
+ justify-content: center;
848
+ width: 100%;
849
+ height: calc(100% - 50px);
850
+ margin: 0 auto;
851
+ opacity: 0.75;
852
+ transition: opacity 0.1s ease;
853
+ pointer-events: auto;
681
854
  }
682
- .dvr-controls[data-dvr] .live-button {
683
- cursor: pointer;
684
- outline: none;
855
+ .big-mute-icon-wrapper[data-big-mute].hide {
685
856
  display: none;
686
- border: 0;
687
- color: var(--player-dvr-color);
688
- background-color: transparent;
689
- height: 32px;
690
- padding: 0;
691
- opacity: 0.7;
692
- text-transform: uppercase;
693
- transition: all 0.1s ease;
694
857
  }
695
- .dvr-controls[data-dvr] .live-button:before {
696
- content: "";
697
- display: inline-block;
698
- position: relative;
699
- width: 7px;
700
- height: 7px;
701
- border-radius: 3.5px;
702
- margin-right: 3.5px;
703
- background-color: var(--player-dvr-color);
858
+ .big-mute-icon-wrapper[data-big-mute]:hover {
859
+ cursor: pointer;
704
860
  }
705
- .dvr-controls[data-dvr] .live-button:hover {
861
+
862
+ .big-mute-icon[data-big-mute-icon] {
863
+ display: flex;
864
+ align-items: center;
865
+ justify-content: center;
866
+ align-self: center;
867
+ width: 120px;
868
+ height: 120px;
869
+ border: 2px solid white;
870
+ border-radius: 50%;
871
+ filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
872
+ filter: alpha(opacity=60);
706
873
  opacity: 1;
707
- text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
874
+ box-shadow: 0 0 1px 0 white;
875
+ background: rgba(240, 243, 247, 0.9411764706);
876
+ z-index: 10000;
708
877
  }
709
- .dvr-controls[data-dvr] .live-info {
710
- font-size: 14px;
711
- letter-spacing: 0.8px;
712
- font-weight: 500;
713
- color: #fffffe;
714
- margin-left: 21px;
878
+ .big-mute-icon[data-big-mute-icon] svg {
879
+ margin-left: 5px;
880
+ width: 80px;
881
+ height: 80px;
715
882
  }
716
- .dvr-controls[data-dvr] .live-info::before {
717
- width: 10px;
718
- height: 10px;
719
- border-radius: 50%;
720
- margin-right: 8px;
721
- background-color: #ed4f4a;
883
+ .big-mute-icon[data-big-mute-icon] svg path {
884
+ fill: #1f1e1e !important;
722
885
  }
723
- .dvr-controls[data-dvr] .live-button {
724
- height: 40px;
725
- opacity: 1;
726
- font-size: 14px;
727
- letter-spacing: 0.8px;
728
- font-weight: 500;
729
- margin-left: 20px;
886
+ .big-mute-icon[data-big-mute-icon]:hover {
887
+ background: rgba(240, 243, 247, 0.8784313725);
730
888
  }
731
- .dvr-controls[data-dvr] .live-button::before {
732
- width: 10px;
733
- height: 10px;
734
- border-radius: 50%;
735
- margin-right: 8px;
736
- background-color: #cacaca;
889
+ .big-mute-icon[data-big-mute-icon]:hover svg path {
890
+ fill: #151515 !important;
891
+ }@charset "UTF-8";
892
+ .media-control-clips {
893
+ display: flex;
894
+ gap: 6px;
737
895
  }
738
-
739
- .dvr .dvr-controls[data-dvr] .live-info {
740
- display: none;
896
+ .media-control-clips .media-clip-text {
897
+ text-overflow: ellipsis;
898
+ white-space: nowrap;
899
+ overflow: hidden;
900
+ display: inline-block;
901
+ text-overflow: ellipsis;
902
+ color: white;
903
+ cursor: default;
904
+ line-height: var(--bottom-panel);
905
+ position: relative;
741
906
  }
742
- .dvr .dvr-controls[data-dvr] .live-button {
743
- display: block;
907
+ .media-control-clips .media-clip-text::before {
908
+ content: "•";
909
+ padding-right: 6px;
910
+ }
911
+ .media-control-clips .media-clip-text {
912
+ max-width: 100px;
744
913
  }.player-poster[data-poster] {
745
914
  display: flex;
746
915
  justify-content: center;
@@ -775,6 +944,12 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
775
944
  }
776
945
  .player-poster[data-poster] .play-wrapper[data-poster] svg path {
777
946
  fill: #fff;
947
+ }.quality-levels li.disabled {
948
+ opacity: 0.5;
949
+ pointer-events: none;
950
+ }
951
+ .quality-levels li.current {
952
+ background-color: #000;
778
953
  }[data-player] {
779
954
  --bottom-panel: 40px;
780
955
  }
@@ -989,12 +1164,13 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
989
1164
  height: 17px;
990
1165
  }
991
1166
  .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .media-clip-container .media-clip-text,
992
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .media-clip-container .media-clip-point {
1167
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .media-control-clips .media-clip-text {
993
1168
  line-height: 33px;
994
1169
  font-size: 11px;
995
1170
  }
996
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .media-clip-container .media-clip-text {
997
- max-width: calc(80% - 210px);
1171
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .media-clip-container .media-clip-text,
1172
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .media-control-clips .media-clip-text {
1173
+ max-width: 50px;
998
1174
  }
999
1175
  .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .drawer-container[data-volume] {
1000
1176
  height: 32px;
@@ -1165,27 +1341,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1165
1341
  content: "|";
1166
1342
  margin-right: 7px;
1167
1343
  }
1168
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .media-clip-container {
1169
- display: none;
1170
- }
1171
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .media-clip-container .media-clip-text,
1172
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .media-clip-container .media-clip-point {
1173
- text-overflow: ellipsis;
1174
- white-space: nowrap;
1175
- overflow: hidden;
1176
- display: inline-block;
1177
- float: left;
1178
- color: white;
1179
- cursor: default;
1180
- line-height: var(--bottom-panel);
1181
- position: relative;
1182
- }
1183
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .media-clip-container .media-clip-point {
1184
- margin-right: 6px;
1185
- }
1186
- .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .media-clip-container .media-clip-text {
1187
- max-width: calc(80% - 240px);
1188
- }
1189
1344
  .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .bar-container[data-seekbar] {
1190
1345
  position: absolute;
1191
1346
  top: -11px;
@@ -1412,160 +1567,131 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1412
1567
  }
1413
1568
  .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
1414
1569
  display: none !important;
1415
- }.seek-time[data-seek-time] {
1416
- position: absolute;
1417
- white-space: nowrap;
1418
- height: 20px;
1419
- line-height: 20px;
1420
- font-size: 0;
1421
- left: -100%;
1422
- bottom: 55px;
1423
- background-color: rgba(2, 2, 2, 0.5);
1424
- z-index: 9999;
1425
- transition: opacity 0.1s ease;
1426
- }
1427
- .seek-time[data-seek-time].hidden[data-seek-time] {
1428
- opacity: 0;
1429
- }
1430
- .seek-time[data-seek-time] [data-seek-time] {
1431
- display: inline-block;
1432
- color: white;
1433
- font-size: 10px;
1434
- padding-left: 7px;
1435
- padding-right: 7px;
1436
- vertical-align: top;
1437
- }
1438
- .seek-time[data-seek-time] [data-duration] {
1439
- display: inline-block;
1440
- color: rgba(255, 255, 255, 0.5);
1441
- font-size: 10px;
1442
- padding-right: 7px;
1443
- vertical-align: top;
1444
- }
1445
- .seek-time[data-seek-time] [data-duration]::before {
1446
- content: "|";
1447
- margin-right: 7px;
1448
- }*,
1449
- :focus,
1450
- :visited {
1451
- outline: none !important;
1570
+ }.share_plugin[data-share] {
1571
+ pointer-events: auto;
1572
+ z-index: 5;
1573
+ font-family: Roboto, "Open Sans", Arial, sans-serif !important;
1452
1574
  }
1453
-
1454
- .media-control-audiotracks {
1455
- position: relative;
1575
+ .share_plugin[data-share].share-hide .share-button-container {
1576
+ right: -50px;
1456
1577
  }
1457
- .media-control-audiotracks button {
1458
- background-color: transparent;
1459
- color: #fff;
1460
- -webkit-font-smoothing: antialiased;
1461
- border: none;
1578
+ .share_plugin[data-share] .share-button-container {
1462
1579
  cursor: pointer;
1463
- display: flex;
1464
- align-items: center;
1465
- padding: 0;
1580
+ width: 36px;
1581
+ height: 36px;
1582
+ background-color: rgba(74, 74, 74, 0.6);
1583
+ border-radius: 4px;
1584
+ position: absolute;
1585
+ right: 10px;
1586
+ top: 10px;
1587
+ padding-top: 6px;
1588
+ transition: all 0.3s ease-out;
1466
1589
  }
1467
- .media-control-audiotracks button .audio-text {
1468
- text-overflow: ellipsis;
1469
- overflow: hidden;
1470
- white-space: nowrap;
1471
- max-width: 100px;
1590
+ .share_plugin[data-share] .share-button-container button[data-share-button] {
1472
1591
  background-color: transparent;
1473
- -webkit-font-smoothing: antialiased;
1474
- border: none;
1592
+ border: 0;
1593
+ margin: 0 6px;
1594
+ padding: 0;
1475
1595
  cursor: pointer;
1596
+ display: inline-block;
1597
+ width: 19px;
1598
+ height: 20px;
1476
1599
  }
1477
- .media-control-audiotracks button:hover {
1478
- color: white;
1479
- }
1480
- .media-control-audiotracks button.changing {
1481
- animation: pulse 0.5s infinite alternate;
1600
+ .share_plugin[data-share] .share-container {
1601
+ pointer-events: auto;
1602
+ position: absolute;
1603
+ width: 280px;
1604
+ background-color: white;
1605
+ transform: translate(0, 50%);
1606
+ transform: translate(-50%, -50%);
1607
+ left: 50%;
1608
+ /* margin-left: -140px; */
1609
+ top: calc(50% - 20px);
1610
+ /* margin-top: -170px; */
1482
1611
  }
1483
- .media-control-audiotracks button span.audio-arrow {
1484
- width: 9px;
1485
- height: 6px;
1486
- margin-left: 5px;
1612
+ .share_plugin[data-share] .share-container .share-container-header {
1613
+ text-align: left;
1614
+ border-bottom: 1px solid rgba(155, 155, 155, 0.25);
1487
1615
  }
1488
- .media-control-audiotracks .menu {
1489
- max-width: 114px;
1490
- list-style-type: none;
1491
- position: absolute;
1492
- background-color: rgba(74, 74, 74, 0.6);
1493
- border: none;
1494
- min-width: 60px;
1495
- border-radius: 4px;
1496
- bottom: 40px;
1497
- right: -2px;
1616
+ .share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
1617
+ display: inline-block;
1618
+ font-size: 16px;
1619
+ margin: 5px;
1498
1620
  }
1499
- .media-control-audiotracks .menu.hidden {
1500
- display: none;
1621
+ .share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
1622
+ display: inline-block;
1623
+ width: 24px;
1624
+ float: right;
1625
+ margin: 5px;
1626
+ cursor: pointer;
1501
1627
  }
1502
- .media-control-audiotracks li {
1503
- font-size: var(--font-size-media-controls-dropdown);
1504
- text-align: right;
1505
- height: 30px;
1628
+ .share_plugin[data-share] .share-container .share-container-main {
1629
+ margin-bottom: 8px;
1506
1630
  }
1507
- .media-control-audiotracks li[data-title] {
1508
- background-color: #c3c2c2;
1631
+ .share_plugin[data-share] .share-container .share-container-main > div {
1632
+ text-align: left;
1633
+ font-size: 14px;
1509
1634
  padding: 5px;
1510
1635
  }
1511
- .media-control-audiotracks li a {
1512
- display: block;
1513
- text-decoration: none;
1514
- text-overflow: ellipsis;
1636
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--link, .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
1515
1637
  overflow: hidden;
1516
- white-space: nowrap;
1517
- height: 30px;
1518
- padding: 5px 10px;
1519
- color: #fffffe;
1638
+ text-overflow: ellipsis;
1639
+ color: #818181;
1640
+ border: solid 1px #d3d3d3;
1641
+ width: calc(100% - 10px);
1642
+ padding: 5px;
1520
1643
  }
1521
- .media-control-audiotracks li a:hover {
1522
- text-decoration: none;
1523
- background-color: rgba(0, 0, 0, 0.4);
1524
- color: white;
1644
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
1645
+ max-height: 90px;
1646
+ resize: none;
1525
1647
  }
1526
- .media-control-audiotracks li.current a {
1527
- color: #f00;
1648
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
1649
+ width: 32px;
1650
+ display: inline-block;
1651
+ margin-right: 5px;
1652
+ cursor: pointer;
1653
+ }.media-control-pip {
1654
+ order: 95;
1655
+ display: flex;
1528
1656
  }
1529
- .media-control-audiotracks li:first-child a {
1530
- border-bottom-left-radius: 4px;
1531
- border-bottom-right-radius: 4px;
1657
+ .media-control-pip button {
1658
+ height: 20px;
1532
1659
  }
1533
- .media-control-audiotracks li:last-child a {
1534
- border-top-left-radius: 4px;
1535
- border-top-right-radius: 4px;
1660
+ .media-control-pip button svg {
1661
+ height: 20px;
1662
+ }.seek-time[data-seek-time] {
1663
+ position: absolute;
1664
+ white-space: nowrap;
1665
+ height: 20px;
1666
+ line-height: 20px;
1667
+ font-size: 0;
1668
+ left: -100%;
1669
+ bottom: 55px;
1670
+ background-color: rgba(2, 2, 2, 0.5);
1671
+ z-index: 9999;
1672
+ transition: opacity 0.1s ease;
1536
1673
  }
1537
-
1538
- @keyframes pulse {
1539
- 0% {
1540
- color: #fff;
1541
- }
1542
- 50% {
1543
- color: #ff0101;
1544
- }
1545
- 100% {
1546
- color: #B80000;
1547
- }
1548
- }.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
1549
- height: 0;
1674
+ .seek-time[data-seek-time].hidden[data-seek-time] {
1675
+ opacity: 0;
1550
1676
  }
1551
-
1552
- .skip_time_plugin[data-skip-time] {
1553
- position: absolute;
1554
- width: 100%;
1555
- height: calc(100% - 50px);
1556
- z-index: 9998;
1557
- background-color: transparent;
1558
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1677
+ .seek-time[data-seek-time] [data-seek-time] {
1678
+ display: inline-block;
1679
+ color: white;
1680
+ font-size: 10px;
1681
+ padding-left: 7px;
1682
+ padding-right: 7px;
1683
+ vertical-align: top;
1559
1684
  }
1560
- .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
1561
- width: 100%;
1562
- height: 100%;
1563
- display: flex;
1564
- justify-content: space-between;
1685
+ .seek-time[data-seek-time] [data-duration] {
1686
+ display: inline-block;
1687
+ color: rgba(255, 255, 255, 0.5);
1688
+ font-size: 10px;
1689
+ padding-right: 7px;
1690
+ vertical-align: top;
1565
1691
  }
1566
- .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
1567
- width: 33.3%;
1568
- height: 100%;
1692
+ .seek-time[data-seek-time] [data-duration]::before {
1693
+ content: "|";
1694
+ margin-right: 7px;
1569
1695
  }*, :focus, :visited {
1570
1696
  outline: none !important;
1571
1697
  }
@@ -1714,61 +1840,44 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1714
1840
  100% {
1715
1841
  color: #B80000;
1716
1842
  }
1717
- }.big-mute-icon-wrapper[data-big-mute] {
1843
+ }.spinner-three-bounce[data-spinner] {
1718
1844
  position: absolute;
1719
- z-index: 9998;
1720
- background-color: transparent;
1721
- display: flex;
1722
- justify-content: center;
1723
- width: 100%;
1724
- height: calc(100% - 50px);
1845
+ width: 70px;
1846
+ text-align: center;
1847
+ z-index: 999;
1848
+ left: 0;
1849
+ right: 0;
1725
1850
  margin: 0 auto;
1726
- opacity: 0.75;
1727
- transition: opacity 0.1s ease;
1728
- pointer-events: auto;
1729
- }
1730
- .big-mute-icon-wrapper[data-big-mute].hide {
1731
- display: none;
1732
- }
1733
- .big-mute-icon-wrapper[data-big-mute]:hover {
1734
- cursor: pointer;
1735
- }
1736
-
1737
- .big-mute-icon[data-big-mute-icon] {
1738
- display: flex;
1739
- align-items: center;
1740
- justify-content: center;
1741
- align-self: center;
1742
- width: 120px;
1743
- height: 120px;
1744
- border: 2px solid white;
1745
- border-radius: 50%;
1746
- filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
1747
- filter: alpha(opacity=60);
1748
- opacity: 1;
1749
- box-shadow: 0 0 1px 0 white;
1750
- background: rgba(240, 243, 247, 0.9411764706);
1751
- z-index: 10000;
1752
- }
1753
- .big-mute-icon[data-big-mute-icon] svg {
1754
- margin-left: 5px;
1755
- width: 80px;
1756
- height: 80px;
1851
+ margin-left: auto;
1852
+ margin-right: auto;
1853
+ /* center vertically */
1854
+ top: 50%;
1855
+ transform: translateY(-50%);
1757
1856
  }
1758
- .big-mute-icon[data-big-mute-icon] svg path {
1759
- fill: #1f1e1e !important;
1857
+ .spinner-three-bounce[data-spinner] > div {
1858
+ width: 18px;
1859
+ height: 18px;
1860
+ background-color: #FFF;
1861
+ border-radius: 100%;
1862
+ display: inline-block;
1863
+ animation: bouncedelay 1.4s infinite ease-in-out;
1864
+ /* Prevent first frame from flickering when animation starts */
1865
+ animation-fill-mode: both;
1760
1866
  }
1761
- .big-mute-icon[data-big-mute-icon]:hover {
1762
- background: rgba(240, 243, 247, 0.8784313725);
1867
+ .spinner-three-bounce[data-spinner] [data-bounce1] {
1868
+ animation-delay: -0.32s;
1763
1869
  }
1764
- .big-mute-icon[data-big-mute-icon]:hover svg path {
1765
- fill: #151515 !important;
1766
- }.quality-levels li.disabled {
1767
- opacity: 0.5;
1768
- pointer-events: none;
1870
+ .spinner-three-bounce[data-spinner] [data-bounce2] {
1871
+ animation-delay: -0.16s;
1769
1872
  }
1770
- .quality-levels li.current {
1771
- background-color: #000;
1873
+
1874
+ @keyframes bouncedelay {
1875
+ 0%, 80%, 100% {
1876
+ transform: scale(0);
1877
+ }
1878
+ 40% {
1879
+ transform: scale(1);
1880
+ }
1772
1881
  }*,
1773
1882
  :focus,
1774
1883
  :visited {
@@ -1843,53 +1952,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1843
1952
  .ios-fullscreen::cue {
1844
1953
  visibility: visible !important;
1845
1954
  font-size: 1em !important;
1846
- }.media-control-pip {
1847
- order: 95;
1848
- display: flex;
1849
- }
1850
- .media-control-pip button {
1851
- height: 20px;
1852
- }
1853
- .media-control-pip button svg {
1854
- height: 20px;
1855
- }.spinner-three-bounce[data-spinner] {
1856
- position: absolute;
1857
- width: 70px;
1858
- text-align: center;
1859
- z-index: 999;
1860
- left: 0;
1861
- right: 0;
1862
- margin: 0 auto;
1863
- margin-left: auto;
1864
- margin-right: auto;
1865
- /* center vertically */
1866
- top: 50%;
1867
- transform: translateY(-50%);
1868
- }
1869
- .spinner-three-bounce[data-spinner] > div {
1870
- width: 18px;
1871
- height: 18px;
1872
- background-color: #FFF;
1873
- border-radius: 100%;
1874
- display: inline-block;
1875
- animation: bouncedelay 1.4s infinite ease-in-out;
1876
- /* Prevent first frame from flickering when animation starts */
1877
- animation-fill-mode: both;
1878
- }
1879
- .spinner-three-bounce[data-spinner] [data-bounce1] {
1880
- animation-delay: -0.32s;
1881
- }
1882
- .spinner-three-bounce[data-spinner] [data-bounce2] {
1883
- animation-delay: -0.16s;
1884
- }
1885
-
1886
- @keyframes bouncedelay {
1887
- 0%, 80%, 100% {
1888
- transform: scale(0);
1889
- }
1890
- 40% {
1891
- transform: scale(1);
1892
- }
1893
1955
  }.scrub-thumbnails {
1894
1956
  position: absolute;
1895
1957
  bottom: 52px;
@@ -1951,89 +2013,27 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1951
2013
  }
1952
2014
  .scrub-thumbnails .backdrop .carousel img {
1953
2015
  width: auto;
1954
- }.share_plugin[data-share] {
1955
- pointer-events: auto;
1956
- z-index: 5;
1957
- font-family: Roboto, "Open Sans", Arial, sans-serif !important;
1958
- }
1959
- .share_plugin[data-share].share-hide .share-button-container {
1960
- right: -50px;
2016
+ }.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
2017
+ height: 0;
1961
2018
  }
1962
- .share_plugin[data-share] .share-button-container {
1963
- cursor: pointer;
1964
- width: 36px;
1965
- height: 36px;
1966
- background-color: rgba(74, 74, 74, 0.6);
1967
- border-radius: 4px;
2019
+
2020
+ .skip_time_plugin[data-skip-time] {
1968
2021
  position: absolute;
1969
- right: 10px;
1970
- top: 10px;
1971
- padding-top: 6px;
1972
- transition: all 0.3s ease-out;
1973
- }
1974
- .share_plugin[data-share] .share-button-container button[data-share-button] {
2022
+ width: 100%;
2023
+ height: calc(100% - 50px);
2024
+ z-index: 9998;
1975
2025
  background-color: transparent;
1976
- border: 0;
1977
- margin: 0 6px;
1978
- padding: 0;
1979
- cursor: pointer;
1980
- display: inline-block;
1981
- width: 19px;
1982
- height: 20px;
1983
- }
1984
- .share_plugin[data-share] .share-container {
1985
- pointer-events: auto;
1986
- position: absolute;
1987
- width: 280px;
1988
- background-color: white;
1989
- transform: translate(0, 50%);
1990
- transform: translate(-50%, -50%);
1991
- left: 50%;
1992
- /* margin-left: -140px; */
1993
- top: calc(50% - 20px);
1994
- /* margin-top: -170px; */
1995
- }
1996
- .share_plugin[data-share] .share-container .share-container-header {
1997
- text-align: left;
1998
- border-bottom: 1px solid rgba(155, 155, 155, 0.25);
1999
- }
2000
- .share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
2001
- display: inline-block;
2002
- font-size: 16px;
2003
- margin: 5px;
2004
- }
2005
- .share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
2006
- display: inline-block;
2007
- width: 24px;
2008
- float: right;
2009
- margin: 5px;
2010
- cursor: pointer;
2011
- }
2012
- .share_plugin[data-share] .share-container .share-container-main {
2013
- margin-bottom: 8px;
2014
- }
2015
- .share_plugin[data-share] .share-container .share-container-main > div {
2016
- text-align: left;
2017
- font-size: 14px;
2018
- padding: 5px;
2019
- }
2020
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--link, .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
2021
- overflow: hidden;
2022
- text-overflow: ellipsis;
2023
- color: #818181;
2024
- border: solid 1px #d3d3d3;
2025
- width: calc(100% - 10px);
2026
- padding: 5px;
2026
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
2027
2027
  }
2028
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
2029
- max-height: 90px;
2030
- resize: none;
2028
+ .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
2029
+ width: 100%;
2030
+ height: 100%;
2031
+ display: flex;
2032
+ justify-content: space-between;
2031
2033
  }
2032
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
2033
- width: 32px;
2034
- display: inline-block;
2035
- margin-right: 5px;
2036
- cursor: pointer;
2034
+ .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
2035
+ width: 33.3%;
2036
+ height: 100%;
2037
2037
  }.player-logo[data-logo] {
2038
2038
  position: absolute;
2039
2039
  z-index: 2;