@gcorevideo/player 2.26.6 → 2.26.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core.js +19 -13
- package/dist/index.css +729 -729
- package/dist/index.embed.js +18 -11
- package/dist/index.js +20 -13
- package/dist/player.d.ts +18 -2
- package/docs/api/player.md +11 -11
- package/docs/api/player.thumbnails.md +1 -0
- package/docs/api/player.thumbnailspluginsettings.backdropheight.md +11 -0
- package/docs/api/player.thumbnailspluginsettings.backdropmaxopacity.md +11 -0
- package/docs/api/player.thumbnailspluginsettings.backdropminopacity.md +11 -0
- package/docs/api/player.thumbnailspluginsettings.md +154 -9
- package/docs/api/player.thumbnailspluginsettings.spotlightheight.md +11 -0
- package/docs/api/player.thumbnailspluginsettings.sprite.md +11 -0
- package/docs/api/player.thumbnailspluginsettings.vtt.md +13 -0
- package/lib/plugins/thumbnails/Thumbnails.d.ts +18 -2
- package/lib/plugins/thumbnails/Thumbnails.d.ts.map +1 -1
- package/lib/plugins/thumbnails/Thumbnails.js +1 -0
- package/package.json +1 -1
- package/src/plugins/thumbnails/Thumbnails.ts +20 -3
- package/temp/player.api.json +170 -16
- package/tsconfig.tsbuildinfo +1 -1
package/dist/index.css
CHANGED
|
@@ -122,672 +122,686 @@
|
|
|
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 {
|
|
139
|
-
cursor: default;
|
|
140
|
-
}
|
|
141
|
-
.clappr-nerd-stats .stats-box {
|
|
125
|
+
}.context-menu {
|
|
126
|
+
z-index: 999;
|
|
142
127
|
position: absolute;
|
|
143
|
-
display: inline-block;
|
|
144
|
-
bottom: 52px;
|
|
145
|
-
right: 0;
|
|
146
128
|
top: 0;
|
|
147
129
|
left: 0;
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
130
|
+
text-align: center;
|
|
131
|
+
}
|
|
132
|
+
.context-menu .context-menu-list {
|
|
133
|
+
font-family: "Proxima Nova", sans-serif;
|
|
152
134
|
font-size: 12px;
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
135
|
+
line-height: 12px;
|
|
136
|
+
list-style-type: none;
|
|
137
|
+
text-align: left;
|
|
138
|
+
padding: 5px;
|
|
139
|
+
margin-left: auto;
|
|
140
|
+
margin-right: auto;
|
|
141
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
142
|
+
border: 1px solid #666;
|
|
143
|
+
border-radius: 4px;
|
|
159
144
|
}
|
|
160
|
-
.
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
145
|
+
.context-menu .context-menu-list-item button {
|
|
146
|
+
border: none;
|
|
147
|
+
background-color: transparent;
|
|
148
|
+
padding: 0;
|
|
149
|
+
color: white;
|
|
150
|
+
display: flex;
|
|
151
|
+
gap: 8px;
|
|
152
|
+
align-items: center;
|
|
153
|
+
justify-content: center;
|
|
154
|
+
cursor: pointer;
|
|
155
|
+
padding: 5px;
|
|
165
156
|
width: 100%;
|
|
166
|
-
height: 32px;
|
|
167
|
-
background: var(--primary-background-color);
|
|
168
157
|
}
|
|
169
|
-
.
|
|
158
|
+
.context-menu .context-menu-list-item_icon {
|
|
159
|
+
width: 20px;
|
|
160
|
+
height: 20px;
|
|
161
|
+
}.big-mute-icon-wrapper[data-big-mute] {
|
|
170
162
|
position: absolute;
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
display:
|
|
174
|
-
|
|
175
|
-
|
|
163
|
+
z-index: 9998;
|
|
164
|
+
background-color: transparent;
|
|
165
|
+
display: flex;
|
|
166
|
+
justify-content: center;
|
|
167
|
+
width: 100%;
|
|
168
|
+
height: calc(100% - 50px);
|
|
169
|
+
margin: 0 auto;
|
|
170
|
+
opacity: 0.75;
|
|
171
|
+
transition: opacity 0.1s ease;
|
|
172
|
+
pointer-events: auto;
|
|
176
173
|
}
|
|
177
|
-
.
|
|
178
|
-
|
|
174
|
+
.big-mute-icon-wrapper[data-big-mute].hide {
|
|
175
|
+
display: none;
|
|
179
176
|
}
|
|
180
|
-
.
|
|
181
|
-
|
|
177
|
+
.big-mute-icon-wrapper[data-big-mute]:hover {
|
|
178
|
+
cursor: pointer;
|
|
182
179
|
}
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
margin-top: 44px;
|
|
180
|
+
|
|
181
|
+
.big-mute-icon[data-big-mute-icon] {
|
|
186
182
|
display: flex;
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
183
|
+
align-items: center;
|
|
184
|
+
justify-content: center;
|
|
185
|
+
align-self: center;
|
|
186
|
+
width: 120px;
|
|
187
|
+
height: 120px;
|
|
188
|
+
border: 2px solid white;
|
|
189
|
+
border-radius: 50%;
|
|
190
|
+
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
191
|
+
filter: alpha(opacity=60);
|
|
192
|
+
opacity: 1;
|
|
193
|
+
box-shadow: 0 0 1px 0 white;
|
|
194
|
+
background: rgba(240, 243, 247, 0.9411764706);
|
|
195
|
+
z-index: 10000;
|
|
192
196
|
}
|
|
193
|
-
.
|
|
194
|
-
|
|
197
|
+
.big-mute-icon[data-big-mute-icon] svg {
|
|
198
|
+
margin-left: 5px;
|
|
199
|
+
width: 80px;
|
|
200
|
+
height: 80px;
|
|
195
201
|
}
|
|
196
|
-
.
|
|
197
|
-
|
|
202
|
+
.big-mute-icon[data-big-mute-icon] svg path {
|
|
203
|
+
fill: #1f1e1e !important;
|
|
198
204
|
}
|
|
199
|
-
.
|
|
200
|
-
|
|
201
|
-
padding-right: 2px;
|
|
202
|
-
background: var(--primary-background-color);
|
|
203
|
-
gap: 10px;
|
|
205
|
+
.big-mute-icon[data-big-mute-icon]:hover {
|
|
206
|
+
background: rgba(240, 243, 247, 0.8784313725);
|
|
204
207
|
}
|
|
205
|
-
.
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
208
|
+
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
209
|
+
fill: #151515 !important;
|
|
210
|
+
}@charset "UTF-8";
|
|
211
|
+
.gplayer-mc-clips {
|
|
212
|
+
display: flex;
|
|
213
|
+
gap: 6px;
|
|
209
214
|
}
|
|
210
|
-
.
|
|
215
|
+
.gplayer-mc-clips .gplayer-mc-clips-text {
|
|
216
|
+
text-overflow: ellipsis;
|
|
217
|
+
white-space: nowrap;
|
|
218
|
+
overflow: hidden;
|
|
219
|
+
display: inline-block;
|
|
220
|
+
text-overflow: ellipsis;
|
|
221
|
+
color: white;
|
|
222
|
+
cursor: default;
|
|
223
|
+
line-height: var(--bottom-panel);
|
|
211
224
|
position: relative;
|
|
212
|
-
|
|
213
|
-
text-align: left;
|
|
214
|
-
}
|
|
215
|
-
.clappr-nerd-stats .stats-box ul li.canvas-wrapper {
|
|
216
|
-
padding: 0;
|
|
225
|
+
max-width: 150px;
|
|
217
226
|
}
|
|
218
|
-
.
|
|
219
|
-
|
|
227
|
+
.gplayer-mc-clips .gplayer-mc-clips-text::before {
|
|
228
|
+
content: "•";
|
|
229
|
+
padding-right: 6px;
|
|
220
230
|
}
|
|
221
|
-
.
|
|
222
|
-
|
|
231
|
+
.gplayer-mc-clips .gplayer-mc-clips-text.compact {
|
|
232
|
+
max-width: 100px;
|
|
233
|
+
}.media-control-skin-1 .media-control-item.media-control-gear {
|
|
234
|
+
order: 99;
|
|
223
235
|
}
|
|
224
|
-
.
|
|
225
|
-
|
|
236
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-wrapper {
|
|
237
|
+
position: absolute;
|
|
238
|
+
right: 16px;
|
|
239
|
+
bottom: 52px;
|
|
240
|
+
width: 250px;
|
|
241
|
+
min-height: 48px;
|
|
242
|
+
z-index: 9999;
|
|
243
|
+
border-radius: 4px;
|
|
244
|
+
box-shadow: 0 0 1px 1px var(--gplayer-mc-popup-border-color);
|
|
226
245
|
}
|
|
227
|
-
.
|
|
228
|
-
|
|
229
|
-
font-weight: bold;
|
|
230
|
-
padding-bottom: 4px;
|
|
231
|
-
font-size: 14px;
|
|
246
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-options-list {
|
|
247
|
+
padding: 8px 0;
|
|
232
248
|
}
|
|
233
|
-
.
|
|
249
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option {
|
|
234
250
|
margin: 0;
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
.desktop .clappr-nerd-stats .stats-box.narrow {
|
|
251
|
+
text-align: left;
|
|
252
|
+
line-height: 22px;
|
|
253
|
+
padding: 5px 14px;
|
|
241
254
|
width: 250px;
|
|
255
|
+
font-size: 12px;
|
|
256
|
+
display: flex;
|
|
257
|
+
align-items: center;
|
|
258
|
+
justify-content: flex-start;
|
|
259
|
+
gap: 8px;
|
|
242
260
|
}
|
|
243
|
-
.
|
|
244
|
-
|
|
261
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_icon {
|
|
262
|
+
flex: 24px 0 0;
|
|
263
|
+
height: 24px;
|
|
245
264
|
}
|
|
246
|
-
.
|
|
247
|
-
|
|
248
|
-
|
|
265
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_icon.hidden {
|
|
266
|
+
visibility: hidden;
|
|
267
|
+
display: inline-block;
|
|
249
268
|
}
|
|
250
|
-
.
|
|
251
|
-
|
|
252
|
-
flex-direction: column;
|
|
269
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_label {
|
|
270
|
+
flex: 0 1 100%;
|
|
253
271
|
}
|
|
254
|
-
.
|
|
255
|
-
|
|
272
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_arrow-right-icon {
|
|
273
|
+
flex: 0 0 14px;
|
|
274
|
+
height: 24px;
|
|
256
275
|
}
|
|
257
|
-
.
|
|
276
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_value {
|
|
277
|
+
flex: 1 0 auto;
|
|
278
|
+
}*, :focus, :visited {
|
|
279
|
+
outline: none !important;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.gear-wrapper .go-back {
|
|
283
|
+
font-weight: 600;
|
|
284
|
+
font-size: 14px;
|
|
285
|
+
line-height: 20px;
|
|
258
286
|
width: 100%;
|
|
287
|
+
text-align: left;
|
|
288
|
+
padding: 12px;
|
|
259
289
|
}
|
|
260
|
-
.
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
290
|
+
.gear-wrapper .go-back .arrow-left-icon {
|
|
291
|
+
float: left;
|
|
292
|
+
padding-top: 2px;
|
|
293
|
+
padding-right: 2px;
|
|
264
294
|
}
|
|
265
|
-
.
|
|
266
|
-
|
|
295
|
+
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
296
|
+
height: 16px;
|
|
267
297
|
}
|
|
268
|
-
.
|
|
269
|
-
|
|
298
|
+
.gear-wrapper ul.gear-sub-menu {
|
|
299
|
+
width: 100%;
|
|
300
|
+
list-style-type: none;
|
|
301
|
+
min-width: 60px;
|
|
302
|
+
border-top: 2px solid rgb(36, 36, 36);
|
|
303
|
+
overflow-y: auto;
|
|
270
304
|
}
|
|
271
|
-
.
|
|
272
|
-
|
|
273
|
-
|
|
305
|
+
.gear-wrapper ul.gear-sub-menu li {
|
|
306
|
+
font-size: 12px;
|
|
307
|
+
text-align: left;
|
|
274
308
|
}
|
|
275
|
-
.
|
|
276
|
-
|
|
277
|
-
|
|
309
|
+
.gear-wrapper ul.gear-sub-menu li a {
|
|
310
|
+
display: block;
|
|
311
|
+
text-decoration: none;
|
|
312
|
+
height: 30px;
|
|
313
|
+
padding: 5px 10px;
|
|
314
|
+
line-height: 22px;
|
|
315
|
+
color: var(--gplayer-mc-text-dim-color);
|
|
278
316
|
}
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
color: #000;
|
|
317
|
+
.gear-wrapper ul.gear-sub-menu li a:hover {
|
|
318
|
+
color: var(--gplayer-mc-text-color);
|
|
319
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
283
320
|
}
|
|
284
|
-
|
|
285
|
-
|
|
321
|
+
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
322
|
+
color: var(--gplayer-mc-text-color);
|
|
323
|
+
text-decoration: none;
|
|
324
|
+
}
|
|
325
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
326
|
+
width: 30px;
|
|
327
|
+
height: 20px;
|
|
328
|
+
float: left;
|
|
329
|
+
display: block;
|
|
330
|
+
}
|
|
331
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
332
|
+
display: none;
|
|
333
|
+
}
|
|
334
|
+
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
335
|
+
display: inline;
|
|
336
|
+
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
337
|
+
color: #CCCACA;
|
|
286
338
|
position: absolute;
|
|
287
339
|
top: 0;
|
|
288
|
-
left: 0;
|
|
289
|
-
width: 100%;
|
|
290
340
|
height: 100%;
|
|
291
|
-
z-index: 9999;
|
|
292
|
-
}
|
|
293
|
-
.speed-test .speed-test-header {
|
|
294
341
|
width: 100%;
|
|
295
|
-
|
|
342
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
343
|
+
z-index: 2000;
|
|
344
|
+
display: flex;
|
|
345
|
+
flex-direction: column;
|
|
346
|
+
justify-content: center;
|
|
296
347
|
}
|
|
297
|
-
.
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
cursor: pointer;
|
|
302
|
-
color: var(--primary-text-color);
|
|
348
|
+
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
349
|
+
font-size: 14px;
|
|
350
|
+
color: #CCCACA;
|
|
351
|
+
margin-top: 45px;
|
|
303
352
|
}
|
|
304
|
-
.
|
|
305
|
-
|
|
353
|
+
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
354
|
+
font-weight: bold;
|
|
355
|
+
line-height: 30px;
|
|
356
|
+
font-size: 18px;
|
|
306
357
|
}
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
margin: 0 12px 0 0;
|
|
311
|
-
height: 40px;
|
|
312
|
-
width: 24px;
|
|
313
|
-
border: none;
|
|
314
|
-
padding: 0;
|
|
358
|
+
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
359
|
+
width: 90%;
|
|
360
|
+
margin: 0 auto;
|
|
315
361
|
}
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
border-top: 1px solid var(--secondary-background-color) !important;
|
|
320
|
-
border-bottom: 1px solid var(--secondary-background-color) !important;
|
|
321
|
-
display: flex !important;
|
|
322
|
-
flex-direction: column;
|
|
323
|
-
align-items: stretch;
|
|
324
|
-
justify-content: space-between;
|
|
362
|
+
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
363
|
+
font-size: 13px;
|
|
364
|
+
margin-top: 15px;
|
|
325
365
|
}
|
|
326
|
-
.
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
366
|
+
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
367
|
+
cursor: pointer;
|
|
368
|
+
width: 30px;
|
|
369
|
+
margin: 15px auto 0;
|
|
370
|
+
}.dvr-controls {
|
|
371
|
+
--disabled-opacity: 0.3;
|
|
372
|
+
--circle-radius: 5px;
|
|
373
|
+
display: flex;
|
|
374
|
+
align-items: center;
|
|
375
|
+
color: var(--player-dvr-color);
|
|
376
|
+
font-size: 10px;
|
|
377
|
+
font-weight: 500;
|
|
378
|
+
height: var(--bottom-panel);
|
|
379
|
+
line-height: var(--bottom-panel);
|
|
380
|
+
margin-left: 0;
|
|
381
|
+
}
|
|
382
|
+
.dvr-controls .live-info,
|
|
383
|
+
.dvr-controls .live-button {
|
|
331
384
|
font-size: 14px;
|
|
332
385
|
font-weight: 500;
|
|
333
|
-
|
|
386
|
+
margin-left: 20px;
|
|
387
|
+
letter-spacing: 0.8px;
|
|
388
|
+
text-transform: uppercase;
|
|
334
389
|
}
|
|
335
|
-
.
|
|
390
|
+
.dvr-controls .live-info::before,
|
|
391
|
+
.dvr-controls .live-button::before {
|
|
392
|
+
margin-right: 8px;
|
|
393
|
+
content: "";
|
|
394
|
+
display: inline-block;
|
|
336
395
|
position: relative;
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
.speedtest-summary .speedtest-summary-block .speedtest-summary-subblock {
|
|
342
|
-
width: 50%;
|
|
343
|
-
margin-top: 4px;
|
|
344
|
-
margin-bottom: 12px;
|
|
345
|
-
}
|
|
346
|
-
.speedtest-summary .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
347
|
-
padding: 2px;
|
|
348
|
-
width: 248px;
|
|
349
|
-
max-width: 100%;
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
.speedtest-quality {
|
|
353
|
-
width: 100%;
|
|
354
|
-
height: 36px;
|
|
355
|
-
display: flex !important;
|
|
356
|
-
flex-direction: column !important;
|
|
357
|
-
justify-content: space-between !important;
|
|
396
|
+
width: calc(var(--circle-radius) * 2);
|
|
397
|
+
height: calc(var(--circle-radius) * 2);
|
|
398
|
+
border-radius: var(--circle-radius);
|
|
399
|
+
background-color: var(--player-dvr-color);
|
|
358
400
|
}
|
|
359
|
-
.
|
|
360
|
-
|
|
361
|
-
height: 20px;
|
|
362
|
-
border-left: 2px solid var(--secondary-background-color) !important;
|
|
363
|
-
background-color: var(--secondary-background-color);
|
|
364
|
-
text-align: left;
|
|
401
|
+
.dvr-controls.disabled {
|
|
402
|
+
opacity: var(--disabled-opacity);
|
|
365
403
|
}
|
|
366
|
-
.
|
|
367
|
-
|
|
368
|
-
margin-top: 8px;
|
|
369
|
-
height: 8px;
|
|
370
|
-
display: flex !important;
|
|
371
|
-
flex-direction: row !important;
|
|
372
|
-
align-items: stretch !important;
|
|
373
|
-
justify-content: space-between;
|
|
404
|
+
.dvr-controls.disabled:before {
|
|
405
|
+
background-color: var(--player-dvr-color);
|
|
374
406
|
}
|
|
375
|
-
.
|
|
376
|
-
|
|
377
|
-
|
|
407
|
+
.dvr-controls .live-info {
|
|
408
|
+
text-transform: uppercase;
|
|
409
|
+
color: #fffffe;
|
|
378
410
|
}
|
|
379
|
-
.
|
|
380
|
-
background-color:
|
|
411
|
+
.dvr-controls .live-info::before {
|
|
412
|
+
background-color: #ed4f4a;
|
|
381
413
|
}
|
|
382
|
-
.
|
|
383
|
-
|
|
414
|
+
.dvr-controls .live-button {
|
|
415
|
+
cursor: pointer;
|
|
416
|
+
outline: none;
|
|
417
|
+
border: 0;
|
|
418
|
+
color: var(--player-dvr-color);
|
|
419
|
+
background-color: transparent;
|
|
420
|
+
padding: 0;
|
|
421
|
+
opacity: 0.7;
|
|
422
|
+
transition: all 0.1s ease;
|
|
384
423
|
}
|
|
385
|
-
.
|
|
386
|
-
|
|
424
|
+
.dvr-controls .live-button:hover {
|
|
425
|
+
opacity: 1;
|
|
426
|
+
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
427
|
+
}.media-control-skin-1 .media-control-item.media-control-pip {
|
|
428
|
+
order: 95;
|
|
387
429
|
}
|
|
388
|
-
.
|
|
389
|
-
|
|
430
|
+
.media-control-skin-1 .media-control-item.media-control-pip button {
|
|
431
|
+
height: 20px;
|
|
390
432
|
}
|
|
391
|
-
.
|
|
392
|
-
|
|
433
|
+
.media-control-skin-1 .media-control-item.media-control-pip button svg {
|
|
434
|
+
height: 20px;
|
|
435
|
+
}:root {
|
|
436
|
+
--primary-background-color: #000;
|
|
437
|
+
--secondary-background-color: #262626;
|
|
438
|
+
--primary-text-color: #fff;
|
|
439
|
+
--secondary-text-color: #fff4f2;
|
|
440
|
+
--hover-text-color: #f9b090;
|
|
441
|
+
--speedtest-red: #df564d;
|
|
442
|
+
--speedtest-orange: #df934d;
|
|
443
|
+
--speedtest-yellow: #dfd04d;
|
|
444
|
+
--speedtest-light-green: #c2df4d;
|
|
445
|
+
--speedtest-green: #73df4d;
|
|
393
446
|
}
|
|
394
447
|
|
|
395
|
-
.
|
|
396
|
-
|
|
397
|
-
float: left;
|
|
398
|
-
width: 100%;
|
|
399
|
-
height: 30px;
|
|
400
|
-
line-height: 16px;
|
|
448
|
+
.clappr-nerd-stats {
|
|
449
|
+
cursor: default;
|
|
401
450
|
}
|
|
402
|
-
.
|
|
451
|
+
.clappr-nerd-stats .stats-box {
|
|
403
452
|
position: absolute;
|
|
404
|
-
|
|
453
|
+
display: inline-block;
|
|
454
|
+
bottom: 52px;
|
|
455
|
+
right: 0;
|
|
456
|
+
top: 0;
|
|
405
457
|
left: 0;
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
458
|
+
bottom: 0;
|
|
459
|
+
padding: 0 10px 12px;
|
|
460
|
+
margin: 0;
|
|
461
|
+
line-height: 20px;
|
|
462
|
+
font-size: 12px;
|
|
463
|
+
font-weight: 500;
|
|
464
|
+
background: var(--primary-background-color);
|
|
465
|
+
color: #fff;
|
|
466
|
+
z-index: 20000;
|
|
467
|
+
overflow: auto;
|
|
468
|
+
max-width: 100%;
|
|
411
469
|
}
|
|
412
|
-
.
|
|
470
|
+
.clappr-nerd-stats .stats-box-top {
|
|
413
471
|
position: absolute;
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
height: 16px;
|
|
421
|
-
display: flex;
|
|
422
|
-
align-items: center;
|
|
423
|
-
gap: 4px;
|
|
472
|
+
top: 0;
|
|
473
|
+
left: 0;
|
|
474
|
+
z-index: 9999;
|
|
475
|
+
width: 100%;
|
|
476
|
+
height: 32px;
|
|
477
|
+
background: var(--primary-background-color);
|
|
424
478
|
}
|
|
425
|
-
.
|
|
426
|
-
|
|
479
|
+
.clappr-nerd-stats .stats-box-top .close-button {
|
|
480
|
+
position: absolute;
|
|
481
|
+
right: 12px;
|
|
482
|
+
top: 10px;
|
|
483
|
+
display: block;
|
|
484
|
+
width: 12px;
|
|
485
|
+
height: 12px;
|
|
427
486
|
}
|
|
428
|
-
.
|
|
429
|
-
|
|
487
|
+
.clappr-nerd-stats .stats-box-top .close-button svg path {
|
|
488
|
+
fill: var(--primary-text-color);
|
|
430
489
|
}
|
|
431
|
-
.
|
|
490
|
+
.clappr-nerd-stats .stats-box-top .close-button:hover svg path {
|
|
432
491
|
fill: var(--hover-text-color);
|
|
433
492
|
}
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
inset: 0;
|
|
440
|
-
min-width: 100vw;
|
|
441
|
-
padding-bottom: 4px;
|
|
442
|
-
padding-left: 4px;
|
|
443
|
-
padding-right: 4px;
|
|
493
|
+
.clappr-nerd-stats .stats-box-main {
|
|
494
|
+
overflow: hidden;
|
|
495
|
+
margin-top: 44px;
|
|
496
|
+
display: flex;
|
|
497
|
+
flex-wrap: wrap;
|
|
444
498
|
}
|
|
445
|
-
.
|
|
446
|
-
|
|
499
|
+
.clappr-nerd-stats .stats-box-main ul {
|
|
500
|
+
flex: 0 1 1fr;
|
|
501
|
+
min-width: 200px;
|
|
447
502
|
}
|
|
448
|
-
.
|
|
449
|
-
|
|
503
|
+
.clappr-nerd-stats .stats-box.wide {
|
|
504
|
+
width: 820px;
|
|
450
505
|
}
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
.mobile .speedtest-summary {
|
|
454
|
-
padding: 0 5px;
|
|
455
|
-
height: auto;
|
|
456
|
-
}
|
|
457
|
-
.mobile .speedtest-summary-block {
|
|
458
|
-
width: 100%;
|
|
459
|
-
flex-direction: column;
|
|
460
|
-
}
|
|
461
|
-
.mobile .speedtest-summary-block .speedtest-summary-subblock {
|
|
462
|
-
width: 100%;
|
|
463
|
-
}
|
|
464
|
-
.mobile .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
465
|
-
width: 100%;
|
|
466
|
-
}
|
|
467
|
-
.mobile .speedtest-summary-header {
|
|
468
|
-
padding-top: 12px;
|
|
469
|
-
height: 38px;
|
|
470
|
-
text-align: center;
|
|
471
|
-
}
|
|
472
|
-
.mobile .speedtest-quality-header {
|
|
473
|
-
text-align: center;
|
|
474
|
-
}
|
|
475
|
-
.mobile .speedtest-footer .speedtest-footer-refresh {
|
|
476
|
-
inset: 50% auto auto 50%;
|
|
477
|
-
transform: translate(-50%, -50%);
|
|
478
|
-
}
|
|
506
|
+
.clappr-nerd-stats .stats-box ul, .clappr-nerd-stats .stats-box li {
|
|
507
|
+
list-style-type: none;
|
|
479
508
|
}
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
509
|
+
.clappr-nerd-stats .stats-box ul div, .clappr-nerd-stats .stats-box li div {
|
|
510
|
+
padding-left: 2px;
|
|
511
|
+
padding-right: 2px;
|
|
512
|
+
background: var(--primary-background-color);
|
|
513
|
+
gap: 10px;
|
|
484
514
|
}
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
}@charset "UTF-8";
|
|
490
|
-
.gplayer-mc-clips {
|
|
491
|
-
display: flex;
|
|
492
|
-
gap: 6px;
|
|
515
|
+
.clappr-nerd-stats .stats-box ul {
|
|
516
|
+
padding: 5px;
|
|
517
|
+
width: 200px;
|
|
518
|
+
flex: 0 1 50%;
|
|
493
519
|
}
|
|
494
|
-
.
|
|
495
|
-
text-overflow: ellipsis;
|
|
496
|
-
white-space: nowrap;
|
|
497
|
-
overflow: hidden;
|
|
498
|
-
display: inline-block;
|
|
499
|
-
text-overflow: ellipsis;
|
|
500
|
-
color: white;
|
|
501
|
-
cursor: default;
|
|
502
|
-
line-height: var(--bottom-panel);
|
|
520
|
+
.clappr-nerd-stats .stats-box ul li {
|
|
503
521
|
position: relative;
|
|
504
|
-
|
|
522
|
+
padding: 0 5px;
|
|
523
|
+
text-align: left;
|
|
505
524
|
}
|
|
506
|
-
.
|
|
507
|
-
|
|
508
|
-
padding-right: 6px;
|
|
525
|
+
.clappr-nerd-stats .stats-box ul li.canvas-wrapper {
|
|
526
|
+
padding: 0;
|
|
509
527
|
}
|
|
510
|
-
.
|
|
511
|
-
max-width: 100px;
|
|
512
|
-
}.big-mute-icon-wrapper[data-big-mute] {
|
|
513
|
-
position: absolute;
|
|
514
|
-
z-index: 9998;
|
|
515
|
-
background-color: transparent;
|
|
516
|
-
display: flex;
|
|
517
|
-
justify-content: center;
|
|
528
|
+
.clappr-nerd-stats .stats-box ul li.canvas-wrapper canvas {
|
|
518
529
|
width: 100%;
|
|
519
|
-
height: calc(100% - 50px);
|
|
520
|
-
margin: 0 auto;
|
|
521
|
-
opacity: 0.75;
|
|
522
|
-
transition: opacity 0.1s ease;
|
|
523
|
-
pointer-events: auto;
|
|
524
530
|
}
|
|
525
|
-
.
|
|
526
|
-
|
|
531
|
+
.clappr-nerd-stats .stats-box ul li:nth-child(2n) {
|
|
532
|
+
background: var(--secondary-background-color);
|
|
527
533
|
}
|
|
528
|
-
.
|
|
529
|
-
|
|
534
|
+
.clappr-nerd-stats .stats-box ul li:nth-child(2n) div {
|
|
535
|
+
background: var(--secondary-background-color);
|
|
530
536
|
}
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
align-self: center;
|
|
537
|
-
width: 120px;
|
|
538
|
-
height: 120px;
|
|
539
|
-
border: 2px solid white;
|
|
540
|
-
border-radius: 50%;
|
|
541
|
-
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
542
|
-
filter: alpha(opacity=60);
|
|
543
|
-
opacity: 1;
|
|
544
|
-
box-shadow: 0 0 1px 0 white;
|
|
545
|
-
background: rgba(240, 243, 247, 0.9411764706);
|
|
546
|
-
z-index: 10000;
|
|
537
|
+
.clappr-nerd-stats .stats-box ul li.title {
|
|
538
|
+
text-align: center;
|
|
539
|
+
font-weight: bold;
|
|
540
|
+
padding-bottom: 4px;
|
|
541
|
+
font-size: 14px;
|
|
547
542
|
}
|
|
548
|
-
.
|
|
549
|
-
margin
|
|
550
|
-
|
|
551
|
-
|
|
543
|
+
.clappr-nerd-stats .stats-box ul li div {
|
|
544
|
+
margin: 0;
|
|
545
|
+
position: absolute;
|
|
546
|
+
right: 0;
|
|
547
|
+
top: 0;
|
|
552
548
|
}
|
|
553
|
-
|
|
554
|
-
|
|
549
|
+
|
|
550
|
+
.desktop .clappr-nerd-stats .stats-box.narrow {
|
|
551
|
+
width: 250px;
|
|
555
552
|
}
|
|
556
|
-
.
|
|
557
|
-
|
|
553
|
+
.desktop .clappr-nerd-stats .stats-box.narrow ul {
|
|
554
|
+
width: 100%;
|
|
555
|
+
}
|
|
556
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary {
|
|
557
|
+
padding: 0 5px;
|
|
558
|
+
height: auto;
|
|
558
559
|
}
|
|
559
|
-
.
|
|
560
|
-
fill: #151515 !important;
|
|
561
|
-
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
562
|
-
color: #CCCACA;
|
|
563
|
-
position: absolute;
|
|
564
|
-
top: 0;
|
|
565
|
-
height: 100%;
|
|
560
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block {
|
|
566
561
|
width: 100%;
|
|
567
|
-
background-color: rgba(0, 0, 0, 0.7);
|
|
568
|
-
z-index: 2000;
|
|
569
|
-
display: flex;
|
|
570
562
|
flex-direction: column;
|
|
571
|
-
justify-content: center;
|
|
572
563
|
}
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
color: #CCCACA;
|
|
576
|
-
margin-top: 45px;
|
|
564
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock {
|
|
565
|
+
width: 100%;
|
|
577
566
|
}
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
line-height: 30px;
|
|
581
|
-
font-size: 18px;
|
|
567
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
568
|
+
width: 100%;
|
|
582
569
|
}
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
570
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-header {
|
|
571
|
+
padding-top: 12px;
|
|
572
|
+
height: 38px;
|
|
573
|
+
text-align: center;
|
|
586
574
|
}
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
margin-top: 15px;
|
|
575
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-quality-header {
|
|
576
|
+
text-align: center;
|
|
590
577
|
}
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
width: 30px;
|
|
594
|
-
margin: 15px auto 0;
|
|
595
|
-
}.media-control-skin-1 .media-control-item.media-control-gear {
|
|
596
|
-
order: 99;
|
|
578
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer {
|
|
579
|
+
height: 80px;
|
|
597
580
|
}
|
|
598
|
-
.
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
bottom: 52px;
|
|
602
|
-
width: 250px;
|
|
603
|
-
min-height: 48px;
|
|
604
|
-
z-index: 9999;
|
|
605
|
-
border-radius: 4px;
|
|
606
|
-
box-shadow: 0 0 1px 1px var(--gplayer-mc-popup-border-color);
|
|
581
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer-about-link {
|
|
582
|
+
bottom: 0;
|
|
583
|
+
left: 0;
|
|
607
584
|
}
|
|
608
|
-
.
|
|
609
|
-
|
|
585
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer .speedtest-footer-refresh {
|
|
586
|
+
inset: 50% auto auto 50%;
|
|
587
|
+
transform: translate(-50%, -50%);
|
|
610
588
|
}
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
padding: 5px 14px;
|
|
616
|
-
width: 250px;
|
|
617
|
-
font-size: 12px;
|
|
618
|
-
display: flex;
|
|
619
|
-
align-items: center;
|
|
620
|
-
justify-content: flex-start;
|
|
621
|
-
gap: 8px;
|
|
589
|
+
|
|
590
|
+
.speed-test-button {
|
|
591
|
+
margin: 10px 0 0;
|
|
592
|
+
color: #000;
|
|
622
593
|
}
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
594
|
+
|
|
595
|
+
.speed-test {
|
|
596
|
+
position: absolute;
|
|
597
|
+
top: 0;
|
|
598
|
+
left: 0;
|
|
599
|
+
width: 100%;
|
|
600
|
+
height: 100%;
|
|
601
|
+
z-index: 9999;
|
|
626
602
|
}
|
|
627
|
-
.
|
|
628
|
-
|
|
629
|
-
|
|
603
|
+
.speed-test .speed-test-header {
|
|
604
|
+
width: 100%;
|
|
605
|
+
height: 32px;
|
|
630
606
|
}
|
|
631
|
-
.
|
|
632
|
-
|
|
607
|
+
.speed-test .speed-test-header .close-speed-test {
|
|
608
|
+
float: right;
|
|
609
|
+
margin-right: 5px;
|
|
610
|
+
line-height: 32px;
|
|
611
|
+
cursor: pointer;
|
|
612
|
+
color: var(--primary-text-color);
|
|
633
613
|
}
|
|
634
|
-
.
|
|
635
|
-
|
|
636
|
-
height: 24px;
|
|
614
|
+
.speed-test .speed-test-header .close-speed-test:hover {
|
|
615
|
+
color: var(--hover-text-color);
|
|
637
616
|
}
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
617
|
+
|
|
618
|
+
.settings-button {
|
|
619
|
+
float: right;
|
|
620
|
+
margin: 0 12px 0 0;
|
|
621
|
+
height: 40px;
|
|
622
|
+
width: 24px;
|
|
623
|
+
border: none;
|
|
624
|
+
padding: 0;
|
|
642
625
|
}
|
|
643
626
|
|
|
644
|
-
.
|
|
645
|
-
|
|
627
|
+
.speedtest-summary {
|
|
628
|
+
width: 100%;
|
|
629
|
+
border-top: 1px solid var(--secondary-background-color) !important;
|
|
630
|
+
border-bottom: 1px solid var(--secondary-background-color) !important;
|
|
631
|
+
display: flex !important;
|
|
632
|
+
flex-direction: column;
|
|
633
|
+
align-items: stretch;
|
|
634
|
+
justify-content: space-between;
|
|
635
|
+
}
|
|
636
|
+
.speedtest-summary .speedtest-summary-header {
|
|
637
|
+
width: 100%;
|
|
638
|
+
padding-top: 4px;
|
|
639
|
+
text-align: left;
|
|
640
|
+
height: 32px;
|
|
646
641
|
font-size: 14px;
|
|
642
|
+
font-weight: 500;
|
|
647
643
|
line-height: 20px;
|
|
644
|
+
}
|
|
645
|
+
.speedtest-summary .speedtest-summary-block {
|
|
646
|
+
position: relative;
|
|
647
|
+
display: flex;
|
|
648
|
+
flex-direction: row;
|
|
648
649
|
width: 100%;
|
|
649
|
-
text-align: left;
|
|
650
|
-
padding: 12px;
|
|
651
650
|
}
|
|
652
|
-
.
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
651
|
+
.speedtest-summary .speedtest-summary-block .speedtest-summary-subblock {
|
|
652
|
+
width: 50%;
|
|
653
|
+
margin-top: 4px;
|
|
654
|
+
margin-bottom: 12px;
|
|
656
655
|
}
|
|
657
|
-
.
|
|
658
|
-
|
|
656
|
+
.speedtest-summary .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
657
|
+
padding: 2px;
|
|
658
|
+
width: 248px;
|
|
659
|
+
max-width: 100%;
|
|
659
660
|
}
|
|
660
|
-
|
|
661
|
+
|
|
662
|
+
.speedtest-quality {
|
|
661
663
|
width: 100%;
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
664
|
+
height: 36px;
|
|
665
|
+
display: flex !important;
|
|
666
|
+
flex-direction: column !important;
|
|
667
|
+
justify-content: space-between !important;
|
|
666
668
|
}
|
|
667
|
-
.
|
|
669
|
+
.speedtest-quality .speedtest-quality-header {
|
|
668
670
|
font-size: 12px;
|
|
671
|
+
height: 20px;
|
|
672
|
+
border-left: 2px solid var(--secondary-background-color) !important;
|
|
673
|
+
background-color: var(--secondary-background-color);
|
|
669
674
|
text-align: left;
|
|
670
675
|
}
|
|
671
|
-
.
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
height:
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
676
|
+
.speedtest-quality-content {
|
|
677
|
+
width: 100%;
|
|
678
|
+
margin-top: 8px;
|
|
679
|
+
height: 8px;
|
|
680
|
+
display: flex !important;
|
|
681
|
+
flex-direction: row !important;
|
|
682
|
+
align-items: stretch !important;
|
|
683
|
+
justify-content: space-between;
|
|
678
684
|
}
|
|
679
|
-
.
|
|
680
|
-
|
|
681
|
-
background-color:
|
|
685
|
+
.speedtest-quality-content-item {
|
|
686
|
+
width: 18.8%;
|
|
687
|
+
background-color: #fff;
|
|
682
688
|
}
|
|
683
|
-
.
|
|
684
|
-
color: var(--
|
|
685
|
-
text-decoration: none;
|
|
689
|
+
.speedtest-quality-content-item.speedtest-quality-value-1 {
|
|
690
|
+
background-color: var(--speedtest-red);
|
|
686
691
|
}
|
|
687
|
-
.
|
|
688
|
-
|
|
689
|
-
|
|
692
|
+
.speedtest-quality-content-item.speedtest-quality-value-2 {
|
|
693
|
+
background-color: var(--speedtest-orange);
|
|
694
|
+
}
|
|
695
|
+
.speedtest-quality-content-item.speedtest-quality-value-3 {
|
|
696
|
+
background-color: var(--speedtest-yellow);
|
|
697
|
+
}
|
|
698
|
+
.speedtest-quality-content-item.speedtest-quality-value-4 {
|
|
699
|
+
background-color: var(--speedtest-light-green);
|
|
700
|
+
}
|
|
701
|
+
.speedtest-quality-content-item.speedtest-quality-value-5 {
|
|
702
|
+
background-color: var(--speedtest-green);
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.speedtest-footer {
|
|
706
|
+
position: relative;
|
|
690
707
|
float: left;
|
|
691
|
-
|
|
708
|
+
width: 100%;
|
|
709
|
+
height: 30px;
|
|
710
|
+
line-height: 16px;
|
|
692
711
|
}
|
|
693
|
-
.
|
|
694
|
-
|
|
712
|
+
.speedtest-footer-about-link {
|
|
713
|
+
position: absolute;
|
|
714
|
+
bottom: 0;
|
|
715
|
+
left: 0;
|
|
716
|
+
color: var(--secondary-text-color);
|
|
717
|
+
text-decoration: underline !important;
|
|
695
718
|
}
|
|
696
|
-
.
|
|
697
|
-
|
|
698
|
-
}.dvr-controls {
|
|
699
|
-
--disabled-opacity: 0.3;
|
|
700
|
-
--circle-radius: 5px;
|
|
701
|
-
display: flex;
|
|
702
|
-
align-items: center;
|
|
703
|
-
color: var(--player-dvr-color);
|
|
704
|
-
font-size: 10px;
|
|
705
|
-
font-weight: 500;
|
|
706
|
-
height: var(--bottom-panel);
|
|
707
|
-
line-height: var(--bottom-panel);
|
|
708
|
-
margin-left: 0;
|
|
719
|
+
.speedtest-footer-about-link:hover {
|
|
720
|
+
color: var(--hover-text-color);
|
|
709
721
|
}
|
|
710
|
-
.
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
722
|
+
.speedtest-footer .speedtest-footer-refresh {
|
|
723
|
+
position: absolute;
|
|
724
|
+
bottom: 0;
|
|
725
|
+
right: 0;
|
|
726
|
+
color: var(--secondary-text-color);
|
|
727
|
+
font-size: 14px;
|
|
728
|
+
font-weight: 400;
|
|
729
|
+
line-height: 16px;
|
|
730
|
+
height: 16px;
|
|
731
|
+
display: flex;
|
|
732
|
+
align-items: center;
|
|
733
|
+
gap: 4px;
|
|
717
734
|
}
|
|
718
|
-
.
|
|
719
|
-
|
|
720
|
-
margin-right: 8px;
|
|
721
|
-
content: "";
|
|
722
|
-
display: inline-block;
|
|
723
|
-
position: relative;
|
|
724
|
-
width: calc(var(--circle-radius) * 2);
|
|
725
|
-
height: calc(var(--circle-radius) * 2);
|
|
726
|
-
border-radius: var(--circle-radius);
|
|
727
|
-
background-color: var(--player-dvr-color);
|
|
735
|
+
.speedtest-footer .speedtest-footer-refresh svg path {
|
|
736
|
+
fill: var(--secondary-text-color);
|
|
728
737
|
}
|
|
729
|
-
.
|
|
730
|
-
|
|
738
|
+
.speedtest-footer .speedtest-footer-refresh:hover {
|
|
739
|
+
color: var(--hover-text-color);
|
|
731
740
|
}
|
|
732
|
-
.
|
|
733
|
-
|
|
741
|
+
.speedtest-footer .speedtest-footer-refresh:hover svg path {
|
|
742
|
+
fill: var(--hover-text-color);
|
|
734
743
|
}
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
744
|
+
|
|
745
|
+
.mobile .clappr-nerd-stats .stats-box {
|
|
746
|
+
position: fixed;
|
|
747
|
+
height: auto;
|
|
748
|
+
width: auto;
|
|
749
|
+
inset: 0;
|
|
750
|
+
min-width: 100vw;
|
|
751
|
+
padding-bottom: 4px;
|
|
752
|
+
padding-left: 4px;
|
|
753
|
+
padding-right: 4px;
|
|
738
754
|
}
|
|
739
|
-
.
|
|
740
|
-
|
|
755
|
+
.mobile .clappr-nerd-stats .stats-box-top {
|
|
756
|
+
position: fixed;
|
|
741
757
|
}
|
|
742
|
-
.
|
|
743
|
-
|
|
744
|
-
outline: none;
|
|
745
|
-
border: 0;
|
|
746
|
-
color: var(--player-dvr-color);
|
|
747
|
-
background-color: transparent;
|
|
748
|
-
padding: 0;
|
|
749
|
-
opacity: 0.7;
|
|
750
|
-
transition: all 0.1s ease;
|
|
758
|
+
.mobile .clappr-nerd-stats .stats-box-main ul {
|
|
759
|
+
flex: 0 1 50%;
|
|
751
760
|
}
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
+
|
|
762
|
+
@media only screen and (orientation: portrait) {
|
|
763
|
+
.mobile .speedtest-summary {
|
|
764
|
+
padding: 0 5px;
|
|
765
|
+
height: auto;
|
|
766
|
+
}
|
|
767
|
+
.mobile .speedtest-summary-block {
|
|
768
|
+
width: 100%;
|
|
769
|
+
flex-direction: column;
|
|
770
|
+
}
|
|
771
|
+
.mobile .speedtest-summary-block .speedtest-summary-subblock {
|
|
772
|
+
width: 100%;
|
|
773
|
+
}
|
|
774
|
+
.mobile .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
775
|
+
width: 100%;
|
|
776
|
+
}
|
|
777
|
+
.mobile .speedtest-summary-header {
|
|
778
|
+
padding-top: 12px;
|
|
779
|
+
height: 38px;
|
|
780
|
+
text-align: center;
|
|
781
|
+
}
|
|
782
|
+
.mobile .speedtest-quality-header {
|
|
783
|
+
text-align: center;
|
|
784
|
+
}
|
|
785
|
+
.mobile .speedtest-footer .speedtest-footer-refresh {
|
|
786
|
+
inset: 50% auto auto 50%;
|
|
787
|
+
transform: translate(-50%, -50%);
|
|
788
|
+
}
|
|
761
789
|
}
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
list-style-type: none;
|
|
767
|
-
text-align: left;
|
|
768
|
-
padding: 5px;
|
|
769
|
-
margin-left: auto;
|
|
770
|
-
margin-right: auto;
|
|
771
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
772
|
-
border: 1px solid #666;
|
|
773
|
-
border-radius: 4px;
|
|
790
|
+
@media only screen and (orientation: landscape) {
|
|
791
|
+
.mobile .clappr-nerd-stats .stats-box-main ul {
|
|
792
|
+
flex-basis: 1fr;
|
|
793
|
+
}
|
|
774
794
|
}
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
align-items: center;
|
|
783
|
-
justify-content: center;
|
|
784
|
-
cursor: pointer;
|
|
785
|
-
padding: 5px;
|
|
786
|
-
width: 100%;
|
|
795
|
+
@media only screen and (min-width: 1100px) {
|
|
796
|
+
.fullscreen .clappr-nerd-stats .stats-box {
|
|
797
|
+
top: unset;
|
|
798
|
+
}
|
|
799
|
+
}.quality-levels li.disabled {
|
|
800
|
+
opacity: 0.5;
|
|
801
|
+
pointer-events: none;
|
|
787
802
|
}
|
|
788
|
-
.
|
|
789
|
-
|
|
790
|
-
height: 20px;
|
|
803
|
+
.quality-levels li.current {
|
|
804
|
+
background-color: #000;
|
|
791
805
|
}*,
|
|
792
806
|
:focus,
|
|
793
807
|
:visited {
|
|
@@ -915,131 +929,14 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
915
929
|
}
|
|
916
930
|
.multicamera[data-multicamera] li a:hover {
|
|
917
931
|
background-color: #555;
|
|
918
|
-
color: white;
|
|
919
|
-
}
|
|
920
|
-
.multicamera[data-multicamera] li a:hover a {
|
|
921
|
-
color: white;
|
|
922
|
-
text-decoration: none;
|
|
923
|
-
}
|
|
924
|
-
.multicamera[data-multicamera] li.current a {
|
|
925
|
-
color: #f00;
|
|
926
|
-
}.share_plugin[data-share] {
|
|
927
|
-
pointer-events: auto;
|
|
928
|
-
z-index: 5;
|
|
929
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
930
|
-
}
|
|
931
|
-
.share_plugin[data-share].share-hide .share-button-container {
|
|
932
|
-
right: -50px;
|
|
933
|
-
}
|
|
934
|
-
.share_plugin[data-share] .share-button-container {
|
|
935
|
-
cursor: pointer;
|
|
936
|
-
width: 36px;
|
|
937
|
-
height: 36px;
|
|
938
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
939
|
-
border-radius: 4px;
|
|
940
|
-
position: absolute;
|
|
941
|
-
right: 10px;
|
|
942
|
-
top: 10px;
|
|
943
|
-
padding-top: 6px;
|
|
944
|
-
transition: all 0.3s ease-out;
|
|
945
|
-
}
|
|
946
|
-
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
947
|
-
background-color: transparent;
|
|
948
|
-
border: 0;
|
|
949
|
-
margin: 0 6px;
|
|
950
|
-
padding: 0;
|
|
951
|
-
cursor: pointer;
|
|
952
|
-
display: inline-block;
|
|
953
|
-
width: 19px;
|
|
954
|
-
height: 20px;
|
|
955
|
-
}
|
|
956
|
-
.share_plugin[data-share] .share-container {
|
|
957
|
-
pointer-events: auto;
|
|
958
|
-
position: absolute;
|
|
959
|
-
width: 280px;
|
|
960
|
-
background-color: white;
|
|
961
|
-
transform: translate(0, 50%);
|
|
962
|
-
transform: translate(-50%, -50%);
|
|
963
|
-
left: 50%;
|
|
964
|
-
/* margin-left: -140px; */
|
|
965
|
-
top: calc(50% - 20px);
|
|
966
|
-
/* margin-top: -170px; */
|
|
967
|
-
}
|
|
968
|
-
.share_plugin[data-share] .share-container .share-container-header {
|
|
969
|
-
text-align: left;
|
|
970
|
-
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
971
|
-
}
|
|
972
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
973
|
-
display: inline-block;
|
|
974
|
-
font-size: 16px;
|
|
975
|
-
margin: 5px;
|
|
976
|
-
}
|
|
977
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
978
|
-
display: inline-block;
|
|
979
|
-
width: 24px;
|
|
980
|
-
float: right;
|
|
981
|
-
margin: 5px;
|
|
982
|
-
cursor: pointer;
|
|
983
|
-
}
|
|
984
|
-
.share_plugin[data-share] .share-container .share-container-main {
|
|
985
|
-
margin-bottom: 8px;
|
|
986
|
-
}
|
|
987
|
-
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
988
|
-
text-align: left;
|
|
989
|
-
font-size: 14px;
|
|
990
|
-
padding: 5px;
|
|
991
|
-
}
|
|
992
|
-
.share_plugin[data-share] .share-container .share-container-main .share-container-header--link, .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
993
|
-
overflow: hidden;
|
|
994
|
-
text-overflow: ellipsis;
|
|
995
|
-
color: #818181;
|
|
996
|
-
border: solid 1px #d3d3d3;
|
|
997
|
-
width: calc(100% - 10px);
|
|
998
|
-
padding: 5px;
|
|
999
|
-
}
|
|
1000
|
-
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
1001
|
-
max-height: 90px;
|
|
1002
|
-
resize: none;
|
|
1003
|
-
}
|
|
1004
|
-
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
1005
|
-
width: 32px;
|
|
1006
|
-
display: inline-block;
|
|
1007
|
-
margin-right: 5px;
|
|
1008
|
-
cursor: pointer;
|
|
1009
|
-
}.player-poster {
|
|
1010
|
-
display: flex;
|
|
1011
|
-
justify-content: center;
|
|
1012
|
-
align-items: center;
|
|
1013
|
-
position: absolute;
|
|
1014
|
-
height: 100%;
|
|
1015
|
-
width: 100%;
|
|
1016
|
-
z-index: 998;
|
|
1017
|
-
top: 0;
|
|
1018
|
-
left: 0;
|
|
1019
|
-
background-color: #000;
|
|
1020
|
-
background-size: cover;
|
|
1021
|
-
background-repeat: no-repeat;
|
|
1022
|
-
background-position: 50% 50%;
|
|
1023
|
-
}
|
|
1024
|
-
.player-poster.clickable {
|
|
1025
|
-
cursor: pointer;
|
|
1026
|
-
}
|
|
1027
|
-
.player-poster:hover .play-wrapper {
|
|
1028
|
-
opacity: 1;
|
|
1029
|
-
}
|
|
1030
|
-
.player-poster .play-wrapper {
|
|
1031
|
-
width: 100%;
|
|
1032
|
-
height: 25%;
|
|
1033
|
-
margin: 0 auto;
|
|
1034
|
-
opacity: 0.75;
|
|
1035
|
-
transition: opacity 0.1s ease;
|
|
1036
|
-
}
|
|
1037
|
-
.player-poster .play-wrapper svg {
|
|
1038
|
-
height: 100%;
|
|
1039
|
-
display: inline;
|
|
932
|
+
color: white;
|
|
1040
933
|
}
|
|
1041
|
-
.
|
|
1042
|
-
|
|
934
|
+
.multicamera[data-multicamera] li a:hover a {
|
|
935
|
+
color: white;
|
|
936
|
+
text-decoration: none;
|
|
937
|
+
}
|
|
938
|
+
.multicamera[data-multicamera] li.current a {
|
|
939
|
+
color: #f00;
|
|
1043
940
|
}[data-player] {
|
|
1044
941
|
--bottom-panel: 40px;
|
|
1045
942
|
}
|
|
@@ -1661,47 +1558,44 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1661
1558
|
100% {
|
|
1662
1559
|
color: #B80000;
|
|
1663
1560
|
}
|
|
1664
|
-
}.
|
|
1561
|
+
}.spinner-three-bounce[data-spinner] {
|
|
1665
1562
|
position: absolute;
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
opacity: 0;
|
|
1678
|
-
}
|
|
1679
|
-
.seek-time .seek-time__pos {
|
|
1680
|
-
display: inline-block;
|
|
1681
|
-
color: white;
|
|
1682
|
-
font-size: 10px;
|
|
1683
|
-
padding-left: 7px;
|
|
1684
|
-
padding-right: 7px;
|
|
1685
|
-
vertical-align: top;
|
|
1563
|
+
width: 70px;
|
|
1564
|
+
text-align: center;
|
|
1565
|
+
z-index: 999;
|
|
1566
|
+
left: 0;
|
|
1567
|
+
right: 0;
|
|
1568
|
+
margin: 0 auto;
|
|
1569
|
+
margin-left: auto;
|
|
1570
|
+
margin-right: auto;
|
|
1571
|
+
/* center vertically */
|
|
1572
|
+
top: 50%;
|
|
1573
|
+
transform: translateY(-50%);
|
|
1686
1574
|
}
|
|
1687
|
-
.
|
|
1575
|
+
.spinner-three-bounce[data-spinner] > div {
|
|
1576
|
+
width: 18px;
|
|
1577
|
+
height: 18px;
|
|
1578
|
+
background-color: #FFF;
|
|
1579
|
+
border-radius: 100%;
|
|
1688
1580
|
display: inline-block;
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
vertical-align: top;
|
|
1581
|
+
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
1582
|
+
/* Prevent first frame from flickering when animation starts */
|
|
1583
|
+
animation-fill-mode: both;
|
|
1693
1584
|
}
|
|
1694
|
-
.
|
|
1695
|
-
|
|
1696
|
-
margin-right: 7px;
|
|
1697
|
-
}.media-control-skin-1 .media-control-item.media-control-pip {
|
|
1698
|
-
order: 95;
|
|
1585
|
+
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
1586
|
+
animation-delay: -0.32s;
|
|
1699
1587
|
}
|
|
1700
|
-
.
|
|
1701
|
-
|
|
1588
|
+
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
1589
|
+
animation-delay: -0.16s;
|
|
1702
1590
|
}
|
|
1703
|
-
|
|
1704
|
-
|
|
1591
|
+
|
|
1592
|
+
@keyframes bouncedelay {
|
|
1593
|
+
0%, 80%, 100% {
|
|
1594
|
+
transform: scale(0);
|
|
1595
|
+
}
|
|
1596
|
+
40% {
|
|
1597
|
+
transform: scale(1);
|
|
1598
|
+
}
|
|
1705
1599
|
}.container-with-poster-clickable .mc-skip-time {
|
|
1706
1600
|
height: 0;
|
|
1707
1601
|
}
|
|
@@ -1723,6 +1617,89 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1723
1617
|
.mc-skip-time .skip-container .skip-item {
|
|
1724
1618
|
flex: 1 0 0px;
|
|
1725
1619
|
height: 100%;
|
|
1620
|
+
}.share_plugin[data-share] {
|
|
1621
|
+
pointer-events: auto;
|
|
1622
|
+
z-index: 5;
|
|
1623
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
1624
|
+
}
|
|
1625
|
+
.share_plugin[data-share].share-hide .share-button-container {
|
|
1626
|
+
right: -50px;
|
|
1627
|
+
}
|
|
1628
|
+
.share_plugin[data-share] .share-button-container {
|
|
1629
|
+
cursor: pointer;
|
|
1630
|
+
width: 36px;
|
|
1631
|
+
height: 36px;
|
|
1632
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
1633
|
+
border-radius: 4px;
|
|
1634
|
+
position: absolute;
|
|
1635
|
+
right: 10px;
|
|
1636
|
+
top: 10px;
|
|
1637
|
+
padding-top: 6px;
|
|
1638
|
+
transition: all 0.3s ease-out;
|
|
1639
|
+
}
|
|
1640
|
+
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
1641
|
+
background-color: transparent;
|
|
1642
|
+
border: 0;
|
|
1643
|
+
margin: 0 6px;
|
|
1644
|
+
padding: 0;
|
|
1645
|
+
cursor: pointer;
|
|
1646
|
+
display: inline-block;
|
|
1647
|
+
width: 19px;
|
|
1648
|
+
height: 20px;
|
|
1649
|
+
}
|
|
1650
|
+
.share_plugin[data-share] .share-container {
|
|
1651
|
+
pointer-events: auto;
|
|
1652
|
+
position: absolute;
|
|
1653
|
+
width: 280px;
|
|
1654
|
+
background-color: white;
|
|
1655
|
+
transform: translate(0, 50%);
|
|
1656
|
+
transform: translate(-50%, -50%);
|
|
1657
|
+
left: 50%;
|
|
1658
|
+
/* margin-left: -140px; */
|
|
1659
|
+
top: calc(50% - 20px);
|
|
1660
|
+
/* margin-top: -170px; */
|
|
1661
|
+
}
|
|
1662
|
+
.share_plugin[data-share] .share-container .share-container-header {
|
|
1663
|
+
text-align: left;
|
|
1664
|
+
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
1665
|
+
}
|
|
1666
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
1667
|
+
display: inline-block;
|
|
1668
|
+
font-size: 16px;
|
|
1669
|
+
margin: 5px;
|
|
1670
|
+
}
|
|
1671
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
1672
|
+
display: inline-block;
|
|
1673
|
+
width: 24px;
|
|
1674
|
+
float: right;
|
|
1675
|
+
margin: 5px;
|
|
1676
|
+
cursor: pointer;
|
|
1677
|
+
}
|
|
1678
|
+
.share_plugin[data-share] .share-container .share-container-main {
|
|
1679
|
+
margin-bottom: 8px;
|
|
1680
|
+
}
|
|
1681
|
+
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
1682
|
+
text-align: left;
|
|
1683
|
+
font-size: 14px;
|
|
1684
|
+
padding: 5px;
|
|
1685
|
+
}
|
|
1686
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--link, .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
1687
|
+
overflow: hidden;
|
|
1688
|
+
text-overflow: ellipsis;
|
|
1689
|
+
color: #818181;
|
|
1690
|
+
border: solid 1px #d3d3d3;
|
|
1691
|
+
width: calc(100% - 10px);
|
|
1692
|
+
padding: 5px;
|
|
1693
|
+
}
|
|
1694
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
1695
|
+
max-height: 90px;
|
|
1696
|
+
resize: none;
|
|
1697
|
+
}
|
|
1698
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
1699
|
+
width: 32px;
|
|
1700
|
+
display: inline-block;
|
|
1701
|
+
margin-right: 5px;
|
|
1702
|
+
cursor: pointer;
|
|
1726
1703
|
}.scrub-thumbnails {
|
|
1727
1704
|
position: absolute;
|
|
1728
1705
|
bottom: 52px;
|
|
@@ -1786,12 +1763,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1786
1763
|
}
|
|
1787
1764
|
.scrub-thumbnails .backdrop .carousel img {
|
|
1788
1765
|
width: auto;
|
|
1789
|
-
}.quality-levels li.disabled {
|
|
1790
|
-
opacity: 0.5;
|
|
1791
|
-
pointer-events: none;
|
|
1792
|
-
}
|
|
1793
|
-
.quality-levels li.current {
|
|
1794
|
-
background-color: #000;
|
|
1795
1766
|
}.media-control-skin-1 .media-control-cc button.media-control-button {
|
|
1796
1767
|
display: flex;
|
|
1797
1768
|
justify-content: center;
|
|
@@ -1839,44 +1810,73 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1839
1810
|
background-color: rgba(0, 0, 0, 0.4);
|
|
1840
1811
|
color: white;
|
|
1841
1812
|
display: inline-block;
|
|
1842
|
-
}.
|
|
1813
|
+
}.player-poster {
|
|
1814
|
+
display: flex;
|
|
1815
|
+
justify-content: center;
|
|
1816
|
+
align-items: center;
|
|
1843
1817
|
position: absolute;
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
z-index:
|
|
1818
|
+
height: 100%;
|
|
1819
|
+
width: 100%;
|
|
1820
|
+
z-index: 998;
|
|
1821
|
+
top: 0;
|
|
1847
1822
|
left: 0;
|
|
1848
|
-
|
|
1823
|
+
background-color: #000;
|
|
1824
|
+
background-size: cover;
|
|
1825
|
+
background-repeat: no-repeat;
|
|
1826
|
+
background-position: 50% 50%;
|
|
1827
|
+
}
|
|
1828
|
+
.player-poster.clickable {
|
|
1829
|
+
cursor: pointer;
|
|
1830
|
+
}
|
|
1831
|
+
.player-poster:hover .play-wrapper {
|
|
1832
|
+
opacity: 1;
|
|
1833
|
+
}
|
|
1834
|
+
.player-poster .play-wrapper {
|
|
1835
|
+
width: 100%;
|
|
1836
|
+
height: 25%;
|
|
1849
1837
|
margin: 0 auto;
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
/* center vertically */
|
|
1853
|
-
top: 50%;
|
|
1854
|
-
transform: translateY(-50%);
|
|
1838
|
+
opacity: 0.75;
|
|
1839
|
+
transition: opacity 0.1s ease;
|
|
1855
1840
|
}
|
|
1856
|
-
.
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
background-color: #FFF;
|
|
1860
|
-
border-radius: 100%;
|
|
1861
|
-
display: inline-block;
|
|
1862
|
-
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
1863
|
-
/* Prevent first frame from flickering when animation starts */
|
|
1864
|
-
animation-fill-mode: both;
|
|
1841
|
+
.player-poster .play-wrapper svg {
|
|
1842
|
+
height: 100%;
|
|
1843
|
+
display: inline;
|
|
1865
1844
|
}
|
|
1866
|
-
.
|
|
1867
|
-
|
|
1845
|
+
.player-poster .play-wrapper svg path {
|
|
1846
|
+
fill: #fff;
|
|
1847
|
+
}.seek-time {
|
|
1848
|
+
position: absolute;
|
|
1849
|
+
white-space: nowrap;
|
|
1850
|
+
height: 20px;
|
|
1851
|
+
line-height: 20px;
|
|
1852
|
+
font-size: 0;
|
|
1853
|
+
left: -100%;
|
|
1854
|
+
bottom: 55px;
|
|
1855
|
+
background-color: rgba(2, 2, 2, 0.5);
|
|
1856
|
+
z-index: 9999;
|
|
1857
|
+
transition: opacity 0.1s ease;
|
|
1868
1858
|
}
|
|
1869
|
-
.
|
|
1870
|
-
|
|
1859
|
+
.seek-time.hidden {
|
|
1860
|
+
opacity: 0;
|
|
1871
1861
|
}
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1862
|
+
.seek-time .seek-time__pos {
|
|
1863
|
+
display: inline-block;
|
|
1864
|
+
color: white;
|
|
1865
|
+
font-size: 10px;
|
|
1866
|
+
padding-left: 7px;
|
|
1867
|
+
padding-right: 7px;
|
|
1868
|
+
vertical-align: top;
|
|
1869
|
+
}
|
|
1870
|
+
.seek-time .seek-time__duration {
|
|
1871
|
+
display: inline-block;
|
|
1872
|
+
color: rgba(255, 255, 255, 0.5);
|
|
1873
|
+
font-size: 10px;
|
|
1874
|
+
padding-right: 7px;
|
|
1875
|
+
vertical-align: top;
|
|
1876
|
+
}
|
|
1877
|
+
.seek-time .seek-time__duration::before {
|
|
1878
|
+
content: "|";
|
|
1879
|
+
margin-right: 7px;
|
|
1880
1880
|
}.player-logo[data-logo] {
|
|
1881
1881
|
position: absolute;
|
|
1882
1882
|
z-index: 2;
|