@gcorevideo/player 2.19.10 → 2.19.12
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 +26 -59
- package/dist/index.css +440 -440
- package/dist/index.js +28 -65
- package/dist/player.d.ts +1 -1
- package/dist/plugins/index.css +976 -976
- package/dist/plugins/index.js +2 -6
- package/lib/Player.d.ts +1 -3
- package/lib/Player.d.ts.map +1 -1
- package/lib/Player.js +23 -55
- package/lib/playback/dash-playback/DashPlayback.d.ts.map +1 -1
- package/lib/playback/dash-playback/DashPlayback.js +2 -3
- package/lib/plugins/media-control/MediaControl.d.ts +1 -1
- package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
- package/lib/plugins/media-control/MediaControl.js +2 -5
- package/lib/plugins/source-controller/SourceController.d.ts.map +1 -1
- package/lib/plugins/source-controller/SourceController.js +0 -1
- package/package.json +1 -1
- package/src/Player.ts +24 -61
- package/src/playback/dash-playback/DashPlayback.ts +16 -10
- package/src/plugins/media-control/MediaControl.ts +2 -6
- package/src/plugins/source-controller/SourceController.ts +0 -1
- package/tsconfig.tsbuildinfo +1 -1
package/dist/index.css
CHANGED
|
@@ -122,143 +122,118 @@
|
|
|
122
122
|
.gplayer-lite-btn::-moz-focus-inner {
|
|
123
123
|
border: 0;
|
|
124
124
|
padding: 0;
|
|
125
|
-
}
|
|
126
|
-
outline: none !important;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
.audio_selector[data-track-selector] {
|
|
125
|
+
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
130
126
|
float: right;
|
|
131
|
-
margin-top: 4px;
|
|
132
|
-
position: relative;
|
|
133
|
-
width: 50px;
|
|
134
127
|
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
135
128
|
}
|
|
136
|
-
.
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
-
|
|
140
|
-
border: none;
|
|
141
|
-
font-size: 14px;
|
|
142
|
-
cursor: pointer;
|
|
143
|
-
}
|
|
144
|
-
.audio_selector[data-track-selector] button .audio-text {
|
|
145
|
-
text-overflow: ellipsis;
|
|
146
|
-
overflow: hidden;
|
|
147
|
-
white-space: nowrap;
|
|
148
|
-
max-width: 100px;
|
|
149
|
-
background-color: transparent;
|
|
150
|
-
-webkit-font-smoothing: antialiased;
|
|
151
|
-
border: none;
|
|
152
|
-
font-size: 14px;
|
|
153
|
-
cursor: pointer;
|
|
154
|
-
padding-top: 5px;
|
|
155
|
-
}
|
|
156
|
-
.audio_selector[data-track-selector] button:hover {
|
|
157
|
-
color: #c9c9c9;
|
|
158
|
-
}
|
|
159
|
-
.audio_selector[data-track-selector] button.changing {
|
|
160
|
-
animation: pulse 0.5s infinite alternate;
|
|
129
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .button-gear {
|
|
130
|
+
height: 40px;
|
|
131
|
+
width: 40px;
|
|
132
|
+
padding-right: 20px;
|
|
161
133
|
}
|
|
162
|
-
.
|
|
163
|
-
|
|
164
|
-
height: 6px;
|
|
165
|
-
margin-top: 11px;
|
|
166
|
-
margin-left: 5px;
|
|
134
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .button-gear svg {
|
|
135
|
+
height: 20px;
|
|
167
136
|
}
|
|
168
|
-
.
|
|
169
|
-
max-width: 114px;
|
|
170
|
-
list-style-type: none;
|
|
137
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
|
|
171
138
|
position: absolute;
|
|
172
|
-
|
|
173
|
-
|
|
139
|
+
right: 16px;
|
|
140
|
+
bottom: 52px;
|
|
174
141
|
display: none;
|
|
175
|
-
|
|
142
|
+
width: 250px;
|
|
143
|
+
min-height: 48px;
|
|
144
|
+
z-index: 9999;
|
|
145
|
+
border-radius: 4px;
|
|
176
146
|
}
|
|
177
|
-
.
|
|
178
|
-
|
|
147
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
|
|
148
|
+
padding: 8px 0;
|
|
179
149
|
}
|
|
180
|
-
.
|
|
181
|
-
|
|
182
|
-
|
|
150
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list svg {
|
|
151
|
+
float: left;
|
|
152
|
+
margin-right: 10px;
|
|
183
153
|
}
|
|
184
|
-
.
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
white-space: nowrap;
|
|
154
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
|
|
155
|
+
margin: 0;
|
|
156
|
+
text-align: left;
|
|
157
|
+
line-height: 22px;
|
|
158
|
+
padding: 5px 14px;
|
|
159
|
+
width: 250px;
|
|
160
|
+
font-size: 12px;
|
|
192
161
|
}
|
|
193
|
-
.
|
|
194
|
-
|
|
195
|
-
|
|
162
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_arrow-right-icon {
|
|
163
|
+
float: right;
|
|
164
|
+
margin-right: -14px;
|
|
196
165
|
}
|
|
197
|
-
.
|
|
198
|
-
|
|
199
|
-
|
|
166
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_value {
|
|
167
|
+
float: right;
|
|
168
|
+
margin-right: 8px;
|
|
200
169
|
}
|
|
201
|
-
.
|
|
202
|
-
|
|
170
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option svg {
|
|
171
|
+
height: 20px;
|
|
172
|
+
}*, :focus, :visited {
|
|
173
|
+
outline: none !important;
|
|
203
174
|
}
|
|
204
175
|
|
|
205
|
-
.
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
176
|
+
.gear-wrapper .go-back {
|
|
177
|
+
font-weight: 600;
|
|
178
|
+
font-size: 14px;
|
|
179
|
+
line-height: 20px;
|
|
180
|
+
width: 100%;
|
|
181
|
+
text-align: left;
|
|
182
|
+
padding: 12px;
|
|
209
183
|
}
|
|
210
|
-
.
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
padding: 0;
|
|
184
|
+
.gear-wrapper .go-back .arrow-left-icon {
|
|
185
|
+
float: left;
|
|
186
|
+
padding-top: 2px;
|
|
187
|
+
padding-right: 2px;
|
|
215
188
|
}
|
|
216
|
-
.
|
|
217
|
-
|
|
218
|
-
color: white;
|
|
189
|
+
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
190
|
+
height: 16px;
|
|
219
191
|
}
|
|
220
|
-
.
|
|
221
|
-
|
|
222
|
-
|
|
192
|
+
.gear-wrapper ul.gear-sub-menu {
|
|
193
|
+
width: 100%;
|
|
194
|
+
list-style-type: none;
|
|
195
|
+
background-color: transparent;
|
|
223
196
|
min-width: 60px;
|
|
224
|
-
|
|
225
|
-
border-radius: 4px;
|
|
226
|
-
bottom: 40px;
|
|
227
|
-
right: -2px;
|
|
197
|
+
border-top: 2px solid rgb(36, 36, 36);
|
|
228
198
|
}
|
|
229
|
-
.
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
text-align: right;
|
|
233
|
-
height: 30px;
|
|
199
|
+
.gear-wrapper ul.gear-sub-menu li {
|
|
200
|
+
font-size: 12px;
|
|
201
|
+
text-align: left;
|
|
234
202
|
}
|
|
235
|
-
.
|
|
236
|
-
|
|
203
|
+
.gear-wrapper ul.gear-sub-menu li[data-title] {
|
|
204
|
+
background-color: #c3c2c2;
|
|
205
|
+
padding: 5px;
|
|
206
|
+
}
|
|
207
|
+
.gear-wrapper ul.gear-sub-menu li a {
|
|
208
|
+
display: block;
|
|
209
|
+
text-decoration: none;
|
|
210
|
+
height: 32px;
|
|
237
211
|
padding: 5px 10px;
|
|
212
|
+
line-height: 22px;
|
|
238
213
|
color: #fffffe;
|
|
239
214
|
}
|
|
240
|
-
.
|
|
215
|
+
.gear-wrapper ul.gear-sub-menu li a:hover {
|
|
216
|
+
color: white;
|
|
241
217
|
background-color: rgba(0, 0, 0, 0.4);
|
|
242
218
|
}
|
|
243
|
-
.
|
|
244
|
-
|
|
245
|
-
|
|
219
|
+
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
220
|
+
color: white;
|
|
221
|
+
text-decoration: none;
|
|
246
222
|
}
|
|
247
|
-
.
|
|
248
|
-
|
|
249
|
-
|
|
223
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
224
|
+
width: 30px;
|
|
225
|
+
height: 20px;
|
|
226
|
+
float: left;
|
|
227
|
+
display: block;
|
|
250
228
|
}
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
100% {
|
|
260
|
-
color: #B80000;
|
|
261
|
-
}
|
|
229
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
230
|
+
display: none;
|
|
231
|
+
}
|
|
232
|
+
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
233
|
+
display: inline;
|
|
234
|
+
}
|
|
235
|
+
.gear-wrapper svg {
|
|
236
|
+
height: 20px;
|
|
262
237
|
}.big-mute-icon-wrapper[data-big-mute] {
|
|
263
238
|
position: absolute;
|
|
264
239
|
z-index: 9998;
|
|
@@ -308,30 +283,40 @@
|
|
|
308
283
|
}
|
|
309
284
|
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
310
285
|
fill: #151515 !important;
|
|
311
|
-
}.
|
|
312
|
-
|
|
286
|
+
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
287
|
+
color: #CCCACA;
|
|
313
288
|
position: absolute;
|
|
314
289
|
top: 0;
|
|
315
|
-
|
|
316
|
-
|
|
290
|
+
height: 100%;
|
|
291
|
+
width: 100%;
|
|
292
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
293
|
+
z-index: 2000;
|
|
294
|
+
display: flex;
|
|
295
|
+
flex-direction: column;
|
|
296
|
+
justify-content: center;
|
|
317
297
|
}
|
|
318
|
-
.
|
|
319
|
-
font-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
list-style-type: none;
|
|
323
|
-
text-align: left;
|
|
324
|
-
padding: 5px;
|
|
325
|
-
margin-left: auto;
|
|
326
|
-
margin-right: auto;
|
|
327
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
328
|
-
border: 1px solid #666;
|
|
329
|
-
border-radius: 4px;
|
|
298
|
+
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
299
|
+
font-size: 14px;
|
|
300
|
+
color: #CCCACA;
|
|
301
|
+
margin-top: 45px;
|
|
330
302
|
}
|
|
331
|
-
.
|
|
332
|
-
|
|
333
|
-
|
|
303
|
+
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
304
|
+
font-weight: bold;
|
|
305
|
+
line-height: 30px;
|
|
306
|
+
font-size: 18px;
|
|
307
|
+
}
|
|
308
|
+
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
309
|
+
width: 90%;
|
|
310
|
+
margin: 0 auto;
|
|
311
|
+
}
|
|
312
|
+
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
313
|
+
font-size: 13px;
|
|
314
|
+
margin-top: 15px;
|
|
315
|
+
}
|
|
316
|
+
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
334
317
|
cursor: pointer;
|
|
318
|
+
width: 30px;
|
|
319
|
+
margin: 15px auto 0;
|
|
335
320
|
}.dvr-controls[data-dvr-controls] {
|
|
336
321
|
display: inline-block;
|
|
337
322
|
float: left;
|
|
@@ -438,123 +423,167 @@
|
|
|
438
423
|
|
|
439
424
|
.media-control.live[data-media-control] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
|
|
440
425
|
background-color: #ff0101;
|
|
441
|
-
}.
|
|
442
|
-
|
|
426
|
+
}.context-menu {
|
|
427
|
+
z-index: 999;
|
|
428
|
+
position: absolute;
|
|
429
|
+
top: 0;
|
|
430
|
+
left: 0;
|
|
431
|
+
text-align: center;
|
|
432
|
+
}
|
|
433
|
+
.context-menu .context-menu-list {
|
|
434
|
+
font-family: "Proxima Nova", sans-serif;
|
|
435
|
+
font-size: 12px;
|
|
436
|
+
line-height: 12px;
|
|
437
|
+
list-style-type: none;
|
|
438
|
+
text-align: left;
|
|
439
|
+
padding: 5px;
|
|
440
|
+
margin-left: auto;
|
|
441
|
+
margin-right: auto;
|
|
442
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
443
|
+
border: 1px solid #666;
|
|
444
|
+
border-radius: 4px;
|
|
445
|
+
}
|
|
446
|
+
.context-menu .context-menu-list .context-menu-list-item {
|
|
447
|
+
color: white;
|
|
448
|
+
padding: 5px;
|
|
449
|
+
cursor: pointer;
|
|
443
450
|
}*, :focus, :visited {
|
|
444
451
|
outline: none !important;
|
|
445
452
|
}
|
|
446
453
|
|
|
447
|
-
.
|
|
448
|
-
|
|
454
|
+
.audio_selector[data-track-selector] {
|
|
455
|
+
float: right;
|
|
456
|
+
margin-top: 4px;
|
|
457
|
+
position: relative;
|
|
458
|
+
width: 50px;
|
|
459
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
460
|
+
}
|
|
461
|
+
.audio_selector[data-track-selector] button {
|
|
462
|
+
background-color: transparent;
|
|
463
|
+
color: #fff;
|
|
464
|
+
-webkit-font-smoothing: antialiased;
|
|
465
|
+
border: none;
|
|
449
466
|
font-size: 14px;
|
|
450
|
-
|
|
451
|
-
width: 100%;
|
|
452
|
-
text-align: left;
|
|
453
|
-
padding: 12px;
|
|
467
|
+
cursor: pointer;
|
|
454
468
|
}
|
|
455
|
-
.
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
469
|
+
.audio_selector[data-track-selector] button .audio-text {
|
|
470
|
+
text-overflow: ellipsis;
|
|
471
|
+
overflow: hidden;
|
|
472
|
+
white-space: nowrap;
|
|
473
|
+
max-width: 100px;
|
|
474
|
+
background-color: transparent;
|
|
475
|
+
-webkit-font-smoothing: antialiased;
|
|
476
|
+
border: none;
|
|
477
|
+
font-size: 14px;
|
|
478
|
+
cursor: pointer;
|
|
479
|
+
padding-top: 5px;
|
|
459
480
|
}
|
|
460
|
-
.
|
|
461
|
-
|
|
481
|
+
.audio_selector[data-track-selector] button:hover {
|
|
482
|
+
color: #c9c9c9;
|
|
462
483
|
}
|
|
463
|
-
.
|
|
464
|
-
|
|
484
|
+
.audio_selector[data-track-selector] button.changing {
|
|
485
|
+
animation: pulse 0.5s infinite alternate;
|
|
486
|
+
}
|
|
487
|
+
.audio_selector[data-track-selector] button span.audio-arrow {
|
|
488
|
+
width: 9px;
|
|
489
|
+
height: 6px;
|
|
490
|
+
margin-top: 11px;
|
|
491
|
+
margin-left: 5px;
|
|
492
|
+
}
|
|
493
|
+
.audio_selector[data-track-selector] > ul {
|
|
494
|
+
max-width: 114px;
|
|
465
495
|
list-style-type: none;
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
border
|
|
496
|
+
position: absolute;
|
|
497
|
+
bottom: 25px;
|
|
498
|
+
border: 1px solid black;
|
|
499
|
+
display: none;
|
|
500
|
+
background-color: #e6e6e6;
|
|
469
501
|
}
|
|
470
|
-
.
|
|
471
|
-
font-size:
|
|
472
|
-
text-align: left;
|
|
502
|
+
.audio_selector[data-track-selector] li {
|
|
503
|
+
font-size: 10px;
|
|
473
504
|
}
|
|
474
|
-
.
|
|
505
|
+
.audio_selector[data-track-selector] li[data-title] {
|
|
475
506
|
background-color: #c3c2c2;
|
|
476
507
|
padding: 5px;
|
|
477
508
|
}
|
|
478
|
-
.
|
|
509
|
+
.audio_selector[data-track-selector] li a {
|
|
510
|
+
color: #444;
|
|
511
|
+
padding: 2px 10px;
|
|
479
512
|
display: block;
|
|
480
513
|
text-decoration: none;
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
color: #fffffe;
|
|
514
|
+
text-overflow: ellipsis;
|
|
515
|
+
overflow: hidden;
|
|
516
|
+
white-space: nowrap;
|
|
485
517
|
}
|
|
486
|
-
.
|
|
518
|
+
.audio_selector[data-track-selector] li a:hover {
|
|
519
|
+
background-color: #555;
|
|
487
520
|
color: white;
|
|
488
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
489
521
|
}
|
|
490
|
-
.
|
|
522
|
+
.audio_selector[data-track-selector] li a:hover a {
|
|
491
523
|
color: white;
|
|
492
524
|
text-decoration: none;
|
|
493
525
|
}
|
|
494
|
-
.
|
|
495
|
-
|
|
496
|
-
height: 20px;
|
|
497
|
-
float: left;
|
|
498
|
-
display: block;
|
|
499
|
-
}
|
|
500
|
-
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
501
|
-
display: none;
|
|
502
|
-
}
|
|
503
|
-
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
504
|
-
display: inline;
|
|
505
|
-
}
|
|
506
|
-
.gear-wrapper svg {
|
|
507
|
-
height: 20px;
|
|
508
|
-
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
509
|
-
float: right;
|
|
510
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
526
|
+
.audio_selector[data-track-selector] li.current a {
|
|
527
|
+
color: #f00;
|
|
511
528
|
}
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
width:
|
|
515
|
-
|
|
529
|
+
|
|
530
|
+
.audio_selector[data-track-selector] {
|
|
531
|
+
width: auto;
|
|
532
|
+
margin-top: 7px;
|
|
533
|
+
margin-right: 20px;
|
|
516
534
|
}
|
|
517
|
-
.
|
|
518
|
-
|
|
535
|
+
.audio_selector[data-track-selector] button[data-level-selector-button],
|
|
536
|
+
.audio_selector[data-track-selector] button[data-track-selector-button] {
|
|
537
|
+
display: flex;
|
|
538
|
+
justify-content: center;
|
|
539
|
+
padding: 0;
|
|
519
540
|
}
|
|
520
|
-
.
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
541
|
+
.audio_selector[data-track-selector] button[data-level-selector-button]:hover,
|
|
542
|
+
.audio_selector[data-track-selector] button[data-track-selector-button]:hover {
|
|
543
|
+
color: white;
|
|
544
|
+
}
|
|
545
|
+
.audio_selector[data-track-selector] ul {
|
|
546
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
547
|
+
border: none;
|
|
548
|
+
min-width: 60px;
|
|
549
|
+
transform: rotate(180deg);
|
|
528
550
|
border-radius: 4px;
|
|
551
|
+
bottom: 40px;
|
|
552
|
+
right: -2px;
|
|
529
553
|
}
|
|
530
|
-
.
|
|
531
|
-
|
|
554
|
+
.audio_selector[data-track-selector] ul li {
|
|
555
|
+
transform: rotate(-180deg);
|
|
556
|
+
font-size: 16px;
|
|
557
|
+
text-align: right;
|
|
558
|
+
height: 30px;
|
|
532
559
|
}
|
|
533
|
-
.
|
|
534
|
-
|
|
535
|
-
|
|
560
|
+
.audio_selector[data-track-selector] ul li a {
|
|
561
|
+
height: 30px;
|
|
562
|
+
padding: 5px 10px;
|
|
563
|
+
color: #fffffe;
|
|
536
564
|
}
|
|
537
|
-
.
|
|
538
|
-
|
|
539
|
-
text-align: left;
|
|
540
|
-
line-height: 22px;
|
|
541
|
-
padding: 5px 14px;
|
|
542
|
-
width: 250px;
|
|
543
|
-
font-size: 12px;
|
|
565
|
+
.audio_selector[data-track-selector] ul li a:hover {
|
|
566
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
544
567
|
}
|
|
545
|
-
.
|
|
546
|
-
|
|
547
|
-
|
|
568
|
+
.audio_selector[data-track-selector] ul li:first-child a {
|
|
569
|
+
border-bottom-left-radius: 4px;
|
|
570
|
+
border-bottom-right-radius: 4px;
|
|
548
571
|
}
|
|
549
|
-
.
|
|
550
|
-
|
|
551
|
-
|
|
572
|
+
.audio_selector[data-track-selector] ul li:last-child a {
|
|
573
|
+
border-top-left-radius: 4px;
|
|
574
|
+
border-top-right-radius: 4px;
|
|
552
575
|
}
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
576
|
+
|
|
577
|
+
@keyframes pulse {
|
|
578
|
+
0% {
|
|
579
|
+
color: #fff;
|
|
580
|
+
}
|
|
581
|
+
50% {
|
|
582
|
+
color: #ff0101;
|
|
583
|
+
}
|
|
584
|
+
100% {
|
|
585
|
+
color: #B80000;
|
|
586
|
+
}
|
|
558
587
|
}.media-control-pip button {
|
|
559
588
|
float: right;
|
|
560
589
|
height: 40px;
|
|
@@ -562,40 +591,8 @@
|
|
|
562
591
|
}
|
|
563
592
|
.media-control-pip button svg {
|
|
564
593
|
height: 20px;
|
|
565
|
-
}
|
|
566
|
-
|
|
567
|
-
position: absolute;
|
|
568
|
-
top: 0;
|
|
569
|
-
height: 100%;
|
|
570
|
-
width: 100%;
|
|
571
|
-
background-color: rgba(0, 0, 0, 0.7);
|
|
572
|
-
z-index: 2000;
|
|
573
|
-
display: flex;
|
|
574
|
-
flex-direction: column;
|
|
575
|
-
justify-content: center;
|
|
576
|
-
}
|
|
577
|
-
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
578
|
-
font-size: 14px;
|
|
579
|
-
color: #CCCACA;
|
|
580
|
-
margin-top: 45px;
|
|
581
|
-
}
|
|
582
|
-
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
583
|
-
font-weight: bold;
|
|
584
|
-
line-height: 30px;
|
|
585
|
-
font-size: 18px;
|
|
586
|
-
}
|
|
587
|
-
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
588
|
-
width: 90%;
|
|
589
|
-
margin: 0 auto;
|
|
590
|
-
}
|
|
591
|
-
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
592
|
-
font-size: 13px;
|
|
593
|
-
margin-top: 15px;
|
|
594
|
-
}
|
|
595
|
-
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
596
|
-
cursor: pointer;
|
|
597
|
-
width: 30px;
|
|
598
|
-
margin: 15px auto 0;
|
|
594
|
+
}.clips.bar-container[data-seekbar] {
|
|
595
|
+
clip-path: url("#myClip");
|
|
599
596
|
}*, :focus, :visited {
|
|
600
597
|
outline: none !important;
|
|
601
598
|
}
|
|
@@ -1397,166 +1394,28 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1397
1394
|
border-bottom-left-radius: 4px;
|
|
1398
1395
|
border-bottom-right-radius: 4px;
|
|
1399
1396
|
}
|
|
1400
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li:last-child a {
|
|
1401
|
-
border-top-left-radius: 4px;
|
|
1402
|
-
border-top-right-radius: 4px;
|
|
1403
|
-
}
|
|
1404
|
-
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] {
|
|
1405
|
-
height: 26px;
|
|
1406
|
-
line-height: 26px;
|
|
1407
|
-
bottom: 52px;
|
|
1408
|
-
border-radius: 3px;
|
|
1409
|
-
background-color: rgba(74, 74, 74, 0.7);
|
|
1410
|
-
}
|
|
1411
|
-
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span {
|
|
1412
|
-
letter-spacing: 0.8px;
|
|
1413
|
-
font-size: 14px;
|
|
1414
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1415
|
-
}
|
|
1416
|
-
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-seek-time] {
|
|
1417
|
-
padding-left: 8px;
|
|
1418
|
-
padding-right: 8px;
|
|
1419
|
-
}
|
|
1420
|
-
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
|
|
1421
|
-
display: none !important;
|
|
1422
|
-
}.player-poster[data-poster] {
|
|
1423
|
-
display: flex;
|
|
1424
|
-
justify-content: center;
|
|
1425
|
-
align-items: center;
|
|
1426
|
-
position: absolute;
|
|
1427
|
-
height: 100%;
|
|
1428
|
-
width: 100%;
|
|
1429
|
-
z-index: 998;
|
|
1430
|
-
top: 0;
|
|
1431
|
-
left: 0;
|
|
1432
|
-
background-color: #000;
|
|
1433
|
-
background-size: cover;
|
|
1434
|
-
background-repeat: no-repeat;
|
|
1435
|
-
background-position: 50% 50%;
|
|
1436
|
-
}
|
|
1437
|
-
.player-poster[data-poster].clickable {
|
|
1438
|
-
cursor: pointer;
|
|
1439
|
-
}
|
|
1440
|
-
.player-poster[data-poster]:hover .play-wrapper[data-poster] {
|
|
1441
|
-
opacity: 1;
|
|
1442
|
-
}
|
|
1443
|
-
.player-poster[data-poster] .play-wrapper[data-poster] {
|
|
1444
|
-
width: 100%;
|
|
1445
|
-
height: 25%;
|
|
1446
|
-
margin: 0 auto;
|
|
1447
|
-
opacity: 0.75;
|
|
1448
|
-
transition: opacity 0.1s ease;
|
|
1449
|
-
}
|
|
1450
|
-
.player-poster[data-poster] .play-wrapper[data-poster] svg {
|
|
1451
|
-
height: 100%;
|
|
1452
|
-
display: inline;
|
|
1453
|
-
}
|
|
1454
|
-
.player-poster[data-poster] .play-wrapper[data-poster] svg path {
|
|
1455
|
-
fill: #fff;
|
|
1456
|
-
}.share_plugin[data-share] {
|
|
1457
|
-
pointer-events: auto;
|
|
1458
|
-
z-index: 5;
|
|
1459
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
1460
|
-
}
|
|
1461
|
-
.share_plugin[data-share].share-hide .share-button-container {
|
|
1462
|
-
right: -50px;
|
|
1463
|
-
}
|
|
1464
|
-
.share_plugin[data-share] .share-button-container {
|
|
1465
|
-
cursor: pointer;
|
|
1466
|
-
width: 36px;
|
|
1467
|
-
height: 36px;
|
|
1468
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
1469
|
-
border-radius: 4px;
|
|
1470
|
-
position: absolute;
|
|
1471
|
-
right: 10px;
|
|
1472
|
-
top: 10px;
|
|
1473
|
-
padding-top: 6px;
|
|
1474
|
-
transition: all 0.3s ease-out;
|
|
1475
|
-
}
|
|
1476
|
-
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
1477
|
-
background-color: transparent;
|
|
1478
|
-
border: 0;
|
|
1479
|
-
margin: 0 6px;
|
|
1480
|
-
padding: 0;
|
|
1481
|
-
cursor: pointer;
|
|
1482
|
-
display: inline-block;
|
|
1483
|
-
width: 19px;
|
|
1484
|
-
height: 20px;
|
|
1485
|
-
}
|
|
1486
|
-
.share_plugin[data-share] .share-container {
|
|
1487
|
-
pointer-events: auto;
|
|
1488
|
-
position: absolute;
|
|
1489
|
-
width: 280px;
|
|
1490
|
-
background-color: white;
|
|
1491
|
-
transform: translate(0, 50%);
|
|
1492
|
-
transform: translate(-50%, -50%);
|
|
1493
|
-
left: 50%;
|
|
1494
|
-
/* margin-left: -140px; */
|
|
1495
|
-
top: calc(50% - 20px);
|
|
1496
|
-
/* margin-top: -170px; */
|
|
1497
|
-
}
|
|
1498
|
-
.share_plugin[data-share] .share-container .share-container-header {
|
|
1499
|
-
text-align: left;
|
|
1500
|
-
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
1501
|
-
}
|
|
1502
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
1503
|
-
display: inline-block;
|
|
1504
|
-
font-size: 16px;
|
|
1505
|
-
margin: 5px;
|
|
1506
|
-
}
|
|
1507
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
1508
|
-
display: inline-block;
|
|
1509
|
-
width: 24px;
|
|
1510
|
-
float: right;
|
|
1511
|
-
margin: 5px;
|
|
1512
|
-
cursor: pointer;
|
|
1513
|
-
}
|
|
1514
|
-
.share_plugin[data-share] .share-container .share-container-main {
|
|
1515
|
-
margin-bottom: 8px;
|
|
1516
|
-
}
|
|
1517
|
-
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
1518
|
-
text-align: left;
|
|
1519
|
-
font-size: 14px;
|
|
1520
|
-
padding: 5px;
|
|
1521
|
-
}
|
|
1522
|
-
.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 {
|
|
1523
|
-
overflow: hidden;
|
|
1524
|
-
text-overflow: ellipsis;
|
|
1525
|
-
color: #818181;
|
|
1526
|
-
border: solid 1px #d3d3d3;
|
|
1527
|
-
width: calc(100% - 10px);
|
|
1528
|
-
padding: 5px;
|
|
1529
|
-
}
|
|
1530
|
-
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
1531
|
-
max-height: 90px;
|
|
1532
|
-
resize: none;
|
|
1397
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li:last-child a {
|
|
1398
|
+
border-top-left-radius: 4px;
|
|
1399
|
+
border-top-right-radius: 4px;
|
|
1533
1400
|
}
|
|
1534
|
-
.
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
height: 0;
|
|
1401
|
+
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] {
|
|
1402
|
+
height: 26px;
|
|
1403
|
+
line-height: 26px;
|
|
1404
|
+
bottom: 52px;
|
|
1405
|
+
border-radius: 3px;
|
|
1406
|
+
background-color: rgba(74, 74, 74, 0.7);
|
|
1541
1407
|
}
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
width: 100%;
|
|
1546
|
-
height: calc(100% - 50px);
|
|
1547
|
-
z-index: 9998;
|
|
1548
|
-
background-color: transparent;
|
|
1408
|
+
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span {
|
|
1409
|
+
letter-spacing: 0.8px;
|
|
1410
|
+
font-size: 14px;
|
|
1549
1411
|
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1550
1412
|
}
|
|
1551
|
-
.
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
display: flex;
|
|
1555
|
-
justify-content: space-between;
|
|
1413
|
+
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-seek-time] {
|
|
1414
|
+
padding-left: 8px;
|
|
1415
|
+
padding-right: 8px;
|
|
1556
1416
|
}
|
|
1557
|
-
.
|
|
1558
|
-
|
|
1559
|
-
height: 100%;
|
|
1417
|
+
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
|
|
1418
|
+
display: none !important;
|
|
1560
1419
|
}:root {
|
|
1561
1420
|
--primary-background-color: #000;
|
|
1562
1421
|
--secondary-background-color: #262626;
|
|
@@ -1939,6 +1798,40 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1939
1798
|
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
|
|
1940
1799
|
width: 25%;
|
|
1941
1800
|
}
|
|
1801
|
+
}.player-poster[data-poster] {
|
|
1802
|
+
display: flex;
|
|
1803
|
+
justify-content: center;
|
|
1804
|
+
align-items: center;
|
|
1805
|
+
position: absolute;
|
|
1806
|
+
height: 100%;
|
|
1807
|
+
width: 100%;
|
|
1808
|
+
z-index: 998;
|
|
1809
|
+
top: 0;
|
|
1810
|
+
left: 0;
|
|
1811
|
+
background-color: #000;
|
|
1812
|
+
background-size: cover;
|
|
1813
|
+
background-repeat: no-repeat;
|
|
1814
|
+
background-position: 50% 50%;
|
|
1815
|
+
}
|
|
1816
|
+
.player-poster[data-poster].clickable {
|
|
1817
|
+
cursor: pointer;
|
|
1818
|
+
}
|
|
1819
|
+
.player-poster[data-poster]:hover .play-wrapper[data-poster] {
|
|
1820
|
+
opacity: 1;
|
|
1821
|
+
}
|
|
1822
|
+
.player-poster[data-poster] .play-wrapper[data-poster] {
|
|
1823
|
+
width: 100%;
|
|
1824
|
+
height: 25%;
|
|
1825
|
+
margin: 0 auto;
|
|
1826
|
+
opacity: 0.75;
|
|
1827
|
+
transition: opacity 0.1s ease;
|
|
1828
|
+
}
|
|
1829
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg {
|
|
1830
|
+
height: 100%;
|
|
1831
|
+
display: inline;
|
|
1832
|
+
}
|
|
1833
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg path {
|
|
1834
|
+
fill: #fff;
|
|
1942
1835
|
}*, :focus, :visited {
|
|
1943
1836
|
outline: none !important;
|
|
1944
1837
|
}
|
|
@@ -2020,6 +1913,151 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
2020
1913
|
.ios-fullscreen::cue {
|
|
2021
1914
|
visibility: visible !important;
|
|
2022
1915
|
font-size: 1em !important;
|
|
1916
|
+
}.share_plugin[data-share] {
|
|
1917
|
+
pointer-events: auto;
|
|
1918
|
+
z-index: 5;
|
|
1919
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
1920
|
+
}
|
|
1921
|
+
.share_plugin[data-share].share-hide .share-button-container {
|
|
1922
|
+
right: -50px;
|
|
1923
|
+
}
|
|
1924
|
+
.share_plugin[data-share] .share-button-container {
|
|
1925
|
+
cursor: pointer;
|
|
1926
|
+
width: 36px;
|
|
1927
|
+
height: 36px;
|
|
1928
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
1929
|
+
border-radius: 4px;
|
|
1930
|
+
position: absolute;
|
|
1931
|
+
right: 10px;
|
|
1932
|
+
top: 10px;
|
|
1933
|
+
padding-top: 6px;
|
|
1934
|
+
transition: all 0.3s ease-out;
|
|
1935
|
+
}
|
|
1936
|
+
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
1937
|
+
background-color: transparent;
|
|
1938
|
+
border: 0;
|
|
1939
|
+
margin: 0 6px;
|
|
1940
|
+
padding: 0;
|
|
1941
|
+
cursor: pointer;
|
|
1942
|
+
display: inline-block;
|
|
1943
|
+
width: 19px;
|
|
1944
|
+
height: 20px;
|
|
1945
|
+
}
|
|
1946
|
+
.share_plugin[data-share] .share-container {
|
|
1947
|
+
pointer-events: auto;
|
|
1948
|
+
position: absolute;
|
|
1949
|
+
width: 280px;
|
|
1950
|
+
background-color: white;
|
|
1951
|
+
transform: translate(0, 50%);
|
|
1952
|
+
transform: translate(-50%, -50%);
|
|
1953
|
+
left: 50%;
|
|
1954
|
+
/* margin-left: -140px; */
|
|
1955
|
+
top: calc(50% - 20px);
|
|
1956
|
+
/* margin-top: -170px; */
|
|
1957
|
+
}
|
|
1958
|
+
.share_plugin[data-share] .share-container .share-container-header {
|
|
1959
|
+
text-align: left;
|
|
1960
|
+
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
1961
|
+
}
|
|
1962
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
1963
|
+
display: inline-block;
|
|
1964
|
+
font-size: 16px;
|
|
1965
|
+
margin: 5px;
|
|
1966
|
+
}
|
|
1967
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
1968
|
+
display: inline-block;
|
|
1969
|
+
width: 24px;
|
|
1970
|
+
float: right;
|
|
1971
|
+
margin: 5px;
|
|
1972
|
+
cursor: pointer;
|
|
1973
|
+
}
|
|
1974
|
+
.share_plugin[data-share] .share-container .share-container-main {
|
|
1975
|
+
margin-bottom: 8px;
|
|
1976
|
+
}
|
|
1977
|
+
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
1978
|
+
text-align: left;
|
|
1979
|
+
font-size: 14px;
|
|
1980
|
+
padding: 5px;
|
|
1981
|
+
}
|
|
1982
|
+
.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 {
|
|
1983
|
+
overflow: hidden;
|
|
1984
|
+
text-overflow: ellipsis;
|
|
1985
|
+
color: #818181;
|
|
1986
|
+
border: solid 1px #d3d3d3;
|
|
1987
|
+
width: calc(100% - 10px);
|
|
1988
|
+
padding: 5px;
|
|
1989
|
+
}
|
|
1990
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
1991
|
+
max-height: 90px;
|
|
1992
|
+
resize: none;
|
|
1993
|
+
}
|
|
1994
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
1995
|
+
width: 32px;
|
|
1996
|
+
display: inline-block;
|
|
1997
|
+
margin-right: 5px;
|
|
1998
|
+
cursor: pointer;
|
|
1999
|
+
}.level-disabled {
|
|
2000
|
+
opacity: 0.5;
|
|
2001
|
+
pointer-events: none;
|
|
2002
|
+
}.spinner-three-bounce[data-spinner] {
|
|
2003
|
+
position: absolute;
|
|
2004
|
+
width: 70px;
|
|
2005
|
+
text-align: center;
|
|
2006
|
+
z-index: 999;
|
|
2007
|
+
left: 0;
|
|
2008
|
+
right: 0;
|
|
2009
|
+
margin: 0 auto;
|
|
2010
|
+
margin-left: auto;
|
|
2011
|
+
margin-right: auto;
|
|
2012
|
+
/* center vertically */
|
|
2013
|
+
top: 50%;
|
|
2014
|
+
transform: translateY(-50%);
|
|
2015
|
+
}
|
|
2016
|
+
.spinner-three-bounce[data-spinner] > div {
|
|
2017
|
+
width: 18px;
|
|
2018
|
+
height: 18px;
|
|
2019
|
+
background-color: #FFF;
|
|
2020
|
+
border-radius: 100%;
|
|
2021
|
+
display: inline-block;
|
|
2022
|
+
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
2023
|
+
/* Prevent first frame from flickering when animation starts */
|
|
2024
|
+
animation-fill-mode: both;
|
|
2025
|
+
}
|
|
2026
|
+
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
2027
|
+
animation-delay: -0.32s;
|
|
2028
|
+
}
|
|
2029
|
+
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
2030
|
+
animation-delay: -0.16s;
|
|
2031
|
+
}
|
|
2032
|
+
|
|
2033
|
+
@keyframes bouncedelay {
|
|
2034
|
+
0%, 80%, 100% {
|
|
2035
|
+
transform: scale(0);
|
|
2036
|
+
}
|
|
2037
|
+
40% {
|
|
2038
|
+
transform: scale(1);
|
|
2039
|
+
}
|
|
2040
|
+
}.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
|
|
2041
|
+
height: 0;
|
|
2042
|
+
}
|
|
2043
|
+
|
|
2044
|
+
.skip_time_plugin[data-skip-time] {
|
|
2045
|
+
position: absolute;
|
|
2046
|
+
width: 100%;
|
|
2047
|
+
height: calc(100% - 50px);
|
|
2048
|
+
z-index: 9998;
|
|
2049
|
+
background-color: transparent;
|
|
2050
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
2051
|
+
}
|
|
2052
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
|
|
2053
|
+
width: 100%;
|
|
2054
|
+
height: 100%;
|
|
2055
|
+
display: flex;
|
|
2056
|
+
justify-content: space-between;
|
|
2057
|
+
}
|
|
2058
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
|
|
2059
|
+
width: 33.3%;
|
|
2060
|
+
height: 100%;
|
|
2023
2061
|
}.scrub-thumbnails {
|
|
2024
2062
|
position: absolute;
|
|
2025
2063
|
bottom: 52px;
|
|
@@ -2081,44 +2119,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
2081
2119
|
}
|
|
2082
2120
|
.scrub-thumbnails .backdrop .carousel img {
|
|
2083
2121
|
width: auto;
|
|
2084
|
-
}.spinner-three-bounce[data-spinner] {
|
|
2085
|
-
position: absolute;
|
|
2086
|
-
width: 70px;
|
|
2087
|
-
text-align: center;
|
|
2088
|
-
z-index: 999;
|
|
2089
|
-
left: 0;
|
|
2090
|
-
right: 0;
|
|
2091
|
-
margin: 0 auto;
|
|
2092
|
-
margin-left: auto;
|
|
2093
|
-
margin-right: auto;
|
|
2094
|
-
/* center vertically */
|
|
2095
|
-
top: 50%;
|
|
2096
|
-
transform: translateY(-50%);
|
|
2097
|
-
}
|
|
2098
|
-
.spinner-three-bounce[data-spinner] > div {
|
|
2099
|
-
width: 18px;
|
|
2100
|
-
height: 18px;
|
|
2101
|
-
background-color: #FFF;
|
|
2102
|
-
border-radius: 100%;
|
|
2103
|
-
display: inline-block;
|
|
2104
|
-
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
2105
|
-
/* Prevent first frame from flickering when animation starts */
|
|
2106
|
-
animation-fill-mode: both;
|
|
2107
|
-
}
|
|
2108
|
-
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
2109
|
-
animation-delay: -0.32s;
|
|
2110
|
-
}
|
|
2111
|
-
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
2112
|
-
animation-delay: -0.16s;
|
|
2113
|
-
}
|
|
2114
|
-
|
|
2115
|
-
@keyframes bouncedelay {
|
|
2116
|
-
0%, 80%, 100% {
|
|
2117
|
-
transform: scale(0);
|
|
2118
|
-
}
|
|
2119
|
-
40% {
|
|
2120
|
-
transform: scale(1);
|
|
2121
|
-
}
|
|
2122
2122
|
}.seek-time[data-seek-time] {
|
|
2123
2123
|
position: absolute;
|
|
2124
2124
|
white-space: nowrap;
|