@gcorevideo/player 2.22.5 → 2.22.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/assets/media-control/media-control.ejs +1 -2
  2. package/dist/core.js +7 -2
  3. package/dist/index.css +881 -881
  4. package/dist/index.js +132 -91
  5. package/dist/plugins/index.css +418 -418
  6. package/dist/plugins/index.js +123 -86
  7. package/lib/playback/dash-playback/DashPlayback.d.ts.map +1 -1
  8. package/lib/playback/dash-playback/DashPlayback.js +6 -1
  9. package/lib/plugins/bottom-gear/BottomGear.d.ts.map +1 -1
  10. package/lib/plugins/bottom-gear/BottomGear.js +2 -2
  11. package/lib/plugins/media-control/MediaControl.d.ts +37 -6
  12. package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
  13. package/lib/plugins/media-control/MediaControl.js +54 -36
  14. package/lib/plugins/playback-rate/PlaybackRate.d.ts +5 -4
  15. package/lib/plugins/playback-rate/PlaybackRate.d.ts.map +1 -1
  16. package/lib/plugins/playback-rate/PlaybackRate.js +46 -24
  17. package/lib/plugins/subtitles/ClosedCaptions.js +1 -1
  18. package/lib/plugins/utils/fullscreen.d.ts +4 -0
  19. package/lib/plugins/utils/fullscreen.d.ts.map +1 -0
  20. package/lib/plugins/utils/fullscreen.js +30 -0
  21. package/lib/plugins/utils.d.ts +0 -1
  22. package/lib/plugins/utils.d.ts.map +1 -1
  23. package/lib/plugins/utils.js +0 -28
  24. package/lib/utils/fullscreen.d.ts +3 -0
  25. package/lib/utils/fullscreen.d.ts.map +1 -0
  26. package/lib/utils/fullscreen.js +2 -0
  27. package/package.json +1 -1
  28. package/src/playback/dash-playback/DashPlayback.ts +6 -4
  29. package/src/plugins/bottom-gear/BottomGear.ts +2 -2
  30. package/src/plugins/bottom-gear/__tests__/BottomGear.test.ts +15 -3
  31. package/src/plugins/media-control/MediaControl.ts +111 -62
  32. package/src/plugins/media-control/__tests__/MediaControl.test.ts +118 -8
  33. package/src/plugins/media-control/__tests__/__snapshots__/MediaControl.test.ts.snap +149 -5
  34. package/src/plugins/playback-rate/PlaybackRate.ts +48 -26
  35. package/src/plugins/playback-rate/__tests__/PlaybackRate.test.ts +125 -55
  36. package/src/plugins/playback-rate/__tests__/__snapshots__/PlaybackRate.test.ts.snap +1 -1
  37. package/src/plugins/subtitles/ClosedCaptions.ts +1 -1
  38. package/src/plugins/utils/fullscreen.ts +34 -0
  39. package/src/plugins/utils.ts +0 -31
  40. package/tsconfig.tsbuildinfo +1 -1
package/dist/index.css CHANGED
@@ -122,544 +122,477 @@
122
122
  .gplayer-lite-btn::-moz-focus-inner {
123
123
  border: 0;
124
124
  padding: 0;
125
- }div.player-error-screen, [data-player] div.player-error-screen {
126
- color: #CCCACA;
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[data-clappr-nerd-stats] .stats-box {
139
+ position: absolute;
140
+ display: inline-block;
141
+ bottom: 52px;
142
+ right: 16px;
143
+ padding: 0 10px 12px;
144
+ margin: 0;
145
+ line-height: 20px;
146
+ font-size: 12px;
147
+ font-weight: 500;
148
+ background: var(--primary-background-color);
149
+ color: #fff;
150
+ z-index: 20000;
151
+ overflow: auto;
152
+ max-height: calc(100vh - 60px);
153
+ max-width: calc(100vw - 10px);
154
+ }
155
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top {
127
156
  position: absolute;
128
157
  top: 0;
129
- height: 100%;
158
+ left: 0;
159
+ z-index: 99990;
130
160
  width: 100%;
131
- background-color: rgba(0, 0, 0, 0.7);
132
- z-index: 2000;
133
- display: flex;
134
- flex-direction: column;
135
- justify-content: center;
161
+ height: 32px;
162
+ background: var(--primary-background-color);
136
163
  }
137
- div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
138
- font-size: 14px;
139
- color: #CCCACA;
140
- margin-top: 45px;
164
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button {
165
+ float: right;
166
+ margin-right: 12px;
167
+ margin-top: 10px;
168
+ display: block;
169
+ width: 12px;
170
+ height: 12px;
141
171
  }
142
- div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
143
- font-weight: bold;
144
- line-height: 30px;
145
- font-size: 18px;
172
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button svg path {
173
+ fill: var(--primary-text-color);
146
174
  }
147
- div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
148
- width: 90%;
149
- margin: 0 auto;
175
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button:hover svg path {
176
+ fill: var(--hover-text-color);
150
177
  }
151
- div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
152
- font-size: 13px;
153
- margin-top: 15px;
178
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-main {
179
+ overflow: hidden;
180
+ margin-top: 44px;
154
181
  }
155
- div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
156
- cursor: pointer;
157
- width: 30px;
158
- margin: 15px auto 0;
159
- }.dvr-controls[data-dvr] {
160
- display: inline-block;
161
- color: var(--player-dvr-color);
162
- line-height: 32px;
163
- font-size: 10px;
164
- font-weight: bold;
165
- margin-left: 6px;
166
- height: 40px;
167
- line-height: 40px;
168
- margin-left: 0;
182
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.wide {
183
+ width: 820px;
169
184
  }
170
- .dvr-controls[data-dvr] .live-info {
171
- cursor: default;
172
- text-transform: uppercase;
185
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul, .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box li {
186
+ list-style-type: none;
173
187
  }
174
- .dvr-controls[data-dvr] .live-info:before {
175
- content: "";
176
- display: inline-block;
177
- position: relative;
178
- width: 7px;
179
- height: 7px;
180
- border-radius: 3.5px;
181
- margin-right: 3.5px;
182
- background-color: var(--player-live-color);
188
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul div, .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box li div {
189
+ padding-left: 2px;
190
+ padding-right: 2px;
191
+ background: var(--primary-background-color);
183
192
  }
184
- .dvr-controls[data-dvr] .live-info.disabled {
185
- opacity: 0.3;
193
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
194
+ display: inline-block;
195
+ float: left;
196
+ padding: 5px;
197
+ width: 200px;
186
198
  }
187
- .dvr-controls[data-dvr] .live-info.disabled:before {
188
- background-color: var(--player-dvr-color);
199
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li {
200
+ position: relative;
201
+ padding: 0 5px;
202
+ text-align: left;
189
203
  }
190
- .dvr-controls[data-dvr] .live-button {
191
- cursor: pointer;
192
- outline: none;
193
- display: none;
194
- border: 0;
195
- color: var(--player-dvr-color);
196
- background-color: transparent;
197
- height: 32px;
204
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.canvas-wrapper {
198
205
  padding: 0;
199
- opacity: 0.7;
200
- text-transform: uppercase;
201
- transition: all 0.1s ease;
202
- }
203
- .dvr-controls[data-dvr] .live-button:before {
204
- content: "";
205
- display: inline-block;
206
- position: relative;
207
- width: 7px;
208
- height: 7px;
209
- border-radius: 3.5px;
210
- margin-right: 3.5px;
211
- background-color: var(--player-dvr-color);
212
206
  }
213
- .dvr-controls[data-dvr] .live-button:hover {
214
- opacity: 1;
215
- text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
207
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.canvas-wrapper canvas {
208
+ width: 100%;
216
209
  }
217
- .dvr-controls[data-dvr] .live-info {
218
- font-size: 14px;
219
- letter-spacing: 0.8px;
220
- font-weight: 500;
221
- color: #fffffe;
222
- margin-left: 21px;
210
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li:nth-child(2n) {
211
+ background: var(--secondary-background-color);
223
212
  }
224
- .dvr-controls[data-dvr] .live-info::before {
225
- width: 10px;
226
- height: 10px;
227
- border-radius: 50%;
228
- margin-right: 8px;
229
- background-color: #ed4f4a;
213
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li:nth-child(2n) div {
214
+ background: var(--secondary-background-color);
230
215
  }
231
- .dvr-controls[data-dvr] .live-button {
232
- height: 40px;
233
- opacity: 1;
216
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.title {
217
+ text-align: center;
218
+ font-weight: bold;
219
+ padding-bottom: 4px;
234
220
  font-size: 14px;
235
- letter-spacing: 0.8px;
236
- font-weight: 500;
237
- margin-left: 20px;
238
221
  }
239
- .dvr-controls[data-dvr] .live-button::before {
240
- width: 10px;
241
- height: 10px;
242
- border-radius: 50%;
243
- margin-right: 8px;
244
- background-color: #cacaca;
222
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li div {
223
+ margin: 0;
224
+ position: absolute;
225
+ right: 0;
226
+ top: 0;
245
227
  }
246
228
 
247
- .dvr .dvr-controls[data-dvr] .live-info {
248
- display: none;
229
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow {
230
+ width: 250px;
249
231
  }
250
- .dvr .dvr-controls[data-dvr] .live-button {
251
- display: block;
252
- }*,
253
- :focus,
254
- :visited {
255
- outline: none !important;
232
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow ul {
233
+ width: 100%;
256
234
  }
257
-
258
- .media-control-audiotracks {
259
- position: relative;
235
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary {
236
+ padding: 0 5px;
237
+ height: auto;
260
238
  }
261
- .media-control-audiotracks button {
262
- background-color: transparent;
263
- color: #fff;
264
- -webkit-font-smoothing: antialiased;
265
- border: none;
266
- cursor: pointer;
267
- display: flex;
268
- align-items: center;
269
- padding: 0;
239
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block {
240
+ width: 100%;
241
+ flex-direction: column;
270
242
  }
271
- .media-control-audiotracks button .audio-text {
272
- text-overflow: ellipsis;
273
- overflow: hidden;
274
- white-space: nowrap;
275
- max-width: 100px;
276
- background-color: transparent;
277
- -webkit-font-smoothing: antialiased;
278
- border: none;
279
- cursor: pointer;
243
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock {
244
+ width: 100%;
280
245
  }
281
- .media-control-audiotracks button:hover {
282
- color: white;
246
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock-content {
247
+ width: 100%;
283
248
  }
284
- .media-control-audiotracks button.changing {
285
- animation: pulse 0.5s infinite alternate;
249
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-header {
250
+ padding-top: 12px;
251
+ height: 38px;
252
+ text-align: center;
286
253
  }
287
- .media-control-audiotracks button span.audio-arrow {
288
- width: 9px;
289
- height: 6px;
290
- margin-left: 5px;
254
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-quality-header {
255
+ text-align: center;
291
256
  }
292
- .media-control-audiotracks .menu {
293
- max-width: 114px;
294
- list-style-type: none;
295
- position: absolute;
296
- background-color: rgba(74, 74, 74, 0.6);
297
- border: none;
298
- min-width: 60px;
299
- border-radius: 4px;
300
- bottom: 40px;
301
- right: -2px;
257
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer {
258
+ height: 80px;
302
259
  }
303
- .media-control-audiotracks .menu.hidden {
304
- display: none;
260
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer-about-link {
261
+ bottom: 0;
262
+ left: 0;
305
263
  }
306
- .media-control-audiotracks li {
307
- font-size: var(--font-size-media-controls-dropdown);
308
- text-align: right;
309
- height: 30px;
264
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer .speedtest-footer-refresh {
265
+ inset: 50% auto auto 50%;
266
+ transform: translate(-50%, -50%);
310
267
  }
311
- .media-control-audiotracks li[data-title] {
312
- background-color: #c3c2c2;
313
- padding: 5px;
268
+
269
+ .speed-test-button {
270
+ margin: 10px 0 0;
271
+ color: #000;
314
272
  }
315
- .media-control-audiotracks li a {
316
- display: block;
317
- text-decoration: none;
318
- text-overflow: ellipsis;
319
- overflow: hidden;
320
- white-space: nowrap;
321
- height: 30px;
322
- padding: 5px 10px;
323
- color: #fffffe;
273
+
274
+ .speed-test {
275
+ position: absolute;
276
+ top: 0;
277
+ left: 0;
278
+ width: 100%;
279
+ height: 100%;
280
+ z-index: 9999;
324
281
  }
325
- .media-control-audiotracks li a:hover {
326
- text-decoration: none;
327
- background-color: rgba(0, 0, 0, 0.4);
328
- color: white;
282
+ .speed-test .speed-test-header {
283
+ width: 100%;
284
+ height: 32px;
329
285
  }
330
- .media-control-audiotracks li.current a {
331
- color: #f00;
286
+ .speed-test .speed-test-header .close-speed-test {
287
+ float: right;
288
+ margin-right: 5px;
289
+ line-height: 32px;
290
+ cursor: pointer;
291
+ color: var(--primary-text-color);
332
292
  }
333
- .media-control-audiotracks li:first-child a {
334
- border-bottom-left-radius: 4px;
335
- border-bottom-right-radius: 4px;
293
+ .speed-test .speed-test-header .close-speed-test:hover {
294
+ color: var(--hover-text-color);
336
295
  }
337
- .media-control-audiotracks li:last-child a {
338
- border-top-left-radius: 4px;
339
- border-top-right-radius: 4px;
296
+
297
+ .settings-button {
298
+ float: right;
299
+ margin: 0 12px 0 0;
300
+ height: 40px;
301
+ width: 24px;
302
+ border: none;
303
+ padding: 0;
340
304
  }
341
305
 
342
- @keyframes pulse {
343
- 0% {
344
- color: #fff;
345
- }
346
- 50% {
347
- color: #ff0101;
348
- }
349
- 100% {
350
- color: #B80000;
351
- }
352
- }.big-mute-icon-wrapper[data-big-mute] {
306
+ .settings-options-list {
353
307
  position: absolute;
354
- z-index: 9998;
355
- background-color: transparent;
356
- display: flex;
357
- justify-content: center;
358
- width: 100%;
359
- height: calc(100% - 50px);
360
- margin: 0 auto;
361
- opacity: 0.75;
362
- transition: opacity 0.1s ease;
363
- pointer-events: auto;
308
+ right: 16px;
309
+ bottom: 52px;
310
+ background: var(--primary-background-color);
311
+ width: 250px;
312
+ height: 48px;
313
+ z-index: 9999;
314
+ border-radius: 4px;
364
315
  }
365
- .big-mute-icon-wrapper[data-big-mute].hide {
366
- display: none;
316
+ .settings-options-list svg {
317
+ float: left;
318
+ margin-right: 10px;
367
319
  }
368
- .big-mute-icon-wrapper[data-big-mute]:hover {
369
- cursor: pointer;
320
+ .settings-options-list .settings-speedtest-option {
321
+ color: var(--primary-text-color);
322
+ margin: 0;
323
+ text-align: left;
324
+ height: 24px;
325
+ line-height: 22px;
326
+ padding: 14px;
327
+ width: 250px;
328
+ font-size: 12px;
329
+ }
330
+ .settings-options-list .settings-speedtest-option:hover {
331
+ color: var(--hover-text-color);
332
+ }
333
+ .settings-options-list .settings-speedtest-option:hover svg path {
334
+ fill: var(--hover-text-color);
335
+ }
336
+ .settings-options-list .settings-speedtest-option svg path {
337
+ fill: var(--primary-text-color);
370
338
  }
371
339
 
372
- .big-mute-icon[data-big-mute-icon] {
373
- display: flex;
374
- align-items: center;
375
- justify-content: center;
376
- align-self: center;
377
- width: 120px;
378
- height: 120px;
379
- border: 2px solid white;
380
- border-radius: 50%;
381
- filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
382
- filter: alpha(opacity=60);
383
- opacity: 1;
384
- box-shadow: 0 0 1px 0 white;
385
- background: rgba(240, 243, 247, 0.9411764706);
386
- z-index: 10000;
340
+ .speedtest-summary {
341
+ width: 100%;
342
+ border-top: 1px solid var(--secondary-background-color) !important;
343
+ border-bottom: 1px solid var(--secondary-background-color) !important;
344
+ display: flex !important;
345
+ flex-direction: column;
346
+ align-items: stretch;
347
+ justify-content: space-between;
387
348
  }
388
- .big-mute-icon[data-big-mute-icon] svg {
389
- margin-left: 5px;
390
- width: 80px;
391
- height: 80px;
349
+ .speedtest-summary .speedtest-summary-header {
350
+ width: 100%;
351
+ padding-top: 4px;
352
+ text-align: left;
353
+ height: 32px;
354
+ font-size: 14px;
355
+ font-weight: 500;
356
+ line-height: 20px;
392
357
  }
393
- .big-mute-icon[data-big-mute-icon] svg path {
394
- fill: #1f1e1e !important;
358
+ .speedtest-summary .speedtest-summary-block {
359
+ position: relative;
360
+ display: flex;
361
+ flex-direction: row;
362
+ width: 100%;
395
363
  }
396
- .big-mute-icon[data-big-mute-icon]:hover {
397
- background: rgba(240, 243, 247, 0.8784313725);
364
+ .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock {
365
+ width: 50%;
366
+ margin-top: 4px;
367
+ margin-bottom: 12px;
398
368
  }
399
- .big-mute-icon[data-big-mute-icon]:hover svg path {
400
- fill: #151515 !important;
401
- }.clips.bar-container[data-seekbar] {
402
- clip-path: url("#myClip");
403
- }.context-menu {
404
- z-index: 999;
405
- position: absolute;
406
- top: 0;
407
- left: 0;
408
- text-align: center;
369
+ .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock-content {
370
+ padding: 2px;
371
+ width: 248px;
372
+ max-width: 100%;
409
373
  }
410
- .context-menu .context-menu-list {
411
- font-family: "Proxima Nova", sans-serif;
412
- font-size: 12px;
413
- line-height: 12px;
414
- list-style-type: none;
415
- text-align: left;
416
- padding: 5px;
417
- margin-left: auto;
418
- margin-right: auto;
419
- background-color: rgba(0, 0, 0, 0.75);
420
- border: 1px solid #666;
421
- border-radius: 4px;
374
+
375
+ .speedtest-quality {
376
+ width: 100%;
377
+ height: 36px;
378
+ display: flex !important;
379
+ flex-direction: column !important;
380
+ justify-content: space-between !important;
422
381
  }
423
- .context-menu .context-menu-list .context-menu-list-item {
424
- color: white;
425
- padding: 5px;
426
- cursor: pointer;
427
- }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
428
- order: 99;
382
+ .speedtest-quality .speedtest-quality-header {
383
+ font-size: 12px;
429
384
  height: 20px;
385
+ border-left: 2px solid var(--secondary-background-color) !important;
386
+ background-color: var(--secondary-background-color);
387
+ text-align: left;
430
388
  }
431
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
432
- position: absolute;
433
- right: 16px;
434
- bottom: 52px;
435
- width: 250px;
436
- min-height: 48px;
437
- z-index: 9999;
438
- border-radius: 4px;
389
+ .speedtest-quality-content {
390
+ width: 100%;
391
+ margin-top: 8px;
392
+ height: 8px;
393
+ display: flex !important;
394
+ flex-direction: row !important;
395
+ align-items: stretch !important;
396
+ justify-content: space-between;
439
397
  }
440
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
441
- padding: 8px 0;
398
+ .speedtest-quality-content-item {
399
+ width: 18.8%;
400
+ background-color: #fff;
442
401
  }
443
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list svg {
444
- float: left;
445
- margin-right: 10px;
402
+ .speedtest-quality-content-item.speedtest-quality-value-1 {
403
+ background-color: var(--speedtest-red);
446
404
  }
447
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
448
- margin: 0;
449
- text-align: left;
450
- line-height: 22px;
451
- padding: 5px 14px;
452
- width: 250px;
453
- font-size: 12px;
405
+ .speedtest-quality-content-item.speedtest-quality-value-2 {
406
+ background-color: var(--speedtest-orange);
454
407
  }
455
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_arrow-right-icon {
456
- float: right;
457
- margin-right: -14px;
408
+ .speedtest-quality-content-item.speedtest-quality-value-3 {
409
+ background-color: var(--speedtest-yellow);
458
410
  }
459
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_value {
460
- float: right;
461
- margin-right: 8px;
411
+ .speedtest-quality-content-item.speedtest-quality-value-4 {
412
+ background-color: var(--speedtest-light-green);
462
413
  }
463
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option svg {
464
- height: 20px;
465
- }*, :focus, :visited {
466
- outline: none !important;
414
+ .speedtest-quality-content-item.speedtest-quality-value-5 {
415
+ background-color: var(--speedtest-green);
467
416
  }
468
417
 
469
- .gear-wrapper .go-back {
470
- font-weight: 600;
471
- font-size: 14px;
472
- line-height: 20px;
418
+ .speedtest-footer {
419
+ position: relative;
420
+ float: left;
473
421
  width: 100%;
474
- text-align: left;
475
- padding: 12px;
422
+ height: 30px;
423
+ line-height: 16px;
476
424
  }
477
- .gear-wrapper .go-back .arrow-left-icon {
478
- float: left;
479
- padding-top: 2px;
480
- padding-right: 2px;
425
+ .speedtest-footer-about-link {
426
+ position: absolute;
427
+ bottom: 0;
428
+ left: 0;
429
+ color: var(--secondary-text-color);
430
+ text-decoration: underline !important;
481
431
  }
482
- .gear-wrapper .go-back .arrow-left-icon svg {
483
- height: 16px;
432
+ .speedtest-footer-about-link:hover {
433
+ color: var(--hover-text-color);
484
434
  }
485
- .gear-wrapper ul.gear-sub-menu {
486
- width: 100%;
487
- list-style-type: none;
488
- min-width: 60px;
489
- border-top: 2px solid rgb(36, 36, 36);
435
+ .speedtest-footer .speedtest-footer-refresh {
436
+ position: absolute;
437
+ bottom: 0;
438
+ right: 0;
439
+ color: var(--secondary-text-color);
440
+ font-size: 14px;
441
+ font-weight: 400;
442
+ line-height: 16px;
443
+ height: 16px;
444
+ display: flex;
445
+ align-items: center;
446
+ gap: 4px;
490
447
  }
491
- .gear-wrapper ul.gear-sub-menu li {
492
- font-size: 12px;
493
- text-align: left;
448
+ .speedtest-footer .speedtest-footer-refresh svg path {
449
+ fill: var(--secondary-text-color);
494
450
  }
495
- .gear-wrapper ul.gear-sub-menu li[data-title] {
496
- background-color: #c3c2c2;
497
- padding: 5px;
451
+ .speedtest-footer .speedtest-footer-refresh:hover {
452
+ color: var(--hover-text-color);
498
453
  }
499
- .gear-wrapper ul.gear-sub-menu li a {
500
- display: block;
501
- text-decoration: none;
502
- height: 32px;
503
- padding: 5px 10px;
504
- line-height: 22px;
505
- color: #fffffe;
454
+ .speedtest-footer .speedtest-footer-refresh:hover svg path {
455
+ fill: var(--hover-text-color);
506
456
  }
507
- .gear-wrapper ul.gear-sub-menu li a:hover {
508
- color: white;
509
- background-color: rgba(0, 0, 0, 0.4);
457
+
458
+ .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box {
459
+ position: fixed;
460
+ height: auto;
461
+ width: auto;
462
+ inset: 0;
463
+ min-width: 100vw;
464
+ padding-bottom: 4px;
465
+ padding-left: 4px;
466
+ padding-right: 4px;
510
467
  }
511
- .gear-wrapper ul.gear-sub-menu li a:hover a {
512
- color: white;
513
- text-decoration: none;
468
+ .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top {
469
+ position: fixed;
514
470
  }
515
- .gear-wrapper ul.gear-sub-menu li a .check-icon {
516
- width: 30px;
517
- height: 20px;
518
- float: left;
519
- display: block;
471
+ .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
472
+ width: 50%;
520
473
  }
521
- .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
522
- display: none;
474
+
475
+ @media only screen and (orientation: portrait) {
476
+ .mobile .speedtest-summary {
477
+ padding: 0 5px;
478
+ height: auto;
479
+ }
480
+ .mobile .speedtest-summary-block {
481
+ width: 100%;
482
+ flex-direction: column;
483
+ }
484
+ .mobile .speedtest-summary-block .speedtest-summary-subblock {
485
+ width: 100%;
486
+ }
487
+ .mobile .speedtest-summary-block .speedtest-summary-subblock-content {
488
+ width: 100%;
489
+ }
490
+ .mobile .speedtest-summary-header {
491
+ padding-top: 12px;
492
+ height: 38px;
493
+ text-align: center;
494
+ }
495
+ .mobile .speedtest-quality-header {
496
+ text-align: center;
497
+ }
498
+ .mobile .speedtest-footer .speedtest-footer-refresh {
499
+ inset: 50% auto auto 50%;
500
+ transform: translate(-50%, -50%);
501
+ }
523
502
  }
524
- .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
525
- display: inline;
526
- }*, :focus, :visited {
503
+ @media only screen and (orientation: landscape) {
504
+ .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
505
+ width: 25%;
506
+ }
507
+ }*,
508
+ :focus,
509
+ :visited {
527
510
  outline: none !important;
528
511
  }
529
512
 
530
- .multicamera[data-multicamera] {
531
- float: right;
532
- margin-top: 4px;
513
+ .media-control-audiotracks {
533
514
  position: relative;
534
- margin-right: 20px;
535
- width: 20px;
536
515
  }
537
- .multicamera[data-multicamera] button {
516
+ .media-control-audiotracks button {
538
517
  background-color: transparent;
539
518
  color: #fff;
540
- font-family: Roboto, "Open Sans", Arial, sans-serif;
541
519
  -webkit-font-smoothing: antialiased;
542
520
  border: none;
543
- font-size: 14px;
521
+ cursor: pointer;
522
+ display: flex;
523
+ align-items: center;
544
524
  padding: 0;
545
525
  }
546
- .multicamera[data-multicamera] button svg {
547
- height: 20px;
548
- position: relative;
549
- margin-top: 6px;
526
+ .media-control-audiotracks button .audio-text {
527
+ text-overflow: ellipsis;
528
+ overflow: hidden;
529
+ white-space: nowrap;
530
+ max-width: 100px;
531
+ background-color: transparent;
532
+ -webkit-font-smoothing: antialiased;
533
+ border: none;
534
+ cursor: pointer;
550
535
  }
551
- .multicamera[data-multicamera] button:hover {
552
- color: #c9c9c9;
536
+ .media-control-audiotracks button:hover {
537
+ color: white;
553
538
  }
554
- .multicamera[data-multicamera] button.changing {
539
+ .media-control-audiotracks button.changing {
555
540
  animation: pulse 0.5s infinite alternate;
556
541
  }
557
- .multicamera[data-multicamera] button span.quality-arrow {
542
+ .media-control-audiotracks button span.audio-arrow {
558
543
  width: 9px;
559
544
  height: 6px;
560
- margin-top: 11px;
561
545
  margin-left: 5px;
562
546
  }
563
- .multicamera[data-multicamera] > ul {
564
- padding: 6px 0;
565
- right: -24px;
566
- width: 245px;
547
+ .media-control-audiotracks .menu {
548
+ max-width: 114px;
567
549
  list-style-type: none;
568
550
  position: absolute;
569
- bottom: 48px;
570
- border-radius: 4px;
571
- display: none;
572
- background-color: rgba(74, 74, 74, 0.9);
573
- }
574
- .multicamera[data-multicamera] > ul::after {
575
- content: "";
576
- position: absolute;
577
- top: 100%;
578
- left: 85%;
579
- margin-left: -10px;
580
- width: 0;
581
- height: 0;
582
- border-top: 10px solid rgba(74, 74, 74, 0.9);
583
- border-right: 10px solid transparent;
584
- border-left: 10px solid transparent;
585
- }
586
- .multicamera[data-multicamera] li {
587
- font-size: 10px;
588
- cursor: pointer;
589
- }
590
- .multicamera[data-multicamera] li .multicamera-item {
591
- display: flex;
592
- padding: 10px 0;
593
- justify-content: center;
594
- position: relative;
595
- }
596
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
597
- pointer-events: none;
598
- }
599
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
600
- opacity: 0.5;
601
- }
602
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
603
- opacity: 0.5;
604
- }
605
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
606
- background-color: rgba(0, 0, 0, 0);
607
- }
608
- .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
609
- background-color: rgba(0, 0, 0, 0.3);
610
- }
611
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
612
- width: 80px;
613
- height: 60px;
614
- }
615
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
616
- width: 80px;
617
- height: 60px;
618
- }
619
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
620
- width: 120px;
621
- text-align: left;
622
- margin-left: 15px;
551
+ background-color: rgba(74, 74, 74, 0.6);
552
+ border: none;
553
+ min-width: 60px;
554
+ border-radius: 4px;
555
+ bottom: 40px;
556
+ right: -2px;
623
557
  }
624
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
625
- width: 120px;
626
- height: 20px;
627
- font-family: Roboto, "Open Sans", Arial, sans-serif;
628
- font-size: 14px;
629
- font-weight: normal;
630
- font-style: normal;
631
- font-stretch: normal;
632
- line-height: 1.43;
633
- letter-spacing: normal;
634
- text-align: left;
635
- color: #fff;
636
- text-overflow: ellipsis;
637
- overflow: hidden;
558
+ .media-control-audiotracks .menu.hidden {
559
+ display: none;
638
560
  }
639
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
640
- opacity: 0.6;
561
+ .media-control-audiotracks li {
562
+ font-size: var(--font-size-media-controls-dropdown);
563
+ text-align: right;
564
+ height: 30px;
641
565
  }
642
- .multicamera[data-multicamera] li[data-title] {
566
+ .media-control-audiotracks li[data-title] {
643
567
  background-color: #c3c2c2;
644
568
  padding: 5px;
645
569
  }
646
- .multicamera[data-multicamera] li a {
647
- color: #444;
648
- padding: 2px 10px;
570
+ .media-control-audiotracks li a {
649
571
  display: block;
650
572
  text-decoration: none;
573
+ text-overflow: ellipsis;
574
+ overflow: hidden;
575
+ white-space: nowrap;
576
+ height: 30px;
577
+ padding: 5px 10px;
578
+ color: #fffffe;
651
579
  }
652
- .multicamera[data-multicamera] li a:hover {
653
- background-color: #555;
654
- color: white;
655
- }
656
- .multicamera[data-multicamera] li a:hover a {
657
- color: white;
580
+ .media-control-audiotracks li a:hover {
658
581
  text-decoration: none;
582
+ background-color: rgba(0, 0, 0, 0.4);
583
+ color: white;
659
584
  }
660
- .multicamera[data-multicamera] li.current a {
585
+ .media-control-audiotracks li.current a {
661
586
  color: #f00;
662
587
  }
588
+ .media-control-audiotracks li:first-child a {
589
+ border-bottom-left-radius: 4px;
590
+ border-bottom-right-radius: 4px;
591
+ }
592
+ .media-control-audiotracks li:last-child a {
593
+ border-top-left-radius: 4px;
594
+ border-top-right-radius: 4px;
595
+ }
663
596
 
664
597
  @keyframes pulse {
665
598
  0% {
@@ -671,388 +604,455 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
671
604
  100% {
672
605
  color: #B80000;
673
606
  }
674
- }:root {
675
- --primary-background-color: #000;
676
- --secondary-background-color: #262626;
677
- --primary-text-color: #fff;
678
- --secondary-text-color: #fff4f2;
679
- --hover-text-color: #f9b090;
680
- --speedtest-red: #df564d;
681
- --speedtest-orange: #df934d;
682
- --speedtest-yellow: #dfd04d;
683
- --speedtest-light-green: #c2df4d;
684
- --speedtest-green: #73df4d;
607
+ }*, :focus, :visited {
608
+ outline: none !important;
685
609
  }
686
610
 
687
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box {
688
- position: absolute;
689
- display: inline-block;
690
- bottom: 52px;
691
- right: 16px;
692
- padding: 0 10px 12px;
693
- margin: 0;
611
+ .gear-wrapper .go-back {
612
+ font-weight: 600;
613
+ font-size: 14px;
694
614
  line-height: 20px;
695
- font-size: 12px;
696
- font-weight: 500;
697
- background: var(--primary-background-color);
698
- color: #fff;
699
- z-index: 20000;
700
- overflow: auto;
701
- max-height: calc(100vh - 60px);
702
- max-width: calc(100vw - 10px);
703
- }
704
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top {
705
- position: absolute;
706
- top: 0;
707
- left: 0;
708
- z-index: 99990;
709
615
  width: 100%;
710
- height: 32px;
711
- background: var(--primary-background-color);
712
- }
713
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button {
714
- float: right;
715
- margin-right: 12px;
716
- margin-top: 10px;
717
- display: block;
718
- width: 12px;
719
- height: 12px;
720
- }
721
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button svg path {
722
- fill: var(--primary-text-color);
723
- }
724
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button:hover svg path {
725
- fill: var(--hover-text-color);
616
+ text-align: left;
617
+ padding: 12px;
726
618
  }
727
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-main {
728
- overflow: hidden;
729
- margin-top: 44px;
619
+ .gear-wrapper .go-back .arrow-left-icon {
620
+ float: left;
621
+ padding-top: 2px;
622
+ padding-right: 2px;
730
623
  }
731
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.wide {
732
- width: 820px;
624
+ .gear-wrapper .go-back .arrow-left-icon svg {
625
+ height: 16px;
733
626
  }
734
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul, .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box li {
627
+ .gear-wrapper ul.gear-sub-menu {
628
+ width: 100%;
735
629
  list-style-type: none;
630
+ min-width: 60px;
631
+ border-top: 2px solid rgb(36, 36, 36);
736
632
  }
737
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul div, .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box li div {
738
- padding-left: 2px;
739
- padding-right: 2px;
740
- background: var(--primary-background-color);
633
+ .gear-wrapper ul.gear-sub-menu li {
634
+ font-size: 12px;
635
+ text-align: left;
741
636
  }
742
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
743
- display: inline-block;
744
- float: left;
637
+ .gear-wrapper ul.gear-sub-menu li[data-title] {
638
+ background-color: #c3c2c2;
745
639
  padding: 5px;
746
- width: 200px;
747
- }
748
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li {
749
- position: relative;
750
- padding: 0 5px;
751
- text-align: left;
752
640
  }
753
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.canvas-wrapper {
754
- padding: 0;
641
+ .gear-wrapper ul.gear-sub-menu li a {
642
+ display: block;
643
+ text-decoration: none;
644
+ height: 32px;
645
+ padding: 5px 10px;
646
+ line-height: 22px;
647
+ color: #fffffe;
755
648
  }
756
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.canvas-wrapper canvas {
757
- width: 100%;
649
+ .gear-wrapper ul.gear-sub-menu li a:hover {
650
+ color: white;
651
+ background-color: rgba(0, 0, 0, 0.4);
758
652
  }
759
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li:nth-child(2n) {
760
- background: var(--secondary-background-color);
653
+ .gear-wrapper ul.gear-sub-menu li a:hover a {
654
+ color: white;
655
+ text-decoration: none;
761
656
  }
762
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li:nth-child(2n) div {
763
- background: var(--secondary-background-color);
657
+ .gear-wrapper ul.gear-sub-menu li a .check-icon {
658
+ width: 30px;
659
+ height: 20px;
660
+ float: left;
661
+ display: block;
764
662
  }
765
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.title {
766
- text-align: center;
767
- font-weight: bold;
768
- padding-bottom: 4px;
769
- font-size: 14px;
663
+ .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
664
+ display: none;
770
665
  }
771
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li div {
772
- margin: 0;
666
+ .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
667
+ display: inline;
668
+ }.big-mute-icon-wrapper[data-big-mute] {
773
669
  position: absolute;
774
- right: 0;
775
- top: 0;
776
- }
777
-
778
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow {
779
- width: 250px;
780
- }
781
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow ul {
670
+ z-index: 9998;
671
+ background-color: transparent;
672
+ display: flex;
673
+ justify-content: center;
782
674
  width: 100%;
675
+ height: calc(100% - 50px);
676
+ margin: 0 auto;
677
+ opacity: 0.75;
678
+ transition: opacity 0.1s ease;
679
+ pointer-events: auto;
783
680
  }
784
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary {
785
- padding: 0 5px;
786
- height: auto;
681
+ .big-mute-icon-wrapper[data-big-mute].hide {
682
+ display: none;
787
683
  }
788
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block {
789
- width: 100%;
790
- flex-direction: column;
684
+ .big-mute-icon-wrapper[data-big-mute]:hover {
685
+ cursor: pointer;
791
686
  }
792
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock {
793
- width: 100%;
687
+
688
+ .big-mute-icon[data-big-mute-icon] {
689
+ display: flex;
690
+ align-items: center;
691
+ justify-content: center;
692
+ align-self: center;
693
+ width: 120px;
694
+ height: 120px;
695
+ border: 2px solid white;
696
+ border-radius: 50%;
697
+ filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
698
+ filter: alpha(opacity=60);
699
+ opacity: 1;
700
+ box-shadow: 0 0 1px 0 white;
701
+ background: rgba(240, 243, 247, 0.9411764706);
702
+ z-index: 10000;
794
703
  }
795
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock-content {
796
- width: 100%;
704
+ .big-mute-icon[data-big-mute-icon] svg {
705
+ margin-left: 5px;
706
+ width: 80px;
707
+ height: 80px;
797
708
  }
798
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-header {
799
- padding-top: 12px;
800
- height: 38px;
801
- text-align: center;
709
+ .big-mute-icon[data-big-mute-icon] svg path {
710
+ fill: #1f1e1e !important;
802
711
  }
803
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-quality-header {
804
- text-align: center;
712
+ .big-mute-icon[data-big-mute-icon]:hover {
713
+ background: rgba(240, 243, 247, 0.8784313725);
714
+ }
715
+ .big-mute-icon[data-big-mute-icon]:hover svg path {
716
+ fill: #151515 !important;
717
+ }div.player-error-screen, [data-player] div.player-error-screen {
718
+ color: #CCCACA;
719
+ position: absolute;
720
+ top: 0;
721
+ height: 100%;
722
+ width: 100%;
723
+ background-color: rgba(0, 0, 0, 0.7);
724
+ z-index: 2000;
725
+ display: flex;
726
+ flex-direction: column;
727
+ justify-content: center;
805
728
  }
806
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer {
807
- height: 80px;
729
+ div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
730
+ font-size: 14px;
731
+ color: #CCCACA;
732
+ margin-top: 45px;
808
733
  }
809
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer-about-link {
810
- bottom: 0;
811
- left: 0;
734
+ div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
735
+ font-weight: bold;
736
+ line-height: 30px;
737
+ font-size: 18px;
812
738
  }
813
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer .speedtest-footer-refresh {
814
- inset: 50% auto auto 50%;
815
- transform: translate(-50%, -50%);
739
+ div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
740
+ width: 90%;
741
+ margin: 0 auto;
816
742
  }
817
-
818
- .speed-test-button {
819
- margin: 10px 0 0;
820
- color: #000;
743
+ div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
744
+ font-size: 13px;
745
+ margin-top: 15px;
821
746
  }
822
-
823
- .speed-test {
747
+ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
748
+ cursor: pointer;
749
+ width: 30px;
750
+ margin: 15px auto 0;
751
+ }.context-menu {
752
+ z-index: 999;
824
753
  position: absolute;
825
754
  top: 0;
826
755
  left: 0;
827
- width: 100%;
828
- height: 100%;
829
- z-index: 9999;
756
+ text-align: center;
830
757
  }
831
- .speed-test .speed-test-header {
832
- width: 100%;
833
- height: 32px;
758
+ .context-menu .context-menu-list {
759
+ font-family: "Proxima Nova", sans-serif;
760
+ font-size: 12px;
761
+ line-height: 12px;
762
+ list-style-type: none;
763
+ text-align: left;
764
+ padding: 5px;
765
+ margin-left: auto;
766
+ margin-right: auto;
767
+ background-color: rgba(0, 0, 0, 0.75);
768
+ border: 1px solid #666;
769
+ border-radius: 4px;
834
770
  }
835
- .speed-test .speed-test-header .close-speed-test {
836
- float: right;
837
- margin-right: 5px;
838
- line-height: 32px;
771
+ .context-menu .context-menu-list .context-menu-list-item {
772
+ color: white;
773
+ padding: 5px;
839
774
  cursor: pointer;
840
- color: var(--primary-text-color);
841
- }
842
- .speed-test .speed-test-header .close-speed-test:hover {
843
- color: var(--hover-text-color);
844
- }
845
-
846
- .settings-button {
847
- float: right;
848
- margin: 0 12px 0 0;
849
- height: 40px;
850
- width: 24px;
851
- border: none;
852
- padding: 0;
775
+ }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
776
+ order: 99;
777
+ height: 20px;
853
778
  }
854
-
855
- .settings-options-list {
779
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
856
780
  position: absolute;
857
781
  right: 16px;
858
782
  bottom: 52px;
859
- background: var(--primary-background-color);
860
783
  width: 250px;
861
- height: 48px;
784
+ min-height: 48px;
862
785
  z-index: 9999;
863
786
  border-radius: 4px;
864
787
  }
865
- .settings-options-list svg {
788
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
789
+ padding: 8px 0;
790
+ }
791
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list svg {
866
792
  float: left;
867
793
  margin-right: 10px;
868
794
  }
869
- .settings-options-list .settings-speedtest-option {
870
- color: var(--primary-text-color);
795
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
871
796
  margin: 0;
872
797
  text-align: left;
873
- height: 24px;
874
798
  line-height: 22px;
875
- padding: 14px;
799
+ padding: 5px 14px;
876
800
  width: 250px;
877
801
  font-size: 12px;
878
802
  }
879
- .settings-options-list .settings-speedtest-option:hover {
880
- color: var(--hover-text-color);
803
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_arrow-right-icon {
804
+ float: right;
805
+ margin-right: -14px;
881
806
  }
882
- .settings-options-list .settings-speedtest-option:hover svg path {
883
- fill: var(--hover-text-color);
807
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_value {
808
+ float: right;
809
+ margin-right: 8px;
884
810
  }
885
- .settings-options-list .settings-speedtest-option svg path {
886
- fill: var(--primary-text-color);
811
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option svg {
812
+ height: 20px;
813
+ }.clips.bar-container[data-seekbar] {
814
+ clip-path: url("#myClip");
815
+ }*, :focus, :visited {
816
+ outline: none !important;
887
817
  }
888
818
 
889
- .speedtest-summary {
890
- width: 100%;
891
- border-top: 1px solid var(--secondary-background-color) !important;
892
- border-bottom: 1px solid var(--secondary-background-color) !important;
893
- display: flex !important;
894
- flex-direction: column;
895
- align-items: stretch;
896
- justify-content: space-between;
819
+ .multicamera[data-multicamera] {
820
+ float: right;
821
+ margin-top: 4px;
822
+ position: relative;
823
+ margin-right: 20px;
824
+ width: 20px;
897
825
  }
898
- .speedtest-summary .speedtest-summary-header {
899
- width: 100%;
900
- padding-top: 4px;
901
- text-align: left;
902
- height: 32px;
826
+ .multicamera[data-multicamera] button {
827
+ background-color: transparent;
828
+ color: #fff;
829
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
830
+ -webkit-font-smoothing: antialiased;
831
+ border: none;
903
832
  font-size: 14px;
904
- font-weight: 500;
905
- line-height: 20px;
833
+ padding: 0;
906
834
  }
907
- .speedtest-summary .speedtest-summary-block {
835
+ .multicamera[data-multicamera] button svg {
836
+ height: 20px;
908
837
  position: relative;
838
+ margin-top: 6px;
839
+ }
840
+ .multicamera[data-multicamera] button:hover {
841
+ color: #c9c9c9;
842
+ }
843
+ .multicamera[data-multicamera] button.changing {
844
+ animation: pulse 0.5s infinite alternate;
845
+ }
846
+ .multicamera[data-multicamera] button span.quality-arrow {
847
+ width: 9px;
848
+ height: 6px;
849
+ margin-top: 11px;
850
+ margin-left: 5px;
851
+ }
852
+ .multicamera[data-multicamera] > ul {
853
+ padding: 6px 0;
854
+ right: -24px;
855
+ width: 245px;
856
+ list-style-type: none;
857
+ position: absolute;
858
+ bottom: 48px;
859
+ border-radius: 4px;
860
+ display: none;
861
+ background-color: rgba(74, 74, 74, 0.9);
862
+ }
863
+ .multicamera[data-multicamera] > ul::after {
864
+ content: "";
865
+ position: absolute;
866
+ top: 100%;
867
+ left: 85%;
868
+ margin-left: -10px;
869
+ width: 0;
870
+ height: 0;
871
+ border-top: 10px solid rgba(74, 74, 74, 0.9);
872
+ border-right: 10px solid transparent;
873
+ border-left: 10px solid transparent;
874
+ }
875
+ .multicamera[data-multicamera] li {
876
+ font-size: 10px;
877
+ cursor: pointer;
878
+ }
879
+ .multicamera[data-multicamera] li .multicamera-item {
909
880
  display: flex;
910
- flex-direction: row;
911
- width: 100%;
881
+ padding: 10px 0;
882
+ justify-content: center;
883
+ position: relative;
912
884
  }
913
- .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock {
914
- width: 50%;
915
- margin-top: 4px;
916
- margin-bottom: 12px;
885
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
886
+ pointer-events: none;
917
887
  }
918
- .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock-content {
919
- padding: 2px;
920
- width: 248px;
921
- max-width: 100%;
888
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
889
+ opacity: 0.5;
922
890
  }
923
-
924
- .speedtest-quality {
925
- width: 100%;
926
- height: 36px;
927
- display: flex !important;
928
- flex-direction: column !important;
929
- justify-content: space-between !important;
891
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
892
+ opacity: 0.5;
930
893
  }
931
- .speedtest-quality .speedtest-quality-header {
932
- font-size: 12px;
933
- height: 20px;
934
- border-left: 2px solid var(--secondary-background-color) !important;
935
- background-color: var(--secondary-background-color);
894
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
895
+ background-color: rgba(0, 0, 0, 0);
896
+ }
897
+ .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
898
+ background-color: rgba(0, 0, 0, 0.3);
899
+ }
900
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
901
+ width: 80px;
902
+ height: 60px;
903
+ }
904
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
905
+ width: 80px;
906
+ height: 60px;
907
+ }
908
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
909
+ width: 120px;
936
910
  text-align: left;
911
+ margin-left: 15px;
937
912
  }
938
- .speedtest-quality-content {
939
- width: 100%;
940
- margin-top: 8px;
941
- height: 8px;
942
- display: flex !important;
943
- flex-direction: row !important;
944
- align-items: stretch !important;
945
- justify-content: space-between;
913
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
914
+ width: 120px;
915
+ height: 20px;
916
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
917
+ font-size: 14px;
918
+ font-weight: normal;
919
+ font-style: normal;
920
+ font-stretch: normal;
921
+ line-height: 1.43;
922
+ letter-spacing: normal;
923
+ text-align: left;
924
+ color: #fff;
925
+ text-overflow: ellipsis;
926
+ overflow: hidden;
946
927
  }
947
- .speedtest-quality-content-item {
948
- width: 18.8%;
949
- background-color: #fff;
928
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
929
+ opacity: 0.6;
950
930
  }
951
- .speedtest-quality-content-item.speedtest-quality-value-1 {
952
- background-color: var(--speedtest-red);
931
+ .multicamera[data-multicamera] li[data-title] {
932
+ background-color: #c3c2c2;
933
+ padding: 5px;
953
934
  }
954
- .speedtest-quality-content-item.speedtest-quality-value-2 {
955
- background-color: var(--speedtest-orange);
935
+ .multicamera[data-multicamera] li a {
936
+ color: #444;
937
+ padding: 2px 10px;
938
+ display: block;
939
+ text-decoration: none;
956
940
  }
957
- .speedtest-quality-content-item.speedtest-quality-value-3 {
958
- background-color: var(--speedtest-yellow);
941
+ .multicamera[data-multicamera] li a:hover {
942
+ background-color: #555;
943
+ color: white;
959
944
  }
960
- .speedtest-quality-content-item.speedtest-quality-value-4 {
961
- background-color: var(--speedtest-light-green);
945
+ .multicamera[data-multicamera] li a:hover a {
946
+ color: white;
947
+ text-decoration: none;
962
948
  }
963
- .speedtest-quality-content-item.speedtest-quality-value-5 {
964
- background-color: var(--speedtest-green);
949
+ .multicamera[data-multicamera] li.current a {
950
+ color: #f00;
965
951
  }
966
952
 
967
- .speedtest-footer {
953
+ @keyframes pulse {
954
+ 0% {
955
+ color: #fff;
956
+ }
957
+ 50% {
958
+ color: #ff0101;
959
+ }
960
+ 100% {
961
+ color: #B80000;
962
+ }
963
+ }.dvr-controls[data-dvr] {
964
+ display: inline-block;
965
+ color: var(--player-dvr-color);
966
+ line-height: 32px;
967
+ font-size: 10px;
968
+ font-weight: bold;
969
+ margin-left: 6px;
970
+ height: 40px;
971
+ line-height: 40px;
972
+ margin-left: 0;
973
+ }
974
+ .dvr-controls[data-dvr] .live-info {
975
+ cursor: default;
976
+ text-transform: uppercase;
977
+ }
978
+ .dvr-controls[data-dvr] .live-info:before {
979
+ content: "";
980
+ display: inline-block;
968
981
  position: relative;
969
- float: left;
970
- width: 100%;
971
- height: 30px;
972
- line-height: 16px;
982
+ width: 7px;
983
+ height: 7px;
984
+ border-radius: 3.5px;
985
+ margin-right: 3.5px;
986
+ background-color: var(--player-live-color);
973
987
  }
974
- .speedtest-footer-about-link {
975
- position: absolute;
976
- bottom: 0;
977
- left: 0;
978
- color: var(--secondary-text-color);
979
- text-decoration: underline !important;
988
+ .dvr-controls[data-dvr] .live-info.disabled {
989
+ opacity: 0.3;
980
990
  }
981
- .speedtest-footer-about-link:hover {
982
- color: var(--hover-text-color);
991
+ .dvr-controls[data-dvr] .live-info.disabled:before {
992
+ background-color: var(--player-dvr-color);
983
993
  }
984
- .speedtest-footer .speedtest-footer-refresh {
985
- position: absolute;
986
- bottom: 0;
987
- right: 0;
988
- color: var(--secondary-text-color);
989
- font-size: 14px;
990
- font-weight: 400;
991
- line-height: 16px;
992
- height: 16px;
993
- display: flex;
994
- align-items: center;
995
- gap: 4px;
994
+ .dvr-controls[data-dvr] .live-button {
995
+ cursor: pointer;
996
+ outline: none;
997
+ display: none;
998
+ border: 0;
999
+ color: var(--player-dvr-color);
1000
+ background-color: transparent;
1001
+ height: 32px;
1002
+ padding: 0;
1003
+ opacity: 0.7;
1004
+ text-transform: uppercase;
1005
+ transition: all 0.1s ease;
996
1006
  }
997
- .speedtest-footer .speedtest-footer-refresh svg path {
998
- fill: var(--secondary-text-color);
1007
+ .dvr-controls[data-dvr] .live-button:before {
1008
+ content: "";
1009
+ display: inline-block;
1010
+ position: relative;
1011
+ width: 7px;
1012
+ height: 7px;
1013
+ border-radius: 3.5px;
1014
+ margin-right: 3.5px;
1015
+ background-color: var(--player-dvr-color);
999
1016
  }
1000
- .speedtest-footer .speedtest-footer-refresh:hover {
1001
- color: var(--hover-text-color);
1017
+ .dvr-controls[data-dvr] .live-button:hover {
1018
+ opacity: 1;
1019
+ text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
1002
1020
  }
1003
- .speedtest-footer .speedtest-footer-refresh:hover svg path {
1004
- fill: var(--hover-text-color);
1021
+ .dvr-controls[data-dvr] .live-info {
1022
+ font-size: 14px;
1023
+ letter-spacing: 0.8px;
1024
+ font-weight: 500;
1025
+ color: #fffffe;
1026
+ margin-left: 21px;
1005
1027
  }
1006
-
1007
- .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box {
1008
- position: fixed;
1009
- height: auto;
1010
- width: auto;
1011
- inset: 0;
1012
- min-width: 100vw;
1013
- padding-bottom: 4px;
1014
- padding-left: 4px;
1015
- padding-right: 4px;
1028
+ .dvr-controls[data-dvr] .live-info::before {
1029
+ width: 10px;
1030
+ height: 10px;
1031
+ border-radius: 50%;
1032
+ margin-right: 8px;
1033
+ background-color: #ed4f4a;
1016
1034
  }
1017
- .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top {
1018
- position: fixed;
1035
+ .dvr-controls[data-dvr] .live-button {
1036
+ height: 40px;
1037
+ opacity: 1;
1038
+ font-size: 14px;
1039
+ letter-spacing: 0.8px;
1040
+ font-weight: 500;
1041
+ margin-left: 20px;
1019
1042
  }
1020
- .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
1021
- width: 50%;
1043
+ .dvr-controls[data-dvr] .live-button::before {
1044
+ width: 10px;
1045
+ height: 10px;
1046
+ border-radius: 50%;
1047
+ margin-right: 8px;
1048
+ background-color: #cacaca;
1022
1049
  }
1023
1050
 
1024
- @media only screen and (orientation: portrait) {
1025
- .mobile .speedtest-summary {
1026
- padding: 0 5px;
1027
- height: auto;
1028
- }
1029
- .mobile .speedtest-summary-block {
1030
- width: 100%;
1031
- flex-direction: column;
1032
- }
1033
- .mobile .speedtest-summary-block .speedtest-summary-subblock {
1034
- width: 100%;
1035
- }
1036
- .mobile .speedtest-summary-block .speedtest-summary-subblock-content {
1037
- width: 100%;
1038
- }
1039
- .mobile .speedtest-summary-header {
1040
- padding-top: 12px;
1041
- height: 38px;
1042
- text-align: center;
1043
- }
1044
- .mobile .speedtest-quality-header {
1045
- text-align: center;
1046
- }
1047
- .mobile .speedtest-footer .speedtest-footer-refresh {
1048
- inset: 50% auto auto 50%;
1049
- transform: translate(-50%, -50%);
1050
- }
1051
+ .dvr .dvr-controls[data-dvr] .live-info {
1052
+ display: none;
1051
1053
  }
1052
- @media only screen and (orientation: landscape) {
1053
- .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
1054
- width: 25%;
1055
- }
1054
+ .dvr .dvr-controls[data-dvr] .live-button {
1055
+ display: block;
1056
1056
  }.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
1057
1057
  height: 0;
1058
1058
  }
@@ -1074,48 +1074,67 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1074
1074
  .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
1075
1075
  width: 33.3%;
1076
1076
  height: 100%;
1077
- }.media-control-pip {
1078
- order: 95;
1079
- display: flex;
1080
- }
1081
- .media-control-pip button {
1082
- height: 20px;
1083
- }
1084
- .media-control-pip button svg {
1085
- height: 20px;
1086
- }.seek-time[data-seek-time] {
1077
+ }.scrub-thumbnails {
1087
1078
  position: absolute;
1088
- white-space: nowrap;
1089
- height: 20px;
1090
- line-height: 20px;
1091
- font-size: 0;
1092
- left: -100%;
1093
- bottom: 55px;
1094
- background-color: rgba(2, 2, 2, 0.5);
1095
- z-index: 9999;
1096
- transition: opacity 0.1s ease;
1079
+ bottom: 52px;
1080
+ width: 100%;
1081
+ transition: opacity 0.3s ease;
1097
1082
  }
1098
- .seek-time[data-seek-time].hidden[data-seek-time] {
1083
+ .scrub-thumbnails.hidden {
1099
1084
  opacity: 0;
1100
1085
  }
1101
- .seek-time[data-seek-time] [data-seek-time] {
1086
+ .scrub-thumbnails .thumbnail-container {
1102
1087
  display: inline-block;
1088
+ position: relative;
1089
+ overflow: hidden;
1090
+ background-color: #000;
1091
+ }
1092
+ .scrub-thumbnails .thumbnail-container .thumbnail-img {
1093
+ position: absolute;
1094
+ width: auto;
1095
+ }
1096
+ .scrub-thumbnails .thumbnails-text {
1097
+ background-color: rgba(74, 74, 74, 0.7);
1098
+ border-radius: 3px;
1099
+ white-space: nowrap;
1100
+ overflow: hidden;
1101
+ text-overflow: ellipsis;
1103
1102
  color: white;
1104
- font-size: 10px;
1105
- padding-left: 7px;
1106
- padding-right: 7px;
1107
- vertical-align: top;
1103
+ position: absolute;
1104
+ bottom: 23px;
1105
+ width: 100px;
1106
+ }
1107
+ .scrub-thumbnails .spotlight {
1108
+ background-color: #4a4a4a;
1109
+ overflow: hidden;
1110
+ position: absolute;
1111
+ bottom: 0;
1112
+ left: 0;
1113
+ border-color: #4a4a4a;
1114
+ border-style: solid;
1115
+ border-width: 3px;
1116
+ border-radius: 3px;
1108
1117
  }
1109
- .seek-time[data-seek-time] [data-duration] {
1110
- display: inline-block;
1111
- color: rgba(255, 255, 255, 0.5);
1112
- font-size: 10px;
1113
- padding-right: 7px;
1114
- vertical-align: top;
1118
+ .scrub-thumbnails .spotlight img {
1119
+ width: auto;
1115
1120
  }
1116
- .seek-time[data-seek-time] [data-duration]::before {
1117
- content: "|";
1118
- margin-right: 7px;
1121
+ .scrub-thumbnails .backdrop {
1122
+ position: absolute;
1123
+ left: 0;
1124
+ bottom: 0;
1125
+ right: 0;
1126
+ background-color: #000;
1127
+ overflow: hidden;
1128
+ }
1129
+ .scrub-thumbnails .backdrop .carousel {
1130
+ position: absolute;
1131
+ top: 0;
1132
+ left: 0;
1133
+ height: 100%;
1134
+ white-space: nowrap;
1135
+ }
1136
+ .scrub-thumbnails .backdrop .carousel img {
1137
+ width: auto;
1119
1138
  }[data-player] {
1120
1139
  --bottom-panel: 40px;
1121
1140
  }
@@ -1753,6 +1772,40 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1753
1772
  }
1754
1773
  .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
1755
1774
  display: none !important;
1775
+ }.player-poster[data-poster] {
1776
+ display: flex;
1777
+ justify-content: center;
1778
+ align-items: center;
1779
+ position: absolute;
1780
+ height: 100%;
1781
+ width: 100%;
1782
+ z-index: 998;
1783
+ top: 0;
1784
+ left: 0;
1785
+ background-color: #000;
1786
+ background-size: cover;
1787
+ background-repeat: no-repeat;
1788
+ background-position: 50% 50%;
1789
+ }
1790
+ .player-poster[data-poster].clickable {
1791
+ cursor: pointer;
1792
+ }
1793
+ .player-poster[data-poster]:hover .play-wrapper[data-poster] {
1794
+ opacity: 1;
1795
+ }
1796
+ .player-poster[data-poster] .play-wrapper[data-poster] {
1797
+ width: 100%;
1798
+ height: 25%;
1799
+ margin: 0 auto;
1800
+ opacity: 0.75;
1801
+ transition: opacity 0.1s ease;
1802
+ }
1803
+ .player-poster[data-poster] .play-wrapper[data-poster] svg {
1804
+ height: 100%;
1805
+ display: inline;
1806
+ }
1807
+ .player-poster[data-poster] .play-wrapper[data-poster] svg path {
1808
+ fill: #fff;
1756
1809
  }.share_plugin[data-share] {
1757
1810
  pointer-events: auto;
1758
1811
  z-index: 5;
@@ -1836,40 +1889,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1836
1889
  display: inline-block;
1837
1890
  margin-right: 5px;
1838
1891
  cursor: pointer;
1839
- }.player-poster[data-poster] {
1840
- display: flex;
1841
- justify-content: center;
1842
- align-items: center;
1843
- position: absolute;
1844
- height: 100%;
1845
- width: 100%;
1846
- z-index: 998;
1847
- top: 0;
1848
- left: 0;
1849
- background-color: #000;
1850
- background-size: cover;
1851
- background-repeat: no-repeat;
1852
- background-position: 50% 50%;
1853
- }
1854
- .player-poster[data-poster].clickable {
1855
- cursor: pointer;
1856
- }
1857
- .player-poster[data-poster]:hover .play-wrapper[data-poster] {
1858
- opacity: 1;
1859
- }
1860
- .player-poster[data-poster] .play-wrapper[data-poster] {
1861
- width: 100%;
1862
- height: 25%;
1863
- margin: 0 auto;
1864
- opacity: 0.75;
1865
- transition: opacity 0.1s ease;
1866
- }
1867
- .player-poster[data-poster] .play-wrapper[data-poster] svg {
1868
- height: 100%;
1869
- display: inline;
1870
- }
1871
- .player-poster[data-poster] .play-wrapper[data-poster] svg path {
1872
- fill: #fff;
1873
1892
  }.gear-option_hd-icon.hidden {
1874
1893
  display: none;
1875
1894
  }
@@ -1880,6 +1899,44 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1880
1899
  }
1881
1900
  .quality-levels li.current {
1882
1901
  background-color: #000;
1902
+ }.spinner-three-bounce[data-spinner] {
1903
+ position: absolute;
1904
+ width: 70px;
1905
+ text-align: center;
1906
+ z-index: 999;
1907
+ left: 0;
1908
+ right: 0;
1909
+ margin: 0 auto;
1910
+ margin-left: auto;
1911
+ margin-right: auto;
1912
+ /* center vertically */
1913
+ top: 50%;
1914
+ transform: translateY(-50%);
1915
+ }
1916
+ .spinner-three-bounce[data-spinner] > div {
1917
+ width: 18px;
1918
+ height: 18px;
1919
+ background-color: #FFF;
1920
+ border-radius: 100%;
1921
+ display: inline-block;
1922
+ animation: bouncedelay 1.4s infinite ease-in-out;
1923
+ /* Prevent first frame from flickering when animation starts */
1924
+ animation-fill-mode: both;
1925
+ }
1926
+ .spinner-three-bounce[data-spinner] [data-bounce1] {
1927
+ animation-delay: -0.32s;
1928
+ }
1929
+ .spinner-three-bounce[data-spinner] [data-bounce2] {
1930
+ animation-delay: -0.16s;
1931
+ }
1932
+
1933
+ @keyframes bouncedelay {
1934
+ 0%, 80%, 100% {
1935
+ transform: scale(0);
1936
+ }
1937
+ 40% {
1938
+ transform: scale(1);
1939
+ }
1883
1940
  }*,
1884
1941
  :focus,
1885
1942
  :visited {
@@ -1954,105 +2011,48 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1954
2011
  .ios-fullscreen::cue {
1955
2012
  visibility: visible !important;
1956
2013
  font-size: 1em !important;
1957
- }.spinner-three-bounce[data-spinner] {
1958
- position: absolute;
1959
- width: 70px;
1960
- text-align: center;
1961
- z-index: 999;
1962
- left: 0;
1963
- right: 0;
1964
- margin: 0 auto;
1965
- margin-left: auto;
1966
- margin-right: auto;
1967
- /* center vertically */
1968
- top: 50%;
1969
- transform: translateY(-50%);
1970
- }
1971
- .spinner-three-bounce[data-spinner] > div {
1972
- width: 18px;
1973
- height: 18px;
1974
- background-color: #FFF;
1975
- border-radius: 100%;
1976
- display: inline-block;
1977
- animation: bouncedelay 1.4s infinite ease-in-out;
1978
- /* Prevent first frame from flickering when animation starts */
1979
- animation-fill-mode: both;
1980
- }
1981
- .spinner-three-bounce[data-spinner] [data-bounce1] {
1982
- animation-delay: -0.32s;
2014
+ }.media-control-pip {
2015
+ order: 95;
2016
+ display: flex;
1983
2017
  }
1984
- .spinner-three-bounce[data-spinner] [data-bounce2] {
1985
- animation-delay: -0.16s;
2018
+ .media-control-pip button {
2019
+ height: 20px;
1986
2020
  }
1987
-
1988
- @keyframes bouncedelay {
1989
- 0%, 80%, 100% {
1990
- transform: scale(0);
1991
- }
1992
- 40% {
1993
- transform: scale(1);
1994
- }
1995
- }.scrub-thumbnails {
2021
+ .media-control-pip button svg {
2022
+ height: 20px;
2023
+ }.seek-time[data-seek-time] {
1996
2024
  position: absolute;
1997
- bottom: 52px;
1998
- width: 100%;
1999
- transition: opacity 0.3s ease;
2025
+ white-space: nowrap;
2026
+ height: 20px;
2027
+ line-height: 20px;
2028
+ font-size: 0;
2029
+ left: -100%;
2030
+ bottom: 55px;
2031
+ background-color: rgba(2, 2, 2, 0.5);
2032
+ z-index: 9999;
2033
+ transition: opacity 0.1s ease;
2000
2034
  }
2001
- .scrub-thumbnails.hidden {
2035
+ .seek-time[data-seek-time].hidden[data-seek-time] {
2002
2036
  opacity: 0;
2003
2037
  }
2004
- .scrub-thumbnails .thumbnail-container {
2038
+ .seek-time[data-seek-time] [data-seek-time] {
2005
2039
  display: inline-block;
2006
- position: relative;
2007
- overflow: hidden;
2008
- background-color: #000;
2009
- }
2010
- .scrub-thumbnails .thumbnail-container .thumbnail-img {
2011
- position: absolute;
2012
- width: auto;
2013
- }
2014
- .scrub-thumbnails .thumbnails-text {
2015
- background-color: rgba(74, 74, 74, 0.7);
2016
- border-radius: 3px;
2017
- white-space: nowrap;
2018
- overflow: hidden;
2019
- text-overflow: ellipsis;
2020
2040
  color: white;
2021
- position: absolute;
2022
- bottom: 23px;
2023
- width: 100px;
2024
- }
2025
- .scrub-thumbnails .spotlight {
2026
- background-color: #4a4a4a;
2027
- overflow: hidden;
2028
- position: absolute;
2029
- bottom: 0;
2030
- left: 0;
2031
- border-color: #4a4a4a;
2032
- border-style: solid;
2033
- border-width: 3px;
2034
- border-radius: 3px;
2035
- }
2036
- .scrub-thumbnails .spotlight img {
2037
- width: auto;
2038
- }
2039
- .scrub-thumbnails .backdrop {
2040
- position: absolute;
2041
- left: 0;
2042
- bottom: 0;
2043
- right: 0;
2044
- background-color: #000;
2045
- overflow: hidden;
2041
+ font-size: 10px;
2042
+ padding-left: 7px;
2043
+ padding-right: 7px;
2044
+ vertical-align: top;
2046
2045
  }
2047
- .scrub-thumbnails .backdrop .carousel {
2048
- position: absolute;
2049
- top: 0;
2050
- left: 0;
2051
- height: 100%;
2052
- white-space: nowrap;
2046
+ .seek-time[data-seek-time] [data-duration] {
2047
+ display: inline-block;
2048
+ color: rgba(255, 255, 255, 0.5);
2049
+ font-size: 10px;
2050
+ padding-right: 7px;
2051
+ vertical-align: top;
2053
2052
  }
2054
- .scrub-thumbnails .backdrop .carousel img {
2055
- width: auto;
2053
+ .seek-time[data-seek-time] [data-duration]::before {
2054
+ content: "|";
2055
+ margin-right: 7px;
2056
2056
  }.player-logo[data-logo] {
2057
2057
  position: absolute;
2058
2058
  z-index: 2;