@gcorevideo/player 2.21.3 → 2.21.6

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 (98) hide show
  1. package/assets/audio-selector/style.scss +1 -1
  2. package/assets/audio-selector/track-selector.ejs +3 -3
  3. package/assets/bottom-gear/bottomgear.ejs +2 -2
  4. package/assets/dvr-controls/dvr_controls.scss +7 -25
  5. package/assets/dvr-controls/index.ejs +2 -2
  6. package/assets/media-control/container.scss +1 -1
  7. package/assets/media-control/media-control.ejs +1 -6
  8. package/assets/media-control/media-control.scss +14 -7
  9. package/assets/media-control/width270.scss +1 -1
  10. package/assets/media-control/width370.scss +5 -5
  11. package/assets/playback-rate/button.ejs +2 -2
  12. package/assets/playback-rate/list.ejs +4 -4
  13. package/assets/style/theme.scss +1 -1
  14. package/assets/subtitles/combobox.ejs +5 -5
  15. package/assets/subtitles/string.ejs +1 -1
  16. package/assets/subtitles/style.scss +2 -2
  17. package/dist/core.js +2 -1
  18. package/dist/index.css +993 -993
  19. package/dist/index.js +199 -178
  20. package/dist/player.d.ts +141 -119
  21. package/dist/plugins/index.css +1118 -1118
  22. package/dist/plugins/index.js +191 -173
  23. package/docs/api/player.bottomgear.getelement.md +2 -2
  24. package/docs/api/player.bottomgear.md +1 -1
  25. package/docs/api/{player.subtitles.hide.md → player.closedcaptions.hide.md} +2 -2
  26. package/docs/api/{player.subtitles.md → player.closedcaptions.md} +11 -11
  27. package/docs/api/{player.subtitles.show.md → player.closedcaptions.show.md} +2 -2
  28. package/docs/api/player.closedcaptionspluginsettings.md +13 -0
  29. package/docs/api/player.gearitemelement.md +6 -4
  30. package/docs/api/player.gearoptionsitem.md +16 -0
  31. package/docs/api/player.md +48 -12
  32. package/docs/api/player.mediacontrol.putelement.md +2 -2
  33. package/docs/api/player.mediacontrolelement.md +1 -1
  34. package/docs/api/player.playbackrate.md +1 -1
  35. package/docs/api/player.subtitlespluginsettings.md +18 -0
  36. package/docs/api/player.texttrackitem.id.md +11 -0
  37. package/docs/api/player.texttrackitem.md +87 -0
  38. package/docs/api/player.texttrackitem.name.md +11 -0
  39. package/docs/api/player.texttrackitem.track.md +11 -0
  40. package/lib/index.d.ts +1 -1
  41. package/lib/index.js +1 -1
  42. package/lib/index.plugins.d.ts +2 -1
  43. package/lib/index.plugins.d.ts.map +1 -1
  44. package/lib/index.plugins.js +2 -1
  45. package/lib/playback/dash-playback/DashPlayback.d.ts.map +1 -1
  46. package/lib/playback/dash-playback/DashPlayback.js +1 -0
  47. package/lib/plugins/audio-selector/AudioSelector.d.ts +2 -3
  48. package/lib/plugins/audio-selector/AudioSelector.d.ts.map +1 -1
  49. package/lib/plugins/audio-selector/AudioSelector.js +6 -7
  50. package/lib/plugins/bottom-gear/BottomGear.d.ts +6 -2
  51. package/lib/plugins/bottom-gear/BottomGear.d.ts.map +1 -1
  52. package/lib/plugins/bottom-gear/BottomGear.js +2 -1
  53. package/lib/plugins/dvr-controls/DvrControls.d.ts +0 -3
  54. package/lib/plugins/dvr-controls/DvrControls.d.ts.map +1 -1
  55. package/lib/plugins/dvr-controls/DvrControls.js +13 -38
  56. package/lib/plugins/media-control/MediaControl.d.ts +14 -18
  57. package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
  58. package/lib/plugins/media-control/MediaControl.js +105 -72
  59. package/lib/plugins/picture-in-picture/PictureInPicture.d.ts +1 -0
  60. package/lib/plugins/picture-in-picture/PictureInPicture.d.ts.map +1 -1
  61. package/lib/plugins/picture-in-picture/PictureInPicture.js +4 -4
  62. package/lib/plugins/playback-rate/PlaybackRate.d.ts +0 -1
  63. package/lib/plugins/playback-rate/PlaybackRate.d.ts.map +1 -1
  64. package/lib/plugins/playback-rate/PlaybackRate.js +23 -14
  65. package/lib/plugins/subtitles/ClosedCaptions.d.ts +118 -0
  66. package/lib/plugins/subtitles/ClosedCaptions.d.ts.map +1 -0
  67. package/lib/plugins/subtitles/ClosedCaptions.js +348 -0
  68. package/lib/plugins/subtitles/Subtitles.d.ts +12 -9
  69. package/lib/plugins/subtitles/Subtitles.d.ts.map +1 -1
  70. package/lib/plugins/subtitles/Subtitles.js +31 -32
  71. package/lib/testUtils.d.ts +26 -19
  72. package/lib/testUtils.d.ts.map +1 -1
  73. package/lib/testUtils.js +30 -45
  74. package/package.json +1 -1
  75. package/src/index.plugins.ts +2 -1
  76. package/src/index.ts +1 -1
  77. package/src/playback/dash-playback/DashPlayback.ts +1 -0
  78. package/src/plugins/audio-selector/AudioSelector.ts +9 -8
  79. package/src/plugins/bottom-gear/BottomGear.ts +11 -4
  80. package/src/plugins/bottom-gear/__tests__/BottomGear.test.ts +1 -1
  81. package/src/plugins/bottom-gear/__tests__/__snapshots__/BottomGear.test.ts.snap +2 -2
  82. package/src/plugins/dvr-controls/DvrControls.ts +16 -44
  83. package/src/plugins/dvr-controls/__tests__/DvrControls.test.ts +18 -22
  84. package/src/plugins/dvr-controls/__tests__/__snapshots__/DvrControls.test.ts.snap +6 -30
  85. package/src/plugins/media-control/MediaControl.ts +130 -85
  86. package/src/plugins/media-control/__tests__/MediaControl.test.ts +132 -0
  87. package/src/plugins/media-control/__tests__/__snapshots__/MediaControl.test.ts.snap +299 -0
  88. package/src/plugins/picture-in-picture/PictureInPicture.ts +5 -5
  89. package/src/plugins/playback-rate/PlaybackRate.ts +142 -100
  90. package/src/plugins/playback-rate/__tests__/PlaybackRate.test.ts +65 -0
  91. package/src/plugins/playback-rate/__tests__/__snapshots__/PlaybackRate.test.ts.snap +11 -0
  92. package/src/plugins/subtitles/{Subtitles.ts → ClosedCaptions.ts} +42 -34
  93. package/src/plugins/subtitles/__tests__/ClosedCaptions.test.ts +58 -0
  94. package/src/plugins/subtitles/__tests__/__snapshots__/ClosedCaptions.test.ts.snap +25 -0
  95. package/src/testUtils.ts +30 -45
  96. package/temp/player.api.json +269 -89
  97. package/tsconfig.tsbuildinfo +1 -1
  98. package/src/plugins/index.ts +0 -39
package/dist/index.css CHANGED
@@ -46,7 +46,7 @@
46
46
  }
47
47
 
48
48
  .gcore-skin-main-color {
49
- background-color: var(--theme-foreground-color) !important;
49
+ background-color: var(--theme-foreground-color);
50
50
  }
51
51
 
52
52
  .gcore-skin-border-color {
@@ -122,766 +122,913 @@
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;
125
+ }.big-mute-icon-wrapper[data-big-mute] {
126
+ position: absolute;
127
+ z-index: 9998;
128
+ background-color: transparent;
129
+ display: flex;
130
+ justify-content: center;
131
+ width: 100%;
132
+ height: calc(100% - 50px);
133
+ margin: 0 auto;
134
+ opacity: 0.75;
135
+ transition: opacity 0.1s ease;
136
+ pointer-events: auto;
137
+ }
138
+ .big-mute-icon-wrapper[data-big-mute].hide {
139
+ display: none;
140
+ }
141
+ .big-mute-icon-wrapper[data-big-mute]:hover {
142
+ cursor: pointer;
136
143
  }
137
144
 
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);
145
+ .big-mute-icon[data-big-mute-icon] {
146
+ display: flex;
147
+ align-items: center;
148
+ justify-content: center;
149
+ align-self: center;
150
+ width: 120px;
151
+ height: 120px;
152
+ border: 2px solid white;
153
+ border-radius: 50%;
154
+ filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
155
+ filter: alpha(opacity=60);
156
+ opacity: 1;
157
+ box-shadow: 0 0 1px 0 white;
158
+ background: rgba(240, 243, 247, 0.9411764706);
159
+ z-index: 10000;
154
160
  }
155
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top {
156
- position: absolute;
157
- top: 0;
158
- left: 0;
159
- z-index: 99990;
160
- width: 100%;
161
- height: 32px;
162
- background: var(--primary-background-color);
161
+ .big-mute-icon[data-big-mute-icon] svg {
162
+ margin-left: 5px;
163
+ width: 80px;
164
+ height: 80px;
163
165
  }
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;
166
+ .big-mute-icon[data-big-mute-icon] svg path {
167
+ fill: #1f1e1e !important;
171
168
  }
172
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button svg path {
173
- fill: var(--primary-text-color);
169
+ .big-mute-icon[data-big-mute-icon]:hover {
170
+ background: rgba(240, 243, 247, 0.8784313725);
174
171
  }
175
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button:hover svg path {
176
- fill: var(--hover-text-color);
172
+ .big-mute-icon[data-big-mute-icon]:hover svg path {
173
+ fill: #151515 !important;
174
+ }*, :focus, :visited {
175
+ outline: none !important;
177
176
  }
178
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-main {
179
- overflow: hidden;
180
- margin-top: 44px;
177
+
178
+ .gear-wrapper .go-back {
179
+ font-weight: 600;
180
+ font-size: 14px;
181
+ line-height: 20px;
182
+ width: 100%;
183
+ text-align: left;
184
+ padding: 12px;
181
185
  }
182
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.wide {
183
- width: 820px;
186
+ .gear-wrapper .go-back .arrow-left-icon {
187
+ float: left;
188
+ padding-top: 2px;
189
+ padding-right: 2px;
184
190
  }
185
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul, .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box li {
191
+ .gear-wrapper .go-back .arrow-left-icon svg {
192
+ height: 16px;
193
+ }
194
+ .gear-wrapper ul.gear-sub-menu {
195
+ width: 100%;
186
196
  list-style-type: none;
197
+ background-color: transparent;
198
+ min-width: 60px;
199
+ border-top: 2px solid rgb(36, 36, 36);
187
200
  }
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);
201
+ .gear-wrapper ul.gear-sub-menu li {
202
+ font-size: 12px;
203
+ text-align: left;
192
204
  }
193
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
194
- display: inline-block;
195
- float: left;
205
+ .gear-wrapper ul.gear-sub-menu li[data-title] {
206
+ background-color: #c3c2c2;
196
207
  padding: 5px;
197
- width: 200px;
198
208
  }
199
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li {
200
- position: relative;
201
- padding: 0 5px;
202
- text-align: left;
209
+ .gear-wrapper ul.gear-sub-menu li a {
210
+ display: block;
211
+ text-decoration: none;
212
+ height: 32px;
213
+ padding: 5px 10px;
214
+ line-height: 22px;
215
+ color: #fffffe;
203
216
  }
204
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.canvas-wrapper {
205
- padding: 0;
217
+ .gear-wrapper ul.gear-sub-menu li a:hover {
218
+ color: white;
219
+ background-color: rgba(0, 0, 0, 0.4);
206
220
  }
207
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.canvas-wrapper canvas {
208
- width: 100%;
221
+ .gear-wrapper ul.gear-sub-menu li a:hover a {
222
+ color: white;
223
+ text-decoration: none;
209
224
  }
210
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li:nth-child(2n) {
211
- background: var(--secondary-background-color);
225
+ .gear-wrapper ul.gear-sub-menu li a .check-icon {
226
+ width: 30px;
227
+ height: 20px;
228
+ float: left;
229
+ display: block;
212
230
  }
213
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li:nth-child(2n) div {
214
- background: var(--secondary-background-color);
231
+ .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
232
+ display: none;
215
233
  }
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;
220
- font-size: 14px;
234
+ .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
235
+ display: inline;
236
+ }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
237
+ order: 99;
238
+ height: 20px;
221
239
  }
222
- .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li div {
223
- margin: 0;
240
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
224
241
  position: absolute;
225
- right: 0;
226
- top: 0;
227
- }
228
-
229
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow {
242
+ right: 16px;
243
+ bottom: 52px;
244
+ display: none;
230
245
  width: 250px;
246
+ min-height: 48px;
247
+ z-index: 9999;
248
+ border-radius: 4px;
231
249
  }
232
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow ul {
233
- width: 100%;
250
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
251
+ padding: 8px 0;
234
252
  }
235
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary {
236
- padding: 0 5px;
237
- height: auto;
253
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list svg {
254
+ float: left;
255
+ margin-right: 10px;
238
256
  }
239
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block {
240
- width: 100%;
241
- flex-direction: column;
257
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
258
+ margin: 0;
259
+ text-align: left;
260
+ line-height: 22px;
261
+ padding: 5px 14px;
262
+ width: 250px;
263
+ font-size: 12px;
242
264
  }
243
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock {
244
- width: 100%;
265
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_arrow-right-icon {
266
+ float: right;
267
+ margin-right: -14px;
245
268
  }
246
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock-content {
247
- width: 100%;
269
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_value {
270
+ float: right;
271
+ margin-right: 8px;
248
272
  }
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;
273
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option svg {
274
+ height: 20px;
275
+ }*,
276
+ :focus,
277
+ :visited {
278
+ outline: none !important;
253
279
  }
254
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-quality-header {
255
- text-align: center;
280
+
281
+ .media-control-audiotracks {
282
+ position: relative;
256
283
  }
257
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer {
258
- height: 80px;
284
+ .media-control-audiotracks button {
285
+ background-color: transparent;
286
+ color: #fff;
287
+ -webkit-font-smoothing: antialiased;
288
+ border: none;
289
+ cursor: pointer;
290
+ display: flex;
291
+ align-items: center;
292
+ padding: 0;
259
293
  }
260
- .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer-about-link {
261
- bottom: 0;
262
- left: 0;
294
+ .media-control-audiotracks button .audio-text {
295
+ text-overflow: ellipsis;
296
+ overflow: hidden;
297
+ white-space: nowrap;
298
+ max-width: 100px;
299
+ background-color: transparent;
300
+ -webkit-font-smoothing: antialiased;
301
+ border: none;
302
+ cursor: pointer;
263
303
  }
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%);
304
+ .media-control-audiotracks button:hover {
305
+ color: white;
267
306
  }
268
-
269
- .speed-test-button {
270
- margin: 10px 0 0;
271
- color: #000;
307
+ .media-control-audiotracks button.changing {
308
+ animation: pulse 0.5s infinite alternate;
272
309
  }
273
-
274
- .speed-test {
310
+ .media-control-audiotracks button span.audio-arrow {
311
+ width: 9px;
312
+ height: 6px;
313
+ margin-left: 5px;
314
+ }
315
+ .media-control-audiotracks > ul {
316
+ max-width: 114px;
317
+ list-style-type: none;
275
318
  position: absolute;
276
- top: 0;
277
- left: 0;
278
- width: 100%;
279
- height: 100%;
280
- z-index: 9999;
319
+ display: none;
320
+ background-color: rgba(74, 74, 74, 0.6);
321
+ border: none;
322
+ min-width: 60px;
323
+ border-radius: 4px;
324
+ bottom: 40px;
325
+ right: -2px;
281
326
  }
282
- .speed-test .speed-test-header {
283
- width: 100%;
284
- height: 32px;
327
+ .media-control-audiotracks li {
328
+ font-size: var(--font-size-media-controls-dropdown);
329
+ text-align: right;
330
+ height: 30px;
285
331
  }
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
+ .media-control-audiotracks li[data-title] {
333
+ background-color: #c3c2c2;
334
+ padding: 5px;
292
335
  }
293
- .speed-test .speed-test-header .close-speed-test:hover {
294
- color: var(--hover-text-color);
336
+ .media-control-audiotracks li a {
337
+ display: block;
338
+ text-decoration: none;
339
+ text-overflow: ellipsis;
340
+ overflow: hidden;
341
+ white-space: nowrap;
342
+ height: 30px;
343
+ padding: 5px 10px;
344
+ color: #fffffe;
345
+ }
346
+ .media-control-audiotracks li a:hover {
347
+ text-decoration: none;
348
+ background-color: rgba(0, 0, 0, 0.4);
349
+ color: white;
350
+ }
351
+ .media-control-audiotracks li.current a {
352
+ color: #f00;
353
+ }
354
+ .media-control-audiotracks li:first-child a {
355
+ border-bottom-left-radius: 4px;
356
+ border-bottom-right-radius: 4px;
357
+ }
358
+ .media-control-audiotracks li:last-child a {
359
+ border-top-left-radius: 4px;
360
+ border-top-right-radius: 4px;
295
361
  }
296
362
 
297
- .settings-button {
298
- float: right;
299
- margin: 0 12px 0 0;
363
+ @keyframes pulse {
364
+ 0% {
365
+ color: #fff;
366
+ }
367
+ 50% {
368
+ color: #ff0101;
369
+ }
370
+ 100% {
371
+ color: #B80000;
372
+ }
373
+ }.dvr-controls[data-dvr] {
374
+ display: inline-block;
375
+ color: var(--player-dvr-color);
376
+ line-height: 32px;
377
+ font-size: 10px;
378
+ font-weight: bold;
379
+ margin-left: 6px;
300
380
  height: 40px;
301
- width: 24px;
302
- border: none;
303
- padding: 0;
381
+ line-height: 40px;
382
+ margin-left: 0;
304
383
  }
305
-
306
- .settings-options-list {
307
- position: absolute;
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;
384
+ .dvr-controls[data-dvr] .live-info {
385
+ cursor: default;
386
+ text-transform: uppercase;
315
387
  }
316
- .settings-options-list svg {
317
- float: left;
318
- margin-right: 10px;
388
+ .dvr-controls[data-dvr] .live-info:before {
389
+ content: "";
390
+ display: inline-block;
391
+ position: relative;
392
+ width: 7px;
393
+ height: 7px;
394
+ border-radius: 3.5px;
395
+ margin-right: 3.5px;
396
+ background-color: var(--player-live-color);
319
397
  }
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;
398
+ .dvr-controls[data-dvr] .live-info.disabled {
399
+ opacity: 0.3;
329
400
  }
330
- .settings-options-list .settings-speedtest-option:hover {
331
- color: var(--hover-text-color);
401
+ .dvr-controls[data-dvr] .live-info.disabled:before {
402
+ background-color: var(--player-dvr-color);
332
403
  }
333
- .settings-options-list .settings-speedtest-option:hover svg path {
334
- fill: var(--hover-text-color);
404
+ .dvr-controls[data-dvr] .live-button {
405
+ cursor: pointer;
406
+ outline: none;
407
+ display: none;
408
+ border: 0;
409
+ color: var(--player-dvr-color);
410
+ background-color: transparent;
411
+ height: 32px;
412
+ padding: 0;
413
+ opacity: 0.7;
414
+ text-transform: uppercase;
415
+ transition: all 0.1s ease;
335
416
  }
336
- .settings-options-list .settings-speedtest-option svg path {
337
- fill: var(--primary-text-color);
417
+ .dvr-controls[data-dvr] .live-button:before {
418
+ content: "";
419
+ display: inline-block;
420
+ position: relative;
421
+ width: 7px;
422
+ height: 7px;
423
+ border-radius: 3.5px;
424
+ margin-right: 3.5px;
425
+ background-color: var(--player-dvr-color);
338
426
  }
339
-
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;
427
+ .dvr-controls[data-dvr] .live-button:hover {
428
+ opacity: 1;
429
+ text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
348
430
  }
349
- .speedtest-summary .speedtest-summary-header {
350
- width: 100%;
351
- padding-top: 4px;
352
- text-align: left;
353
- height: 32px;
431
+ .dvr-controls[data-dvr] .live-info {
354
432
  font-size: 14px;
433
+ letter-spacing: 0.8px;
355
434
  font-weight: 500;
356
- line-height: 20px;
435
+ color: #fffffe;
436
+ margin-left: 21px;
357
437
  }
358
- .speedtest-summary .speedtest-summary-block {
359
- position: relative;
360
- display: flex;
361
- flex-direction: row;
362
- width: 100%;
438
+ .dvr-controls[data-dvr] .live-info::before {
439
+ width: 10px;
440
+ height: 10px;
441
+ border-radius: 50%;
442
+ margin-right: 8px;
443
+ background-color: #ed4f4a;
363
444
  }
364
- .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock {
365
- width: 50%;
366
- margin-top: 4px;
367
- margin-bottom: 12px;
445
+ .dvr-controls[data-dvr] .live-button {
446
+ height: 40px;
447
+ opacity: 1;
448
+ font-size: 14px;
449
+ letter-spacing: 0.8px;
450
+ font-weight: 500;
451
+ margin-left: 20px;
368
452
  }
369
- .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock-content {
370
- padding: 2px;
371
- width: 248px;
372
- max-width: 100%;
453
+ .dvr-controls[data-dvr] .live-button::before {
454
+ width: 10px;
455
+ height: 10px;
456
+ border-radius: 50%;
457
+ margin-right: 8px;
458
+ background-color: #cacaca;
373
459
  }
374
460
 
375
- .speedtest-quality {
376
- width: 100%;
377
- height: 36px;
378
- display: flex !important;
379
- flex-direction: column !important;
380
- justify-content: space-between !important;
381
- }
382
- .speedtest-quality .speedtest-quality-header {
383
- font-size: 12px;
384
- height: 20px;
385
- border-left: 2px solid var(--secondary-background-color) !important;
386
- background-color: var(--secondary-background-color);
387
- text-align: left;
461
+ .dvr .dvr-controls[data-dvr] .live-info {
462
+ display: none;
388
463
  }
389
- .speedtest-quality-content {
464
+ .dvr .dvr-controls[data-dvr] .live-button {
465
+ display: block;
466
+ }.clips.bar-container[data-seekbar] {
467
+ clip-path: url("#myClip");
468
+ }div.player-error-screen, [data-player] div.player-error-screen {
469
+ color: #CCCACA;
470
+ position: absolute;
471
+ top: 0;
472
+ height: 100%;
390
473
  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;
397
- }
398
- .speedtest-quality-content-item {
399
- width: 18.8%;
400
- background-color: #fff;
474
+ background-color: rgba(0, 0, 0, 0.7);
475
+ z-index: 2000;
476
+ display: flex;
477
+ flex-direction: column;
478
+ justify-content: center;
401
479
  }
402
- .speedtest-quality-content-item.speedtest-quality-value-1 {
403
- background-color: var(--speedtest-red);
480
+ div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
481
+ font-size: 14px;
482
+ color: #CCCACA;
483
+ margin-top: 45px;
404
484
  }
405
- .speedtest-quality-content-item.speedtest-quality-value-2 {
406
- background-color: var(--speedtest-orange);
485
+ div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
486
+ font-weight: bold;
487
+ line-height: 30px;
488
+ font-size: 18px;
407
489
  }
408
- .speedtest-quality-content-item.speedtest-quality-value-3 {
409
- background-color: var(--speedtest-yellow);
490
+ div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
491
+ width: 90%;
492
+ margin: 0 auto;
410
493
  }
411
- .speedtest-quality-content-item.speedtest-quality-value-4 {
412
- background-color: var(--speedtest-light-green);
494
+ div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
495
+ font-size: 13px;
496
+ margin-top: 15px;
413
497
  }
414
- .speedtest-quality-content-item.speedtest-quality-value-5 {
415
- background-color: var(--speedtest-green);
498
+ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
499
+ cursor: pointer;
500
+ width: 30px;
501
+ margin: 15px auto 0;
502
+ }*, :focus, :visited {
503
+ outline: none !important;
416
504
  }
417
505
 
418
- .speedtest-footer {
506
+ .multicamera[data-multicamera] {
507
+ float: right;
508
+ margin-top: 4px;
419
509
  position: relative;
420
- float: left;
421
- width: 100%;
422
- height: 30px;
423
- line-height: 16px;
510
+ margin-right: 20px;
511
+ width: 20px;
424
512
  }
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;
513
+ .multicamera[data-multicamera] button {
514
+ background-color: transparent;
515
+ color: #fff;
516
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
517
+ -webkit-font-smoothing: antialiased;
518
+ border: none;
519
+ font-size: 14px;
520
+ padding: 0;
431
521
  }
432
- .speedtest-footer-about-link:hover {
433
- color: var(--hover-text-color);
522
+ .multicamera[data-multicamera] button svg {
523
+ height: 20px;
524
+ position: relative;
525
+ margin-top: 6px;
434
526
  }
435
- .speedtest-footer .speedtest-footer-refresh {
527
+ .multicamera[data-multicamera] button:hover {
528
+ color: #c9c9c9;
529
+ }
530
+ .multicamera[data-multicamera] button.changing {
531
+ animation: pulse 0.5s infinite alternate;
532
+ }
533
+ .multicamera[data-multicamera] button span.quality-arrow {
534
+ width: 9px;
535
+ height: 6px;
536
+ margin-top: 11px;
537
+ margin-left: 5px;
538
+ }
539
+ .multicamera[data-multicamera] > ul {
540
+ padding: 6px 0;
541
+ right: -24px;
542
+ width: 245px;
543
+ list-style-type: none;
436
544
  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;
545
+ bottom: 48px;
546
+ border-radius: 4px;
547
+ display: none;
548
+ background-color: rgba(74, 74, 74, 0.9);
549
+ }
550
+ .multicamera[data-multicamera] > ul::after {
551
+ content: "";
552
+ position: absolute;
553
+ top: 100%;
554
+ left: 85%;
555
+ margin-left: -10px;
556
+ width: 0;
557
+ height: 0;
558
+ border-top: 10px solid rgba(74, 74, 74, 0.9);
559
+ border-right: 10px solid transparent;
560
+ border-left: 10px solid transparent;
561
+ }
562
+ .multicamera[data-multicamera] li {
563
+ font-size: 10px;
564
+ cursor: pointer;
565
+ }
566
+ .multicamera[data-multicamera] li .multicamera-item {
444
567
  display: flex;
445
- align-items: center;
446
- gap: 4px;
568
+ padding: 10px 0;
569
+ justify-content: center;
570
+ position: relative;
447
571
  }
448
- .speedtest-footer .speedtest-footer-refresh svg path {
449
- fill: var(--secondary-text-color);
572
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
573
+ pointer-events: none;
450
574
  }
451
- .speedtest-footer .speedtest-footer-refresh:hover {
452
- color: var(--hover-text-color);
575
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
576
+ opacity: 0.5;
453
577
  }
454
- .speedtest-footer .speedtest-footer-refresh:hover svg path {
455
- fill: var(--hover-text-color);
578
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
579
+ opacity: 0.5;
456
580
  }
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;
581
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
582
+ background-color: rgba(0, 0, 0, 0);
467
583
  }
468
- .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top {
469
- position: fixed;
584
+ .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
585
+ background-color: rgba(0, 0, 0, 0.3);
470
586
  }
471
- .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
472
- width: 50%;
587
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
588
+ width: 80px;
589
+ height: 60px;
590
+ }
591
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
592
+ width: 80px;
593
+ height: 60px;
594
+ }
595
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
596
+ width: 120px;
597
+ text-align: left;
598
+ margin-left: 15px;
599
+ }
600
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
601
+ width: 120px;
602
+ height: 20px;
603
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
604
+ font-size: 14px;
605
+ font-weight: normal;
606
+ font-style: normal;
607
+ font-stretch: normal;
608
+ line-height: 1.43;
609
+ letter-spacing: normal;
610
+ text-align: left;
611
+ color: #fff;
612
+ text-overflow: ellipsis;
613
+ overflow: hidden;
614
+ }
615
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
616
+ opacity: 0.6;
617
+ }
618
+ .multicamera[data-multicamera] li[data-title] {
619
+ background-color: #c3c2c2;
620
+ padding: 5px;
621
+ }
622
+ .multicamera[data-multicamera] li a {
623
+ color: #444;
624
+ padding: 2px 10px;
625
+ display: block;
626
+ text-decoration: none;
627
+ }
628
+ .multicamera[data-multicamera] li a:hover {
629
+ background-color: #555;
630
+ color: white;
631
+ }
632
+ .multicamera[data-multicamera] li a:hover a {
633
+ color: white;
634
+ text-decoration: none;
635
+ }
636
+ .multicamera[data-multicamera] li.current a {
637
+ color: #f00;
473
638
  }
474
639
 
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;
640
+ @keyframes pulse {
641
+ 0% {
642
+ color: #fff;
497
643
  }
498
- .mobile .speedtest-footer .speedtest-footer-refresh {
499
- inset: 50% auto auto 50%;
500
- transform: translate(-50%, -50%);
644
+ 50% {
645
+ color: #ff0101;
501
646
  }
502
- }
503
- @media only screen and (orientation: landscape) {
504
- .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
505
- width: 25%;
647
+ 100% {
648
+ color: #B80000;
506
649
  }
507
- }.clips.bar-container[data-seekbar] {
508
- clip-path: url("#myClip");
509
- }*,
510
- :focus,
511
- :visited {
512
- outline: none !important;
650
+ }:root {
651
+ --primary-background-color: #000;
652
+ --secondary-background-color: #262626;
653
+ --primary-text-color: #fff;
654
+ --secondary-text-color: #fff4f2;
655
+ --hover-text-color: #f9b090;
656
+ --speedtest-red: #df564d;
657
+ --speedtest-orange: #df934d;
658
+ --speedtest-yellow: #dfd04d;
659
+ --speedtest-light-green: #c2df4d;
660
+ --speedtest-green: #73df4d;
513
661
  }
514
662
 
515
- .media-control-audio-tracks {
516
- position: relative;
517
- }
518
- .media-control-audio-tracks button {
519
- background-color: transparent;
663
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box {
664
+ position: absolute;
665
+ display: inline-block;
666
+ bottom: 52px;
667
+ right: 16px;
668
+ padding: 0 10px 12px;
669
+ margin: 0;
670
+ line-height: 20px;
671
+ font-size: 12px;
672
+ font-weight: 500;
673
+ background: var(--primary-background-color);
520
674
  color: #fff;
521
- -webkit-font-smoothing: antialiased;
522
- border: none;
523
- cursor: pointer;
524
- display: flex;
525
- align-items: center;
526
- padding: 0;
675
+ z-index: 20000;
676
+ overflow: auto;
677
+ max-height: calc(100vh - 60px);
678
+ max-width: calc(100vw - 10px);
527
679
  }
528
- .media-control-audio-tracks button .audio-text {
529
- text-overflow: ellipsis;
530
- overflow: hidden;
531
- white-space: nowrap;
532
- max-width: 100px;
533
- background-color: transparent;
534
- -webkit-font-smoothing: antialiased;
535
- border: none;
536
- cursor: pointer;
680
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top {
681
+ position: absolute;
682
+ top: 0;
683
+ left: 0;
684
+ z-index: 99990;
685
+ width: 100%;
686
+ height: 32px;
687
+ background: var(--primary-background-color);
537
688
  }
538
- .media-control-audio-tracks button:hover {
539
- color: white;
689
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button {
690
+ float: right;
691
+ margin-right: 12px;
692
+ margin-top: 10px;
693
+ display: block;
694
+ width: 12px;
695
+ height: 12px;
540
696
  }
541
- .media-control-audio-tracks button.changing {
542
- animation: pulse 0.5s infinite alternate;
697
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button svg path {
698
+ fill: var(--primary-text-color);
543
699
  }
544
- .media-control-audio-tracks button span.audio-arrow {
545
- width: 9px;
546
- height: 6px;
547
- margin-left: 5px;
700
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button:hover svg path {
701
+ fill: var(--hover-text-color);
702
+ }
703
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-main {
704
+ overflow: hidden;
705
+ margin-top: 44px;
548
706
  }
549
- .media-control-audio-tracks > ul {
550
- max-width: 114px;
707
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.wide {
708
+ width: 820px;
709
+ }
710
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul, .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box li {
551
711
  list-style-type: none;
552
- position: absolute;
553
- display: none;
554
- background-color: rgba(74, 74, 74, 0.6);
555
- border: none;
556
- min-width: 60px;
557
- border-radius: 4px;
558
- bottom: 40px;
559
- right: -2px;
560
712
  }
561
- .media-control-audio-tracks li {
562
- font-size: var(--font-size-media-controls-dropdown);
563
- text-align: right;
564
- height: 30px;
713
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul div, .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box li div {
714
+ padding-left: 2px;
715
+ padding-right: 2px;
716
+ background: var(--primary-background-color);
565
717
  }
566
- .media-control-audio-tracks li[data-title] {
567
- background-color: #c3c2c2;
718
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
719
+ display: inline-block;
720
+ float: left;
568
721
  padding: 5px;
722
+ width: 200px;
569
723
  }
570
- .media-control-audio-tracks li a {
571
- display: block;
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;
724
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li {
725
+ position: relative;
726
+ padding: 0 5px;
727
+ text-align: left;
579
728
  }
580
- .media-control-audio-tracks li a:hover {
581
- text-decoration: none;
582
- background-color: rgba(0, 0, 0, 0.4);
583
- color: white;
729
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.canvas-wrapper {
730
+ padding: 0;
584
731
  }
585
- .media-control-audio-tracks li.current a {
586
- color: #f00;
732
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.canvas-wrapper canvas {
733
+ width: 100%;
587
734
  }
588
- .media-control-audio-tracks li:first-child a {
589
- border-bottom-left-radius: 4px;
590
- border-bottom-right-radius: 4px;
735
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li:nth-child(2n) {
736
+ background: var(--secondary-background-color);
591
737
  }
592
- .media-control-audio-tracks li:last-child a {
593
- border-top-left-radius: 4px;
594
- border-top-right-radius: 4px;
738
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li:nth-child(2n) div {
739
+ background: var(--secondary-background-color);
595
740
  }
596
-
597
- @keyframes pulse {
598
- 0% {
599
- color: #fff;
600
- }
601
- 50% {
602
- color: #ff0101;
603
- }
604
- 100% {
605
- color: #B80000;
606
- }
607
- }.dvr-controls[data-dvr-controls] {
608
- display: inline-block;
609
- float: left;
610
- color: #fff;
611
- line-height: 32px;
612
- font-size: 10px;
741
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.title {
742
+ text-align: center;
613
743
  font-weight: bold;
614
- margin-left: 6px;
615
- height: 40px;
616
- line-height: 40px;
617
- margin-left: 0;
744
+ padding-bottom: 4px;
745
+ font-size: 14px;
618
746
  }
619
- .dvr-controls[data-dvr-controls] .live-info {
620
- cursor: default;
621
- font-family: "Roboto", "Open Sans", Arial, sans-serif;
622
- text-transform: uppercase;
747
+ .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li div {
748
+ margin: 0;
749
+ position: absolute;
750
+ right: 0;
751
+ top: 0;
623
752
  }
624
- .dvr-controls[data-dvr-controls] .live-info:before {
625
- content: "";
626
- display: inline-block;
627
- position: relative;
628
- width: 7px;
629
- height: 7px;
630
- border-radius: 3.5px;
631
- margin-right: 3.5px;
632
- background-color: #ff0101;
753
+
754
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow {
755
+ width: 250px;
633
756
  }
634
- .dvr-controls[data-dvr-controls] .live-info.disabled {
635
- opacity: 0.3;
757
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow ul {
758
+ width: 100%;
636
759
  }
637
- .dvr-controls[data-dvr-controls] .live-info.disabled:before {
638
- background-color: #fff;
760
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary {
761
+ padding: 0 5px;
762
+ height: auto;
639
763
  }
640
- .dvr-controls[data-dvr-controls] .live-button {
641
- cursor: pointer;
642
- outline: none;
643
- display: none;
644
- border: 0;
645
- color: #fff;
646
- background-color: transparent;
647
- height: 32px;
648
- padding: 0;
649
- opacity: 0.7;
650
- font-family: "Roboto", "Open Sans", Arial, sans-serif;
651
- text-transform: uppercase;
652
- transition: all 0.1s ease;
764
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block {
765
+ width: 100%;
766
+ flex-direction: column;
653
767
  }
654
- .dvr-controls[data-dvr-controls] .live-button:before {
655
- content: "";
656
- display: inline-block;
657
- position: relative;
658
- width: 7px;
659
- height: 7px;
660
- border-radius: 3.5px;
661
- margin-right: 3.5px;
662
- background-color: #fff;
768
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock {
769
+ width: 100%;
663
770
  }
664
- .dvr-controls[data-dvr-controls] .live-button:hover {
665
- opacity: 1;
666
- text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
771
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock-content {
772
+ width: 100%;
667
773
  }
668
- .dvr-controls[data-dvr-controls] .live-info {
669
- font-size: 14px;
670
- letter-spacing: 0.8px;
671
- font-weight: 500;
672
- color: #fffffe;
673
- margin-left: 21px;
774
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-header {
775
+ padding-top: 12px;
776
+ height: 38px;
777
+ text-align: center;
674
778
  }
675
- .dvr-controls[data-dvr-controls] .live-info::before {
676
- width: 10px;
677
- height: 10px;
678
- border-radius: 50%;
679
- margin-right: 8px;
680
- background-color: #ed4f4a;
779
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-quality-header {
780
+ text-align: center;
681
781
  }
682
- .dvr-controls[data-dvr-controls] .live-button {
683
- height: 40px;
684
- opacity: 1;
685
- font-size: 14px;
686
- letter-spacing: 0.8px;
687
- font-weight: 500;
688
- margin-left: 20px;
782
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer {
783
+ height: 80px;
689
784
  }
690
- .dvr-controls[data-dvr-controls] .live-button::before {
691
- width: 10px;
692
- height: 10px;
693
- border-radius: 50%;
694
- margin-right: 8px;
695
- background-color: #cacaca;
785
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer-about-link {
786
+ bottom: 0;
787
+ left: 0;
788
+ }
789
+ .desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer .speedtest-footer-refresh {
790
+ inset: 50% auto auto 50%;
791
+ transform: translate(-50%, -50%);
696
792
  }
697
793
 
698
- .dvr .dvr-controls[data-dvr-controls] .live-info {
699
- display: none;
794
+ .speed-test-button {
795
+ margin: 10px 0 0;
796
+ color: #000;
700
797
  }
701
- .dvr .dvr-controls[data-dvr-controls] .live-button {
702
- display: block;
798
+
799
+ .speed-test {
800
+ position: absolute;
801
+ top: 0;
802
+ left: 0;
803
+ width: 100%;
804
+ height: 100%;
805
+ z-index: 9999;
806
+ }
807
+ .speed-test .speed-test-header {
808
+ width: 100%;
809
+ height: 32px;
810
+ }
811
+ .speed-test .speed-test-header .close-speed-test {
812
+ float: right;
813
+ margin-right: 5px;
814
+ line-height: 32px;
815
+ cursor: pointer;
816
+ color: var(--primary-text-color);
703
817
  }
704
- .dvr.media-control.live[data-media-control] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
705
- background-color: #005aff;
818
+ .speed-test .speed-test-header .close-speed-test:hover {
819
+ color: var(--hover-text-color);
706
820
  }
707
821
 
708
- .media-control.live[data-media-control] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
709
- background-color: #ff0101;
710
- }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
711
- order: 99;
712
- height: 20px;
822
+ .settings-button {
823
+ float: right;
824
+ margin: 0 12px 0 0;
825
+ height: 40px;
826
+ width: 24px;
827
+ border: none;
828
+ padding: 0;
713
829
  }
714
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
830
+
831
+ .settings-options-list {
715
832
  position: absolute;
716
833
  right: 16px;
717
834
  bottom: 52px;
718
- display: none;
835
+ background: var(--primary-background-color);
719
836
  width: 250px;
720
- min-height: 48px;
837
+ height: 48px;
721
838
  z-index: 9999;
722
839
  border-radius: 4px;
723
840
  }
724
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
725
- padding: 8px 0;
726
- }
727
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list svg {
841
+ .settings-options-list svg {
728
842
  float: left;
729
843
  margin-right: 10px;
730
844
  }
731
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
845
+ .settings-options-list .settings-speedtest-option {
846
+ color: var(--primary-text-color);
732
847
  margin: 0;
733
848
  text-align: left;
849
+ height: 24px;
734
850
  line-height: 22px;
735
- padding: 5px 14px;
851
+ padding: 14px;
736
852
  width: 250px;
737
853
  font-size: 12px;
738
854
  }
739
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_arrow-right-icon {
740
- float: right;
741
- margin-right: -14px;
855
+ .settings-options-list .settings-speedtest-option:hover {
856
+ color: var(--hover-text-color);
742
857
  }
743
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_value {
744
- float: right;
745
- margin-right: 8px;
858
+ .settings-options-list .settings-speedtest-option:hover svg path {
859
+ fill: var(--hover-text-color);
746
860
  }
747
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option svg {
748
- height: 20px;
749
- }*, :focus, :visited {
750
- outline: none !important;
861
+ .settings-options-list .settings-speedtest-option svg path {
862
+ fill: var(--primary-text-color);
751
863
  }
752
864
 
753
- .gear-wrapper .go-back {
754
- font-weight: 600;
865
+ .speedtest-summary {
866
+ width: 100%;
867
+ border-top: 1px solid var(--secondary-background-color) !important;
868
+ border-bottom: 1px solid var(--secondary-background-color) !important;
869
+ display: flex !important;
870
+ flex-direction: column;
871
+ align-items: stretch;
872
+ justify-content: space-between;
873
+ }
874
+ .speedtest-summary .speedtest-summary-header {
875
+ width: 100%;
876
+ padding-top: 4px;
877
+ text-align: left;
878
+ height: 32px;
755
879
  font-size: 14px;
880
+ font-weight: 500;
756
881
  line-height: 20px;
882
+ }
883
+ .speedtest-summary .speedtest-summary-block {
884
+ position: relative;
885
+ display: flex;
886
+ flex-direction: row;
757
887
  width: 100%;
758
- text-align: left;
759
- padding: 12px;
760
888
  }
761
- .gear-wrapper .go-back .arrow-left-icon {
762
- float: left;
763
- padding-top: 2px;
764
- padding-right: 2px;
889
+ .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock {
890
+ width: 50%;
891
+ margin-top: 4px;
892
+ margin-bottom: 12px;
765
893
  }
766
- .gear-wrapper .go-back .arrow-left-icon svg {
767
- height: 16px;
894
+ .speedtest-summary .speedtest-summary-block .speedtest-summary-subblock-content {
895
+ padding: 2px;
896
+ width: 248px;
897
+ max-width: 100%;
768
898
  }
769
- .gear-wrapper ul.gear-sub-menu {
899
+
900
+ .speedtest-quality {
770
901
  width: 100%;
771
- list-style-type: none;
772
- background-color: transparent;
773
- min-width: 60px;
774
- border-top: 2px solid rgb(36, 36, 36);
902
+ height: 36px;
903
+ display: flex !important;
904
+ flex-direction: column !important;
905
+ justify-content: space-between !important;
775
906
  }
776
- .gear-wrapper ul.gear-sub-menu li {
907
+ .speedtest-quality .speedtest-quality-header {
777
908
  font-size: 12px;
909
+ height: 20px;
910
+ border-left: 2px solid var(--secondary-background-color) !important;
911
+ background-color: var(--secondary-background-color);
778
912
  text-align: left;
779
913
  }
780
- .gear-wrapper ul.gear-sub-menu li[data-title] {
781
- background-color: #c3c2c2;
782
- padding: 5px;
914
+ .speedtest-quality-content {
915
+ width: 100%;
916
+ margin-top: 8px;
917
+ height: 8px;
918
+ display: flex !important;
919
+ flex-direction: row !important;
920
+ align-items: stretch !important;
921
+ justify-content: space-between;
783
922
  }
784
- .gear-wrapper ul.gear-sub-menu li a {
785
- display: block;
786
- text-decoration: none;
787
- height: 32px;
788
- padding: 5px 10px;
789
- line-height: 22px;
790
- color: #fffffe;
923
+ .speedtest-quality-content-item {
924
+ width: 18.8%;
925
+ background-color: #fff;
791
926
  }
792
- .gear-wrapper ul.gear-sub-menu li a:hover {
793
- color: white;
794
- background-color: rgba(0, 0, 0, 0.4);
927
+ .speedtest-quality-content-item.speedtest-quality-value-1 {
928
+ background-color: var(--speedtest-red);
795
929
  }
796
- .gear-wrapper ul.gear-sub-menu li a:hover a {
797
- color: white;
798
- text-decoration: none;
930
+ .speedtest-quality-content-item.speedtest-quality-value-2 {
931
+ background-color: var(--speedtest-orange);
799
932
  }
800
- .gear-wrapper ul.gear-sub-menu li a .check-icon {
801
- width: 30px;
802
- height: 20px;
803
- float: left;
804
- display: block;
933
+ .speedtest-quality-content-item.speedtest-quality-value-3 {
934
+ background-color: var(--speedtest-yellow);
805
935
  }
806
- .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
807
- display: none;
936
+ .speedtest-quality-content-item.speedtest-quality-value-4 {
937
+ background-color: var(--speedtest-light-green);
808
938
  }
809
- .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
810
- display: inline;
811
- }*,
812
- :focus,
813
- :visited {
814
- outline: none !important;
939
+ .speedtest-quality-content-item.speedtest-quality-value-5 {
940
+ background-color: var(--speedtest-green);
815
941
  }
816
942
 
817
- .media-control-subtitles[data-subtitles] {
943
+ .speedtest-footer {
818
944
  position: relative;
819
- order: 85;
945
+ float: left;
946
+ width: 100%;
947
+ height: 30px;
948
+ line-height: 16px;
820
949
  }
821
- .media-control-subtitles[data-subtitles] button {
822
- background-color: transparent;
823
- color: #fff;
824
- -webkit-font-smoothing: antialiased;
825
- border: none;
826
- cursor: pointer;
950
+ .speedtest-footer-about-link {
951
+ position: absolute;
952
+ bottom: 0;
953
+ left: 0;
954
+ color: var(--secondary-text-color);
955
+ text-decoration: underline !important;
827
956
  }
828
- .media-control-subtitles[data-subtitles] button .subtitle-text svg {
829
- fill: white;
957
+ .speedtest-footer-about-link:hover {
958
+ color: var(--hover-text-color);
830
959
  }
831
- .media-control-subtitles[data-subtitles] button:hover {
832
- color: #c9c9c9;
960
+ .speedtest-footer .speedtest-footer-refresh {
961
+ position: absolute;
962
+ bottom: 0;
963
+ right: 0;
964
+ color: var(--secondary-text-color);
965
+ font-size: 14px;
966
+ font-weight: 400;
967
+ line-height: 16px;
968
+ height: 16px;
969
+ display: flex;
970
+ align-items: center;
971
+ gap: 4px;
833
972
  }
834
- .media-control-subtitles[data-subtitles] button.changing {
835
- animation: pulse 0.5s infinite alternate;
973
+ .speedtest-footer .speedtest-footer-refresh svg path {
974
+ fill: var(--secondary-text-color);
836
975
  }
837
- .media-control-subtitles[data-subtitles] ul {
838
- width: 80px;
839
- list-style-type: none;
840
- position: absolute;
841
- bottom: 25px;
842
- border: 1px solid black;
843
- display: none;
844
- background-color: #e6e6e6;
845
- padding: 8px 0;
976
+ .speedtest-footer .speedtest-footer-refresh:hover {
977
+ color: var(--hover-text-color);
846
978
  }
847
- .media-control-subtitles[data-subtitles] li a {
848
- color: #444;
849
- padding: 2px 10px;
850
- display: block;
851
- text-decoration: none;
979
+ .speedtest-footer .speedtest-footer-refresh:hover svg path {
980
+ fill: var(--hover-text-color);
852
981
  }
853
- .media-control-subtitles[data-subtitles] li a:hover {
854
- background-color: #555;
855
- color: white;
982
+
983
+ .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box {
984
+ position: fixed;
985
+ height: auto;
986
+ width: auto;
987
+ inset: 0;
988
+ min-width: 100vw;
989
+ padding-bottom: 4px;
990
+ padding-left: 4px;
991
+ padding-right: 4px;
856
992
  }
857
- .media-control-subtitles[data-subtitles] li a:hover a {
858
- color: white;
859
- text-decoration: none;
993
+ .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top {
994
+ position: fixed;
860
995
  }
861
- .media-control-subtitles[data-subtitles] li.current a {
862
- color: #f00;
863
- background-color: #555;
996
+ .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
997
+ width: 50%;
864
998
  }
865
999
 
866
- @keyframes pulse {
867
- 0% {
868
- color: #fff;
1000
+ @media only screen and (orientation: portrait) {
1001
+ .mobile .speedtest-summary {
1002
+ padding: 0 5px;
1003
+ height: auto;
869
1004
  }
870
- 50% {
871
- color: #ff0101;
1005
+ .mobile .speedtest-summary-block {
1006
+ width: 100%;
1007
+ flex-direction: column;
872
1008
  }
873
- 100% {
874
- color: #B80000;
1009
+ .mobile .speedtest-summary-block .speedtest-summary-subblock {
1010
+ width: 100%;
1011
+ }
1012
+ .mobile .speedtest-summary-block .speedtest-summary-subblock-content {
1013
+ width: 100%;
1014
+ }
1015
+ .mobile .speedtest-summary-header {
1016
+ padding-top: 12px;
1017
+ height: 38px;
1018
+ text-align: center;
1019
+ }
1020
+ .mobile .speedtest-quality-header {
1021
+ text-align: center;
1022
+ }
1023
+ .mobile .speedtest-footer .speedtest-footer-refresh {
1024
+ inset: 50% auto auto 50%;
1025
+ transform: translate(-50%, -50%);
875
1026
  }
876
1027
  }
877
- ::cue {
878
- visibility: hidden !important;
879
- font-size: 0 !important;
880
- }
881
-
882
- .ios-fullscreen::cue {
883
- visibility: visible !important;
884
- font-size: 1em !important;
1028
+ @media only screen and (orientation: landscape) {
1029
+ .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
1030
+ width: 25%;
1031
+ }
885
1032
  }.player-poster[data-poster] {
886
1033
  display: flex;
887
1034
  justify-content: center;
@@ -916,125 +1063,80 @@
916
1063
  }
917
1064
  .player-poster[data-poster] .play-wrapper[data-poster] svg path {
918
1065
  fill: #fff;
919
- }.context-menu {
920
- z-index: 999;
921
- position: absolute;
922
- top: 0;
923
- left: 0;
924
- text-align: center;
925
- }
926
- .context-menu .context-menu-list {
927
- font-family: "Proxima Nova", sans-serif;
928
- font-size: 12px;
929
- line-height: 12px;
930
- list-style-type: none;
931
- text-align: left;
932
- padding: 5px;
933
- margin-left: auto;
934
- margin-right: auto;
935
- background-color: rgba(0, 0, 0, 0.75);
936
- border: 1px solid #666;
937
- border-radius: 4px;
938
- }
939
- .context-menu .context-menu-list .context-menu-list-item {
940
- color: white;
941
- padding: 5px;
942
- cursor: pointer;
943
1066
  }.level-disabled {
944
1067
  opacity: 0.5;
945
1068
  pointer-events: none;
946
- }.media-control-pip {
947
- order: 95;
948
- display: flex;
949
- }
950
- .media-control-pip button {
951
- height: 20px;
952
- }
953
- .media-control-pip button svg {
954
- height: 20px;
955
- }div.player-error-screen, [data-player] div.player-error-screen {
956
- color: #CCCACA;
1069
+ }.context-menu {
1070
+ z-index: 999;
957
1071
  position: absolute;
958
1072
  top: 0;
959
- height: 100%;
960
- width: 100%;
961
- background-color: rgba(0, 0, 0, 0.7);
962
- z-index: 2000;
963
- display: flex;
964
- flex-direction: column;
965
- justify-content: center;
966
- }
967
- div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
968
- font-size: 14px;
969
- color: #CCCACA;
970
- margin-top: 45px;
971
- }
972
- div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
973
- font-weight: bold;
974
- line-height: 30px;
975
- font-size: 18px;
976
- }
977
- div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
978
- width: 90%;
979
- margin: 0 auto;
1073
+ left: 0;
1074
+ text-align: center;
980
1075
  }
981
- div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
982
- font-size: 13px;
983
- margin-top: 15px;
1076
+ .context-menu .context-menu-list {
1077
+ font-family: "Proxima Nova", sans-serif;
1078
+ font-size: 12px;
1079
+ line-height: 12px;
1080
+ list-style-type: none;
1081
+ text-align: left;
1082
+ padding: 5px;
1083
+ margin-left: auto;
1084
+ margin-right: auto;
1085
+ background-color: rgba(0, 0, 0, 0.75);
1086
+ border: 1px solid #666;
1087
+ border-radius: 4px;
984
1088
  }
985
- div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1089
+ .context-menu .context-menu-list .context-menu-list-item {
1090
+ color: white;
1091
+ padding: 5px;
986
1092
  cursor: pointer;
987
- width: 30px;
988
- margin: 15px auto 0;
989
- }.big-mute-icon-wrapper[data-big-mute] {
1093
+ }.spinner-three-bounce[data-spinner] {
990
1094
  position: absolute;
991
- z-index: 9998;
992
- background-color: transparent;
993
- display: flex;
994
- justify-content: center;
995
- width: 100%;
996
- height: calc(100% - 50px);
1095
+ width: 70px;
1096
+ text-align: center;
1097
+ z-index: 999;
1098
+ left: 0;
1099
+ right: 0;
997
1100
  margin: 0 auto;
998
- opacity: 0.75;
999
- transition: opacity 0.1s ease;
1000
- pointer-events: auto;
1101
+ margin-left: auto;
1102
+ margin-right: auto;
1103
+ /* center vertically */
1104
+ top: 50%;
1105
+ transform: translateY(-50%);
1001
1106
  }
1002
- .big-mute-icon-wrapper[data-big-mute].hide {
1003
- display: none;
1107
+ .spinner-three-bounce[data-spinner] > div {
1108
+ width: 18px;
1109
+ height: 18px;
1110
+ background-color: #FFF;
1111
+ border-radius: 100%;
1112
+ display: inline-block;
1113
+ animation: bouncedelay 1.4s infinite ease-in-out;
1114
+ /* Prevent first frame from flickering when animation starts */
1115
+ animation-fill-mode: both;
1004
1116
  }
1005
- .big-mute-icon-wrapper[data-big-mute]:hover {
1006
- cursor: pointer;
1117
+ .spinner-three-bounce[data-spinner] [data-bounce1] {
1118
+ animation-delay: -0.32s;
1119
+ }
1120
+ .spinner-three-bounce[data-spinner] [data-bounce2] {
1121
+ animation-delay: -0.16s;
1007
1122
  }
1008
1123
 
1009
- .big-mute-icon[data-big-mute-icon] {
1124
+ @keyframes bouncedelay {
1125
+ 0%, 80%, 100% {
1126
+ transform: scale(0);
1127
+ }
1128
+ 40% {
1129
+ transform: scale(1);
1130
+ }
1131
+ }.media-control-pip {
1132
+ order: 95;
1010
1133
  display: flex;
1011
- align-items: center;
1012
- justify-content: center;
1013
- align-self: center;
1014
- width: 120px;
1015
- height: 120px;
1016
- border: 2px solid white;
1017
- border-radius: 50%;
1018
- filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
1019
- filter: alpha(opacity=60);
1020
- opacity: 1;
1021
- box-shadow: 0 0 1px 0 white;
1022
- background: rgba(240, 243, 247, 0.9411764706);
1023
- z-index: 10000;
1024
- }
1025
- .big-mute-icon[data-big-mute-icon] svg {
1026
- margin-left: 5px;
1027
- width: 80px;
1028
- height: 80px;
1029
- }
1030
- .big-mute-icon[data-big-mute-icon] svg path {
1031
- fill: #1f1e1e !important;
1032
1134
  }
1033
- .big-mute-icon[data-big-mute-icon]:hover {
1034
- background: rgba(240, 243, 247, 0.8784313725);
1135
+ .media-control-pip button {
1136
+ height: 20px;
1035
1137
  }
1036
- .big-mute-icon[data-big-mute-icon]:hover svg path {
1037
- fill: #151515 !important;
1138
+ .media-control-pip button svg {
1139
+ height: 20px;
1038
1140
  }[data-player] {
1039
1141
  --bottom-panel: 40px;
1040
1142
  }
@@ -1048,12 +1150,12 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1048
1150
  .container.crop-video [data-html5-video] {
1049
1151
  object-fit: cover;
1050
1152
  }
1051
- .container .subtitle-string {
1153
+ .container .cc-line {
1052
1154
  position: absolute;
1053
1155
  bottom: calc(var(--bottom-panel) + 5px);
1054
1156
  width: 100%;
1055
1157
  }
1056
- .container .subtitle-string p {
1158
+ .container .cc-line p {
1057
1159
  width: auto;
1058
1160
  background-color: rgba(0, 0, 0, 0.4);
1059
1161
  color: white;
@@ -1084,7 +1186,7 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1084
1186
  }
1085
1187
 
1086
1188
  .media-control-skin-1[data-media-control-skin-1].w270 .media-control-quality,
1087
- .media-control-skin-1[data-media-control-skin-1].w270 .media-control-audio-tracks {
1189
+ .media-control-skin-1[data-media-control-skin-1].w270 .media-control-audiotracks {
1088
1190
  display: none;
1089
1191
  }
1090
1192
  .media-control-skin-1[data-media-control-skin-1].w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] {
@@ -1121,10 +1223,10 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1121
1223
  top: 1px;
1122
1224
  }
1123
1225
 
1124
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-subtitles {
1226
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-cc {
1125
1227
  width: 28px;
1126
1228
  }
1127
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-subtitles svg {
1229
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-cc svg {
1128
1230
  height: 17px;
1129
1231
  }
1130
1232
  .media-control-skin-1[data-media-control-skin-1].w370 .share_plugin[data-share] .share-container {
@@ -1142,47 +1244,47 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1142
1244
  visibility: hidden;
1143
1245
  }
1144
1246
  .media-control-skin-1[data-media-control-skin-1].w370 .media-control-quality,
1145
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audio-tracks {
1247
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audiotracks {
1146
1248
  display: block;
1147
1249
  }
1148
1250
  .media-control-skin-1[data-media-control-skin-1].w370 .level-selector[data-level-selector],
1149
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audio-tracks[data-track-selector] {
1251
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audiotracks[data-audiotracks] {
1150
1252
  margin-top: 3px;
1151
1253
  margin-right: 10px;
1152
1254
  }
1153
1255
  .media-control-skin-1[data-media-control-skin-1].w370 .level-selector[data-level-selector] ul,
1154
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audio-tracks[data-track-selector] ul {
1256
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audiotracks[data-audiotracks] ul {
1155
1257
  bottom: 30px;
1156
1258
  width: 50px;
1157
1259
  }
1158
1260
  .media-control-skin-1[data-media-control-skin-1].w370 .level-selector[data-level-selector] ul li,
1159
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audio-tracks[data-track-selector] ul li {
1261
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audiotracks[data-audiotracks] ul li {
1160
1262
  height: 23px;
1161
1263
  font-size: 14px;
1162
1264
  }
1163
1265
  .media-control-skin-1[data-media-control-skin-1].w370 .level-selector[data-level-selector] ul li a,
1164
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audio-tracks[data-track-selector] ul li a {
1266
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audiotracks[data-audiotracks] ul li a {
1165
1267
  height: 23px;
1166
1268
  padding: 2px 5px;
1167
1269
  }
1168
1270
  .media-control-skin-1[data-media-control-skin-1].w370 .level-selector[data-level-selector] button[data-level-selector-button] .quality-text,
1169
1271
  .media-control-skin-1[data-media-control-skin-1].w370 .level-selector[data-level-selector] button[data-level-selector-button] .audio-text,
1170
- .media-control-skin-1[data-media-control-skin-1].w370 .level-selector[data-level-selector] button[data-track-selector-button] .quality-text,
1171
- .media-control-skin-1[data-media-control-skin-1].w370 .level-selector[data-level-selector] button[data-track-selector-button] .audio-text,
1172
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audio-tracks[data-track-selector] button[data-level-selector-button] .quality-text,
1173
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audio-tracks[data-track-selector] button[data-level-selector-button] .audio-text,
1174
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audio-tracks[data-track-selector] button[data-track-selector-button] .quality-text,
1175
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audio-tracks[data-track-selector] button[data-track-selector-button] .audio-text {
1272
+ .media-control-skin-1[data-media-control-skin-1].w370 .level-selector[data-level-selector] button[data-audiotracks-button] .quality-text,
1273
+ .media-control-skin-1[data-media-control-skin-1].w370 .level-selector[data-level-selector] button[data-audiotracks-button] .audio-text,
1274
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audiotracks[data-audiotracks] button[data-level-selector-button] .quality-text,
1275
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audiotracks[data-audiotracks] button[data-level-selector-button] .audio-text,
1276
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audiotracks[data-audiotracks] button[data-audiotracks-button] .quality-text,
1277
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audiotracks[data-audiotracks] button[data-audiotracks-button] .audio-text {
1176
1278
  font-size: 13px;
1177
1279
  }
1178
1280
  .media-control-skin-1[data-media-control-skin-1].w370 .level-selector[data-level-selector] button[data-level-selector-button] span.quality-arrow,
1179
1281
  .media-control-skin-1[data-media-control-skin-1].w370 .level-selector[data-level-selector] button[data-level-selector-button] span.audio-arrow,
1180
- .media-control-skin-1[data-media-control-skin-1].w370 .level-selector[data-level-selector] button[data-track-selector-button] span.quality-arrow,
1181
- .media-control-skin-1[data-media-control-skin-1].w370 .level-selector[data-level-selector] button[data-track-selector-button] span.audio-arrow,
1182
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audio-tracks[data-track-selector] button[data-level-selector-button] span.quality-arrow,
1183
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audio-tracks[data-track-selector] button[data-level-selector-button] span.audio-arrow,
1184
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audio-tracks[data-track-selector] button[data-track-selector-button] span.quality-arrow,
1185
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audio-tracks[data-track-selector] button[data-track-selector-button] span.audio-arrow {
1282
+ .media-control-skin-1[data-media-control-skin-1].w370 .level-selector[data-level-selector] button[data-audiotracks-button] span.quality-arrow,
1283
+ .media-control-skin-1[data-media-control-skin-1].w370 .level-selector[data-level-selector] button[data-audiotracks-button] span.audio-arrow,
1284
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audiotracks[data-audiotracks] button[data-level-selector-button] span.quality-arrow,
1285
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audiotracks[data-audiotracks] button[data-level-selector-button] span.audio-arrow,
1286
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audiotracks[data-audiotracks] button[data-audiotracks-button] span.quality-arrow,
1287
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-audiotracks[data-audiotracks] button[data-audiotracks-button] span.audio-arrow {
1186
1288
  width: 7px;
1187
1289
  height: 5px;
1188
1290
  margin-left: 4px;
@@ -1210,10 +1312,10 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1210
1312
  font-size: 11px;
1211
1313
  line-height: 32px;
1212
1314
  }
1213
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls[data-dvr-controls] {
1315
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls[data-dvr] {
1214
1316
  height: 32px;
1215
1317
  }
1216
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls[data-dvr-controls] .live-button {
1318
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls[data-dvr] .live-button {
1217
1319
  margin-left: 10px;
1218
1320
  height: 32px;
1219
1321
  font-size: 12px;
@@ -1221,12 +1323,12 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1221
1323
  text-shadow: none;
1222
1324
  letter-spacing: 0.6px;
1223
1325
  }
1224
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls[data-dvr-controls] .live-button::before {
1326
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls[data-dvr] .live-button::before {
1225
1327
  width: 8px;
1226
1328
  height: 8px;
1227
1329
  margin-right: 4px;
1228
1330
  }
1229
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls[data-dvr-controls] .live-info {
1331
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls[data-dvr] .live-info {
1230
1332
  margin-left: 10px;
1231
1333
  height: 32px;
1232
1334
  font-size: 12px;
@@ -1234,7 +1336,7 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1234
1336
  text-shadow: none;
1235
1337
  letter-spacing: 0.6px;
1236
1338
  }
1237
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls[data-dvr-controls] .live-info::before {
1339
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls[data-dvr] .live-info::before {
1238
1340
  width: 8px;
1239
1341
  height: 8px;
1240
1342
  margin-right: 4px;
@@ -1280,6 +1382,11 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1280
1382
  :root {
1281
1383
  --font-size-media-controls: 14px;
1282
1384
  --font-size-media-controls-dropdown: 16px;
1385
+ --player-vod-color: #005aff;
1386
+ --player-dvr-color: #fff;
1387
+ --player-live-color: #ff0101;
1388
+ --player-seekbar-current-color: #ff5700;
1389
+ --player-seekbar-buffer-color: #fff;
1283
1390
  }
1284
1391
 
1285
1392
  .media-control-skin-1[data-media-control-skin-1] {
@@ -1350,6 +1457,12 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1350
1457
  gap: 1rem;
1351
1458
  justify-content: flex-end;
1352
1459
  }
1460
+ @media (max-width: 420px) {
1461
+ .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .media-control-right-panel {
1462
+ gap: 0.5rem;
1463
+ overflow: hidden;
1464
+ }
1465
+ }
1353
1466
  .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] button.media-control-button {
1354
1467
  background-color: transparent;
1355
1468
  border: 0;
@@ -1381,7 +1494,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1381
1494
  height: 100%;
1382
1495
  }
1383
1496
  .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] button.media-control-button[data-fullscreen] {
1384
- float: right;
1385
1497
  order: 100;
1386
1498
  background-color: transparent;
1387
1499
  border: 0;
@@ -1459,7 +1571,7 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1459
1571
  left: 0;
1460
1572
  width: 0;
1461
1573
  height: 100%;
1462
- background-color: white;
1574
+ background-color: var(--player-seekbar-buffer-color);
1463
1575
  transition: all 0.1s ease-out;
1464
1576
  }
1465
1577
  .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
@@ -1468,7 +1580,7 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1468
1580
  left: 0;
1469
1581
  width: 0;
1470
1582
  height: 100%;
1471
- background-color: #ff5700;
1583
+ background-color: var(--player-seekbar-current-color);
1472
1584
  transition: all 0.1s ease-out;
1473
1585
  }
1474
1586
  .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .bar-container[data-seekbar].seek-disabled {
@@ -1559,7 +1671,7 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1559
1671
  left: 0;
1560
1672
  width: 0;
1561
1673
  height: 100%;
1562
- background-color: #005aff;
1674
+ background-color: var(--player-vod-color);
1563
1675
  transition: all 0.1s ease-out;
1564
1676
  }
1565
1677
  .media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber[data-volume] {
@@ -1602,16 +1714,16 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1602
1714
  }
1603
1715
 
1604
1716
  /* TODO distribute between plugins' styles */
1605
- .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles button[data-subtitles-button] {
1717
+ .media-control-skin-1[data-media-control-skin-1] .media-control-cc button[data-cc-button] {
1606
1718
  display: flex;
1607
1719
  justify-content: center;
1608
1720
  padding: 0;
1609
1721
  align-items: center;
1610
1722
  }
1611
- .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles button[data-subtitles-button]:hover {
1723
+ .media-control-skin-1[data-media-control-skin-1] .media-control-cc button[data-cc-button]:hover {
1612
1724
  color: white;
1613
1725
  }
1614
- .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles ul {
1726
+ .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul {
1615
1727
  background-color: rgba(74, 74, 74, 0.6);
1616
1728
  border: none;
1617
1729
  width: auto;
@@ -1619,197 +1731,49 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1619
1731
  bottom: 52px;
1620
1732
  margin-left: -28px;
1621
1733
  }
1622
- .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles ul li {
1623
- font-size: 16px;
1624
- text-align: center;
1625
- white-space: nowrap;
1626
- height: 30px;
1627
- }
1628
- .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles ul li a {
1629
- height: 30px;
1630
- padding: 5px 10px;
1631
- color: #fffffe;
1632
- }
1633
- .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles ul li a:hover {
1634
- background-color: rgba(0, 0, 0, 0.4);
1635
- }
1636
- .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles ul li.current a {
1637
- background-color: rgba(0, 0, 0, 0.4);
1638
- }
1639
- .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles ul li:first-child a {
1640
- border-bottom-left-radius: 4px;
1641
- border-bottom-right-radius: 4px;
1642
- }
1643
- .media-control-skin-1[data-media-control-skin-1] .media-control-subtitles ul li:last-child a {
1644
- border-top-left-radius: 4px;
1645
- border-top-right-radius: 4px;
1646
- }
1647
- .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] {
1648
- height: 26px;
1649
- line-height: 26px;
1650
- bottom: 52px;
1651
- border-radius: 3px;
1652
- background-color: rgba(74, 74, 74, 0.7);
1653
- }
1654
- .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span {
1655
- letter-spacing: 0.8px;
1656
- font-size: 14px;
1657
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1658
- }
1659
- .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-seek-time] {
1660
- padding-left: 8px;
1661
- padding-right: 8px;
1662
- }
1663
- .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
1664
- display: none !important;
1665
- }*, :focus, :visited {
1666
- outline: none !important;
1667
- }
1668
-
1669
- .multicamera[data-multicamera] {
1670
- float: right;
1671
- margin-top: 4px;
1672
- position: relative;
1673
- margin-right: 20px;
1674
- width: 20px;
1675
- }
1676
- .multicamera[data-multicamera] button {
1677
- background-color: transparent;
1678
- color: #fff;
1679
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1680
- -webkit-font-smoothing: antialiased;
1681
- border: none;
1682
- font-size: 14px;
1683
- padding: 0;
1684
- }
1685
- .multicamera[data-multicamera] button svg {
1686
- height: 20px;
1687
- position: relative;
1688
- margin-top: 6px;
1689
- }
1690
- .multicamera[data-multicamera] button:hover {
1691
- color: #c9c9c9;
1692
- }
1693
- .multicamera[data-multicamera] button.changing {
1694
- animation: pulse 0.5s infinite alternate;
1695
- }
1696
- .multicamera[data-multicamera] button span.quality-arrow {
1697
- width: 9px;
1698
- height: 6px;
1699
- margin-top: 11px;
1700
- margin-left: 5px;
1701
- }
1702
- .multicamera[data-multicamera] > ul {
1703
- padding: 6px 0;
1704
- right: -24px;
1705
- width: 245px;
1706
- list-style-type: none;
1707
- position: absolute;
1708
- bottom: 48px;
1709
- border-radius: 4px;
1710
- display: none;
1711
- background-color: rgba(74, 74, 74, 0.9);
1712
- }
1713
- .multicamera[data-multicamera] > ul::after {
1714
- content: "";
1715
- position: absolute;
1716
- top: 100%;
1717
- left: 85%;
1718
- margin-left: -10px;
1719
- width: 0;
1720
- height: 0;
1721
- border-top: 10px solid rgba(74, 74, 74, 0.9);
1722
- border-right: 10px solid transparent;
1723
- border-left: 10px solid transparent;
1724
- }
1725
- .multicamera[data-multicamera] li {
1726
- font-size: 10px;
1727
- cursor: pointer;
1728
- }
1729
- .multicamera[data-multicamera] li .multicamera-item {
1730
- display: flex;
1731
- padding: 10px 0;
1732
- justify-content: center;
1733
- position: relative;
1734
- }
1735
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
1736
- pointer-events: none;
1737
- }
1738
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
1739
- opacity: 0.5;
1740
- }
1741
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
1742
- opacity: 0.5;
1743
- }
1744
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
1745
- background-color: rgba(0, 0, 0, 0);
1746
- }
1747
- .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
1748
- background-color: rgba(0, 0, 0, 0.3);
1749
- }
1750
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
1751
- width: 80px;
1752
- height: 60px;
1753
- }
1754
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
1755
- width: 80px;
1756
- height: 60px;
1757
- }
1758
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
1759
- width: 120px;
1760
- text-align: left;
1761
- margin-left: 15px;
1762
- }
1763
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1764
- width: 120px;
1765
- height: 20px;
1766
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1767
- font-size: 14px;
1768
- font-weight: normal;
1769
- font-style: normal;
1770
- font-stretch: normal;
1771
- line-height: 1.43;
1772
- letter-spacing: normal;
1773
- text-align: left;
1774
- color: #fff;
1775
- text-overflow: ellipsis;
1776
- overflow: hidden;
1777
- }
1778
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1779
- opacity: 0.6;
1734
+ .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li {
1735
+ font-size: 16px;
1736
+ text-align: center;
1737
+ white-space: nowrap;
1738
+ height: 30px;
1780
1739
  }
1781
- .multicamera[data-multicamera] li[data-title] {
1782
- background-color: #c3c2c2;
1783
- padding: 5px;
1740
+ .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li a {
1741
+ height: 30px;
1742
+ padding: 5px 10px;
1743
+ color: #fffffe;
1784
1744
  }
1785
- .multicamera[data-multicamera] li a {
1786
- color: #444;
1787
- padding: 2px 10px;
1788
- display: block;
1789
- text-decoration: none;
1745
+ .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li a:hover {
1746
+ background-color: rgba(0, 0, 0, 0.4);
1790
1747
  }
1791
- .multicamera[data-multicamera] li a:hover {
1792
- background-color: #555;
1793
- color: white;
1748
+ .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li.current a {
1749
+ background-color: rgba(0, 0, 0, 0.4);
1794
1750
  }
1795
- .multicamera[data-multicamera] li a:hover a {
1796
- color: white;
1797
- text-decoration: none;
1751
+ .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li:first-child a {
1752
+ border-bottom-left-radius: 4px;
1753
+ border-bottom-right-radius: 4px;
1798
1754
  }
1799
- .multicamera[data-multicamera] li.current a {
1800
- color: #f00;
1755
+ .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li:last-child a {
1756
+ border-top-left-radius: 4px;
1757
+ border-top-right-radius: 4px;
1801
1758
  }
1802
-
1803
- @keyframes pulse {
1804
- 0% {
1805
- color: #fff;
1806
- }
1807
- 50% {
1808
- color: #ff0101;
1809
- }
1810
- 100% {
1811
- color: #B80000;
1812
- }
1759
+ .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] {
1760
+ height: 26px;
1761
+ line-height: 26px;
1762
+ bottom: 52px;
1763
+ border-radius: 3px;
1764
+ background-color: rgba(74, 74, 74, 0.7);
1765
+ }
1766
+ .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span {
1767
+ letter-spacing: 0.8px;
1768
+ font-size: 14px;
1769
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1770
+ }
1771
+ .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-seek-time] {
1772
+ padding-left: 8px;
1773
+ padding-right: 8px;
1774
+ }
1775
+ .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
1776
+ display: none !important;
1813
1777
  }.seek-time[data-seek-time] {
1814
1778
  position: absolute;
1815
1779
  white-space: nowrap;
@@ -1864,105 +1828,80 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1864
1828
  .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
1865
1829
  width: 33.3%;
1866
1830
  height: 100%;
1867
- }.spinner-three-bounce[data-spinner] {
1868
- position: absolute;
1869
- width: 70px;
1870
- text-align: center;
1871
- z-index: 999;
1872
- left: 0;
1873
- right: 0;
1874
- margin: 0 auto;
1875
- margin-left: auto;
1876
- margin-right: auto;
1877
- /* center vertically */
1878
- top: 50%;
1879
- transform: translateY(-50%);
1880
- }
1881
- .spinner-three-bounce[data-spinner] > div {
1882
- width: 18px;
1883
- height: 18px;
1884
- background-color: #FFF;
1885
- border-radius: 100%;
1886
- display: inline-block;
1887
- animation: bouncedelay 1.4s infinite ease-in-out;
1888
- /* Prevent first frame from flickering when animation starts */
1889
- animation-fill-mode: both;
1831
+ }*,
1832
+ :focus,
1833
+ :visited {
1834
+ outline: none !important;
1890
1835
  }
1891
- .spinner-three-bounce[data-spinner] [data-bounce1] {
1892
- animation-delay: -0.32s;
1836
+
1837
+ .media-control-cc[data-cc] {
1838
+ position: relative;
1839
+ order: 85;
1893
1840
  }
1894
- .spinner-three-bounce[data-spinner] [data-bounce2] {
1895
- animation-delay: -0.16s;
1841
+ .media-control-cc[data-cc] button {
1842
+ background-color: transparent;
1843
+ color: #fff;
1844
+ -webkit-font-smoothing: antialiased;
1845
+ border: none;
1846
+ cursor: pointer;
1896
1847
  }
1897
-
1898
- @keyframes bouncedelay {
1899
- 0%, 80%, 100% {
1900
- transform: scale(0);
1901
- }
1902
- 40% {
1903
- transform: scale(1);
1904
- }
1905
- }.scrub-thumbnails {
1906
- position: absolute;
1907
- bottom: 52px;
1908
- width: 100%;
1909
- transition: opacity 0.3s ease;
1848
+ .media-control-cc[data-cc] button .cc-text svg {
1849
+ fill: white;
1910
1850
  }
1911
- .scrub-thumbnails.hidden {
1912
- opacity: 0;
1851
+ .media-control-cc[data-cc] button:hover {
1852
+ color: #c9c9c9;
1913
1853
  }
1914
- .scrub-thumbnails .thumbnail-container {
1915
- display: inline-block;
1916
- position: relative;
1917
- overflow: hidden;
1918
- background-color: #000;
1854
+ .media-control-cc[data-cc] button.changing {
1855
+ animation: pulse 0.5s infinite alternate;
1919
1856
  }
1920
- .scrub-thumbnails .thumbnail-container .thumbnail-img {
1857
+ .media-control-cc[data-cc] ul {
1858
+ width: 80px;
1859
+ list-style-type: none;
1921
1860
  position: absolute;
1922
- width: auto;
1861
+ bottom: 25px;
1862
+ border: 1px solid black;
1863
+ display: none;
1864
+ background-color: #e6e6e6;
1865
+ padding: 8px 0;
1923
1866
  }
1924
- .scrub-thumbnails .thumbnails-text {
1925
- background-color: rgba(74, 74, 74, 0.7);
1926
- border-radius: 3px;
1927
- white-space: nowrap;
1928
- overflow: hidden;
1929
- text-overflow: ellipsis;
1867
+ .media-control-cc[data-cc] li a {
1868
+ color: #444;
1869
+ padding: 2px 10px;
1870
+ display: block;
1871
+ text-decoration: none;
1872
+ }
1873
+ .media-control-cc[data-cc] li a:hover {
1874
+ background-color: #555;
1930
1875
  color: white;
1931
- position: absolute;
1932
- bottom: 23px;
1933
- width: 100px;
1934
1876
  }
1935
- .scrub-thumbnails .spotlight {
1936
- background-color: #4a4a4a;
1937
- overflow: hidden;
1938
- position: absolute;
1939
- bottom: 0;
1940
- left: 0;
1941
- border-color: #4a4a4a;
1942
- border-style: solid;
1943
- border-width: 3px;
1944
- border-radius: 3px;
1877
+ .media-control-cc[data-cc] li a:hover a {
1878
+ color: white;
1879
+ text-decoration: none;
1945
1880
  }
1946
- .scrub-thumbnails .spotlight img {
1947
- width: auto;
1881
+ .media-control-cc[data-cc] li.current a {
1882
+ color: #f00;
1883
+ background-color: #555;
1948
1884
  }
1949
- .scrub-thumbnails .backdrop {
1950
- position: absolute;
1951
- left: 0;
1952
- bottom: 0;
1953
- right: 0;
1954
- background-color: #000;
1955
- overflow: hidden;
1885
+
1886
+ @keyframes pulse {
1887
+ 0% {
1888
+ color: #fff;
1889
+ }
1890
+ 50% {
1891
+ color: #ff0101;
1892
+ }
1893
+ 100% {
1894
+ color: #B80000;
1895
+ }
1956
1896
  }
1957
- .scrub-thumbnails .backdrop .carousel {
1958
- position: absolute;
1959
- top: 0;
1960
- left: 0;
1961
- height: 100%;
1962
- white-space: nowrap;
1897
+ ::cue {
1898
+ visibility: hidden !important;
1899
+ font-size: 0 !important;
1963
1900
  }
1964
- .scrub-thumbnails .backdrop .carousel img {
1965
- width: auto;
1901
+
1902
+ .ios-fullscreen::cue {
1903
+ visibility: visible !important;
1904
+ font-size: 1em !important;
1966
1905
  }.share_plugin[data-share] {
1967
1906
  pointer-events: auto;
1968
1907
  z-index: 5;
@@ -2046,6 +1985,67 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
2046
1985
  display: inline-block;
2047
1986
  margin-right: 5px;
2048
1987
  cursor: pointer;
1988
+ }.scrub-thumbnails {
1989
+ position: absolute;
1990
+ bottom: 52px;
1991
+ width: 100%;
1992
+ transition: opacity 0.3s ease;
1993
+ }
1994
+ .scrub-thumbnails.hidden {
1995
+ opacity: 0;
1996
+ }
1997
+ .scrub-thumbnails .thumbnail-container {
1998
+ display: inline-block;
1999
+ position: relative;
2000
+ overflow: hidden;
2001
+ background-color: #000;
2002
+ }
2003
+ .scrub-thumbnails .thumbnail-container .thumbnail-img {
2004
+ position: absolute;
2005
+ width: auto;
2006
+ }
2007
+ .scrub-thumbnails .thumbnails-text {
2008
+ background-color: rgba(74, 74, 74, 0.7);
2009
+ border-radius: 3px;
2010
+ white-space: nowrap;
2011
+ overflow: hidden;
2012
+ text-overflow: ellipsis;
2013
+ color: white;
2014
+ position: absolute;
2015
+ bottom: 23px;
2016
+ width: 100px;
2017
+ }
2018
+ .scrub-thumbnails .spotlight {
2019
+ background-color: #4a4a4a;
2020
+ overflow: hidden;
2021
+ position: absolute;
2022
+ bottom: 0;
2023
+ left: 0;
2024
+ border-color: #4a4a4a;
2025
+ border-style: solid;
2026
+ border-width: 3px;
2027
+ border-radius: 3px;
2028
+ }
2029
+ .scrub-thumbnails .spotlight img {
2030
+ width: auto;
2031
+ }
2032
+ .scrub-thumbnails .backdrop {
2033
+ position: absolute;
2034
+ left: 0;
2035
+ bottom: 0;
2036
+ right: 0;
2037
+ background-color: #000;
2038
+ overflow: hidden;
2039
+ }
2040
+ .scrub-thumbnails .backdrop .carousel {
2041
+ position: absolute;
2042
+ top: 0;
2043
+ left: 0;
2044
+ height: 100%;
2045
+ white-space: nowrap;
2046
+ }
2047
+ .scrub-thumbnails .backdrop .carousel img {
2048
+ width: auto;
2049
2049
  }.player-logo[data-logo] {
2050
2050
  position: absolute;
2051
2051
  z-index: 2;