@gcorevideo/player 2.26.1 → 2.26.4

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