@gcorevideo/player 2.22.8 → 2.22.10
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.
- package/dist/core.js +2 -2
- package/dist/index.css +733 -733
- package/dist/index.js +25 -5
- package/dist/plugins/index.css +1244 -1244
- package/dist/plugins/index.js +24 -3
- package/lib/Player.js +1 -1
- package/lib/plugins/playback-rate/PlaybackRate.d.ts +2 -0
- package/lib/plugins/playback-rate/PlaybackRate.d.ts.map +1 -1
- package/lib/plugins/playback-rate/PlaybackRate.js +23 -3
- package/lib/types.d.ts +4 -3
- package/lib/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/Player.ts +1 -1
- package/src/plugins/media-control/__tests__/MediaControl.test.ts +0 -3
- package/src/plugins/playback-rate/PlaybackRate.ts +30 -3
- package/src/plugins/playback-rate/__tests__/PlaybackRate.test.ts +11 -7
- package/src/types.ts +4 -3
- package/tsconfig.tsbuildinfo +1 -1
package/dist/index.css
CHANGED
|
@@ -122,696 +122,763 @@
|
|
|
122
122
|
.gplayer-lite-btn::-moz-focus-inner {
|
|
123
123
|
border: 0;
|
|
124
124
|
padding: 0;
|
|
125
|
-
}
|
|
126
|
-
|
|
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 {
|
|
125
|
+
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
126
|
+
color: #CCCACA;
|
|
156
127
|
position: absolute;
|
|
157
128
|
top: 0;
|
|
158
|
-
|
|
159
|
-
z-index: 99990;
|
|
129
|
+
height: 100%;
|
|
160
130
|
width: 100%;
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
margin-right: 12px;
|
|
167
|
-
margin-top: 10px;
|
|
168
|
-
display: block;
|
|
169
|
-
width: 12px;
|
|
170
|
-
height: 12px;
|
|
171
|
-
}
|
|
172
|
-
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button svg path {
|
|
173
|
-
fill: var(--primary-text-color);
|
|
174
|
-
}
|
|
175
|
-
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button:hover svg path {
|
|
176
|
-
fill: var(--hover-text-color);
|
|
131
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
132
|
+
z-index: 2000;
|
|
133
|
+
display: flex;
|
|
134
|
+
flex-direction: column;
|
|
135
|
+
justify-content: center;
|
|
177
136
|
}
|
|
178
|
-
.
|
|
179
|
-
|
|
180
|
-
|
|
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;
|
|
181
141
|
}
|
|
182
|
-
.
|
|
183
|
-
|
|
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;
|
|
184
146
|
}
|
|
185
|
-
.
|
|
186
|
-
|
|
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;
|
|
187
150
|
}
|
|
188
|
-
.
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
background: var(--primary-background-color);
|
|
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;
|
|
192
154
|
}
|
|
193
|
-
.
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
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
|
+
}*,
|
|
160
|
+
:focus,
|
|
161
|
+
:visited {
|
|
162
|
+
outline: none !important;
|
|
198
163
|
}
|
|
199
|
-
|
|
164
|
+
|
|
165
|
+
.media-control-audiotracks {
|
|
200
166
|
position: relative;
|
|
201
|
-
padding: 0 5px;
|
|
202
|
-
text-align: left;
|
|
203
167
|
}
|
|
204
|
-
.
|
|
168
|
+
.media-control-audiotracks button {
|
|
169
|
+
background-color: transparent;
|
|
170
|
+
color: #fff;
|
|
171
|
+
-webkit-font-smoothing: antialiased;
|
|
172
|
+
border: none;
|
|
173
|
+
cursor: pointer;
|
|
174
|
+
display: flex;
|
|
175
|
+
align-items: center;
|
|
205
176
|
padding: 0;
|
|
206
177
|
}
|
|
207
|
-
.
|
|
208
|
-
|
|
178
|
+
.media-control-audiotracks button .audio-text {
|
|
179
|
+
text-overflow: ellipsis;
|
|
180
|
+
overflow: hidden;
|
|
181
|
+
white-space: nowrap;
|
|
182
|
+
max-width: 100px;
|
|
183
|
+
background-color: transparent;
|
|
184
|
+
-webkit-font-smoothing: antialiased;
|
|
185
|
+
border: none;
|
|
186
|
+
cursor: pointer;
|
|
209
187
|
}
|
|
210
|
-
.
|
|
211
|
-
|
|
188
|
+
.media-control-audiotracks button:hover {
|
|
189
|
+
color: white;
|
|
212
190
|
}
|
|
213
|
-
.
|
|
214
|
-
|
|
191
|
+
.media-control-audiotracks button.changing {
|
|
192
|
+
animation: pulse 0.5s infinite alternate;
|
|
215
193
|
}
|
|
216
|
-
.
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
font-size: 14px;
|
|
194
|
+
.media-control-audiotracks button span.audio-arrow {
|
|
195
|
+
width: 9px;
|
|
196
|
+
height: 6px;
|
|
197
|
+
margin-left: 5px;
|
|
221
198
|
}
|
|
222
|
-
.
|
|
223
|
-
|
|
199
|
+
.media-control-audiotracks .menu {
|
|
200
|
+
max-width: 114px;
|
|
201
|
+
list-style-type: none;
|
|
224
202
|
position: absolute;
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
}
|
|
232
|
-
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow ul {
|
|
233
|
-
width: 100%;
|
|
234
|
-
}
|
|
235
|
-
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary {
|
|
236
|
-
padding: 0 5px;
|
|
237
|
-
height: auto;
|
|
238
|
-
}
|
|
239
|
-
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block {
|
|
240
|
-
width: 100%;
|
|
241
|
-
flex-direction: column;
|
|
203
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
204
|
+
border: none;
|
|
205
|
+
min-width: 60px;
|
|
206
|
+
border-radius: 4px;
|
|
207
|
+
bottom: 40px;
|
|
208
|
+
right: -2px;
|
|
242
209
|
}
|
|
243
|
-
.
|
|
244
|
-
|
|
210
|
+
.media-control-audiotracks .menu.hidden {
|
|
211
|
+
display: none;
|
|
245
212
|
}
|
|
246
|
-
.
|
|
247
|
-
|
|
213
|
+
.media-control-audiotracks li {
|
|
214
|
+
font-size: var(--font-size-media-controls-dropdown);
|
|
215
|
+
text-align: right;
|
|
216
|
+
height: 30px;
|
|
248
217
|
}
|
|
249
|
-
.
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
text-align: center;
|
|
218
|
+
.media-control-audiotracks li[data-title] {
|
|
219
|
+
background-color: #c3c2c2;
|
|
220
|
+
padding: 5px;
|
|
253
221
|
}
|
|
254
|
-
.
|
|
255
|
-
|
|
222
|
+
.media-control-audiotracks li a {
|
|
223
|
+
display: block;
|
|
224
|
+
text-decoration: none;
|
|
225
|
+
text-overflow: ellipsis;
|
|
226
|
+
overflow: hidden;
|
|
227
|
+
white-space: nowrap;
|
|
228
|
+
height: 30px;
|
|
229
|
+
padding: 5px 10px;
|
|
230
|
+
color: #fffffe;
|
|
256
231
|
}
|
|
257
|
-
.
|
|
258
|
-
|
|
232
|
+
.media-control-audiotracks li a:hover {
|
|
233
|
+
text-decoration: none;
|
|
234
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
235
|
+
color: white;
|
|
259
236
|
}
|
|
260
|
-
.
|
|
261
|
-
|
|
262
|
-
left: 0;
|
|
237
|
+
.media-control-audiotracks li.current a {
|
|
238
|
+
color: #f00;
|
|
263
239
|
}
|
|
264
|
-
.
|
|
265
|
-
|
|
266
|
-
|
|
240
|
+
.media-control-audiotracks li:first-child a {
|
|
241
|
+
border-bottom-left-radius: 4px;
|
|
242
|
+
border-bottom-right-radius: 4px;
|
|
267
243
|
}
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
color: #000;
|
|
244
|
+
.media-control-audiotracks li:last-child a {
|
|
245
|
+
border-top-left-radius: 4px;
|
|
246
|
+
border-top-right-radius: 4px;
|
|
272
247
|
}
|
|
273
248
|
|
|
274
|
-
|
|
249
|
+
@keyframes pulse {
|
|
250
|
+
0% {
|
|
251
|
+
color: #fff;
|
|
252
|
+
}
|
|
253
|
+
50% {
|
|
254
|
+
color: #ff0101;
|
|
255
|
+
}
|
|
256
|
+
100% {
|
|
257
|
+
color: #B80000;
|
|
258
|
+
}
|
|
259
|
+
}.context-menu {
|
|
260
|
+
z-index: 999;
|
|
275
261
|
position: absolute;
|
|
276
262
|
top: 0;
|
|
277
263
|
left: 0;
|
|
278
|
-
|
|
279
|
-
height: 100%;
|
|
280
|
-
z-index: 9999;
|
|
264
|
+
text-align: center;
|
|
281
265
|
}
|
|
282
|
-
.
|
|
283
|
-
|
|
284
|
-
|
|
266
|
+
.context-menu .context-menu-list {
|
|
267
|
+
font-family: "Proxima Nova", sans-serif;
|
|
268
|
+
font-size: 12px;
|
|
269
|
+
line-height: 12px;
|
|
270
|
+
list-style-type: none;
|
|
271
|
+
text-align: left;
|
|
272
|
+
padding: 5px;
|
|
273
|
+
margin-left: auto;
|
|
274
|
+
margin-right: auto;
|
|
275
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
276
|
+
border: 1px solid #666;
|
|
277
|
+
border-radius: 4px;
|
|
285
278
|
}
|
|
286
|
-
.
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
line-height: 32px;
|
|
279
|
+
.context-menu .context-menu-list .context-menu-list-item {
|
|
280
|
+
color: white;
|
|
281
|
+
padding: 5px;
|
|
290
282
|
cursor: pointer;
|
|
291
|
-
|
|
283
|
+
}.clips.bar-container[data-seekbar] {
|
|
284
|
+
clip-path: url("#myClip");
|
|
285
|
+
}.player-poster[data-poster] {
|
|
286
|
+
display: flex;
|
|
287
|
+
justify-content: center;
|
|
288
|
+
align-items: center;
|
|
289
|
+
position: absolute;
|
|
290
|
+
height: 100%;
|
|
291
|
+
width: 100%;
|
|
292
|
+
z-index: 998;
|
|
293
|
+
top: 0;
|
|
294
|
+
left: 0;
|
|
295
|
+
background-color: #000;
|
|
296
|
+
background-size: cover;
|
|
297
|
+
background-repeat: no-repeat;
|
|
298
|
+
background-position: 50% 50%;
|
|
292
299
|
}
|
|
293
|
-
.
|
|
294
|
-
|
|
300
|
+
.player-poster[data-poster].clickable {
|
|
301
|
+
cursor: pointer;
|
|
295
302
|
}
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
float: right;
|
|
299
|
-
margin: 0 12px 0 0;
|
|
300
|
-
height: 40px;
|
|
301
|
-
width: 24px;
|
|
302
|
-
border: none;
|
|
303
|
-
padding: 0;
|
|
303
|
+
.player-poster[data-poster]:hover .play-wrapper[data-poster] {
|
|
304
|
+
opacity: 1;
|
|
304
305
|
}
|
|
305
|
-
|
|
306
|
-
|
|
306
|
+
.player-poster[data-poster] .play-wrapper[data-poster] {
|
|
307
|
+
width: 100%;
|
|
308
|
+
height: 25%;
|
|
309
|
+
margin: 0 auto;
|
|
310
|
+
opacity: 0.75;
|
|
311
|
+
transition: opacity 0.1s ease;
|
|
312
|
+
}
|
|
313
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg {
|
|
314
|
+
height: 100%;
|
|
315
|
+
display: inline;
|
|
316
|
+
}
|
|
317
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg path {
|
|
318
|
+
fill: #fff;
|
|
319
|
+
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
320
|
+
order: 99;
|
|
321
|
+
height: 20px;
|
|
322
|
+
}
|
|
323
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
|
|
307
324
|
position: absolute;
|
|
308
325
|
right: 16px;
|
|
309
326
|
bottom: 52px;
|
|
310
|
-
background: var(--primary-background-color);
|
|
311
327
|
width: 250px;
|
|
312
|
-
height: 48px;
|
|
328
|
+
min-height: 48px;
|
|
313
329
|
z-index: 9999;
|
|
314
330
|
border-radius: 4px;
|
|
315
331
|
}
|
|
316
|
-
.
|
|
332
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
|
|
333
|
+
padding: 8px 0;
|
|
334
|
+
}
|
|
335
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list svg {
|
|
317
336
|
float: left;
|
|
318
337
|
margin-right: 10px;
|
|
319
338
|
}
|
|
320
|
-
.
|
|
321
|
-
color: var(--primary-text-color);
|
|
339
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
|
|
322
340
|
margin: 0;
|
|
323
341
|
text-align: left;
|
|
324
|
-
height: 24px;
|
|
325
342
|
line-height: 22px;
|
|
326
|
-
padding: 14px;
|
|
343
|
+
padding: 5px 14px;
|
|
327
344
|
width: 250px;
|
|
328
345
|
font-size: 12px;
|
|
329
346
|
}
|
|
330
|
-
.
|
|
331
|
-
|
|
347
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_arrow-right-icon {
|
|
348
|
+
float: right;
|
|
349
|
+
margin-right: -14px;
|
|
332
350
|
}
|
|
333
|
-
.
|
|
334
|
-
|
|
351
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_value {
|
|
352
|
+
float: right;
|
|
353
|
+
margin-right: 8px;
|
|
335
354
|
}
|
|
336
|
-
.
|
|
337
|
-
|
|
355
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option svg {
|
|
356
|
+
height: 20px;
|
|
357
|
+
}.big-mute-icon-wrapper[data-big-mute] {
|
|
358
|
+
position: absolute;
|
|
359
|
+
z-index: 9998;
|
|
360
|
+
background-color: transparent;
|
|
361
|
+
display: flex;
|
|
362
|
+
justify-content: center;
|
|
363
|
+
width: 100%;
|
|
364
|
+
height: calc(100% - 50px);
|
|
365
|
+
margin: 0 auto;
|
|
366
|
+
opacity: 0.75;
|
|
367
|
+
transition: opacity 0.1s ease;
|
|
368
|
+
pointer-events: auto;
|
|
369
|
+
}
|
|
370
|
+
.big-mute-icon-wrapper[data-big-mute].hide {
|
|
371
|
+
display: none;
|
|
372
|
+
}
|
|
373
|
+
.big-mute-icon-wrapper[data-big-mute]:hover {
|
|
374
|
+
cursor: pointer;
|
|
338
375
|
}
|
|
339
376
|
|
|
340
|
-
.
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
377
|
+
.big-mute-icon[data-big-mute-icon] {
|
|
378
|
+
display: flex;
|
|
379
|
+
align-items: center;
|
|
380
|
+
justify-content: center;
|
|
381
|
+
align-self: center;
|
|
382
|
+
width: 120px;
|
|
383
|
+
height: 120px;
|
|
384
|
+
border: 2px solid white;
|
|
385
|
+
border-radius: 50%;
|
|
386
|
+
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
387
|
+
filter: alpha(opacity=60);
|
|
388
|
+
opacity: 1;
|
|
389
|
+
box-shadow: 0 0 1px 0 white;
|
|
390
|
+
background: rgba(240, 243, 247, 0.9411764706);
|
|
391
|
+
z-index: 10000;
|
|
348
392
|
}
|
|
349
|
-
.
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
393
|
+
.big-mute-icon[data-big-mute-icon] svg {
|
|
394
|
+
margin-left: 5px;
|
|
395
|
+
width: 80px;
|
|
396
|
+
height: 80px;
|
|
397
|
+
}
|
|
398
|
+
.big-mute-icon[data-big-mute-icon] svg path {
|
|
399
|
+
fill: #1f1e1e !important;
|
|
400
|
+
}
|
|
401
|
+
.big-mute-icon[data-big-mute-icon]:hover {
|
|
402
|
+
background: rgba(240, 243, 247, 0.8784313725);
|
|
403
|
+
}
|
|
404
|
+
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
405
|
+
fill: #151515 !important;
|
|
406
|
+
}*, :focus, :visited {
|
|
407
|
+
outline: none !important;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
.gear-wrapper .go-back {
|
|
411
|
+
font-weight: 600;
|
|
354
412
|
font-size: 14px;
|
|
355
|
-
font-weight: 500;
|
|
356
413
|
line-height: 20px;
|
|
357
|
-
}
|
|
358
|
-
.speedtest-summary .speedtest-summary-block {
|
|
359
|
-
position: relative;
|
|
360
|
-
display: flex;
|
|
361
|
-
flex-direction: row;
|
|
362
414
|
width: 100%;
|
|
415
|
+
text-align: left;
|
|
416
|
+
padding: 12px;
|
|
363
417
|
}
|
|
364
|
-
.
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
418
|
+
.gear-wrapper .go-back .arrow-left-icon {
|
|
419
|
+
float: left;
|
|
420
|
+
padding-top: 2px;
|
|
421
|
+
padding-right: 2px;
|
|
368
422
|
}
|
|
369
|
-
.
|
|
370
|
-
|
|
371
|
-
width: 248px;
|
|
372
|
-
max-width: 100%;
|
|
423
|
+
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
424
|
+
height: 16px;
|
|
373
425
|
}
|
|
374
|
-
|
|
375
|
-
.speedtest-quality {
|
|
426
|
+
.gear-wrapper ul.gear-sub-menu {
|
|
376
427
|
width: 100%;
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
justify-content: space-between !important;
|
|
428
|
+
list-style-type: none;
|
|
429
|
+
min-width: 60px;
|
|
430
|
+
border-top: 2px solid rgb(36, 36, 36);
|
|
381
431
|
}
|
|
382
|
-
.
|
|
432
|
+
.gear-wrapper ul.gear-sub-menu li {
|
|
383
433
|
font-size: 12px;
|
|
384
|
-
height: 20px;
|
|
385
|
-
border-left: 2px solid var(--secondary-background-color) !important;
|
|
386
|
-
background-color: var(--secondary-background-color);
|
|
387
434
|
text-align: left;
|
|
388
435
|
}
|
|
389
|
-
.
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
height: 8px;
|
|
393
|
-
display: flex !important;
|
|
394
|
-
flex-direction: row !important;
|
|
395
|
-
align-items: stretch !important;
|
|
396
|
-
justify-content: space-between;
|
|
436
|
+
.gear-wrapper ul.gear-sub-menu li[data-title] {
|
|
437
|
+
background-color: #c3c2c2;
|
|
438
|
+
padding: 5px;
|
|
397
439
|
}
|
|
398
|
-
.
|
|
399
|
-
|
|
400
|
-
|
|
440
|
+
.gear-wrapper ul.gear-sub-menu li a {
|
|
441
|
+
display: block;
|
|
442
|
+
text-decoration: none;
|
|
443
|
+
height: 32px;
|
|
444
|
+
padding: 5px 10px;
|
|
445
|
+
line-height: 22px;
|
|
446
|
+
color: #fffffe;
|
|
401
447
|
}
|
|
402
|
-
.
|
|
403
|
-
|
|
448
|
+
.gear-wrapper ul.gear-sub-menu li a:hover {
|
|
449
|
+
color: white;
|
|
450
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
404
451
|
}
|
|
405
|
-
.
|
|
406
|
-
|
|
452
|
+
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
453
|
+
color: white;
|
|
454
|
+
text-decoration: none;
|
|
407
455
|
}
|
|
408
|
-
.
|
|
409
|
-
|
|
456
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
457
|
+
width: 30px;
|
|
458
|
+
height: 20px;
|
|
459
|
+
float: left;
|
|
460
|
+
display: block;
|
|
410
461
|
}
|
|
411
|
-
.
|
|
412
|
-
|
|
462
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
463
|
+
display: none;
|
|
413
464
|
}
|
|
414
|
-
.
|
|
415
|
-
|
|
465
|
+
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
466
|
+
display: inline;
|
|
467
|
+
}:root {
|
|
468
|
+
--primary-background-color: #000;
|
|
469
|
+
--secondary-background-color: #262626;
|
|
470
|
+
--primary-text-color: #fff;
|
|
471
|
+
--secondary-text-color: #fff4f2;
|
|
472
|
+
--hover-text-color: #f9b090;
|
|
473
|
+
--speedtest-red: #df564d;
|
|
474
|
+
--speedtest-orange: #df934d;
|
|
475
|
+
--speedtest-yellow: #dfd04d;
|
|
476
|
+
--speedtest-light-green: #c2df4d;
|
|
477
|
+
--speedtest-green: #73df4d;
|
|
416
478
|
}
|
|
417
479
|
|
|
418
|
-
.
|
|
419
|
-
position: relative;
|
|
420
|
-
float: left;
|
|
421
|
-
width: 100%;
|
|
422
|
-
height: 30px;
|
|
423
|
-
line-height: 16px;
|
|
424
|
-
}
|
|
425
|
-
.speedtest-footer-about-link {
|
|
480
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box {
|
|
426
481
|
position: absolute;
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
482
|
+
display: inline-block;
|
|
483
|
+
bottom: 52px;
|
|
484
|
+
right: 16px;
|
|
485
|
+
padding: 0 10px 12px;
|
|
486
|
+
margin: 0;
|
|
487
|
+
line-height: 20px;
|
|
488
|
+
font-size: 12px;
|
|
489
|
+
font-weight: 500;
|
|
490
|
+
background: var(--primary-background-color);
|
|
491
|
+
color: #fff;
|
|
492
|
+
z-index: 20000;
|
|
493
|
+
overflow: auto;
|
|
494
|
+
max-height: calc(100vh - 60px);
|
|
495
|
+
max-width: calc(100vw - 10px);
|
|
496
|
+
}
|
|
497
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top {
|
|
436
498
|
position: absolute;
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
height: 16px;
|
|
444
|
-
display: flex;
|
|
445
|
-
align-items: center;
|
|
446
|
-
gap: 4px;
|
|
499
|
+
top: 0;
|
|
500
|
+
left: 0;
|
|
501
|
+
z-index: 99990;
|
|
502
|
+
width: 100%;
|
|
503
|
+
height: 32px;
|
|
504
|
+
background: var(--primary-background-color);
|
|
447
505
|
}
|
|
448
|
-
.
|
|
449
|
-
|
|
506
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button {
|
|
507
|
+
float: right;
|
|
508
|
+
margin-right: 12px;
|
|
509
|
+
margin-top: 10px;
|
|
510
|
+
display: block;
|
|
511
|
+
width: 12px;
|
|
512
|
+
height: 12px;
|
|
450
513
|
}
|
|
451
|
-
.
|
|
452
|
-
|
|
514
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button svg path {
|
|
515
|
+
fill: var(--primary-text-color);
|
|
453
516
|
}
|
|
454
|
-
.
|
|
517
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button:hover svg path {
|
|
455
518
|
fill: var(--hover-text-color);
|
|
456
519
|
}
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
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;
|
|
520
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-main {
|
|
521
|
+
overflow: hidden;
|
|
522
|
+
margin-top: 44px;
|
|
467
523
|
}
|
|
468
|
-
.
|
|
469
|
-
|
|
524
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.wide {
|
|
525
|
+
width: 820px;
|
|
470
526
|
}
|
|
471
|
-
.
|
|
472
|
-
|
|
527
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul, .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box li {
|
|
528
|
+
list-style-type: none;
|
|
473
529
|
}
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
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
|
-
}
|
|
530
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul div, .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box li div {
|
|
531
|
+
padding-left: 2px;
|
|
532
|
+
padding-right: 2px;
|
|
533
|
+
background: var(--primary-background-color);
|
|
502
534
|
}
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
:focus,
|
|
509
|
-
:visited {
|
|
510
|
-
outline: none !important;
|
|
535
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
|
|
536
|
+
display: inline-block;
|
|
537
|
+
float: left;
|
|
538
|
+
padding: 5px;
|
|
539
|
+
width: 200px;
|
|
511
540
|
}
|
|
512
|
-
|
|
513
|
-
.media-control-audiotracks {
|
|
541
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li {
|
|
514
542
|
position: relative;
|
|
543
|
+
padding: 0 5px;
|
|
544
|
+
text-align: left;
|
|
515
545
|
}
|
|
516
|
-
.
|
|
517
|
-
background-color: transparent;
|
|
518
|
-
color: #fff;
|
|
519
|
-
-webkit-font-smoothing: antialiased;
|
|
520
|
-
border: none;
|
|
521
|
-
cursor: pointer;
|
|
522
|
-
display: flex;
|
|
523
|
-
align-items: center;
|
|
546
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.canvas-wrapper {
|
|
524
547
|
padding: 0;
|
|
525
548
|
}
|
|
526
|
-
.
|
|
527
|
-
|
|
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;
|
|
549
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.canvas-wrapper canvas {
|
|
550
|
+
width: 100%;
|
|
535
551
|
}
|
|
536
|
-
.
|
|
537
|
-
|
|
552
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li:nth-child(2n) {
|
|
553
|
+
background: var(--secondary-background-color);
|
|
538
554
|
}
|
|
539
|
-
.
|
|
540
|
-
|
|
555
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li:nth-child(2n) div {
|
|
556
|
+
background: var(--secondary-background-color);
|
|
541
557
|
}
|
|
542
|
-
.
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
558
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.title {
|
|
559
|
+
text-align: center;
|
|
560
|
+
font-weight: bold;
|
|
561
|
+
padding-bottom: 4px;
|
|
562
|
+
font-size: 14px;
|
|
546
563
|
}
|
|
547
|
-
.
|
|
548
|
-
|
|
549
|
-
list-style-type: none;
|
|
564
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li div {
|
|
565
|
+
margin: 0;
|
|
550
566
|
position: absolute;
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
min-width: 60px;
|
|
554
|
-
border-radius: 4px;
|
|
555
|
-
bottom: 40px;
|
|
556
|
-
right: -2px;
|
|
567
|
+
right: 0;
|
|
568
|
+
top: 0;
|
|
557
569
|
}
|
|
558
|
-
|
|
559
|
-
|
|
570
|
+
|
|
571
|
+
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow {
|
|
572
|
+
width: 250px;
|
|
560
573
|
}
|
|
561
|
-
.
|
|
562
|
-
|
|
563
|
-
text-align: right;
|
|
564
|
-
height: 30px;
|
|
574
|
+
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow ul {
|
|
575
|
+
width: 100%;
|
|
565
576
|
}
|
|
566
|
-
.
|
|
567
|
-
|
|
568
|
-
|
|
577
|
+
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary {
|
|
578
|
+
padding: 0 5px;
|
|
579
|
+
height: auto;
|
|
569
580
|
}
|
|
570
|
-
.
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
text-overflow: ellipsis;
|
|
574
|
-
overflow: hidden;
|
|
575
|
-
white-space: nowrap;
|
|
576
|
-
height: 30px;
|
|
577
|
-
padding: 5px 10px;
|
|
578
|
-
color: #fffffe;
|
|
581
|
+
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block {
|
|
582
|
+
width: 100%;
|
|
583
|
+
flex-direction: column;
|
|
579
584
|
}
|
|
580
|
-
.
|
|
581
|
-
|
|
582
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
583
|
-
color: white;
|
|
585
|
+
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock {
|
|
586
|
+
width: 100%;
|
|
584
587
|
}
|
|
585
|
-
.
|
|
586
|
-
|
|
588
|
+
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
589
|
+
width: 100%;
|
|
587
590
|
}
|
|
588
|
-
.
|
|
589
|
-
|
|
590
|
-
|
|
591
|
+
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-header {
|
|
592
|
+
padding-top: 12px;
|
|
593
|
+
height: 38px;
|
|
594
|
+
text-align: center;
|
|
591
595
|
}
|
|
592
|
-
.
|
|
593
|
-
|
|
594
|
-
|
|
596
|
+
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-quality-header {
|
|
597
|
+
text-align: center;
|
|
598
|
+
}
|
|
599
|
+
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer {
|
|
600
|
+
height: 80px;
|
|
601
|
+
}
|
|
602
|
+
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer-about-link {
|
|
603
|
+
bottom: 0;
|
|
604
|
+
left: 0;
|
|
605
|
+
}
|
|
606
|
+
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer .speedtest-footer-refresh {
|
|
607
|
+
inset: 50% auto auto 50%;
|
|
608
|
+
transform: translate(-50%, -50%);
|
|
595
609
|
}
|
|
596
610
|
|
|
597
|
-
|
|
598
|
-
0
|
|
599
|
-
|
|
600
|
-
}
|
|
601
|
-
50% {
|
|
602
|
-
color: #ff0101;
|
|
603
|
-
}
|
|
604
|
-
100% {
|
|
605
|
-
color: #B80000;
|
|
606
|
-
}
|
|
607
|
-
}*, :focus, :visited {
|
|
608
|
-
outline: none !important;
|
|
611
|
+
.speed-test-button {
|
|
612
|
+
margin: 10px 0 0;
|
|
613
|
+
color: #000;
|
|
609
614
|
}
|
|
610
615
|
|
|
611
|
-
.
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
616
|
+
.speed-test {
|
|
617
|
+
position: absolute;
|
|
618
|
+
top: 0;
|
|
619
|
+
left: 0;
|
|
615
620
|
width: 100%;
|
|
616
|
-
|
|
617
|
-
|
|
621
|
+
height: 100%;
|
|
622
|
+
z-index: 9999;
|
|
618
623
|
}
|
|
619
|
-
.
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
padding-right: 2px;
|
|
624
|
+
.speed-test .speed-test-header {
|
|
625
|
+
width: 100%;
|
|
626
|
+
height: 32px;
|
|
623
627
|
}
|
|
624
|
-
.
|
|
625
|
-
|
|
628
|
+
.speed-test .speed-test-header .close-speed-test {
|
|
629
|
+
float: right;
|
|
630
|
+
margin-right: 5px;
|
|
631
|
+
line-height: 32px;
|
|
632
|
+
cursor: pointer;
|
|
633
|
+
color: var(--primary-text-color);
|
|
626
634
|
}
|
|
627
|
-
.
|
|
628
|
-
|
|
629
|
-
list-style-type: none;
|
|
630
|
-
min-width: 60px;
|
|
631
|
-
border-top: 2px solid rgb(36, 36, 36);
|
|
635
|
+
.speed-test .speed-test-header .close-speed-test:hover {
|
|
636
|
+
color: var(--hover-text-color);
|
|
632
637
|
}
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
638
|
+
|
|
639
|
+
.settings-button {
|
|
640
|
+
float: right;
|
|
641
|
+
margin: 0 12px 0 0;
|
|
642
|
+
height: 40px;
|
|
643
|
+
width: 24px;
|
|
644
|
+
border: none;
|
|
645
|
+
padding: 0;
|
|
636
646
|
}
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
647
|
+
|
|
648
|
+
.settings-options-list {
|
|
649
|
+
position: absolute;
|
|
650
|
+
right: 16px;
|
|
651
|
+
bottom: 52px;
|
|
652
|
+
background: var(--primary-background-color);
|
|
653
|
+
width: 250px;
|
|
654
|
+
height: 48px;
|
|
655
|
+
z-index: 9999;
|
|
656
|
+
border-radius: 4px;
|
|
640
657
|
}
|
|
641
|
-
.
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
658
|
+
.settings-options-list svg {
|
|
659
|
+
float: left;
|
|
660
|
+
margin-right: 10px;
|
|
661
|
+
}
|
|
662
|
+
.settings-options-list .settings-speedtest-option {
|
|
663
|
+
color: var(--primary-text-color);
|
|
664
|
+
margin: 0;
|
|
665
|
+
text-align: left;
|
|
666
|
+
height: 24px;
|
|
646
667
|
line-height: 22px;
|
|
647
|
-
|
|
668
|
+
padding: 14px;
|
|
669
|
+
width: 250px;
|
|
670
|
+
font-size: 12px;
|
|
648
671
|
}
|
|
649
|
-
.
|
|
650
|
-
color:
|
|
651
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
672
|
+
.settings-options-list .settings-speedtest-option:hover {
|
|
673
|
+
color: var(--hover-text-color);
|
|
652
674
|
}
|
|
653
|
-
.
|
|
654
|
-
|
|
655
|
-
text-decoration: none;
|
|
675
|
+
.settings-options-list .settings-speedtest-option:hover svg path {
|
|
676
|
+
fill: var(--hover-text-color);
|
|
656
677
|
}
|
|
657
|
-
.
|
|
658
|
-
|
|
659
|
-
height: 20px;
|
|
660
|
-
float: left;
|
|
661
|
-
display: block;
|
|
678
|
+
.settings-options-list .settings-speedtest-option svg path {
|
|
679
|
+
fill: var(--primary-text-color);
|
|
662
680
|
}
|
|
663
|
-
|
|
664
|
-
|
|
681
|
+
|
|
682
|
+
.speedtest-summary {
|
|
683
|
+
width: 100%;
|
|
684
|
+
border-top: 1px solid var(--secondary-background-color) !important;
|
|
685
|
+
border-bottom: 1px solid var(--secondary-background-color) !important;
|
|
686
|
+
display: flex !important;
|
|
687
|
+
flex-direction: column;
|
|
688
|
+
align-items: stretch;
|
|
689
|
+
justify-content: space-between;
|
|
665
690
|
}
|
|
666
|
-
.
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
691
|
+
.speedtest-summary .speedtest-summary-header {
|
|
692
|
+
width: 100%;
|
|
693
|
+
padding-top: 4px;
|
|
694
|
+
text-align: left;
|
|
695
|
+
height: 32px;
|
|
696
|
+
font-size: 14px;
|
|
697
|
+
font-weight: 500;
|
|
698
|
+
line-height: 20px;
|
|
699
|
+
}
|
|
700
|
+
.speedtest-summary .speedtest-summary-block {
|
|
701
|
+
position: relative;
|
|
672
702
|
display: flex;
|
|
673
|
-
|
|
703
|
+
flex-direction: row;
|
|
674
704
|
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;
|
|
680
705
|
}
|
|
681
|
-
.
|
|
682
|
-
|
|
706
|
+
.speedtest-summary .speedtest-summary-block .speedtest-summary-subblock {
|
|
707
|
+
width: 50%;
|
|
708
|
+
margin-top: 4px;
|
|
709
|
+
margin-bottom: 12px;
|
|
683
710
|
}
|
|
684
|
-
.
|
|
685
|
-
|
|
711
|
+
.speedtest-summary .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
712
|
+
padding: 2px;
|
|
713
|
+
width: 248px;
|
|
714
|
+
max-width: 100%;
|
|
686
715
|
}
|
|
687
716
|
|
|
688
|
-
.
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
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;
|
|
717
|
+
.speedtest-quality {
|
|
718
|
+
width: 100%;
|
|
719
|
+
height: 36px;
|
|
720
|
+
display: flex !important;
|
|
721
|
+
flex-direction: column !important;
|
|
722
|
+
justify-content: space-between !important;
|
|
703
723
|
}
|
|
704
|
-
.
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
724
|
+
.speedtest-quality .speedtest-quality-header {
|
|
725
|
+
font-size: 12px;
|
|
726
|
+
height: 20px;
|
|
727
|
+
border-left: 2px solid var(--secondary-background-color) !important;
|
|
728
|
+
background-color: var(--secondary-background-color);
|
|
729
|
+
text-align: left;
|
|
730
|
+
}
|
|
731
|
+
.speedtest-quality-content {
|
|
732
|
+
width: 100%;
|
|
733
|
+
margin-top: 8px;
|
|
734
|
+
height: 8px;
|
|
735
|
+
display: flex !important;
|
|
736
|
+
flex-direction: row !important;
|
|
737
|
+
align-items: stretch !important;
|
|
738
|
+
justify-content: space-between;
|
|
739
|
+
}
|
|
740
|
+
.speedtest-quality-content-item {
|
|
741
|
+
width: 18.8%;
|
|
742
|
+
background-color: #fff;
|
|
743
|
+
}
|
|
744
|
+
.speedtest-quality-content-item.speedtest-quality-value-1 {
|
|
745
|
+
background-color: var(--speedtest-red);
|
|
746
|
+
}
|
|
747
|
+
.speedtest-quality-content-item.speedtest-quality-value-2 {
|
|
748
|
+
background-color: var(--speedtest-orange);
|
|
749
|
+
}
|
|
750
|
+
.speedtest-quality-content-item.speedtest-quality-value-3 {
|
|
751
|
+
background-color: var(--speedtest-yellow);
|
|
752
|
+
}
|
|
753
|
+
.speedtest-quality-content-item.speedtest-quality-value-4 {
|
|
754
|
+
background-color: var(--speedtest-light-green);
|
|
755
|
+
}
|
|
756
|
+
.speedtest-quality-content-item.speedtest-quality-value-5 {
|
|
757
|
+
background-color: var(--speedtest-green);
|
|
708
758
|
}
|
|
709
|
-
|
|
710
|
-
|
|
759
|
+
|
|
760
|
+
.speedtest-footer {
|
|
761
|
+
position: relative;
|
|
762
|
+
float: left;
|
|
763
|
+
width: 100%;
|
|
764
|
+
height: 30px;
|
|
765
|
+
line-height: 16px;
|
|
711
766
|
}
|
|
712
|
-
.
|
|
713
|
-
|
|
767
|
+
.speedtest-footer-about-link {
|
|
768
|
+
position: absolute;
|
|
769
|
+
bottom: 0;
|
|
770
|
+
left: 0;
|
|
771
|
+
color: var(--secondary-text-color);
|
|
772
|
+
text-decoration: underline !important;
|
|
714
773
|
}
|
|
715
|
-
.
|
|
716
|
-
|
|
717
|
-
}
|
|
718
|
-
|
|
774
|
+
.speedtest-footer-about-link:hover {
|
|
775
|
+
color: var(--hover-text-color);
|
|
776
|
+
}
|
|
777
|
+
.speedtest-footer .speedtest-footer-refresh {
|
|
719
778
|
position: absolute;
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
779
|
+
bottom: 0;
|
|
780
|
+
right: 0;
|
|
781
|
+
color: var(--secondary-text-color);
|
|
782
|
+
font-size: 14px;
|
|
783
|
+
font-weight: 400;
|
|
784
|
+
line-height: 16px;
|
|
785
|
+
height: 16px;
|
|
725
786
|
display: flex;
|
|
726
|
-
|
|
727
|
-
|
|
787
|
+
align-items: center;
|
|
788
|
+
gap: 4px;
|
|
728
789
|
}
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
color: #CCCACA;
|
|
732
|
-
margin-top: 45px;
|
|
790
|
+
.speedtest-footer .speedtest-footer-refresh svg path {
|
|
791
|
+
fill: var(--secondary-text-color);
|
|
733
792
|
}
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
line-height: 30px;
|
|
737
|
-
font-size: 18px;
|
|
793
|
+
.speedtest-footer .speedtest-footer-refresh:hover {
|
|
794
|
+
color: var(--hover-text-color);
|
|
738
795
|
}
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
margin: 0 auto;
|
|
796
|
+
.speedtest-footer .speedtest-footer-refresh:hover svg path {
|
|
797
|
+
fill: var(--hover-text-color);
|
|
742
798
|
}
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
799
|
+
|
|
800
|
+
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box {
|
|
801
|
+
position: fixed;
|
|
802
|
+
height: auto;
|
|
803
|
+
width: auto;
|
|
804
|
+
inset: 0;
|
|
805
|
+
min-width: 100vw;
|
|
806
|
+
padding-bottom: 4px;
|
|
807
|
+
padding-left: 4px;
|
|
808
|
+
padding-right: 4px;
|
|
746
809
|
}
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
width: 30px;
|
|
750
|
-
margin: 15px auto 0;
|
|
751
|
-
}.context-menu {
|
|
752
|
-
z-index: 999;
|
|
753
|
-
position: absolute;
|
|
754
|
-
top: 0;
|
|
755
|
-
left: 0;
|
|
756
|
-
text-align: center;
|
|
810
|
+
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top {
|
|
811
|
+
position: fixed;
|
|
757
812
|
}
|
|
758
|
-
.
|
|
759
|
-
|
|
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;
|
|
813
|
+
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
|
|
814
|
+
width: 50%;
|
|
770
815
|
}
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
816
|
+
|
|
817
|
+
@media only screen and (orientation: portrait) {
|
|
818
|
+
.mobile .speedtest-summary {
|
|
819
|
+
padding: 0 5px;
|
|
820
|
+
height: auto;
|
|
821
|
+
}
|
|
822
|
+
.mobile .speedtest-summary-block {
|
|
823
|
+
width: 100%;
|
|
824
|
+
flex-direction: column;
|
|
825
|
+
}
|
|
826
|
+
.mobile .speedtest-summary-block .speedtest-summary-subblock {
|
|
827
|
+
width: 100%;
|
|
828
|
+
}
|
|
829
|
+
.mobile .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
830
|
+
width: 100%;
|
|
831
|
+
}
|
|
832
|
+
.mobile .speedtest-summary-header {
|
|
833
|
+
padding-top: 12px;
|
|
834
|
+
height: 38px;
|
|
835
|
+
text-align: center;
|
|
836
|
+
}
|
|
837
|
+
.mobile .speedtest-quality-header {
|
|
838
|
+
text-align: center;
|
|
839
|
+
}
|
|
840
|
+
.mobile .speedtest-footer .speedtest-footer-refresh {
|
|
841
|
+
inset: 50% auto auto 50%;
|
|
842
|
+
transform: translate(-50%, -50%);
|
|
843
|
+
}
|
|
778
844
|
}
|
|
779
|
-
|
|
845
|
+
@media only screen and (orientation: landscape) {
|
|
846
|
+
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
|
|
847
|
+
width: 25%;
|
|
848
|
+
}
|
|
849
|
+
}.seek-time[data-seek-time] {
|
|
780
850
|
position: absolute;
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
851
|
+
white-space: nowrap;
|
|
852
|
+
height: 20px;
|
|
853
|
+
line-height: 20px;
|
|
854
|
+
font-size: 0;
|
|
855
|
+
left: -100%;
|
|
856
|
+
bottom: 55px;
|
|
857
|
+
background-color: rgba(2, 2, 2, 0.5);
|
|
785
858
|
z-index: 9999;
|
|
786
|
-
|
|
787
|
-
}
|
|
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 {
|
|
792
|
-
float: left;
|
|
793
|
-
margin-right: 10px;
|
|
859
|
+
transition: opacity 0.1s ease;
|
|
794
860
|
}
|
|
795
|
-
.
|
|
796
|
-
|
|
797
|
-
text-align: left;
|
|
798
|
-
line-height: 22px;
|
|
799
|
-
padding: 5px 14px;
|
|
800
|
-
width: 250px;
|
|
801
|
-
font-size: 12px;
|
|
861
|
+
.seek-time[data-seek-time].hidden[data-seek-time] {
|
|
862
|
+
opacity: 0;
|
|
802
863
|
}
|
|
803
|
-
.
|
|
804
|
-
|
|
805
|
-
|
|
864
|
+
.seek-time[data-seek-time] [data-seek-time] {
|
|
865
|
+
display: inline-block;
|
|
866
|
+
color: white;
|
|
867
|
+
font-size: 10px;
|
|
868
|
+
padding-left: 7px;
|
|
869
|
+
padding-right: 7px;
|
|
870
|
+
vertical-align: top;
|
|
806
871
|
}
|
|
807
|
-
.
|
|
808
|
-
|
|
809
|
-
|
|
872
|
+
.seek-time[data-seek-time] [data-duration] {
|
|
873
|
+
display: inline-block;
|
|
874
|
+
color: rgba(255, 255, 255, 0.5);
|
|
875
|
+
font-size: 10px;
|
|
876
|
+
padding-right: 7px;
|
|
877
|
+
vertical-align: top;
|
|
810
878
|
}
|
|
811
|
-
.
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
clip-path: url("#myClip");
|
|
879
|
+
.seek-time[data-seek-time] [data-duration]::before {
|
|
880
|
+
content: "|";
|
|
881
|
+
margin-right: 7px;
|
|
815
882
|
}*, :focus, :visited {
|
|
816
883
|
outline: none !important;
|
|
817
884
|
}
|
|
@@ -1042,99 +1109,36 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1042
1109
|
}
|
|
1043
1110
|
.dvr-controls[data-dvr] .live-button::before {
|
|
1044
1111
|
width: 10px;
|
|
1045
|
-
height: 10px;
|
|
1046
|
-
border-radius: 50%;
|
|
1047
|
-
margin-right: 8px;
|
|
1048
|
-
background-color: #cacaca;
|
|
1049
|
-
}
|
|
1050
|
-
|
|
1051
|
-
.dvr .dvr-controls[data-dvr] .live-info {
|
|
1052
|
-
display: none;
|
|
1053
|
-
}
|
|
1054
|
-
.dvr .dvr-controls[data-dvr] .live-button {
|
|
1055
|
-
display: block;
|
|
1056
|
-
}.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
|
|
1057
|
-
height: 0;
|
|
1058
|
-
}
|
|
1059
|
-
|
|
1060
|
-
.skip_time_plugin[data-skip-time] {
|
|
1061
|
-
position: absolute;
|
|
1062
|
-
width: 100%;
|
|
1063
|
-
height: calc(100% - 50px);
|
|
1064
|
-
z-index: 9998;
|
|
1065
|
-
background-color: transparent;
|
|
1066
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1067
|
-
}
|
|
1068
|
-
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
|
|
1069
|
-
width: 100%;
|
|
1070
|
-
height: 100%;
|
|
1071
|
-
display: flex;
|
|
1072
|
-
justify-content: space-between;
|
|
1073
|
-
}
|
|
1074
|
-
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
|
|
1075
|
-
width: 33.3%;
|
|
1076
|
-
height: 100%;
|
|
1077
|
-
}.scrub-thumbnails {
|
|
1078
|
-
position: absolute;
|
|
1079
|
-
bottom: 52px;
|
|
1080
|
-
width: 100%;
|
|
1081
|
-
transition: opacity 0.3s ease;
|
|
1082
|
-
}
|
|
1083
|
-
.scrub-thumbnails.hidden {
|
|
1084
|
-
opacity: 0;
|
|
1085
|
-
}
|
|
1086
|
-
.scrub-thumbnails .thumbnail-container {
|
|
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;
|
|
1102
|
-
color: white;
|
|
1103
|
-
position: absolute;
|
|
1104
|
-
bottom: 23px;
|
|
1105
|
-
width: 100px;
|
|
1112
|
+
height: 10px;
|
|
1113
|
+
border-radius: 50%;
|
|
1114
|
+
margin-right: 8px;
|
|
1115
|
+
background-color: #cacaca;
|
|
1106
1116
|
}
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
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;
|
|
1117
|
+
|
|
1118
|
+
.dvr .dvr-controls[data-dvr] .live-info {
|
|
1119
|
+
display: none;
|
|
1117
1120
|
}
|
|
1118
|
-
.
|
|
1119
|
-
|
|
1121
|
+
.dvr .dvr-controls[data-dvr] .live-button {
|
|
1122
|
+
display: block;
|
|
1123
|
+
}.gear-option_hd-icon.hidden {
|
|
1124
|
+
display: none;
|
|
1120
1125
|
}
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
+
|
|
1127
|
+
.quality-levels li.disabled {
|
|
1128
|
+
opacity: 0.5;
|
|
1129
|
+
pointer-events: none;
|
|
1130
|
+
}
|
|
1131
|
+
.quality-levels li.current {
|
|
1126
1132
|
background-color: #000;
|
|
1127
|
-
|
|
1133
|
+
}.media-control-pip {
|
|
1134
|
+
order: 95;
|
|
1135
|
+
display: flex;
|
|
1128
1136
|
}
|
|
1129
|
-
.
|
|
1130
|
-
|
|
1131
|
-
top: 0;
|
|
1132
|
-
left: 0;
|
|
1133
|
-
height: 100%;
|
|
1134
|
-
white-space: nowrap;
|
|
1137
|
+
.media-control-pip button {
|
|
1138
|
+
height: 20px;
|
|
1135
1139
|
}
|
|
1136
|
-
.
|
|
1137
|
-
|
|
1140
|
+
.media-control-pip button svg {
|
|
1141
|
+
height: 20px;
|
|
1138
1142
|
}[data-player] {
|
|
1139
1143
|
--bottom-panel: 40px;
|
|
1140
1144
|
}
|
|
@@ -1772,40 +1776,44 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1772
1776
|
}
|
|
1773
1777
|
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
|
|
1774
1778
|
display: none !important;
|
|
1775
|
-
}.
|
|
1776
|
-
display: flex;
|
|
1777
|
-
justify-content: center;
|
|
1778
|
-
align-items: center;
|
|
1779
|
+
}.spinner-three-bounce[data-spinner] {
|
|
1779
1780
|
position: absolute;
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
z-index:
|
|
1783
|
-
top: 0;
|
|
1781
|
+
width: 70px;
|
|
1782
|
+
text-align: center;
|
|
1783
|
+
z-index: 999;
|
|
1784
1784
|
left: 0;
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1785
|
+
right: 0;
|
|
1786
|
+
margin: 0 auto;
|
|
1787
|
+
margin-left: auto;
|
|
1788
|
+
margin-right: auto;
|
|
1789
|
+
/* center vertically */
|
|
1790
|
+
top: 50%;
|
|
1791
|
+
transform: translateY(-50%);
|
|
1792
1792
|
}
|
|
1793
|
-
.
|
|
1794
|
-
|
|
1793
|
+
.spinner-three-bounce[data-spinner] > div {
|
|
1794
|
+
width: 18px;
|
|
1795
|
+
height: 18px;
|
|
1796
|
+
background-color: #FFF;
|
|
1797
|
+
border-radius: 100%;
|
|
1798
|
+
display: inline-block;
|
|
1799
|
+
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
1800
|
+
/* Prevent first frame from flickering when animation starts */
|
|
1801
|
+
animation-fill-mode: both;
|
|
1795
1802
|
}
|
|
1796
|
-
.
|
|
1797
|
-
|
|
1798
|
-
height: 25%;
|
|
1799
|
-
margin: 0 auto;
|
|
1800
|
-
opacity: 0.75;
|
|
1801
|
-
transition: opacity 0.1s ease;
|
|
1803
|
+
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
1804
|
+
animation-delay: -0.32s;
|
|
1802
1805
|
}
|
|
1803
|
-
.
|
|
1804
|
-
|
|
1805
|
-
display: inline;
|
|
1806
|
+
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
1807
|
+
animation-delay: -0.16s;
|
|
1806
1808
|
}
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
+
|
|
1810
|
+
@keyframes bouncedelay {
|
|
1811
|
+
0%, 80%, 100% {
|
|
1812
|
+
transform: scale(0);
|
|
1813
|
+
}
|
|
1814
|
+
40% {
|
|
1815
|
+
transform: scale(1);
|
|
1816
|
+
}
|
|
1809
1817
|
}.share_plugin[data-share] {
|
|
1810
1818
|
pointer-events: auto;
|
|
1811
1819
|
z-index: 5;
|
|
@@ -1889,54 +1897,67 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1889
1897
|
display: inline-block;
|
|
1890
1898
|
margin-right: 5px;
|
|
1891
1899
|
cursor: pointer;
|
|
1892
|
-
}.
|
|
1893
|
-
|
|
1900
|
+
}.scrub-thumbnails {
|
|
1901
|
+
position: absolute;
|
|
1902
|
+
bottom: 52px;
|
|
1903
|
+
width: 100%;
|
|
1904
|
+
transition: opacity 0.3s ease;
|
|
1894
1905
|
}
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
opacity: 0.5;
|
|
1898
|
-
pointer-events: none;
|
|
1906
|
+
.scrub-thumbnails.hidden {
|
|
1907
|
+
opacity: 0;
|
|
1899
1908
|
}
|
|
1900
|
-
.
|
|
1909
|
+
.scrub-thumbnails .thumbnail-container {
|
|
1910
|
+
display: inline-block;
|
|
1911
|
+
position: relative;
|
|
1912
|
+
overflow: hidden;
|
|
1901
1913
|
background-color: #000;
|
|
1902
|
-
}
|
|
1914
|
+
}
|
|
1915
|
+
.scrub-thumbnails .thumbnail-container .thumbnail-img {
|
|
1903
1916
|
position: absolute;
|
|
1904
|
-
width:
|
|
1905
|
-
|
|
1906
|
-
|
|
1917
|
+
width: auto;
|
|
1918
|
+
}
|
|
1919
|
+
.scrub-thumbnails .thumbnails-text {
|
|
1920
|
+
background-color: rgba(74, 74, 74, 0.7);
|
|
1921
|
+
border-radius: 3px;
|
|
1922
|
+
white-space: nowrap;
|
|
1923
|
+
overflow: hidden;
|
|
1924
|
+
text-overflow: ellipsis;
|
|
1925
|
+
color: white;
|
|
1926
|
+
position: absolute;
|
|
1927
|
+
bottom: 23px;
|
|
1928
|
+
width: 100px;
|
|
1929
|
+
}
|
|
1930
|
+
.scrub-thumbnails .spotlight {
|
|
1931
|
+
background-color: #4a4a4a;
|
|
1932
|
+
overflow: hidden;
|
|
1933
|
+
position: absolute;
|
|
1934
|
+
bottom: 0;
|
|
1907
1935
|
left: 0;
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
/* center vertically */
|
|
1913
|
-
top: 50%;
|
|
1914
|
-
transform: translateY(-50%);
|
|
1936
|
+
border-color: #4a4a4a;
|
|
1937
|
+
border-style: solid;
|
|
1938
|
+
border-width: 3px;
|
|
1939
|
+
border-radius: 3px;
|
|
1915
1940
|
}
|
|
1916
|
-
.
|
|
1917
|
-
width:
|
|
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;
|
|
1941
|
+
.scrub-thumbnails .spotlight img {
|
|
1942
|
+
width: auto;
|
|
1925
1943
|
}
|
|
1926
|
-
.
|
|
1927
|
-
|
|
1944
|
+
.scrub-thumbnails .backdrop {
|
|
1945
|
+
position: absolute;
|
|
1946
|
+
left: 0;
|
|
1947
|
+
bottom: 0;
|
|
1948
|
+
right: 0;
|
|
1949
|
+
background-color: #000;
|
|
1950
|
+
overflow: hidden;
|
|
1928
1951
|
}
|
|
1929
|
-
.
|
|
1930
|
-
|
|
1952
|
+
.scrub-thumbnails .backdrop .carousel {
|
|
1953
|
+
position: absolute;
|
|
1954
|
+
top: 0;
|
|
1955
|
+
left: 0;
|
|
1956
|
+
height: 100%;
|
|
1957
|
+
white-space: nowrap;
|
|
1931
1958
|
}
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
0%, 80%, 100% {
|
|
1935
|
-
transform: scale(0);
|
|
1936
|
-
}
|
|
1937
|
-
40% {
|
|
1938
|
-
transform: scale(1);
|
|
1939
|
-
}
|
|
1959
|
+
.scrub-thumbnails .backdrop .carousel img {
|
|
1960
|
+
width: auto;
|
|
1940
1961
|
}*,
|
|
1941
1962
|
:focus,
|
|
1942
1963
|
:visited {
|
|
@@ -2011,48 +2032,27 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
2011
2032
|
.ios-fullscreen::cue {
|
|
2012
2033
|
visibility: visible !important;
|
|
2013
2034
|
font-size: 1em !important;
|
|
2014
|
-
}.
|
|
2015
|
-
|
|
2016
|
-
display: flex;
|
|
2017
|
-
}
|
|
2018
|
-
.media-control-pip button {
|
|
2019
|
-
height: 20px;
|
|
2035
|
+
}.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
|
|
2036
|
+
height: 0;
|
|
2020
2037
|
}
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
}.seek-time[data-seek-time] {
|
|
2038
|
+
|
|
2039
|
+
.skip_time_plugin[data-skip-time] {
|
|
2024
2040
|
position: absolute;
|
|
2025
|
-
|
|
2026
|
-
height:
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
bottom: 55px;
|
|
2031
|
-
background-color: rgba(2, 2, 2, 0.5);
|
|
2032
|
-
z-index: 9999;
|
|
2033
|
-
transition: opacity 0.1s ease;
|
|
2034
|
-
}
|
|
2035
|
-
.seek-time[data-seek-time].hidden[data-seek-time] {
|
|
2036
|
-
opacity: 0;
|
|
2037
|
-
}
|
|
2038
|
-
.seek-time[data-seek-time] [data-seek-time] {
|
|
2039
|
-
display: inline-block;
|
|
2040
|
-
color: white;
|
|
2041
|
-
font-size: 10px;
|
|
2042
|
-
padding-left: 7px;
|
|
2043
|
-
padding-right: 7px;
|
|
2044
|
-
vertical-align: top;
|
|
2041
|
+
width: 100%;
|
|
2042
|
+
height: calc(100% - 50px);
|
|
2043
|
+
z-index: 9998;
|
|
2044
|
+
background-color: transparent;
|
|
2045
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
2045
2046
|
}
|
|
2046
|
-
.
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
vertical-align: top;
|
|
2047
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
|
|
2048
|
+
width: 100%;
|
|
2049
|
+
height: 100%;
|
|
2050
|
+
display: flex;
|
|
2051
|
+
justify-content: space-between;
|
|
2052
2052
|
}
|
|
2053
|
-
.
|
|
2054
|
-
|
|
2055
|
-
|
|
2053
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
|
|
2054
|
+
width: 33.3%;
|
|
2055
|
+
height: 100%;
|
|
2056
2056
|
}.player-logo[data-logo] {
|
|
2057
2057
|
position: absolute;
|
|
2058
2058
|
z-index: 2;
|