@gcorevideo/player 2.27.0 → 2.28.0
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 +24 -1
- package/dist/index.css +702 -702
- package/dist/index.embed.js +23 -0
- package/dist/index.js +24 -1
- package/dist/player.d.ts +6 -0
- package/docs/api/player.player.load.md +56 -0
- package/docs/api/player.player.md +14 -0
- package/lib/Player.d.ts +7 -1
- package/lib/Player.d.ts.map +1 -1
- package/lib/Player.js +23 -0
- package/package.json +1 -1
- package/src/Player.ts +28 -0
- package/temp/player.api.json +53 -0
- package/tsconfig.tsbuildinfo +1 -1
package/dist/index.css
CHANGED
|
@@ -122,447 +122,139 @@
|
|
|
122
122
|
.gplayer-lite-btn::-moz-focus-inner {
|
|
123
123
|
border: 0;
|
|
124
124
|
padding: 0;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
125
|
+
}:root {
|
|
126
|
+
--primary-background-color: #000;
|
|
127
|
+
--secondary-background-color: #262626;
|
|
128
|
+
--primary-text-color: #fff;
|
|
129
|
+
--secondary-text-color: #fff4f2;
|
|
130
|
+
--hover-text-color: #f9b090;
|
|
131
|
+
--speedtest-red: #df564d;
|
|
132
|
+
--speedtest-orange: #df934d;
|
|
133
|
+
--speedtest-yellow: #dfd04d;
|
|
134
|
+
--speedtest-light-green: #c2df4d;
|
|
135
|
+
--speedtest-green: #73df4d;
|
|
129
136
|
}
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
white-space: nowrap;
|
|
133
|
-
overflow: hidden;
|
|
134
|
-
display: inline-block;
|
|
135
|
-
text-overflow: ellipsis;
|
|
136
|
-
color: white;
|
|
137
|
+
|
|
138
|
+
.clappr-nerd-stats {
|
|
137
139
|
cursor: default;
|
|
138
|
-
line-height: var(--bottom-panel);
|
|
139
|
-
position: relative;
|
|
140
|
-
max-width: 150px;
|
|
141
140
|
}
|
|
142
|
-
.
|
|
143
|
-
|
|
144
|
-
|
|
141
|
+
.clappr-nerd-stats .stats-box {
|
|
142
|
+
position: absolute;
|
|
143
|
+
display: inline-block;
|
|
144
|
+
bottom: 52px;
|
|
145
|
+
right: 0;
|
|
146
|
+
top: 0;
|
|
147
|
+
left: 0;
|
|
148
|
+
bottom: 0;
|
|
149
|
+
padding: 0 10px 12px;
|
|
150
|
+
margin: 0;
|
|
151
|
+
line-height: 20px;
|
|
152
|
+
font-size: 12px;
|
|
153
|
+
font-weight: 500;
|
|
154
|
+
background: var(--primary-background-color);
|
|
155
|
+
color: #fff;
|
|
156
|
+
z-index: 20000;
|
|
157
|
+
overflow: auto;
|
|
158
|
+
max-width: 100%;
|
|
145
159
|
}
|
|
146
|
-
.
|
|
147
|
-
max-width: 100px;
|
|
148
|
-
}.big-mute-icon-wrapper[data-big-mute] {
|
|
160
|
+
.clappr-nerd-stats .stats-box-top {
|
|
149
161
|
position: absolute;
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
justify-content: center;
|
|
162
|
+
top: 0;
|
|
163
|
+
left: 0;
|
|
164
|
+
z-index: 9999;
|
|
154
165
|
width: 100%;
|
|
155
|
-
height:
|
|
156
|
-
|
|
157
|
-
opacity: 0.75;
|
|
158
|
-
transition: opacity 0.1s ease;
|
|
159
|
-
pointer-events: auto;
|
|
166
|
+
height: 32px;
|
|
167
|
+
background: var(--primary-background-color);
|
|
160
168
|
}
|
|
161
|
-
.
|
|
162
|
-
|
|
169
|
+
.clappr-nerd-stats .stats-box-top .close-button {
|
|
170
|
+
position: absolute;
|
|
171
|
+
right: 12px;
|
|
172
|
+
top: 10px;
|
|
173
|
+
display: block;
|
|
174
|
+
width: 12px;
|
|
175
|
+
height: 12px;
|
|
163
176
|
}
|
|
164
|
-
.
|
|
165
|
-
|
|
177
|
+
.clappr-nerd-stats .stats-box-top .close-button svg path {
|
|
178
|
+
fill: var(--primary-text-color);
|
|
166
179
|
}
|
|
167
|
-
|
|
168
|
-
|
|
180
|
+
.clappr-nerd-stats .stats-box-top .close-button:hover svg path {
|
|
181
|
+
fill: var(--hover-text-color);
|
|
182
|
+
}
|
|
183
|
+
.clappr-nerd-stats .stats-box-main {
|
|
184
|
+
overflow: hidden;
|
|
185
|
+
margin-top: 44px;
|
|
169
186
|
display: flex;
|
|
170
|
-
|
|
171
|
-
justify-content: center;
|
|
172
|
-
align-self: center;
|
|
173
|
-
width: 120px;
|
|
174
|
-
height: 120px;
|
|
175
|
-
border: 2px solid white;
|
|
176
|
-
border-radius: 50%;
|
|
177
|
-
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
178
|
-
filter: alpha(opacity=60);
|
|
179
|
-
opacity: 1;
|
|
180
|
-
box-shadow: 0 0 1px 0 white;
|
|
181
|
-
background: rgba(240, 243, 247, 0.9411764706);
|
|
182
|
-
z-index: 10000;
|
|
187
|
+
flex-wrap: wrap;
|
|
183
188
|
}
|
|
184
|
-
.
|
|
185
|
-
|
|
186
|
-
width:
|
|
187
|
-
height: 80px;
|
|
189
|
+
.clappr-nerd-stats .stats-box-main ul {
|
|
190
|
+
flex: 0 1 1fr;
|
|
191
|
+
min-width: 200px;
|
|
188
192
|
}
|
|
189
|
-
.
|
|
190
|
-
|
|
193
|
+
.clappr-nerd-stats .stats-box.wide {
|
|
194
|
+
width: 820px;
|
|
191
195
|
}
|
|
192
|
-
.
|
|
193
|
-
|
|
196
|
+
.clappr-nerd-stats .stats-box ul, .clappr-nerd-stats .stats-box li {
|
|
197
|
+
list-style-type: none;
|
|
194
198
|
}
|
|
195
|
-
.
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
--
|
|
199
|
-
|
|
200
|
-
display: flex;
|
|
201
|
-
align-items: center;
|
|
202
|
-
color: var(--player-dvr-color);
|
|
203
|
-
font-size: 10px;
|
|
204
|
-
font-weight: 500;
|
|
205
|
-
height: var(--bottom-panel);
|
|
206
|
-
line-height: var(--bottom-panel);
|
|
207
|
-
margin-left: 0;
|
|
199
|
+
.clappr-nerd-stats .stats-box ul div, .clappr-nerd-stats .stats-box li div {
|
|
200
|
+
padding-left: 2px;
|
|
201
|
+
padding-right: 2px;
|
|
202
|
+
background: var(--primary-background-color);
|
|
203
|
+
gap: 10px;
|
|
208
204
|
}
|
|
209
|
-
.
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
margin-left: 20px;
|
|
214
|
-
letter-spacing: 0.8px;
|
|
215
|
-
text-transform: uppercase;
|
|
205
|
+
.clappr-nerd-stats .stats-box ul {
|
|
206
|
+
padding: 5px;
|
|
207
|
+
width: 200px;
|
|
208
|
+
flex: 0 1 50%;
|
|
216
209
|
}
|
|
217
|
-
.
|
|
218
|
-
.dvr-controls .live-button::before {
|
|
219
|
-
margin-right: 8px;
|
|
220
|
-
content: "";
|
|
221
|
-
display: inline-block;
|
|
210
|
+
.clappr-nerd-stats .stats-box ul li {
|
|
222
211
|
position: relative;
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
border-radius: var(--circle-radius);
|
|
226
|
-
background-color: var(--player-dvr-color);
|
|
227
|
-
}
|
|
228
|
-
.dvr-controls.disabled {
|
|
229
|
-
opacity: var(--disabled-opacity);
|
|
212
|
+
padding: 0 5px;
|
|
213
|
+
text-align: left;
|
|
230
214
|
}
|
|
231
|
-
.
|
|
232
|
-
|
|
215
|
+
.clappr-nerd-stats .stats-box ul li.canvas-wrapper {
|
|
216
|
+
padding: 0;
|
|
233
217
|
}
|
|
234
|
-
.
|
|
235
|
-
|
|
236
|
-
color: #fffffe;
|
|
218
|
+
.clappr-nerd-stats .stats-box ul li.canvas-wrapper canvas {
|
|
219
|
+
width: 100%;
|
|
237
220
|
}
|
|
238
|
-
.
|
|
239
|
-
background-color
|
|
221
|
+
.clappr-nerd-stats .stats-box ul li:nth-child(2n) {
|
|
222
|
+
background: var(--secondary-background-color);
|
|
240
223
|
}
|
|
241
|
-
.
|
|
242
|
-
|
|
243
|
-
outline: none;
|
|
244
|
-
border: 0;
|
|
245
|
-
color: var(--player-dvr-color);
|
|
246
|
-
background-color: transparent;
|
|
247
|
-
padding: 0;
|
|
248
|
-
opacity: 0.7;
|
|
249
|
-
transition: all 0.1s ease;
|
|
224
|
+
.clappr-nerd-stats .stats-box ul li:nth-child(2n) div {
|
|
225
|
+
background: var(--secondary-background-color);
|
|
250
226
|
}
|
|
251
|
-
.
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
227
|
+
.clappr-nerd-stats .stats-box ul li.title {
|
|
228
|
+
text-align: center;
|
|
229
|
+
font-weight: bold;
|
|
230
|
+
padding-bottom: 4px;
|
|
231
|
+
font-size: 14px;
|
|
256
232
|
}
|
|
257
|
-
.
|
|
233
|
+
.clappr-nerd-stats .stats-box ul li div {
|
|
234
|
+
margin: 0;
|
|
258
235
|
position: absolute;
|
|
259
|
-
right:
|
|
260
|
-
|
|
261
|
-
width: 250px;
|
|
262
|
-
min-height: 48px;
|
|
263
|
-
z-index: 9999;
|
|
264
|
-
border-radius: 4px;
|
|
265
|
-
box-shadow: 0 0 1px 1px var(--gplayer-mc-popup-border-color);
|
|
266
|
-
}
|
|
267
|
-
.media-control-skin-1 .media-control-item.media-control-gear .gear-options-list {
|
|
268
|
-
padding: 8px 0;
|
|
236
|
+
right: 0;
|
|
237
|
+
top: 0;
|
|
269
238
|
}
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
text-align: left;
|
|
273
|
-
line-height: 22px;
|
|
274
|
-
padding: 5px 14px;
|
|
239
|
+
|
|
240
|
+
.desktop .clappr-nerd-stats .stats-box.narrow {
|
|
275
241
|
width: 250px;
|
|
276
|
-
font-size: 12px;
|
|
277
|
-
display: flex;
|
|
278
|
-
align-items: center;
|
|
279
|
-
justify-content: flex-start;
|
|
280
|
-
gap: 8px;
|
|
281
|
-
}
|
|
282
|
-
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_icon {
|
|
283
|
-
flex: 24px 0 0;
|
|
284
|
-
height: 24px;
|
|
285
242
|
}
|
|
286
|
-
.
|
|
287
|
-
|
|
288
|
-
display: inline-block;
|
|
243
|
+
.desktop .clappr-nerd-stats .stats-box.narrow ul {
|
|
244
|
+
width: 100%;
|
|
289
245
|
}
|
|
290
|
-
.
|
|
291
|
-
|
|
246
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary {
|
|
247
|
+
padding: 0 5px;
|
|
248
|
+
height: auto;
|
|
292
249
|
}
|
|
293
|
-
.
|
|
294
|
-
|
|
295
|
-
|
|
250
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block {
|
|
251
|
+
width: 100%;
|
|
252
|
+
flex-direction: column;
|
|
296
253
|
}
|
|
297
|
-
.
|
|
298
|
-
|
|
299
|
-
}*, :focus, :visited {
|
|
300
|
-
outline: none !important;
|
|
254
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock {
|
|
255
|
+
width: 100%;
|
|
301
256
|
}
|
|
302
|
-
|
|
303
|
-
.gear-wrapper .go-back {
|
|
304
|
-
font-weight: 600;
|
|
305
|
-
font-size: 14px;
|
|
306
|
-
line-height: 20px;
|
|
307
|
-
width: 100%;
|
|
308
|
-
text-align: left;
|
|
309
|
-
padding: 12px;
|
|
310
|
-
}
|
|
311
|
-
.gear-wrapper .go-back .arrow-left-icon {
|
|
312
|
-
float: left;
|
|
313
|
-
padding-top: 2px;
|
|
314
|
-
padding-right: 2px;
|
|
315
|
-
}
|
|
316
|
-
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
317
|
-
height: 16px;
|
|
318
|
-
}
|
|
319
|
-
.gear-wrapper ul.gear-sub-menu {
|
|
320
|
-
width: 100%;
|
|
321
|
-
list-style-type: none;
|
|
322
|
-
min-width: 60px;
|
|
323
|
-
border-top: 2px solid rgb(36, 36, 36);
|
|
324
|
-
overflow-y: auto;
|
|
325
|
-
}
|
|
326
|
-
.gear-wrapper ul.gear-sub-menu li {
|
|
327
|
-
font-size: 12px;
|
|
328
|
-
text-align: left;
|
|
329
|
-
}
|
|
330
|
-
.gear-wrapper ul.gear-sub-menu li a {
|
|
331
|
-
display: block;
|
|
332
|
-
text-decoration: none;
|
|
333
|
-
height: 30px;
|
|
334
|
-
padding: 5px 10px;
|
|
335
|
-
line-height: 22px;
|
|
336
|
-
color: var(--gplayer-mc-text-dim-color);
|
|
337
|
-
}
|
|
338
|
-
.gear-wrapper ul.gear-sub-menu li a:hover {
|
|
339
|
-
color: var(--gplayer-mc-text-color);
|
|
340
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
341
|
-
}
|
|
342
|
-
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
343
|
-
color: var(--gplayer-mc-text-color);
|
|
344
|
-
text-decoration: none;
|
|
345
|
-
}
|
|
346
|
-
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
347
|
-
width: 30px;
|
|
348
|
-
height: 20px;
|
|
349
|
-
float: left;
|
|
350
|
-
display: block;
|
|
351
|
-
}
|
|
352
|
-
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
353
|
-
display: none;
|
|
354
|
-
}
|
|
355
|
-
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
356
|
-
display: inline;
|
|
357
|
-
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
358
|
-
color: #CCCACA;
|
|
359
|
-
position: absolute;
|
|
360
|
-
top: 0;
|
|
361
|
-
height: 100%;
|
|
362
|
-
width: 100%;
|
|
363
|
-
background-color: rgba(0, 0, 0, 0.7);
|
|
364
|
-
z-index: 2000;
|
|
365
|
-
display: flex;
|
|
366
|
-
flex-direction: column;
|
|
367
|
-
justify-content: center;
|
|
368
|
-
}
|
|
369
|
-
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
370
|
-
font-size: 14px;
|
|
371
|
-
color: #CCCACA;
|
|
372
|
-
margin-top: 45px;
|
|
373
|
-
}
|
|
374
|
-
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
375
|
-
font-weight: bold;
|
|
376
|
-
line-height: 30px;
|
|
377
|
-
font-size: 18px;
|
|
378
|
-
}
|
|
379
|
-
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
380
|
-
width: 90%;
|
|
381
|
-
margin: 0 auto;
|
|
382
|
-
}
|
|
383
|
-
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
384
|
-
font-size: 13px;
|
|
385
|
-
margin-top: 15px;
|
|
386
|
-
}
|
|
387
|
-
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
388
|
-
cursor: pointer;
|
|
389
|
-
width: 30px;
|
|
390
|
-
margin: 15px auto 0;
|
|
391
|
-
}.quality-levels li.disabled {
|
|
392
|
-
opacity: 0.5;
|
|
393
|
-
pointer-events: none;
|
|
394
|
-
}
|
|
395
|
-
.quality-levels li.current {
|
|
396
|
-
background-color: #000;
|
|
397
|
-
}.context-menu {
|
|
398
|
-
z-index: 999;
|
|
399
|
-
position: absolute;
|
|
400
|
-
top: 0;
|
|
401
|
-
left: 0;
|
|
402
|
-
text-align: center;
|
|
403
|
-
}
|
|
404
|
-
.context-menu .context-menu-list {
|
|
405
|
-
font-family: "Proxima Nova", sans-serif;
|
|
406
|
-
font-size: 12px;
|
|
407
|
-
line-height: 12px;
|
|
408
|
-
list-style-type: none;
|
|
409
|
-
text-align: left;
|
|
410
|
-
padding: 5px;
|
|
411
|
-
margin-left: auto;
|
|
412
|
-
margin-right: auto;
|
|
413
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
414
|
-
border: 1px solid #666;
|
|
415
|
-
border-radius: 4px;
|
|
416
|
-
}
|
|
417
|
-
.context-menu .context-menu-list-item button {
|
|
418
|
-
border: none;
|
|
419
|
-
background-color: transparent;
|
|
420
|
-
padding: 0;
|
|
421
|
-
color: white;
|
|
422
|
-
display: flex;
|
|
423
|
-
gap: 8px;
|
|
424
|
-
align-items: center;
|
|
425
|
-
justify-content: center;
|
|
426
|
-
cursor: pointer;
|
|
427
|
-
padding: 5px;
|
|
428
|
-
width: 100%;
|
|
429
|
-
}
|
|
430
|
-
.context-menu .context-menu-list-item_icon {
|
|
431
|
-
width: 20px;
|
|
432
|
-
height: 20px;
|
|
433
|
-
}:root {
|
|
434
|
-
--primary-background-color: #000;
|
|
435
|
-
--secondary-background-color: #262626;
|
|
436
|
-
--primary-text-color: #fff;
|
|
437
|
-
--secondary-text-color: #fff4f2;
|
|
438
|
-
--hover-text-color: #f9b090;
|
|
439
|
-
--speedtest-red: #df564d;
|
|
440
|
-
--speedtest-orange: #df934d;
|
|
441
|
-
--speedtest-yellow: #dfd04d;
|
|
442
|
-
--speedtest-light-green: #c2df4d;
|
|
443
|
-
--speedtest-green: #73df4d;
|
|
444
|
-
}
|
|
445
|
-
|
|
446
|
-
.clappr-nerd-stats {
|
|
447
|
-
cursor: default;
|
|
448
|
-
}
|
|
449
|
-
.clappr-nerd-stats .stats-box {
|
|
450
|
-
position: absolute;
|
|
451
|
-
display: inline-block;
|
|
452
|
-
bottom: 52px;
|
|
453
|
-
right: 0;
|
|
454
|
-
top: 0;
|
|
455
|
-
left: 0;
|
|
456
|
-
bottom: 0;
|
|
457
|
-
padding: 0 10px 12px;
|
|
458
|
-
margin: 0;
|
|
459
|
-
line-height: 20px;
|
|
460
|
-
font-size: 12px;
|
|
461
|
-
font-weight: 500;
|
|
462
|
-
background: var(--primary-background-color);
|
|
463
|
-
color: #fff;
|
|
464
|
-
z-index: 20000;
|
|
465
|
-
overflow: auto;
|
|
466
|
-
max-width: 100%;
|
|
467
|
-
}
|
|
468
|
-
.clappr-nerd-stats .stats-box-top {
|
|
469
|
-
position: absolute;
|
|
470
|
-
top: 0;
|
|
471
|
-
left: 0;
|
|
472
|
-
z-index: 9999;
|
|
473
|
-
width: 100%;
|
|
474
|
-
height: 32px;
|
|
475
|
-
background: var(--primary-background-color);
|
|
476
|
-
}
|
|
477
|
-
.clappr-nerd-stats .stats-box-top .close-button {
|
|
478
|
-
position: absolute;
|
|
479
|
-
right: 12px;
|
|
480
|
-
top: 10px;
|
|
481
|
-
display: block;
|
|
482
|
-
width: 12px;
|
|
483
|
-
height: 12px;
|
|
484
|
-
}
|
|
485
|
-
.clappr-nerd-stats .stats-box-top .close-button svg path {
|
|
486
|
-
fill: var(--primary-text-color);
|
|
487
|
-
}
|
|
488
|
-
.clappr-nerd-stats .stats-box-top .close-button:hover svg path {
|
|
489
|
-
fill: var(--hover-text-color);
|
|
490
|
-
}
|
|
491
|
-
.clappr-nerd-stats .stats-box-main {
|
|
492
|
-
overflow: hidden;
|
|
493
|
-
margin-top: 44px;
|
|
494
|
-
display: flex;
|
|
495
|
-
flex-wrap: wrap;
|
|
496
|
-
}
|
|
497
|
-
.clappr-nerd-stats .stats-box-main ul {
|
|
498
|
-
flex: 0 1 1fr;
|
|
499
|
-
min-width: 200px;
|
|
500
|
-
}
|
|
501
|
-
.clappr-nerd-stats .stats-box.wide {
|
|
502
|
-
width: 820px;
|
|
503
|
-
}
|
|
504
|
-
.clappr-nerd-stats .stats-box ul, .clappr-nerd-stats .stats-box li {
|
|
505
|
-
list-style-type: none;
|
|
506
|
-
}
|
|
507
|
-
.clappr-nerd-stats .stats-box ul div, .clappr-nerd-stats .stats-box li div {
|
|
508
|
-
padding-left: 2px;
|
|
509
|
-
padding-right: 2px;
|
|
510
|
-
background: var(--primary-background-color);
|
|
511
|
-
gap: 10px;
|
|
512
|
-
}
|
|
513
|
-
.clappr-nerd-stats .stats-box ul {
|
|
514
|
-
padding: 5px;
|
|
515
|
-
width: 200px;
|
|
516
|
-
flex: 0 1 50%;
|
|
517
|
-
}
|
|
518
|
-
.clappr-nerd-stats .stats-box ul li {
|
|
519
|
-
position: relative;
|
|
520
|
-
padding: 0 5px;
|
|
521
|
-
text-align: left;
|
|
522
|
-
}
|
|
523
|
-
.clappr-nerd-stats .stats-box ul li.canvas-wrapper {
|
|
524
|
-
padding: 0;
|
|
525
|
-
}
|
|
526
|
-
.clappr-nerd-stats .stats-box ul li.canvas-wrapper canvas {
|
|
527
|
-
width: 100%;
|
|
528
|
-
}
|
|
529
|
-
.clappr-nerd-stats .stats-box ul li:nth-child(2n) {
|
|
530
|
-
background: var(--secondary-background-color);
|
|
531
|
-
}
|
|
532
|
-
.clappr-nerd-stats .stats-box ul li:nth-child(2n) div {
|
|
533
|
-
background: var(--secondary-background-color);
|
|
534
|
-
}
|
|
535
|
-
.clappr-nerd-stats .stats-box ul li.title {
|
|
536
|
-
text-align: center;
|
|
537
|
-
font-weight: bold;
|
|
538
|
-
padding-bottom: 4px;
|
|
539
|
-
font-size: 14px;
|
|
540
|
-
}
|
|
541
|
-
.clappr-nerd-stats .stats-box ul li div {
|
|
542
|
-
margin: 0;
|
|
543
|
-
position: absolute;
|
|
544
|
-
right: 0;
|
|
545
|
-
top: 0;
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
.desktop .clappr-nerd-stats .stats-box.narrow {
|
|
549
|
-
width: 250px;
|
|
550
|
-
}
|
|
551
|
-
.desktop .clappr-nerd-stats .stats-box.narrow ul {
|
|
552
|
-
width: 100%;
|
|
553
|
-
}
|
|
554
|
-
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary {
|
|
555
|
-
padding: 0 5px;
|
|
556
|
-
height: auto;
|
|
557
|
-
}
|
|
558
|
-
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block {
|
|
559
|
-
width: 100%;
|
|
560
|
-
flex-direction: column;
|
|
561
|
-
}
|
|
562
|
-
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock {
|
|
563
|
-
width: 100%;
|
|
564
|
-
}
|
|
565
|
-
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
257
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
566
258
|
width: 100%;
|
|
567
259
|
}
|
|
568
260
|
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-header {
|
|
@@ -794,187 +486,377 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
794
486
|
.fullscreen .clappr-nerd-stats .stats-box {
|
|
795
487
|
top: unset;
|
|
796
488
|
}
|
|
797
|
-
}
|
|
489
|
+
}@charset "UTF-8";
|
|
490
|
+
.gplayer-mc-clips {
|
|
491
|
+
display: flex;
|
|
492
|
+
gap: 6px;
|
|
493
|
+
}
|
|
494
|
+
.gplayer-mc-clips .gplayer-mc-clips-text {
|
|
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);
|
|
503
|
+
position: relative;
|
|
504
|
+
max-width: 150px;
|
|
505
|
+
}
|
|
506
|
+
.gplayer-mc-clips .gplayer-mc-clips-text::before {
|
|
507
|
+
content: "•";
|
|
508
|
+
padding-right: 6px;
|
|
509
|
+
}
|
|
510
|
+
.gplayer-mc-clips .gplayer-mc-clips-text.compact {
|
|
511
|
+
max-width: 100px;
|
|
512
|
+
}.big-mute-icon-wrapper[data-big-mute] {
|
|
798
513
|
position: absolute;
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
514
|
+
z-index: 9998;
|
|
515
|
+
background-color: transparent;
|
|
516
|
+
display: flex;
|
|
517
|
+
justify-content: center;
|
|
518
|
+
width: 100%;
|
|
519
|
+
height: calc(100% - 50px);
|
|
804
520
|
margin: 0 auto;
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
top: 50%;
|
|
809
|
-
transform: translateY(-50%);
|
|
521
|
+
opacity: 0.75;
|
|
522
|
+
transition: opacity 0.1s ease;
|
|
523
|
+
pointer-events: auto;
|
|
810
524
|
}
|
|
811
|
-
.
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
525
|
+
.big-mute-icon-wrapper[data-big-mute].hide {
|
|
526
|
+
display: none;
|
|
527
|
+
}
|
|
528
|
+
.big-mute-icon-wrapper[data-big-mute]:hover {
|
|
529
|
+
cursor: pointer;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
.big-mute-icon[data-big-mute-icon] {
|
|
533
|
+
display: flex;
|
|
534
|
+
align-items: center;
|
|
535
|
+
justify-content: center;
|
|
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;
|
|
547
|
+
}
|
|
548
|
+
.big-mute-icon[data-big-mute-icon] svg {
|
|
549
|
+
margin-left: 5px;
|
|
550
|
+
width: 80px;
|
|
551
|
+
height: 80px;
|
|
552
|
+
}
|
|
553
|
+
.big-mute-icon[data-big-mute-icon] svg path {
|
|
554
|
+
fill: #1f1e1e !important;
|
|
555
|
+
}
|
|
556
|
+
.big-mute-icon[data-big-mute-icon]:hover {
|
|
557
|
+
background: rgba(240, 243, 247, 0.8784313725);
|
|
558
|
+
}
|
|
559
|
+
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
560
|
+
fill: #151515 !important;
|
|
561
|
+
}.dvr-controls {
|
|
562
|
+
--disabled-opacity: 0.3;
|
|
563
|
+
--circle-radius: 5px;
|
|
564
|
+
display: flex;
|
|
565
|
+
align-items: center;
|
|
566
|
+
color: var(--player-dvr-color);
|
|
567
|
+
font-size: 10px;
|
|
568
|
+
font-weight: 500;
|
|
569
|
+
height: var(--bottom-panel);
|
|
570
|
+
line-height: var(--bottom-panel);
|
|
571
|
+
margin-left: 0;
|
|
572
|
+
}
|
|
573
|
+
.dvr-controls .live-info,
|
|
574
|
+
.dvr-controls .live-button {
|
|
575
|
+
font-size: 14px;
|
|
576
|
+
font-weight: 500;
|
|
577
|
+
margin-left: 20px;
|
|
578
|
+
letter-spacing: 0.8px;
|
|
579
|
+
text-transform: uppercase;
|
|
580
|
+
}
|
|
581
|
+
.dvr-controls .live-info::before,
|
|
582
|
+
.dvr-controls .live-button::before {
|
|
583
|
+
margin-right: 8px;
|
|
584
|
+
content: "";
|
|
816
585
|
display: inline-block;
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
586
|
+
position: relative;
|
|
587
|
+
width: calc(var(--circle-radius) * 2);
|
|
588
|
+
height: calc(var(--circle-radius) * 2);
|
|
589
|
+
border-radius: var(--circle-radius);
|
|
590
|
+
background-color: var(--player-dvr-color);
|
|
820
591
|
}
|
|
821
|
-
.
|
|
822
|
-
|
|
592
|
+
.dvr-controls.disabled {
|
|
593
|
+
opacity: var(--disabled-opacity);
|
|
823
594
|
}
|
|
824
|
-
.
|
|
825
|
-
|
|
595
|
+
.dvr-controls.disabled:before {
|
|
596
|
+
background-color: var(--player-dvr-color);
|
|
826
597
|
}
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
transform: scale(0);
|
|
831
|
-
}
|
|
832
|
-
40% {
|
|
833
|
-
transform: scale(1);
|
|
834
|
-
}
|
|
835
|
-
}.media-control-skin-1 .media-control-item.media-control-pip {
|
|
836
|
-
order: 95;
|
|
598
|
+
.dvr-controls .live-info {
|
|
599
|
+
text-transform: uppercase;
|
|
600
|
+
color: #fffffe;
|
|
837
601
|
}
|
|
838
|
-
.
|
|
839
|
-
|
|
602
|
+
.dvr-controls .live-info::before {
|
|
603
|
+
background-color: #ed4f4a;
|
|
840
604
|
}
|
|
841
|
-
.
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
605
|
+
.dvr-controls .live-button {
|
|
606
|
+
cursor: pointer;
|
|
607
|
+
outline: none;
|
|
608
|
+
border: 0;
|
|
609
|
+
color: var(--player-dvr-color);
|
|
610
|
+
background-color: transparent;
|
|
611
|
+
padding: 0;
|
|
612
|
+
opacity: 0.7;
|
|
613
|
+
transition: all 0.1s ease;
|
|
845
614
|
}
|
|
846
|
-
|
|
847
|
-
|
|
615
|
+
.dvr-controls .live-button:hover {
|
|
616
|
+
opacity: 1;
|
|
617
|
+
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
618
|
+
}.player-poster {
|
|
619
|
+
display: flex;
|
|
620
|
+
justify-content: center;
|
|
621
|
+
align-items: center;
|
|
848
622
|
position: absolute;
|
|
623
|
+
height: 100%;
|
|
849
624
|
width: 100%;
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
625
|
+
z-index: 998;
|
|
626
|
+
top: 0;
|
|
627
|
+
left: 0;
|
|
628
|
+
background-color: #000;
|
|
629
|
+
background-size: cover;
|
|
630
|
+
background-repeat: no-repeat;
|
|
631
|
+
background-position: 50% 50%;
|
|
854
632
|
}
|
|
855
|
-
.
|
|
633
|
+
.player-poster.clickable {
|
|
634
|
+
cursor: pointer;
|
|
635
|
+
}
|
|
636
|
+
.player-poster:hover .play-wrapper {
|
|
637
|
+
opacity: 1;
|
|
638
|
+
}
|
|
639
|
+
.player-poster .play-wrapper {
|
|
856
640
|
width: 100%;
|
|
857
|
-
height:
|
|
858
|
-
|
|
859
|
-
|
|
641
|
+
height: 25%;
|
|
642
|
+
margin: 0 auto;
|
|
643
|
+
opacity: 0.75;
|
|
644
|
+
transition: opacity 0.1s ease;
|
|
860
645
|
}
|
|
861
|
-
.
|
|
862
|
-
flex: 1 0 0px;
|
|
646
|
+
.player-poster .play-wrapper svg {
|
|
863
647
|
height: 100%;
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
648
|
+
display: inline;
|
|
649
|
+
}
|
|
650
|
+
.player-poster .play-wrapper svg path {
|
|
651
|
+
fill: #fff;
|
|
652
|
+
}.context-menu {
|
|
653
|
+
z-index: 999;
|
|
654
|
+
position: absolute;
|
|
655
|
+
top: 0;
|
|
656
|
+
left: 0;
|
|
657
|
+
text-align: center;
|
|
658
|
+
}
|
|
659
|
+
.context-menu .context-menu-list {
|
|
660
|
+
font-family: "Proxima Nova", sans-serif;
|
|
661
|
+
font-size: 12px;
|
|
662
|
+
line-height: 12px;
|
|
663
|
+
list-style-type: none;
|
|
664
|
+
text-align: left;
|
|
665
|
+
padding: 5px;
|
|
666
|
+
margin-left: auto;
|
|
667
|
+
margin-right: auto;
|
|
668
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
669
|
+
border: 1px solid #666;
|
|
670
|
+
border-radius: 4px;
|
|
671
|
+
}
|
|
672
|
+
.context-menu .context-menu-list-item button {
|
|
673
|
+
border: none;
|
|
674
|
+
background-color: transparent;
|
|
867
675
|
padding: 0;
|
|
676
|
+
color: white;
|
|
677
|
+
display: flex;
|
|
678
|
+
gap: 8px;
|
|
868
679
|
align-items: center;
|
|
869
|
-
|
|
680
|
+
justify-content: center;
|
|
681
|
+
cursor: pointer;
|
|
682
|
+
padding: 5px;
|
|
683
|
+
width: 100%;
|
|
870
684
|
}
|
|
871
|
-
.
|
|
872
|
-
|
|
685
|
+
.context-menu .context-menu-list-item_icon {
|
|
686
|
+
width: 20px;
|
|
687
|
+
height: 20px;
|
|
688
|
+
}.media-control-skin-1 .media-control-item.media-control-gear {
|
|
689
|
+
order: 99;
|
|
873
690
|
}
|
|
874
|
-
.media-control-skin-1 .media-control-
|
|
875
|
-
|
|
691
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-wrapper {
|
|
692
|
+
position: absolute;
|
|
693
|
+
right: 16px;
|
|
694
|
+
bottom: 52px;
|
|
695
|
+
width: 250px;
|
|
696
|
+
min-height: 48px;
|
|
697
|
+
z-index: 9999;
|
|
698
|
+
border-radius: 4px;
|
|
699
|
+
box-shadow: 0 0 1px 1px var(--gplayer-mc-popup-border-color);
|
|
876
700
|
}
|
|
877
|
-
.media-control-skin-1 .media-control-
|
|
878
|
-
|
|
879
|
-
padding: 5px 10px;
|
|
880
|
-
color: #fffffe;
|
|
701
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-options-list {
|
|
702
|
+
padding: 8px 0;
|
|
881
703
|
}
|
|
882
|
-
.media-control-skin-1 .media-control-
|
|
883
|
-
|
|
704
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option {
|
|
705
|
+
margin: 0;
|
|
706
|
+
text-align: left;
|
|
707
|
+
line-height: 22px;
|
|
708
|
+
padding: 5px 14px;
|
|
709
|
+
width: 250px;
|
|
710
|
+
font-size: 12px;
|
|
711
|
+
display: flex;
|
|
712
|
+
align-items: center;
|
|
713
|
+
justify-content: flex-start;
|
|
714
|
+
gap: 8px;
|
|
884
715
|
}
|
|
885
|
-
.media-control-skin-1 .media-control-
|
|
886
|
-
|
|
716
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_icon {
|
|
717
|
+
flex: 24px 0 0;
|
|
718
|
+
height: 24px;
|
|
887
719
|
}
|
|
888
|
-
.media-control-skin-1 .media-control-
|
|
889
|
-
|
|
890
|
-
|
|
720
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_icon.hidden {
|
|
721
|
+
visibility: hidden;
|
|
722
|
+
display: inline-block;
|
|
891
723
|
}
|
|
892
|
-
.media-control-skin-1 .media-control-
|
|
893
|
-
|
|
894
|
-
border-top-right-radius: 4px;
|
|
724
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_label {
|
|
725
|
+
flex: 0 1 100%;
|
|
895
726
|
}
|
|
896
|
-
.media-control-skin-1 .media-control-
|
|
897
|
-
|
|
898
|
-
|
|
727
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_arrow-right-icon {
|
|
728
|
+
flex: 0 0 14px;
|
|
729
|
+
height: 24px;
|
|
730
|
+
}
|
|
731
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_value {
|
|
732
|
+
flex: 1 0 auto;
|
|
733
|
+
}*, :focus, :visited {
|
|
734
|
+
outline: none !important;
|
|
899
735
|
}
|
|
900
736
|
|
|
901
|
-
.
|
|
902
|
-
|
|
903
|
-
|
|
737
|
+
.gear-wrapper .go-back {
|
|
738
|
+
font-weight: 600;
|
|
739
|
+
font-size: 14px;
|
|
740
|
+
line-height: 20px;
|
|
904
741
|
width: 100%;
|
|
742
|
+
text-align: left;
|
|
743
|
+
padding: 12px;
|
|
905
744
|
}
|
|
906
|
-
.
|
|
907
|
-
|
|
745
|
+
.gear-wrapper .go-back .arrow-left-icon {
|
|
746
|
+
float: left;
|
|
747
|
+
padding-top: 2px;
|
|
748
|
+
padding-right: 2px;
|
|
749
|
+
}
|
|
750
|
+
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
751
|
+
height: 16px;
|
|
752
|
+
}
|
|
753
|
+
.gear-wrapper ul.gear-sub-menu {
|
|
754
|
+
width: 100%;
|
|
755
|
+
list-style-type: none;
|
|
756
|
+
min-width: 60px;
|
|
757
|
+
border-top: 2px solid rgb(36, 36, 36);
|
|
758
|
+
overflow-y: auto;
|
|
759
|
+
}
|
|
760
|
+
.gear-wrapper ul.gear-sub-menu li {
|
|
761
|
+
font-size: 12px;
|
|
762
|
+
text-align: left;
|
|
763
|
+
}
|
|
764
|
+
.gear-wrapper ul.gear-sub-menu li a {
|
|
765
|
+
display: block;
|
|
766
|
+
text-decoration: none;
|
|
767
|
+
height: 30px;
|
|
768
|
+
padding: 5px 10px;
|
|
769
|
+
line-height: 22px;
|
|
770
|
+
color: var(--gplayer-mc-text-dim-color);
|
|
771
|
+
}
|
|
772
|
+
.gear-wrapper ul.gear-sub-menu li a:hover {
|
|
773
|
+
color: var(--gplayer-mc-text-color);
|
|
908
774
|
background-color: rgba(0, 0, 0, 0.4);
|
|
909
|
-
color: white;
|
|
910
|
-
display: inline-block;
|
|
911
|
-
}.seek-time {
|
|
912
|
-
position: absolute;
|
|
913
|
-
white-space: nowrap;
|
|
914
|
-
height: 20px;
|
|
915
|
-
line-height: 20px;
|
|
916
|
-
font-size: 0;
|
|
917
|
-
left: -100%;
|
|
918
|
-
bottom: 55px;
|
|
919
|
-
background-color: rgba(2, 2, 2, 0.5);
|
|
920
|
-
z-index: 9999;
|
|
921
|
-
transition: opacity 0.1s ease;
|
|
922
775
|
}
|
|
923
|
-
.
|
|
924
|
-
|
|
776
|
+
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
777
|
+
color: var(--gplayer-mc-text-color);
|
|
778
|
+
text-decoration: none;
|
|
925
779
|
}
|
|
926
|
-
.
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
padding-right: 7px;
|
|
932
|
-
vertical-align: top;
|
|
780
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
781
|
+
width: 30px;
|
|
782
|
+
height: 20px;
|
|
783
|
+
float: left;
|
|
784
|
+
display: block;
|
|
933
785
|
}
|
|
934
|
-
.
|
|
935
|
-
display:
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
786
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
787
|
+
display: none;
|
|
788
|
+
}
|
|
789
|
+
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
790
|
+
display: inline;
|
|
791
|
+
}.quality-levels li.disabled {
|
|
792
|
+
opacity: 0.5;
|
|
793
|
+
pointer-events: none;
|
|
940
794
|
}
|
|
941
|
-
.
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
display: flex;
|
|
946
|
-
justify-content: center;
|
|
947
|
-
align-items: center;
|
|
795
|
+
.quality-levels li.current {
|
|
796
|
+
background-color: #000;
|
|
797
|
+
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
798
|
+
color: #CCCACA;
|
|
948
799
|
position: absolute;
|
|
800
|
+
top: 0;
|
|
949
801
|
height: 100%;
|
|
950
802
|
width: 100%;
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
background-repeat: no-repeat;
|
|
957
|
-
background-position: 50% 50%;
|
|
803
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
804
|
+
z-index: 2000;
|
|
805
|
+
display: flex;
|
|
806
|
+
flex-direction: column;
|
|
807
|
+
justify-content: center;
|
|
958
808
|
}
|
|
959
|
-
.player-
|
|
809
|
+
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
810
|
+
font-size: 14px;
|
|
811
|
+
color: #CCCACA;
|
|
812
|
+
margin-top: 45px;
|
|
813
|
+
}
|
|
814
|
+
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
815
|
+
font-weight: bold;
|
|
816
|
+
line-height: 30px;
|
|
817
|
+
font-size: 18px;
|
|
818
|
+
}
|
|
819
|
+
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
820
|
+
width: 90%;
|
|
821
|
+
margin: 0 auto;
|
|
822
|
+
}
|
|
823
|
+
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
824
|
+
font-size: 13px;
|
|
825
|
+
margin-top: 15px;
|
|
826
|
+
}
|
|
827
|
+
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
960
828
|
cursor: pointer;
|
|
829
|
+
width: 30px;
|
|
830
|
+
margin: 15px auto 0;
|
|
831
|
+
}.media-control-skin-1 .media-control-item.media-control-pip {
|
|
832
|
+
order: 95;
|
|
961
833
|
}
|
|
962
|
-
.
|
|
963
|
-
|
|
834
|
+
.media-control-skin-1 .media-control-item.media-control-pip button {
|
|
835
|
+
height: 20px;
|
|
964
836
|
}
|
|
965
|
-
.
|
|
837
|
+
.media-control-skin-1 .media-control-item.media-control-pip button svg {
|
|
838
|
+
height: 20px;
|
|
839
|
+
}.container-with-poster-clickable .mc-skip-time {
|
|
840
|
+
height: 0;
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
.mc-skip-time {
|
|
844
|
+
position: absolute;
|
|
966
845
|
width: 100%;
|
|
967
|
-
height:
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
846
|
+
height: calc(100% - 50px);
|
|
847
|
+
z-index: 9998;
|
|
848
|
+
background-color: transparent;
|
|
849
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
971
850
|
}
|
|
972
|
-
.
|
|
851
|
+
.mc-skip-time .skip-container {
|
|
852
|
+
width: 100%;
|
|
973
853
|
height: 100%;
|
|
974
|
-
display:
|
|
854
|
+
display: flex;
|
|
855
|
+
justify-content: space-between;
|
|
975
856
|
}
|
|
976
|
-
.
|
|
977
|
-
|
|
857
|
+
.mc-skip-time .skip-container .skip-item {
|
|
858
|
+
flex: 1 0 0px;
|
|
859
|
+
height: 100%;
|
|
978
860
|
}[data-player] {
|
|
979
861
|
--bottom-panel: 40px;
|
|
980
862
|
}
|
|
@@ -1498,104 +1380,272 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1498
1380
|
border-radius: 3px;
|
|
1499
1381
|
background-color: rgba(74, 74, 74, 0.7);
|
|
1500
1382
|
}
|
|
1501
|
-
.media-control-skin-1 .seek-time span {
|
|
1502
|
-
letter-spacing: 0.8px;
|
|
1503
|
-
font-size: 14px;
|
|
1504
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1383
|
+
.media-control-skin-1 .seek-time span {
|
|
1384
|
+
letter-spacing: 0.8px;
|
|
1385
|
+
font-size: 14px;
|
|
1386
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1387
|
+
}
|
|
1388
|
+
.media-control-skin-1 .seek-time .seek-time__pos {
|
|
1389
|
+
padding-left: 8px;
|
|
1390
|
+
padding-right: 8px;
|
|
1391
|
+
}
|
|
1392
|
+
.media-control-skin-1 .media-control-dd {
|
|
1393
|
+
display: flex;
|
|
1394
|
+
height: 32px;
|
|
1395
|
+
line-height: 32px;
|
|
1396
|
+
align-items: baseline;
|
|
1397
|
+
gap: 4px;
|
|
1398
|
+
vertical-align: baseline;
|
|
1399
|
+
padding: 0;
|
|
1400
|
+
background-color: transparent;
|
|
1401
|
+
color: var(--gplayer-mc-text-color);
|
|
1402
|
+
-webkit-font-smoothing: antialiased;
|
|
1403
|
+
border: none;
|
|
1404
|
+
cursor: pointer;
|
|
1405
|
+
}
|
|
1406
|
+
.media-control-skin-1 .media-control-dd__text {
|
|
1407
|
+
text-overflow: ellipsis;
|
|
1408
|
+
overflow: hidden;
|
|
1409
|
+
white-space: nowrap;
|
|
1410
|
+
max-width: 100px;
|
|
1411
|
+
}
|
|
1412
|
+
.media-control-skin-1 .media-control-dd.changing {
|
|
1413
|
+
animation: pulse 0.5s infinite alternate;
|
|
1414
|
+
}
|
|
1415
|
+
.media-control-skin-1 .media-control-dd svg {
|
|
1416
|
+
fill: var(--gplayer-mc-text-color);
|
|
1417
|
+
}
|
|
1418
|
+
.media-control-skin-1 .media-control-dd__arrow {
|
|
1419
|
+
width: 9px;
|
|
1420
|
+
height: 6px;
|
|
1421
|
+
}
|
|
1422
|
+
.media-control-skin-1 .media-control-dd__wrap {
|
|
1423
|
+
position: relative;
|
|
1424
|
+
}
|
|
1425
|
+
.media-control-skin-1 .media-control-dd__popup {
|
|
1426
|
+
max-width: 200px;
|
|
1427
|
+
list-style-type: none;
|
|
1428
|
+
position: absolute;
|
|
1429
|
+
box-shadow: 0 0 1px 1px var(--gplayer-mc-popup-border-color);
|
|
1430
|
+
border: none;
|
|
1431
|
+
min-width: 60px;
|
|
1432
|
+
border-radius: 4px;
|
|
1433
|
+
bottom: 40px;
|
|
1434
|
+
right: -2px;
|
|
1435
|
+
overflow-x: hidden;
|
|
1436
|
+
overflow-y: auto;
|
|
1437
|
+
padding: 5px 0;
|
|
1438
|
+
}
|
|
1439
|
+
.media-control-skin-1 .media-control-dd__popup li {
|
|
1440
|
+
font-size: var(--gplayer-mc-font-size-dropdown);
|
|
1441
|
+
text-align: right;
|
|
1442
|
+
height: 30px;
|
|
1443
|
+
}
|
|
1444
|
+
.media-control-skin-1 .media-control-dd__popup li a {
|
|
1445
|
+
display: block;
|
|
1446
|
+
text-decoration: none;
|
|
1447
|
+
text-overflow: ellipsis;
|
|
1448
|
+
overflow: hidden;
|
|
1449
|
+
white-space: nowrap;
|
|
1450
|
+
padding: 5px 10px;
|
|
1451
|
+
line-height: 20px;
|
|
1452
|
+
color: #fffffe;
|
|
1453
|
+
}
|
|
1454
|
+
.media-control-skin-1 .media-control-dd__popup li a:hover {
|
|
1455
|
+
text-decoration: none;
|
|
1456
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
1457
|
+
color: var(--gplayer-mc-text-color);
|
|
1458
|
+
}
|
|
1459
|
+
.media-control-skin-1 .media-control-dd__popup li.current a {
|
|
1460
|
+
color: #f00;
|
|
1461
|
+
}
|
|
1462
|
+
.media-control-skin-1 .media-control-dd__popup li:first-child a {
|
|
1463
|
+
border-bottom-left-radius: 4px;
|
|
1464
|
+
border-bottom-right-radius: 4px;
|
|
1465
|
+
}
|
|
1466
|
+
.media-control-skin-1 .media-control-dd__popup li:last-child a {
|
|
1467
|
+
border-top-left-radius: 4px;
|
|
1468
|
+
border-top-right-radius: 4px;
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1471
|
+
@keyframes pulse {
|
|
1472
|
+
0% {
|
|
1473
|
+
color: #fff;
|
|
1474
|
+
}
|
|
1475
|
+
50% {
|
|
1476
|
+
color: #ff0101;
|
|
1477
|
+
}
|
|
1478
|
+
100% {
|
|
1479
|
+
color: #B80000;
|
|
1480
|
+
}
|
|
1481
|
+
}.spinner-three-bounce[data-spinner] {
|
|
1482
|
+
position: absolute;
|
|
1483
|
+
width: 70px;
|
|
1484
|
+
text-align: center;
|
|
1485
|
+
z-index: 999;
|
|
1486
|
+
left: 0;
|
|
1487
|
+
right: 0;
|
|
1488
|
+
margin: 0 auto;
|
|
1489
|
+
margin-left: auto;
|
|
1490
|
+
margin-right: auto;
|
|
1491
|
+
/* center vertically */
|
|
1492
|
+
top: 50%;
|
|
1493
|
+
transform: translateY(-50%);
|
|
1494
|
+
}
|
|
1495
|
+
.spinner-three-bounce[data-spinner] > div {
|
|
1496
|
+
width: 18px;
|
|
1497
|
+
height: 18px;
|
|
1498
|
+
background-color: #FFF;
|
|
1499
|
+
border-radius: 100%;
|
|
1500
|
+
display: inline-block;
|
|
1501
|
+
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
1502
|
+
/* Prevent first frame from flickering when animation starts */
|
|
1503
|
+
animation-fill-mode: both;
|
|
1504
|
+
}
|
|
1505
|
+
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
1506
|
+
animation-delay: -0.32s;
|
|
1507
|
+
}
|
|
1508
|
+
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
1509
|
+
animation-delay: -0.16s;
|
|
1510
|
+
}
|
|
1511
|
+
|
|
1512
|
+
@keyframes bouncedelay {
|
|
1513
|
+
0%, 80%, 100% {
|
|
1514
|
+
transform: scale(0);
|
|
1515
|
+
}
|
|
1516
|
+
40% {
|
|
1517
|
+
transform: scale(1);
|
|
1518
|
+
}
|
|
1519
|
+
}.share_plugin[data-share] {
|
|
1520
|
+
pointer-events: auto;
|
|
1521
|
+
z-index: 5;
|
|
1522
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
1523
|
+
}
|
|
1524
|
+
.share_plugin[data-share].share-hide .share-button-container {
|
|
1525
|
+
right: -50px;
|
|
1526
|
+
}
|
|
1527
|
+
.share_plugin[data-share] .share-button-container {
|
|
1528
|
+
cursor: pointer;
|
|
1529
|
+
width: 36px;
|
|
1530
|
+
height: 36px;
|
|
1531
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
1532
|
+
border-radius: 4px;
|
|
1533
|
+
position: absolute;
|
|
1534
|
+
right: 10px;
|
|
1535
|
+
top: 10px;
|
|
1536
|
+
padding-top: 6px;
|
|
1537
|
+
transition: all 0.3s ease-out;
|
|
1538
|
+
}
|
|
1539
|
+
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
1540
|
+
background-color: transparent;
|
|
1541
|
+
border: 0;
|
|
1542
|
+
margin: 0 6px;
|
|
1543
|
+
padding: 0;
|
|
1544
|
+
cursor: pointer;
|
|
1545
|
+
display: inline-block;
|
|
1546
|
+
width: 19px;
|
|
1547
|
+
height: 20px;
|
|
1548
|
+
}
|
|
1549
|
+
.share_plugin[data-share] .share-container {
|
|
1550
|
+
pointer-events: auto;
|
|
1551
|
+
position: absolute;
|
|
1552
|
+
width: 280px;
|
|
1553
|
+
background-color: white;
|
|
1554
|
+
transform: translate(0, 50%);
|
|
1555
|
+
transform: translate(-50%, -50%);
|
|
1556
|
+
left: 50%;
|
|
1557
|
+
/* margin-left: -140px; */
|
|
1558
|
+
top: calc(50% - 20px);
|
|
1559
|
+
/* margin-top: -170px; */
|
|
1560
|
+
}
|
|
1561
|
+
.share_plugin[data-share] .share-container .share-container-header {
|
|
1562
|
+
text-align: left;
|
|
1563
|
+
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
1505
1564
|
}
|
|
1506
|
-
.
|
|
1507
|
-
|
|
1508
|
-
|
|
1565
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
1566
|
+
display: inline-block;
|
|
1567
|
+
font-size: 16px;
|
|
1568
|
+
margin: 5px;
|
|
1509
1569
|
}
|
|
1510
|
-
.
|
|
1511
|
-
display:
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
gap: 4px;
|
|
1516
|
-
vertical-align: baseline;
|
|
1517
|
-
padding: 0;
|
|
1518
|
-
background-color: transparent;
|
|
1519
|
-
color: var(--gplayer-mc-text-color);
|
|
1520
|
-
-webkit-font-smoothing: antialiased;
|
|
1521
|
-
border: none;
|
|
1570
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
1571
|
+
display: inline-block;
|
|
1572
|
+
width: 24px;
|
|
1573
|
+
float: right;
|
|
1574
|
+
margin: 5px;
|
|
1522
1575
|
cursor: pointer;
|
|
1523
1576
|
}
|
|
1524
|
-
.
|
|
1525
|
-
|
|
1526
|
-
overflow: hidden;
|
|
1527
|
-
white-space: nowrap;
|
|
1528
|
-
max-width: 100px;
|
|
1577
|
+
.share_plugin[data-share] .share-container .share-container-main {
|
|
1578
|
+
margin-bottom: 8px;
|
|
1529
1579
|
}
|
|
1530
|
-
.
|
|
1531
|
-
|
|
1580
|
+
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
1581
|
+
text-align: left;
|
|
1582
|
+
font-size: 14px;
|
|
1583
|
+
padding: 5px;
|
|
1532
1584
|
}
|
|
1533
|
-
.
|
|
1534
|
-
|
|
1585
|
+
.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 {
|
|
1586
|
+
overflow: hidden;
|
|
1587
|
+
text-overflow: ellipsis;
|
|
1588
|
+
color: #818181;
|
|
1589
|
+
border: solid 1px #d3d3d3;
|
|
1590
|
+
width: calc(100% - 10px);
|
|
1591
|
+
padding: 5px;
|
|
1535
1592
|
}
|
|
1536
|
-
.
|
|
1537
|
-
|
|
1538
|
-
|
|
1593
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
1594
|
+
max-height: 90px;
|
|
1595
|
+
resize: none;
|
|
1539
1596
|
}
|
|
1540
|
-
.
|
|
1541
|
-
|
|
1597
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
1598
|
+
width: 32px;
|
|
1599
|
+
display: inline-block;
|
|
1600
|
+
margin-right: 5px;
|
|
1601
|
+
cursor: pointer;
|
|
1602
|
+
}.media-control-skin-1 .media-control-cc button.media-control-button {
|
|
1603
|
+
display: flex;
|
|
1604
|
+
justify-content: center;
|
|
1605
|
+
padding: 0;
|
|
1606
|
+
align-items: center;
|
|
1607
|
+
vertical-align: top;
|
|
1542
1608
|
}
|
|
1543
|
-
.media-control-skin-1 .media-control-
|
|
1544
|
-
|
|
1545
|
-
list-style-type: none;
|
|
1546
|
-
position: absolute;
|
|
1547
|
-
box-shadow: 0 0 1px 1px var(--gplayer-mc-popup-border-color);
|
|
1548
|
-
border: none;
|
|
1549
|
-
min-width: 60px;
|
|
1550
|
-
border-radius: 4px;
|
|
1551
|
-
bottom: 40px;
|
|
1552
|
-
right: -2px;
|
|
1553
|
-
overflow-x: hidden;
|
|
1554
|
-
overflow-y: auto;
|
|
1555
|
-
padding: 5px 0;
|
|
1609
|
+
.media-control-skin-1 .media-control-cc button.media-control-button:hover {
|
|
1610
|
+
color: white;
|
|
1556
1611
|
}
|
|
1557
|
-
.media-control-skin-1 .media-control-
|
|
1558
|
-
|
|
1559
|
-
text-align: right;
|
|
1560
|
-
height: 30px;
|
|
1612
|
+
.media-control-skin-1 .media-control-cc ul li {
|
|
1613
|
+
text-align: center;
|
|
1561
1614
|
}
|
|
1562
|
-
.media-control-skin-1 .media-control-
|
|
1563
|
-
|
|
1564
|
-
text-decoration: none;
|
|
1565
|
-
text-overflow: ellipsis;
|
|
1566
|
-
overflow: hidden;
|
|
1567
|
-
white-space: nowrap;
|
|
1615
|
+
.media-control-skin-1 .media-control-cc ul li a {
|
|
1616
|
+
height: 30px;
|
|
1568
1617
|
padding: 5px 10px;
|
|
1569
|
-
line-height: 20px;
|
|
1570
1618
|
color: #fffffe;
|
|
1571
1619
|
}
|
|
1572
|
-
.media-control-skin-1 .media-control-
|
|
1573
|
-
text-decoration: none;
|
|
1620
|
+
.media-control-skin-1 .media-control-cc ul li a:hover {
|
|
1574
1621
|
background-color: rgba(0, 0, 0, 0.4);
|
|
1575
|
-
color: var(--gplayer-mc-text-color);
|
|
1576
1622
|
}
|
|
1577
|
-
.media-control-skin-1 .media-control-
|
|
1578
|
-
color:
|
|
1623
|
+
.media-control-skin-1 .media-control-cc ul li.current a {
|
|
1624
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
1579
1625
|
}
|
|
1580
|
-
.media-control-skin-1 .media-control-
|
|
1626
|
+
.media-control-skin-1 .media-control-cc ul li:first-child a {
|
|
1581
1627
|
border-bottom-left-radius: 4px;
|
|
1582
1628
|
border-bottom-right-radius: 4px;
|
|
1583
1629
|
}
|
|
1584
|
-
.media-control-skin-1 .media-control-
|
|
1630
|
+
.media-control-skin-1 .media-control-cc ul li:last-child a {
|
|
1585
1631
|
border-top-left-radius: 4px;
|
|
1586
1632
|
border-top-right-radius: 4px;
|
|
1587
1633
|
}
|
|
1634
|
+
.media-control-skin-1 .media-control-cc {
|
|
1635
|
+
position: relative;
|
|
1636
|
+
order: 85;
|
|
1637
|
+
}
|
|
1588
1638
|
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1639
|
+
.container .gplayer-cc-line {
|
|
1640
|
+
position: absolute;
|
|
1641
|
+
bottom: calc(var(--bottom-panel) + 5px);
|
|
1642
|
+
width: 100%;
|
|
1643
|
+
}
|
|
1644
|
+
.container .gplayer-cc-line p {
|
|
1645
|
+
width: auto;
|
|
1646
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
1647
|
+
color: white;
|
|
1648
|
+
display: inline-block;
|
|
1599
1649
|
}.scrub-thumbnails {
|
|
1600
1650
|
position: absolute;
|
|
1601
1651
|
bottom: 52px;
|
|
@@ -1794,89 +1844,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1794
1844
|
}
|
|
1795
1845
|
.multicamera[data-multicamera] li.current a {
|
|
1796
1846
|
color: #f00;
|
|
1797
|
-
}.share_plugin[data-share] {
|
|
1798
|
-
pointer-events: auto;
|
|
1799
|
-
z-index: 5;
|
|
1800
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
1801
|
-
}
|
|
1802
|
-
.share_plugin[data-share].share-hide .share-button-container {
|
|
1803
|
-
right: -50px;
|
|
1804
|
-
}
|
|
1805
|
-
.share_plugin[data-share] .share-button-container {
|
|
1806
|
-
cursor: pointer;
|
|
1807
|
-
width: 36px;
|
|
1808
|
-
height: 36px;
|
|
1809
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
1810
|
-
border-radius: 4px;
|
|
1811
|
-
position: absolute;
|
|
1812
|
-
right: 10px;
|
|
1813
|
-
top: 10px;
|
|
1814
|
-
padding-top: 6px;
|
|
1815
|
-
transition: all 0.3s ease-out;
|
|
1816
|
-
}
|
|
1817
|
-
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
1818
|
-
background-color: transparent;
|
|
1819
|
-
border: 0;
|
|
1820
|
-
margin: 0 6px;
|
|
1821
|
-
padding: 0;
|
|
1822
|
-
cursor: pointer;
|
|
1823
|
-
display: inline-block;
|
|
1824
|
-
width: 19px;
|
|
1825
|
-
height: 20px;
|
|
1826
|
-
}
|
|
1827
|
-
.share_plugin[data-share] .share-container {
|
|
1828
|
-
pointer-events: auto;
|
|
1829
|
-
position: absolute;
|
|
1830
|
-
width: 280px;
|
|
1831
|
-
background-color: white;
|
|
1832
|
-
transform: translate(0, 50%);
|
|
1833
|
-
transform: translate(-50%, -50%);
|
|
1834
|
-
left: 50%;
|
|
1835
|
-
/* margin-left: -140px; */
|
|
1836
|
-
top: calc(50% - 20px);
|
|
1837
|
-
/* margin-top: -170px; */
|
|
1838
|
-
}
|
|
1839
|
-
.share_plugin[data-share] .share-container .share-container-header {
|
|
1840
|
-
text-align: left;
|
|
1841
|
-
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
1842
|
-
}
|
|
1843
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
1844
|
-
display: inline-block;
|
|
1845
|
-
font-size: 16px;
|
|
1846
|
-
margin: 5px;
|
|
1847
|
-
}
|
|
1848
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
1849
|
-
display: inline-block;
|
|
1850
|
-
width: 24px;
|
|
1851
|
-
float: right;
|
|
1852
|
-
margin: 5px;
|
|
1853
|
-
cursor: pointer;
|
|
1854
|
-
}
|
|
1855
|
-
.share_plugin[data-share] .share-container .share-container-main {
|
|
1856
|
-
margin-bottom: 8px;
|
|
1857
|
-
}
|
|
1858
|
-
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
1859
|
-
text-align: left;
|
|
1860
|
-
font-size: 14px;
|
|
1861
|
-
padding: 5px;
|
|
1862
|
-
}
|
|
1863
|
-
.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 {
|
|
1864
|
-
overflow: hidden;
|
|
1865
|
-
text-overflow: ellipsis;
|
|
1866
|
-
color: #818181;
|
|
1867
|
-
border: solid 1px #d3d3d3;
|
|
1868
|
-
width: calc(100% - 10px);
|
|
1869
|
-
padding: 5px;
|
|
1870
|
-
}
|
|
1871
|
-
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
1872
|
-
max-height: 90px;
|
|
1873
|
-
resize: none;
|
|
1874
|
-
}
|
|
1875
|
-
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
1876
|
-
width: 32px;
|
|
1877
|
-
display: inline-block;
|
|
1878
|
-
margin-right: 5px;
|
|
1879
|
-
cursor: pointer;
|
|
1880
1847
|
}.player-logo[data-logo] {
|
|
1881
1848
|
position: absolute;
|
|
1882
1849
|
z-index: 2;
|
|
@@ -1886,4 +1853,37 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1886
1853
|
|
|
1887
1854
|
.clappr-logo {
|
|
1888
1855
|
position: absolute;
|
|
1856
|
+
}.seek-time {
|
|
1857
|
+
position: absolute;
|
|
1858
|
+
white-space: nowrap;
|
|
1859
|
+
height: 20px;
|
|
1860
|
+
line-height: 20px;
|
|
1861
|
+
font-size: 0;
|
|
1862
|
+
left: -100%;
|
|
1863
|
+
bottom: 55px;
|
|
1864
|
+
background-color: rgba(2, 2, 2, 0.5);
|
|
1865
|
+
z-index: 9999;
|
|
1866
|
+
transition: opacity 0.1s ease;
|
|
1867
|
+
}
|
|
1868
|
+
.seek-time.hidden {
|
|
1869
|
+
opacity: 0;
|
|
1870
|
+
}
|
|
1871
|
+
.seek-time .seek-time__pos {
|
|
1872
|
+
display: inline-block;
|
|
1873
|
+
color: white;
|
|
1874
|
+
font-size: 10px;
|
|
1875
|
+
padding-left: 7px;
|
|
1876
|
+
padding-right: 7px;
|
|
1877
|
+
vertical-align: top;
|
|
1878
|
+
}
|
|
1879
|
+
.seek-time .seek-time__duration {
|
|
1880
|
+
display: inline-block;
|
|
1881
|
+
color: rgba(255, 255, 255, 0.5);
|
|
1882
|
+
font-size: 10px;
|
|
1883
|
+
padding-right: 7px;
|
|
1884
|
+
vertical-align: top;
|
|
1885
|
+
}
|
|
1886
|
+
.seek-time .seek-time__duration::before {
|
|
1887
|
+
content: "|";
|
|
1888
|
+
margin-right: 7px;
|
|
1889
1889
|
}
|