@gcorevideo/player 2.26.9 → 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 +25 -1
- package/dist/index.css +1392 -1392
- package/dist/index.embed.js +46 -6
- package/dist/index.js +47 -7
- package/dist/player.d.ts +16 -3
- package/docs/api/player.player.load.md +56 -0
- package/docs/api/player.player.md +14 -0
- package/docs/api/player.sourcecontroller.md +34 -1
- package/docs/api/player.sourcecontroller.setmediasource.md +60 -0
- package/lib/Player.d.ts +7 -1
- package/lib/Player.d.ts.map +1 -1
- package/lib/Player.js +23 -0
- package/lib/playback/HTML5Video.d.ts.map +1 -1
- package/lib/playback/HTML5Video.js +1 -0
- package/lib/plugins/cmcd-config/CmcdConfig.d.ts +1 -0
- package/lib/plugins/cmcd-config/CmcdConfig.d.ts.map +1 -1
- package/lib/plugins/cmcd-config/CmcdConfig.js +9 -3
- package/lib/plugins/source-controller/SourceController.d.ts +10 -3
- package/lib/plugins/source-controller/SourceController.d.ts.map +1 -1
- package/lib/plugins/source-controller/SourceController.js +13 -3
- package/package.json +1 -1
- package/src/Player.ts +31 -1
- package/src/playback/HTML5Video.ts +1 -0
- package/src/plugins/cmcd-config/CmcdConfig.ts +10 -5
- package/src/plugins/source-controller/SourceController.ts +14 -3
- package/temp/player.api.json +107 -1
- package/tsconfig.tsbuildinfo +1 -1
- /package/src/plugins/telemetry/{Statistics copy.xts → Statistics copy.js} +0 -0
package/dist/index.css
CHANGED
|
@@ -122,523 +122,533 @@
|
|
|
122
122
|
.gplayer-lite-btn::-moz-focus-inner {
|
|
123
123
|
border: 0;
|
|
124
124
|
padding: 0;
|
|
125
|
-
}
|
|
126
|
-
|
|
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;
|
|
127
136
|
}
|
|
128
|
-
|
|
137
|
+
|
|
138
|
+
.clappr-nerd-stats {
|
|
139
|
+
cursor: default;
|
|
140
|
+
}
|
|
141
|
+
.clappr-nerd-stats .stats-box {
|
|
129
142
|
position: absolute;
|
|
130
|
-
|
|
143
|
+
display: inline-block;
|
|
131
144
|
bottom: 52px;
|
|
132
|
-
|
|
133
|
-
|
|
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%;
|
|
159
|
+
}
|
|
160
|
+
.clappr-nerd-stats .stats-box-top {
|
|
161
|
+
position: absolute;
|
|
162
|
+
top: 0;
|
|
163
|
+
left: 0;
|
|
134
164
|
z-index: 9999;
|
|
135
|
-
|
|
136
|
-
|
|
165
|
+
width: 100%;
|
|
166
|
+
height: 32px;
|
|
167
|
+
background: var(--primary-background-color);
|
|
137
168
|
}
|
|
138
|
-
.
|
|
139
|
-
|
|
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;
|
|
140
176
|
}
|
|
141
|
-
.
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
177
|
+
.clappr-nerd-stats .stats-box-top .close-button svg path {
|
|
178
|
+
fill: var(--primary-text-color);
|
|
179
|
+
}
|
|
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;
|
|
148
186
|
display: flex;
|
|
149
|
-
|
|
150
|
-
justify-content: flex-start;
|
|
151
|
-
gap: 8px;
|
|
187
|
+
flex-wrap: wrap;
|
|
152
188
|
}
|
|
153
|
-
.
|
|
154
|
-
flex:
|
|
155
|
-
|
|
189
|
+
.clappr-nerd-stats .stats-box-main ul {
|
|
190
|
+
flex: 0 1 1fr;
|
|
191
|
+
min-width: 200px;
|
|
156
192
|
}
|
|
157
|
-
.
|
|
158
|
-
|
|
159
|
-
display: inline-block;
|
|
193
|
+
.clappr-nerd-stats .stats-box.wide {
|
|
194
|
+
width: 820px;
|
|
160
195
|
}
|
|
161
|
-
.
|
|
162
|
-
|
|
196
|
+
.clappr-nerd-stats .stats-box ul, .clappr-nerd-stats .stats-box li {
|
|
197
|
+
list-style-type: none;
|
|
163
198
|
}
|
|
164
|
-
.
|
|
165
|
-
|
|
166
|
-
|
|
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;
|
|
167
204
|
}
|
|
168
|
-
.
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
205
|
+
.clappr-nerd-stats .stats-box ul {
|
|
206
|
+
padding: 5px;
|
|
207
|
+
width: 200px;
|
|
208
|
+
flex: 0 1 50%;
|
|
172
209
|
}
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
font-size: 14px;
|
|
177
|
-
line-height: 20px;
|
|
178
|
-
width: 100%;
|
|
210
|
+
.clappr-nerd-stats .stats-box ul li {
|
|
211
|
+
position: relative;
|
|
212
|
+
padding: 0 5px;
|
|
179
213
|
text-align: left;
|
|
180
|
-
padding: 12px;
|
|
181
|
-
}
|
|
182
|
-
.gear-wrapper .go-back .arrow-left-icon {
|
|
183
|
-
float: left;
|
|
184
|
-
padding-top: 2px;
|
|
185
|
-
padding-right: 2px;
|
|
186
214
|
}
|
|
187
|
-
.
|
|
188
|
-
|
|
215
|
+
.clappr-nerd-stats .stats-box ul li.canvas-wrapper {
|
|
216
|
+
padding: 0;
|
|
189
217
|
}
|
|
190
|
-
.
|
|
218
|
+
.clappr-nerd-stats .stats-box ul li.canvas-wrapper canvas {
|
|
191
219
|
width: 100%;
|
|
192
|
-
list-style-type: none;
|
|
193
|
-
min-width: 60px;
|
|
194
|
-
border-top: 2px solid rgb(36, 36, 36);
|
|
195
|
-
overflow-y: auto;
|
|
196
220
|
}
|
|
197
|
-
.
|
|
198
|
-
|
|
199
|
-
text-align: left;
|
|
221
|
+
.clappr-nerd-stats .stats-box ul li:nth-child(2n) {
|
|
222
|
+
background: var(--secondary-background-color);
|
|
200
223
|
}
|
|
201
|
-
.
|
|
202
|
-
|
|
203
|
-
text-decoration: none;
|
|
204
|
-
height: 30px;
|
|
205
|
-
padding: 5px 10px;
|
|
206
|
-
line-height: 22px;
|
|
207
|
-
color: var(--gplayer-mc-text-dim-color);
|
|
224
|
+
.clappr-nerd-stats .stats-box ul li:nth-child(2n) div {
|
|
225
|
+
background: var(--secondary-background-color);
|
|
208
226
|
}
|
|
209
|
-
.
|
|
210
|
-
|
|
211
|
-
|
|
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;
|
|
212
232
|
}
|
|
213
|
-
.
|
|
214
|
-
|
|
215
|
-
|
|
233
|
+
.clappr-nerd-stats .stats-box ul li div {
|
|
234
|
+
margin: 0;
|
|
235
|
+
position: absolute;
|
|
236
|
+
right: 0;
|
|
237
|
+
top: 0;
|
|
216
238
|
}
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
float: left;
|
|
221
|
-
display: block;
|
|
239
|
+
|
|
240
|
+
.desktop .clappr-nerd-stats .stats-box.narrow {
|
|
241
|
+
width: 250px;
|
|
222
242
|
}
|
|
223
|
-
.
|
|
224
|
-
|
|
243
|
+
.desktop .clappr-nerd-stats .stats-box.narrow ul {
|
|
244
|
+
width: 100%;
|
|
225
245
|
}
|
|
226
|
-
.
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
--disabled-opacity: 0.3;
|
|
230
|
-
--circle-radius: 5px;
|
|
231
|
-
display: flex;
|
|
232
|
-
align-items: center;
|
|
233
|
-
color: var(--player-dvr-color);
|
|
234
|
-
font-size: 10px;
|
|
235
|
-
font-weight: 500;
|
|
236
|
-
height: var(--bottom-panel);
|
|
237
|
-
line-height: var(--bottom-panel);
|
|
238
|
-
margin-left: 0;
|
|
246
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary {
|
|
247
|
+
padding: 0 5px;
|
|
248
|
+
height: auto;
|
|
239
249
|
}
|
|
240
|
-
.
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
font-weight: 500;
|
|
244
|
-
margin-left: 20px;
|
|
245
|
-
letter-spacing: 0.8px;
|
|
246
|
-
text-transform: uppercase;
|
|
250
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block {
|
|
251
|
+
width: 100%;
|
|
252
|
+
flex-direction: column;
|
|
247
253
|
}
|
|
248
|
-
.
|
|
249
|
-
|
|
250
|
-
margin-right: 8px;
|
|
251
|
-
content: "";
|
|
252
|
-
display: inline-block;
|
|
253
|
-
position: relative;
|
|
254
|
-
width: calc(var(--circle-radius) * 2);
|
|
255
|
-
height: calc(var(--circle-radius) * 2);
|
|
256
|
-
border-radius: var(--circle-radius);
|
|
257
|
-
background-color: var(--player-dvr-color);
|
|
254
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock {
|
|
255
|
+
width: 100%;
|
|
258
256
|
}
|
|
259
|
-
.
|
|
260
|
-
|
|
257
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
258
|
+
width: 100%;
|
|
261
259
|
}
|
|
262
|
-
.
|
|
263
|
-
|
|
260
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-header {
|
|
261
|
+
padding-top: 12px;
|
|
262
|
+
height: 38px;
|
|
263
|
+
text-align: center;
|
|
264
264
|
}
|
|
265
|
-
.
|
|
266
|
-
text-
|
|
267
|
-
color: #fffffe;
|
|
265
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-quality-header {
|
|
266
|
+
text-align: center;
|
|
268
267
|
}
|
|
269
|
-
.
|
|
270
|
-
|
|
268
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer {
|
|
269
|
+
height: 80px;
|
|
271
270
|
}
|
|
272
|
-
.
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
border: 0;
|
|
276
|
-
color: var(--player-dvr-color);
|
|
277
|
-
background-color: transparent;
|
|
278
|
-
padding: 0;
|
|
279
|
-
opacity: 0.7;
|
|
280
|
-
transition: all 0.1s ease;
|
|
271
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer-about-link {
|
|
272
|
+
bottom: 0;
|
|
273
|
+
left: 0;
|
|
281
274
|
}
|
|
282
|
-
.
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
}@charset "UTF-8";
|
|
286
|
-
.gplayer-mc-clips {
|
|
287
|
-
display: flex;
|
|
288
|
-
gap: 6px;
|
|
275
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer .speedtest-footer-refresh {
|
|
276
|
+
inset: 50% auto auto 50%;
|
|
277
|
+
transform: translate(-50%, -50%);
|
|
289
278
|
}
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
display: inline-block;
|
|
295
|
-
text-overflow: ellipsis;
|
|
296
|
-
color: white;
|
|
297
|
-
cursor: default;
|
|
298
|
-
line-height: var(--bottom-panel);
|
|
299
|
-
position: relative;
|
|
300
|
-
max-width: 150px;
|
|
301
|
-
}
|
|
302
|
-
.gplayer-mc-clips .gplayer-mc-clips-text::before {
|
|
303
|
-
content: "•";
|
|
304
|
-
padding-right: 6px;
|
|
305
|
-
}
|
|
306
|
-
.gplayer-mc-clips .gplayer-mc-clips-text.compact {
|
|
307
|
-
max-width: 100px;
|
|
308
|
-
}.media-control-skin-1 .media-control-item.media-control-pip {
|
|
309
|
-
order: 95;
|
|
310
|
-
}
|
|
311
|
-
.media-control-skin-1 .media-control-item.media-control-pip button {
|
|
312
|
-
height: 20px;
|
|
279
|
+
|
|
280
|
+
.speed-test-button {
|
|
281
|
+
margin: 10px 0 0;
|
|
282
|
+
color: #000;
|
|
313
283
|
}
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
317
|
-
color: #CCCACA;
|
|
284
|
+
|
|
285
|
+
.speed-test {
|
|
318
286
|
position: absolute;
|
|
319
287
|
top: 0;
|
|
288
|
+
left: 0;
|
|
289
|
+
width: 100%;
|
|
320
290
|
height: 100%;
|
|
291
|
+
z-index: 9999;
|
|
292
|
+
}
|
|
293
|
+
.speed-test .speed-test-header {
|
|
321
294
|
width: 100%;
|
|
322
|
-
|
|
323
|
-
z-index: 2000;
|
|
324
|
-
display: flex;
|
|
325
|
-
flex-direction: column;
|
|
326
|
-
justify-content: center;
|
|
295
|
+
height: 32px;
|
|
327
296
|
}
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
297
|
+
.speed-test .speed-test-header .close-speed-test {
|
|
298
|
+
float: right;
|
|
299
|
+
margin-right: 5px;
|
|
300
|
+
line-height: 32px;
|
|
301
|
+
cursor: pointer;
|
|
302
|
+
color: var(--primary-text-color);
|
|
332
303
|
}
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
line-height: 30px;
|
|
336
|
-
font-size: 18px;
|
|
304
|
+
.speed-test .speed-test-header .close-speed-test:hover {
|
|
305
|
+
color: var(--hover-text-color);
|
|
337
306
|
}
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
307
|
+
|
|
308
|
+
.settings-button {
|
|
309
|
+
float: right;
|
|
310
|
+
margin: 0 12px 0 0;
|
|
311
|
+
height: 40px;
|
|
312
|
+
width: 24px;
|
|
313
|
+
border: none;
|
|
314
|
+
padding: 0;
|
|
341
315
|
}
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
316
|
+
|
|
317
|
+
.speedtest-summary {
|
|
318
|
+
width: 100%;
|
|
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;
|
|
345
325
|
}
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
326
|
+
.speedtest-summary .speedtest-summary-header {
|
|
327
|
+
width: 100%;
|
|
328
|
+
padding-top: 4px;
|
|
329
|
+
text-align: left;
|
|
330
|
+
height: 32px;
|
|
331
|
+
font-size: 14px;
|
|
332
|
+
font-weight: 500;
|
|
333
|
+
line-height: 20px;
|
|
334
|
+
}
|
|
335
|
+
.speedtest-summary .speedtest-summary-block {
|
|
336
|
+
position: relative;
|
|
354
337
|
display: flex;
|
|
355
|
-
|
|
338
|
+
flex-direction: row;
|
|
356
339
|
width: 100%;
|
|
357
|
-
height: calc(100% - 50px);
|
|
358
|
-
margin: 0 auto;
|
|
359
|
-
opacity: 0.75;
|
|
360
|
-
transition: opacity 0.1s ease;
|
|
361
|
-
pointer-events: auto;
|
|
362
340
|
}
|
|
363
|
-
.
|
|
364
|
-
|
|
341
|
+
.speedtest-summary .speedtest-summary-block .speedtest-summary-subblock {
|
|
342
|
+
width: 50%;
|
|
343
|
+
margin-top: 4px;
|
|
344
|
+
margin-bottom: 12px;
|
|
365
345
|
}
|
|
366
|
-
.
|
|
367
|
-
|
|
346
|
+
.speedtest-summary .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
347
|
+
padding: 2px;
|
|
348
|
+
width: 248px;
|
|
349
|
+
max-width: 100%;
|
|
368
350
|
}
|
|
369
351
|
|
|
370
|
-
.
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
height: 120px;
|
|
377
|
-
border: 2px solid white;
|
|
378
|
-
border-radius: 50%;
|
|
379
|
-
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
380
|
-
filter: alpha(opacity=60);
|
|
381
|
-
opacity: 1;
|
|
382
|
-
box-shadow: 0 0 1px 0 white;
|
|
383
|
-
background: rgba(240, 243, 247, 0.9411764706);
|
|
384
|
-
z-index: 10000;
|
|
385
|
-
}
|
|
386
|
-
.big-mute-icon[data-big-mute-icon] svg {
|
|
387
|
-
margin-left: 5px;
|
|
388
|
-
width: 80px;
|
|
389
|
-
height: 80px;
|
|
390
|
-
}
|
|
391
|
-
.big-mute-icon[data-big-mute-icon] svg path {
|
|
392
|
-
fill: #1f1e1e !important;
|
|
352
|
+
.speedtest-quality {
|
|
353
|
+
width: 100%;
|
|
354
|
+
height: 36px;
|
|
355
|
+
display: flex !important;
|
|
356
|
+
flex-direction: column !important;
|
|
357
|
+
justify-content: space-between !important;
|
|
393
358
|
}
|
|
394
|
-
.
|
|
395
|
-
|
|
359
|
+
.speedtest-quality .speedtest-quality-header {
|
|
360
|
+
font-size: 12px;
|
|
361
|
+
height: 20px;
|
|
362
|
+
border-left: 2px solid var(--secondary-background-color) !important;
|
|
363
|
+
background-color: var(--secondary-background-color);
|
|
364
|
+
text-align: left;
|
|
396
365
|
}
|
|
397
|
-
.
|
|
398
|
-
fill: #151515 !important;
|
|
399
|
-
}.player-poster {
|
|
400
|
-
display: flex;
|
|
401
|
-
justify-content: center;
|
|
402
|
-
align-items: center;
|
|
403
|
-
position: absolute;
|
|
404
|
-
height: 100%;
|
|
366
|
+
.speedtest-quality-content {
|
|
405
367
|
width: 100%;
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
background-position: 50% 50%;
|
|
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;
|
|
413
374
|
}
|
|
414
|
-
.
|
|
415
|
-
|
|
375
|
+
.speedtest-quality-content-item {
|
|
376
|
+
width: 18.8%;
|
|
377
|
+
background-color: #fff;
|
|
416
378
|
}
|
|
417
|
-
.
|
|
418
|
-
|
|
379
|
+
.speedtest-quality-content-item.speedtest-quality-value-1 {
|
|
380
|
+
background-color: var(--speedtest-red);
|
|
419
381
|
}
|
|
420
|
-
.
|
|
421
|
-
|
|
422
|
-
height: 25%;
|
|
423
|
-
margin: 0 auto;
|
|
424
|
-
opacity: 0.75;
|
|
425
|
-
transition: opacity 0.1s ease;
|
|
382
|
+
.speedtest-quality-content-item.speedtest-quality-value-2 {
|
|
383
|
+
background-color: var(--speedtest-orange);
|
|
426
384
|
}
|
|
427
|
-
.
|
|
428
|
-
|
|
429
|
-
display: inline;
|
|
385
|
+
.speedtest-quality-content-item.speedtest-quality-value-3 {
|
|
386
|
+
background-color: var(--speedtest-yellow);
|
|
430
387
|
}
|
|
431
|
-
.
|
|
432
|
-
|
|
433
|
-
}
|
|
434
|
-
|
|
435
|
-
:
|
|
436
|
-
outline: none !important;
|
|
388
|
+
.speedtest-quality-content-item.speedtest-quality-value-4 {
|
|
389
|
+
background-color: var(--speedtest-light-green);
|
|
390
|
+
}
|
|
391
|
+
.speedtest-quality-content-item.speedtest-quality-value-5 {
|
|
392
|
+
background-color: var(--speedtest-green);
|
|
437
393
|
}
|
|
438
394
|
|
|
439
|
-
.
|
|
440
|
-
float: right;
|
|
441
|
-
margin-top: 4px;
|
|
395
|
+
.speedtest-footer {
|
|
442
396
|
position: relative;
|
|
443
|
-
|
|
444
|
-
width:
|
|
397
|
+
float: left;
|
|
398
|
+
width: 100%;
|
|
399
|
+
height: 30px;
|
|
400
|
+
line-height: 16px;
|
|
445
401
|
}
|
|
446
|
-
.
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
-
|
|
451
|
-
|
|
452
|
-
font-size: 14px;
|
|
453
|
-
padding: 0;
|
|
402
|
+
.speedtest-footer-about-link {
|
|
403
|
+
position: absolute;
|
|
404
|
+
bottom: 0;
|
|
405
|
+
left: 0;
|
|
406
|
+
color: var(--secondary-text-color);
|
|
407
|
+
text-decoration: underline !important;
|
|
454
408
|
}
|
|
455
|
-
.
|
|
456
|
-
|
|
457
|
-
position: relative;
|
|
458
|
-
margin-top: 6px;
|
|
409
|
+
.speedtest-footer-about-link:hover {
|
|
410
|
+
color: var(--hover-text-color);
|
|
459
411
|
}
|
|
460
|
-
.
|
|
461
|
-
|
|
412
|
+
.speedtest-footer .speedtest-footer-refresh {
|
|
413
|
+
position: absolute;
|
|
414
|
+
bottom: 0;
|
|
415
|
+
right: 0;
|
|
416
|
+
color: var(--secondary-text-color);
|
|
417
|
+
font-size: 14px;
|
|
418
|
+
font-weight: 400;
|
|
419
|
+
line-height: 16px;
|
|
420
|
+
height: 16px;
|
|
421
|
+
display: flex;
|
|
422
|
+
align-items: center;
|
|
423
|
+
gap: 4px;
|
|
462
424
|
}
|
|
463
|
-
.
|
|
464
|
-
|
|
425
|
+
.speedtest-footer .speedtest-footer-refresh svg path {
|
|
426
|
+
fill: var(--secondary-text-color);
|
|
465
427
|
}
|
|
466
|
-
.
|
|
467
|
-
|
|
468
|
-
height: 6px;
|
|
469
|
-
margin-top: 11px;
|
|
470
|
-
margin-left: 5px;
|
|
428
|
+
.speedtest-footer .speedtest-footer-refresh:hover {
|
|
429
|
+
color: var(--hover-text-color);
|
|
471
430
|
}
|
|
472
|
-
.
|
|
473
|
-
|
|
474
|
-
right: -24px;
|
|
475
|
-
width: 245px;
|
|
476
|
-
list-style-type: none;
|
|
477
|
-
position: absolute;
|
|
478
|
-
bottom: 48px;
|
|
479
|
-
border-radius: 4px;
|
|
480
|
-
display: none;
|
|
481
|
-
background-color: rgba(74, 74, 74, 0.9);
|
|
431
|
+
.speedtest-footer .speedtest-footer-refresh:hover svg path {
|
|
432
|
+
fill: var(--hover-text-color);
|
|
482
433
|
}
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
position:
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
width:
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
border-left: 10px solid transparent;
|
|
434
|
+
|
|
435
|
+
.mobile .clappr-nerd-stats .stats-box {
|
|
436
|
+
position: fixed;
|
|
437
|
+
height: auto;
|
|
438
|
+
width: auto;
|
|
439
|
+
inset: 0;
|
|
440
|
+
min-width: 100vw;
|
|
441
|
+
padding-bottom: 4px;
|
|
442
|
+
padding-left: 4px;
|
|
443
|
+
padding-right: 4px;
|
|
494
444
|
}
|
|
495
|
-
.
|
|
496
|
-
|
|
497
|
-
cursor: pointer;
|
|
445
|
+
.mobile .clappr-nerd-stats .stats-box-top {
|
|
446
|
+
position: fixed;
|
|
498
447
|
}
|
|
499
|
-
.
|
|
500
|
-
|
|
501
|
-
padding: 10px 0;
|
|
502
|
-
justify-content: center;
|
|
503
|
-
position: relative;
|
|
448
|
+
.mobile .clappr-nerd-stats .stats-box-main ul {
|
|
449
|
+
flex: 0 1 50%;
|
|
504
450
|
}
|
|
505
|
-
|
|
506
|
-
|
|
451
|
+
|
|
452
|
+
@media only screen and (orientation: portrait) {
|
|
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
|
+
}
|
|
507
479
|
}
|
|
508
|
-
|
|
509
|
-
|
|
480
|
+
@media only screen and (orientation: landscape) {
|
|
481
|
+
.mobile .clappr-nerd-stats .stats-box-main ul {
|
|
482
|
+
flex-basis: 1fr;
|
|
483
|
+
}
|
|
510
484
|
}
|
|
511
|
-
|
|
512
|
-
|
|
485
|
+
@media only screen and (min-width: 1100px) {
|
|
486
|
+
.fullscreen .clappr-nerd-stats .stats-box {
|
|
487
|
+
top: unset;
|
|
488
|
+
}
|
|
489
|
+
}@charset "UTF-8";
|
|
490
|
+
.gplayer-mc-clips {
|
|
491
|
+
display: flex;
|
|
492
|
+
gap: 6px;
|
|
513
493
|
}
|
|
514
|
-
.
|
|
515
|
-
|
|
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;
|
|
516
505
|
}
|
|
517
|
-
.
|
|
518
|
-
|
|
506
|
+
.gplayer-mc-clips .gplayer-mc-clips-text::before {
|
|
507
|
+
content: "•";
|
|
508
|
+
padding-right: 6px;
|
|
519
509
|
}
|
|
520
|
-
.
|
|
521
|
-
width:
|
|
522
|
-
|
|
510
|
+
.gplayer-mc-clips .gplayer-mc-clips-text.compact {
|
|
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;
|
|
518
|
+
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;
|
|
523
524
|
}
|
|
524
|
-
.
|
|
525
|
-
|
|
526
|
-
height: 60px;
|
|
525
|
+
.big-mute-icon-wrapper[data-big-mute].hide {
|
|
526
|
+
display: none;
|
|
527
527
|
}
|
|
528
|
-
.
|
|
529
|
-
|
|
530
|
-
text-align: left;
|
|
531
|
-
margin-left: 15px;
|
|
528
|
+
.big-mute-icon-wrapper[data-big-mute]:hover {
|
|
529
|
+
cursor: pointer;
|
|
532
530
|
}
|
|
533
|
-
|
|
534
|
-
.
|
|
531
|
+
|
|
532
|
+
.big-mute-icon[data-big-mute-icon] {
|
|
533
|
+
display: flex;
|
|
534
|
+
align-items: center;
|
|
535
|
+
justify-content: center;
|
|
536
|
+
align-self: center;
|
|
535
537
|
width: 120px;
|
|
536
|
-
height:
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
color: #fff;
|
|
546
|
-
text-overflow: ellipsis;
|
|
547
|
-
overflow: hidden;
|
|
548
|
-
}
|
|
549
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
550
|
-
opacity: 0.6;
|
|
551
|
-
}
|
|
552
|
-
.multicamera[data-multicamera] li a {
|
|
553
|
-
color: #444;
|
|
554
|
-
padding: 2px 10px;
|
|
555
|
-
display: block;
|
|
556
|
-
text-decoration: none;
|
|
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;
|
|
557
547
|
}
|
|
558
|
-
.
|
|
559
|
-
|
|
560
|
-
|
|
548
|
+
.big-mute-icon[data-big-mute-icon] svg {
|
|
549
|
+
margin-left: 5px;
|
|
550
|
+
width: 80px;
|
|
551
|
+
height: 80px;
|
|
561
552
|
}
|
|
562
|
-
.
|
|
563
|
-
|
|
564
|
-
text-decoration: none;
|
|
553
|
+
.big-mute-icon[data-big-mute-icon] svg path {
|
|
554
|
+
fill: #1f1e1e !important;
|
|
565
555
|
}
|
|
566
|
-
.
|
|
567
|
-
|
|
568
|
-
}.quality-levels li.disabled {
|
|
569
|
-
opacity: 0.5;
|
|
570
|
-
pointer-events: none;
|
|
556
|
+
.big-mute-icon[data-big-mute-icon]:hover {
|
|
557
|
+
background: rgba(240, 243, 247, 0.8784313725);
|
|
571
558
|
}
|
|
572
|
-
.
|
|
573
|
-
|
|
574
|
-
}.
|
|
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;
|
|
575
564
|
display: flex;
|
|
576
|
-
justify-content: center;
|
|
577
|
-
padding: 0;
|
|
578
565
|
align-items: center;
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
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;
|
|
583
572
|
}
|
|
584
|
-
.
|
|
585
|
-
|
|
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;
|
|
586
580
|
}
|
|
587
|
-
.
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
581
|
+
.dvr-controls .live-info::before,
|
|
582
|
+
.dvr-controls .live-button::before {
|
|
583
|
+
margin-right: 8px;
|
|
584
|
+
content: "";
|
|
585
|
+
display: inline-block;
|
|
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);
|
|
591
591
|
}
|
|
592
|
-
.
|
|
593
|
-
|
|
592
|
+
.dvr-controls.disabled {
|
|
593
|
+
opacity: var(--disabled-opacity);
|
|
594
594
|
}
|
|
595
|
-
.
|
|
596
|
-
background-color:
|
|
595
|
+
.dvr-controls.disabled:before {
|
|
596
|
+
background-color: var(--player-dvr-color);
|
|
597
597
|
}
|
|
598
|
-
.
|
|
599
|
-
|
|
600
|
-
|
|
598
|
+
.dvr-controls .live-info {
|
|
599
|
+
text-transform: uppercase;
|
|
600
|
+
color: #fffffe;
|
|
601
601
|
}
|
|
602
|
-
.
|
|
603
|
-
|
|
604
|
-
border-top-right-radius: 4px;
|
|
602
|
+
.dvr-controls .live-info::before {
|
|
603
|
+
background-color: #ed4f4a;
|
|
605
604
|
}
|
|
606
|
-
.
|
|
607
|
-
|
|
608
|
-
|
|
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;
|
|
609
614
|
}
|
|
610
|
-
|
|
611
|
-
|
|
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;
|
|
612
622
|
position: absolute;
|
|
613
|
-
|
|
623
|
+
height: 100%;
|
|
614
624
|
width: 100%;
|
|
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%;
|
|
615
632
|
}
|
|
616
|
-
.
|
|
617
|
-
|
|
618
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
619
|
-
color: white;
|
|
620
|
-
display: inline-block;
|
|
621
|
-
}.container-with-poster-clickable .mc-skip-time {
|
|
622
|
-
height: 0;
|
|
633
|
+
.player-poster.clickable {
|
|
634
|
+
cursor: pointer;
|
|
623
635
|
}
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
position: absolute;
|
|
627
|
-
width: 100%;
|
|
628
|
-
height: calc(100% - 50px);
|
|
629
|
-
z-index: 9998;
|
|
630
|
-
background-color: transparent;
|
|
631
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
636
|
+
.player-poster:hover .play-wrapper {
|
|
637
|
+
opacity: 1;
|
|
632
638
|
}
|
|
633
|
-
.
|
|
639
|
+
.player-poster .play-wrapper {
|
|
634
640
|
width: 100%;
|
|
635
|
-
height:
|
|
636
|
-
|
|
637
|
-
|
|
641
|
+
height: 25%;
|
|
642
|
+
margin: 0 auto;
|
|
643
|
+
opacity: 0.75;
|
|
644
|
+
transition: opacity 0.1s ease;
|
|
638
645
|
}
|
|
639
|
-
.
|
|
640
|
-
flex: 1 0 0px;
|
|
646
|
+
.player-poster .play-wrapper svg {
|
|
641
647
|
height: 100%;
|
|
648
|
+
display: inline;
|
|
649
|
+
}
|
|
650
|
+
.player-poster .play-wrapper svg path {
|
|
651
|
+
fill: #fff;
|
|
642
652
|
}.context-menu {
|
|
643
653
|
z-index: 999;
|
|
644
654
|
position: absolute;
|
|
@@ -675,1215 +685,1205 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
675
685
|
.context-menu .context-menu-list-item_icon {
|
|
676
686
|
width: 20px;
|
|
677
687
|
height: 20px;
|
|
678
|
-
}.
|
|
679
|
-
|
|
680
|
-
z-index: 5;
|
|
681
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
682
|
-
}
|
|
683
|
-
.share_plugin[data-share].share-hide .share-button-container {
|
|
684
|
-
right: -50px;
|
|
685
|
-
}
|
|
686
|
-
.share_plugin[data-share] .share-button-container {
|
|
687
|
-
cursor: pointer;
|
|
688
|
-
width: 36px;
|
|
689
|
-
height: 36px;
|
|
690
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
691
|
-
border-radius: 4px;
|
|
692
|
-
position: absolute;
|
|
693
|
-
right: 10px;
|
|
694
|
-
top: 10px;
|
|
695
|
-
padding-top: 6px;
|
|
696
|
-
transition: all 0.3s ease-out;
|
|
697
|
-
}
|
|
698
|
-
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
699
|
-
background-color: transparent;
|
|
700
|
-
border: 0;
|
|
701
|
-
margin: 0 6px;
|
|
702
|
-
padding: 0;
|
|
703
|
-
cursor: pointer;
|
|
704
|
-
display: inline-block;
|
|
705
|
-
width: 19px;
|
|
706
|
-
height: 20px;
|
|
688
|
+
}.media-control-skin-1 .media-control-item.media-control-gear {
|
|
689
|
+
order: 99;
|
|
707
690
|
}
|
|
708
|
-
.
|
|
709
|
-
pointer-events: auto;
|
|
691
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-wrapper {
|
|
710
692
|
position: absolute;
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
/* margin-top: -170px; */
|
|
719
|
-
}
|
|
720
|
-
.share_plugin[data-share] .share-container .share-container-header {
|
|
721
|
-
text-align: left;
|
|
722
|
-
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
723
|
-
}
|
|
724
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
725
|
-
display: inline-block;
|
|
726
|
-
font-size: 16px;
|
|
727
|
-
margin: 5px;
|
|
728
|
-
}
|
|
729
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
730
|
-
display: inline-block;
|
|
731
|
-
width: 24px;
|
|
732
|
-
float: right;
|
|
733
|
-
margin: 5px;
|
|
734
|
-
cursor: pointer;
|
|
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);
|
|
735
700
|
}
|
|
736
|
-
.
|
|
737
|
-
|
|
701
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-options-list {
|
|
702
|
+
padding: 8px 0;
|
|
738
703
|
}
|
|
739
|
-
.
|
|
704
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option {
|
|
705
|
+
margin: 0;
|
|
740
706
|
text-align: left;
|
|
741
|
-
|
|
742
|
-
padding: 5px;
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
width: calc(100% - 10px);
|
|
750
|
-
padding: 5px;
|
|
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;
|
|
751
715
|
}
|
|
752
|
-
.
|
|
753
|
-
|
|
754
|
-
|
|
716
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_icon {
|
|
717
|
+
flex: 24px 0 0;
|
|
718
|
+
height: 24px;
|
|
755
719
|
}
|
|
756
|
-
.
|
|
757
|
-
|
|
720
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_icon.hidden {
|
|
721
|
+
visibility: hidden;
|
|
758
722
|
display: inline-block;
|
|
759
|
-
margin-right: 5px;
|
|
760
|
-
cursor: pointer;
|
|
761
|
-
}.spinner-three-bounce[data-spinner] {
|
|
762
|
-
position: absolute;
|
|
763
|
-
width: 70px;
|
|
764
|
-
text-align: center;
|
|
765
|
-
z-index: 999;
|
|
766
|
-
left: 0;
|
|
767
|
-
right: 0;
|
|
768
|
-
margin: 0 auto;
|
|
769
|
-
margin-left: auto;
|
|
770
|
-
margin-right: auto;
|
|
771
|
-
/* center vertically */
|
|
772
|
-
top: 50%;
|
|
773
|
-
transform: translateY(-50%);
|
|
774
723
|
}
|
|
775
|
-
.
|
|
776
|
-
|
|
777
|
-
height: 18px;
|
|
778
|
-
background-color: #FFF;
|
|
779
|
-
border-radius: 100%;
|
|
780
|
-
display: inline-block;
|
|
781
|
-
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
782
|
-
/* Prevent first frame from flickering when animation starts */
|
|
783
|
-
animation-fill-mode: both;
|
|
724
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_label {
|
|
725
|
+
flex: 0 1 100%;
|
|
784
726
|
}
|
|
785
|
-
.
|
|
786
|
-
|
|
727
|
+
.media-control-skin-1 .media-control-item.media-control-gear .gear-option_arrow-right-icon {
|
|
728
|
+
flex: 0 0 14px;
|
|
729
|
+
height: 24px;
|
|
787
730
|
}
|
|
788
|
-
.
|
|
789
|
-
|
|
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;
|
|
790
735
|
}
|
|
791
736
|
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
}
|
|
796
|
-
40% {
|
|
797
|
-
transform: scale(1);
|
|
798
|
-
}
|
|
799
|
-
}.seek-time {
|
|
800
|
-
position: absolute;
|
|
801
|
-
white-space: nowrap;
|
|
802
|
-
height: 20px;
|
|
737
|
+
.gear-wrapper .go-back {
|
|
738
|
+
font-weight: 600;
|
|
739
|
+
font-size: 14px;
|
|
803
740
|
line-height: 20px;
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
background-color: rgba(2, 2, 2, 0.5);
|
|
808
|
-
z-index: 9999;
|
|
809
|
-
transition: opacity 0.1s ease;
|
|
741
|
+
width: 100%;
|
|
742
|
+
text-align: left;
|
|
743
|
+
padding: 12px;
|
|
810
744
|
}
|
|
811
|
-
.
|
|
812
|
-
|
|
745
|
+
.gear-wrapper .go-back .arrow-left-icon {
|
|
746
|
+
float: left;
|
|
747
|
+
padding-top: 2px;
|
|
748
|
+
padding-right: 2px;
|
|
813
749
|
}
|
|
814
|
-
.
|
|
815
|
-
|
|
816
|
-
color: white;
|
|
817
|
-
font-size: 10px;
|
|
818
|
-
padding-left: 7px;
|
|
819
|
-
padding-right: 7px;
|
|
820
|
-
vertical-align: top;
|
|
750
|
+
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
751
|
+
height: 16px;
|
|
821
752
|
}
|
|
822
|
-
.
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
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;
|
|
828
759
|
}
|
|
829
|
-
.
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
}:root {
|
|
833
|
-
--primary-background-color: #000;
|
|
834
|
-
--secondary-background-color: #262626;
|
|
835
|
-
--primary-text-color: #fff;
|
|
836
|
-
--secondary-text-color: #fff4f2;
|
|
837
|
-
--hover-text-color: #f9b090;
|
|
838
|
-
--speedtest-red: #df564d;
|
|
839
|
-
--speedtest-orange: #df934d;
|
|
840
|
-
--speedtest-yellow: #dfd04d;
|
|
841
|
-
--speedtest-light-green: #c2df4d;
|
|
842
|
-
--speedtest-green: #73df4d;
|
|
760
|
+
.gear-wrapper ul.gear-sub-menu li {
|
|
761
|
+
font-size: 12px;
|
|
762
|
+
text-align: left;
|
|
843
763
|
}
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
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);
|
|
847
771
|
}
|
|
848
|
-
.
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
bottom: 52px;
|
|
852
|
-
right: 0;
|
|
853
|
-
top: 0;
|
|
854
|
-
left: 0;
|
|
855
|
-
bottom: 0;
|
|
856
|
-
padding: 0 10px 12px;
|
|
857
|
-
margin: 0;
|
|
858
|
-
line-height: 20px;
|
|
859
|
-
font-size: 12px;
|
|
860
|
-
font-weight: 500;
|
|
861
|
-
background: var(--primary-background-color);
|
|
862
|
-
color: #fff;
|
|
863
|
-
z-index: 20000;
|
|
864
|
-
overflow: auto;
|
|
865
|
-
max-width: 100%;
|
|
772
|
+
.gear-wrapper ul.gear-sub-menu li a:hover {
|
|
773
|
+
color: var(--gplayer-mc-text-color);
|
|
774
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
866
775
|
}
|
|
867
|
-
.
|
|
776
|
+
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
777
|
+
color: var(--gplayer-mc-text-color);
|
|
778
|
+
text-decoration: none;
|
|
779
|
+
}
|
|
780
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
781
|
+
width: 30px;
|
|
782
|
+
height: 20px;
|
|
783
|
+
float: left;
|
|
784
|
+
display: block;
|
|
785
|
+
}
|
|
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;
|
|
794
|
+
}
|
|
795
|
+
.quality-levels li.current {
|
|
796
|
+
background-color: #000;
|
|
797
|
+
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
798
|
+
color: #CCCACA;
|
|
868
799
|
position: absolute;
|
|
869
800
|
top: 0;
|
|
870
|
-
|
|
871
|
-
z-index: 9999;
|
|
801
|
+
height: 100%;
|
|
872
802
|
width: 100%;
|
|
873
|
-
|
|
874
|
-
|
|
803
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
804
|
+
z-index: 2000;
|
|
805
|
+
display: flex;
|
|
806
|
+
flex-direction: column;
|
|
807
|
+
justify-content: center;
|
|
875
808
|
}
|
|
876
|
-
.
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
top:
|
|
880
|
-
display: block;
|
|
881
|
-
width: 12px;
|
|
882
|
-
height: 12px;
|
|
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;
|
|
883
813
|
}
|
|
884
|
-
.
|
|
885
|
-
|
|
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;
|
|
886
818
|
}
|
|
887
|
-
.
|
|
888
|
-
|
|
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;
|
|
889
822
|
}
|
|
890
|
-
.
|
|
891
|
-
|
|
892
|
-
margin-top:
|
|
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 {
|
|
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;
|
|
833
|
+
}
|
|
834
|
+
.media-control-skin-1 .media-control-item.media-control-pip button {
|
|
835
|
+
height: 20px;
|
|
836
|
+
}
|
|
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;
|
|
845
|
+
width: 100%;
|
|
846
|
+
height: calc(100% - 50px);
|
|
847
|
+
z-index: 9998;
|
|
848
|
+
background-color: transparent;
|
|
849
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
850
|
+
}
|
|
851
|
+
.mc-skip-time .skip-container {
|
|
852
|
+
width: 100%;
|
|
853
|
+
height: 100%;
|
|
893
854
|
display: flex;
|
|
894
|
-
|
|
855
|
+
justify-content: space-between;
|
|
895
856
|
}
|
|
896
|
-
.
|
|
897
|
-
flex: 0
|
|
898
|
-
|
|
857
|
+
.mc-skip-time .skip-container .skip-item {
|
|
858
|
+
flex: 1 0 0px;
|
|
859
|
+
height: 100%;
|
|
860
|
+
}[data-player] {
|
|
861
|
+
--bottom-panel: 40px;
|
|
899
862
|
}
|
|
900
|
-
|
|
901
|
-
|
|
863
|
+
|
|
864
|
+
.container .media-control-notransition {
|
|
865
|
+
transition: none !important;
|
|
902
866
|
}
|
|
903
|
-
.
|
|
904
|
-
|
|
867
|
+
.container .player-poster .play-wrapper {
|
|
868
|
+
opacity: 1;
|
|
905
869
|
}
|
|
906
|
-
.
|
|
907
|
-
|
|
908
|
-
padding-right: 2px;
|
|
909
|
-
background: var(--primary-background-color);
|
|
910
|
-
gap: 10px;
|
|
870
|
+
.container.crop-video [data-html5-video] {
|
|
871
|
+
object-fit: cover;
|
|
911
872
|
}
|
|
912
|
-
.
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
873
|
+
.container .player-poster .circle-poster {
|
|
874
|
+
top: 50%;
|
|
875
|
+
margin-top: -60px;
|
|
876
|
+
left: 50%;
|
|
877
|
+
margin-left: -60px;
|
|
878
|
+
position: absolute;
|
|
879
|
+
width: 120px;
|
|
880
|
+
height: 120px;
|
|
881
|
+
border: 2px solid white;
|
|
882
|
+
border-radius: 50%;
|
|
883
|
+
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
884
|
+
filter: alpha(opacity=60);
|
|
885
|
+
opacity: 1;
|
|
886
|
+
box-shadow: 0 0 1px 0 white;
|
|
916
887
|
}
|
|
917
|
-
.
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
text-align: left;
|
|
888
|
+
.container .player-poster .circle-poster svg {
|
|
889
|
+
margin-left: 5px;
|
|
890
|
+
width: 80px;
|
|
921
891
|
}
|
|
922
|
-
.
|
|
892
|
+
.container .spinner-three-bounce[data-spinner] > div {
|
|
893
|
+
background-color: #ff5700;
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
.media-control-skin-1.w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] {
|
|
897
|
+
transform: rotate(270deg);
|
|
898
|
+
float: none;
|
|
899
|
+
display: block;
|
|
900
|
+
position: absolute;
|
|
901
|
+
margin: 0;
|
|
902
|
+
top: -40px;
|
|
923
903
|
padding: 0;
|
|
904
|
+
margin-left: -32px;
|
|
905
|
+
margin-top: -3px;
|
|
906
|
+
width: 80px;
|
|
924
907
|
}
|
|
925
|
-
.
|
|
908
|
+
.media-control-skin-1.w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background-mask {
|
|
909
|
+
position: absolute;
|
|
926
910
|
width: 100%;
|
|
911
|
+
height: 100%;
|
|
912
|
+
left: -5px;
|
|
927
913
|
}
|
|
928
|
-
.
|
|
929
|
-
|
|
914
|
+
.media-control-skin-1.w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume].volume-bar-hide {
|
|
915
|
+
display: none;
|
|
930
916
|
}
|
|
931
|
-
.
|
|
932
|
-
|
|
917
|
+
.media-control-skin-1.w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background {
|
|
918
|
+
margin-left: 11px;
|
|
919
|
+
top: 7px;
|
|
920
|
+
width: 80px;
|
|
933
921
|
}
|
|
934
|
-
.
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
padding-bottom: 4px;
|
|
938
|
-
font-size: 14px;
|
|
922
|
+
.media-control-skin-1.w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber {
|
|
923
|
+
margin-left: 11px;
|
|
924
|
+
top: 1px;
|
|
939
925
|
}
|
|
940
|
-
.
|
|
941
|
-
|
|
942
|
-
position: absolute;
|
|
943
|
-
right: 0;
|
|
944
|
-
top: 0;
|
|
926
|
+
.media-control-skin-1.w270 .media-control-dd__popup {
|
|
927
|
+
max-width: 114px;
|
|
945
928
|
}
|
|
946
929
|
|
|
947
|
-
.
|
|
948
|
-
width:
|
|
949
|
-
}
|
|
950
|
-
.desktop .clappr-nerd-stats .stats-box.narrow ul {
|
|
951
|
-
width: 100%;
|
|
930
|
+
.media-control-skin-1.w370 .media-control-cc {
|
|
931
|
+
width: 28px;
|
|
952
932
|
}
|
|
953
|
-
.
|
|
954
|
-
|
|
955
|
-
height: auto;
|
|
933
|
+
.media-control-skin-1.w370 .media-control-cc svg {
|
|
934
|
+
height: 17px;
|
|
956
935
|
}
|
|
957
|
-
.
|
|
958
|
-
|
|
959
|
-
|
|
936
|
+
.media-control-skin-1.w370 .share_plugin[data-share] .share-container {
|
|
937
|
+
top: calc(50% - 150px);
|
|
938
|
+
left: calc(50% - 125px);
|
|
939
|
+
width: 250px;
|
|
940
|
+
height: calc(100% - 32px);
|
|
941
|
+
max-height: 300px;
|
|
942
|
+
transform: none;
|
|
960
943
|
}
|
|
961
|
-
.
|
|
962
|
-
|
|
944
|
+
.media-control-skin-1.w370 .share_plugin[data-share] .share-container .share-container-header {
|
|
945
|
+
border: none;
|
|
963
946
|
}
|
|
964
|
-
.
|
|
965
|
-
|
|
947
|
+
.media-control-skin-1.w370 .share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
948
|
+
visibility: hidden;
|
|
966
949
|
}
|
|
967
|
-
.
|
|
968
|
-
|
|
969
|
-
height: 38px;
|
|
970
|
-
text-align: center;
|
|
950
|
+
.media-control-skin-1.w370 .media-control-quality {
|
|
951
|
+
display: block;
|
|
971
952
|
}
|
|
972
|
-
.
|
|
973
|
-
|
|
953
|
+
.media-control-skin-1.w370 .media-control-multicamera .multicamera {
|
|
954
|
+
margin-top: 0;
|
|
955
|
+
margin-right: 10px;
|
|
974
956
|
}
|
|
975
|
-
.
|
|
976
|
-
height:
|
|
957
|
+
.media-control-skin-1.w370 .media-control-multicamera .multicamera button {
|
|
958
|
+
height: 32px;
|
|
977
959
|
}
|
|
978
|
-
.
|
|
979
|
-
|
|
980
|
-
|
|
960
|
+
.media-control-skin-1.w370 .media-control-multicamera .multicamera button svg {
|
|
961
|
+
height: 17px;
|
|
962
|
+
margin: 0;
|
|
981
963
|
}
|
|
982
|
-
.
|
|
983
|
-
|
|
984
|
-
|
|
964
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] {
|
|
965
|
+
padding-left: 10px;
|
|
966
|
+
padding-right: 12px;
|
|
985
967
|
}
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
margin: 10px 0 0;
|
|
989
|
-
color: #000;
|
|
968
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .media-control-indicator {
|
|
969
|
+
line-height: 32px;
|
|
990
970
|
}
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
top: 0;
|
|
995
|
-
left: 0;
|
|
996
|
-
width: 100%;
|
|
997
|
-
height: 100%;
|
|
998
|
-
z-index: 9999;
|
|
971
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .media-control-indicator[data-position], .media-control-skin-1.w370 .media-control-layer[data-controls] .media-control-indicator[data-duration] {
|
|
972
|
+
font-size: 11px;
|
|
973
|
+
line-height: 32px;
|
|
999
974
|
}
|
|
1000
|
-
.
|
|
1001
|
-
|
|
975
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .dvr-controls .live-button {
|
|
976
|
+
margin-left: 10px;
|
|
1002
977
|
height: 32px;
|
|
978
|
+
font-size: 12px;
|
|
979
|
+
line-height: 32px;
|
|
980
|
+
text-shadow: none;
|
|
981
|
+
letter-spacing: 0.6px;
|
|
1003
982
|
}
|
|
1004
|
-
.
|
|
1005
|
-
|
|
1006
|
-
|
|
983
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .dvr-controls .live-button::before {
|
|
984
|
+
width: 8px;
|
|
985
|
+
height: 8px;
|
|
986
|
+
margin-right: 4px;
|
|
987
|
+
}
|
|
988
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .dvr-controls .live-info {
|
|
989
|
+
margin-left: 10px;
|
|
990
|
+
height: 32px;
|
|
991
|
+
font-size: 12px;
|
|
1007
992
|
line-height: 32px;
|
|
1008
|
-
|
|
1009
|
-
|
|
993
|
+
text-shadow: none;
|
|
994
|
+
letter-spacing: 0.6px;
|
|
1010
995
|
}
|
|
1011
|
-
.
|
|
1012
|
-
|
|
996
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .dvr-controls .live-info::before {
|
|
997
|
+
width: 8px;
|
|
998
|
+
height: 8px;
|
|
999
|
+
margin-right: 4px;
|
|
1013
1000
|
}
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
float: right;
|
|
1017
|
-
margin: 0 12px 0 0;
|
|
1018
|
-
height: 40px;
|
|
1019
|
-
width: 24px;
|
|
1020
|
-
border: none;
|
|
1021
|
-
padding: 0;
|
|
1001
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] button.media-control-button[data-fullscreen] {
|
|
1002
|
+
height: 33px;
|
|
1022
1003
|
}
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
width: 100%;
|
|
1026
|
-
border-top: 1px solid var(--secondary-background-color) !important;
|
|
1027
|
-
border-bottom: 1px solid var(--secondary-background-color) !important;
|
|
1028
|
-
display: flex !important;
|
|
1029
|
-
flex-direction: column;
|
|
1030
|
-
align-items: stretch;
|
|
1031
|
-
justify-content: space-between;
|
|
1004
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] button.media-control-button svg {
|
|
1005
|
+
height: 17px;
|
|
1032
1006
|
}
|
|
1033
|
-
.
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1007
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .gplayer-mc-clips .gplayer-mc-clips-text {
|
|
1008
|
+
line-height: 33px;
|
|
1009
|
+
font-size: 11px;
|
|
1010
|
+
}
|
|
1011
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .gplayer-mc-clips .gplayer-mc-clips-text {
|
|
1012
|
+
max-width: 50px;
|
|
1013
|
+
}
|
|
1014
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .drawer-container[data-volume] {
|
|
1037
1015
|
height: 32px;
|
|
1038
|
-
|
|
1039
|
-
font-weight: 500;
|
|
1040
|
-
line-height: 20px;
|
|
1016
|
+
margin-right: 8px;
|
|
1041
1017
|
}
|
|
1042
|
-
.
|
|
1043
|
-
|
|
1044
|
-
display: flex;
|
|
1045
|
-
flex-direction: row;
|
|
1046
|
-
width: 100%;
|
|
1018
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] {
|
|
1019
|
+
height: 32px;
|
|
1047
1020
|
}
|
|
1048
|
-
.
|
|
1049
|
-
|
|
1050
|
-
margin-top:
|
|
1051
|
-
margin-bottom: 12px;
|
|
1021
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] svg {
|
|
1022
|
+
height: 17px;
|
|
1023
|
+
margin-top: 5px;
|
|
1052
1024
|
}
|
|
1053
|
-
.
|
|
1054
|
-
|
|
1055
|
-
width: 248px;
|
|
1056
|
-
max-width: 100%;
|
|
1025
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] {
|
|
1026
|
+
display: none;
|
|
1057
1027
|
}
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
flex-direction: column !important;
|
|
1064
|
-
justify-content: space-between !important;
|
|
1028
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume].volume-bar-hide {
|
|
1029
|
+
width: 0;
|
|
1030
|
+
height: 12px;
|
|
1031
|
+
top: 9px;
|
|
1032
|
+
padding: 0;
|
|
1065
1033
|
}
|
|
1066
|
-
.
|
|
1067
|
-
|
|
1068
|
-
height:
|
|
1069
|
-
border-left: 2px solid var(--secondary-background-color) !important;
|
|
1070
|
-
background-color: var(--secondary-background-color);
|
|
1071
|
-
text-align: left;
|
|
1034
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .media-control-button,
|
|
1035
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .media-control-item {
|
|
1036
|
+
height: 32px;
|
|
1072
1037
|
}
|
|
1073
|
-
.
|
|
1074
|
-
width:
|
|
1075
|
-
margin-top: 8px;
|
|
1076
|
-
height: 8px;
|
|
1077
|
-
display: flex !important;
|
|
1078
|
-
flex-direction: row !important;
|
|
1079
|
-
align-items: stretch !important;
|
|
1080
|
-
justify-content: space-between;
|
|
1038
|
+
.media-control-skin-1.w370 .media-control-dd__popup {
|
|
1039
|
+
max-width: 150px;
|
|
1081
1040
|
}
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1041
|
+
|
|
1042
|
+
:root {
|
|
1043
|
+
--font-size-media-controls: 14px;
|
|
1044
|
+
--font-size-media-controls-dropdown: 16px;
|
|
1045
|
+
--gplayer-mc-font-size-dropdown: 16px;
|
|
1046
|
+
--player-vod-color: #005aff;
|
|
1047
|
+
--player-dvr-color: #fff;
|
|
1048
|
+
--player-live-color: #ff0101;
|
|
1049
|
+
--player-seekbar-current-color: #ff5700;
|
|
1050
|
+
--player-seekbar-buffer-color: #fff;
|
|
1051
|
+
--gplayer-mc-text-color: #fff;
|
|
1052
|
+
--gplayer-mc-text-dim-color: #fffffe;
|
|
1053
|
+
--gplayer-mc-popup-border-color: rgb(255 255 255 / 10%);
|
|
1054
|
+
--gplayer-mc-popup-bg: rgb(74 74 74 / 60%);
|
|
1085
1055
|
}
|
|
1086
|
-
|
|
1087
|
-
|
|
1056
|
+
|
|
1057
|
+
.media-control-skin-1 {
|
|
1058
|
+
position: absolute;
|
|
1059
|
+
width: 100%;
|
|
1060
|
+
height: 100%;
|
|
1061
|
+
z-index: 9999;
|
|
1062
|
+
pointer-events: none;
|
|
1063
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1064
|
+
font-size: var(--font-size-media-controls);
|
|
1088
1065
|
}
|
|
1089
|
-
.
|
|
1090
|
-
|
|
1066
|
+
.media-control-skin-1.dragging {
|
|
1067
|
+
pointer-events: auto;
|
|
1068
|
+
cursor: grabbing !important;
|
|
1069
|
+
cursor: url("closed-hand.cur"), move;
|
|
1091
1070
|
}
|
|
1092
|
-
.
|
|
1093
|
-
|
|
1071
|
+
.media-control-skin-1.dragging * {
|
|
1072
|
+
cursor: grabbing !important;
|
|
1073
|
+
cursor: url("closed-hand.cur"), move;
|
|
1094
1074
|
}
|
|
1095
|
-
.
|
|
1096
|
-
|
|
1075
|
+
.media-control-skin-1 .media-control-icon {
|
|
1076
|
+
line-height: 0;
|
|
1077
|
+
letter-spacing: 0;
|
|
1078
|
+
speak: none;
|
|
1079
|
+
color: var(--gplayer-mc-text-color);
|
|
1080
|
+
vertical-align: middle;
|
|
1081
|
+
text-align: left;
|
|
1082
|
+
transition: all 0.1s ease;
|
|
1097
1083
|
}
|
|
1098
|
-
.
|
|
1099
|
-
|
|
1084
|
+
.media-control-skin-1 .media-control-icon:hover {
|
|
1085
|
+
color: white;
|
|
1100
1086
|
}
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
position: relative;
|
|
1104
|
-
float: left;
|
|
1105
|
-
width: 100%;
|
|
1106
|
-
height: 30px;
|
|
1107
|
-
line-height: 16px;
|
|
1087
|
+
.media-control-skin-1.media-control-hide .media-control-background[data-background] {
|
|
1088
|
+
opacity: 0;
|
|
1108
1089
|
}
|
|
1109
|
-
.
|
|
1110
|
-
|
|
1111
|
-
bottom: 0;
|
|
1112
|
-
left: 0;
|
|
1113
|
-
color: var(--secondary-text-color);
|
|
1114
|
-
text-decoration: underline !important;
|
|
1090
|
+
.media-control-skin-1.media-control-hide .media-control-layer[data-controls] {
|
|
1091
|
+
bottom: -50px;
|
|
1115
1092
|
}
|
|
1116
|
-
.
|
|
1117
|
-
|
|
1093
|
+
.media-control-skin-1.media-control-hide .media-control-layer[data-controls] .bar-scrubber[data-seekbar] {
|
|
1094
|
+
opacity: 0;
|
|
1118
1095
|
}
|
|
1119
|
-
.
|
|
1096
|
+
.media-control-skin-1 .media-control-layer[data-controls] {
|
|
1120
1097
|
position: absolute;
|
|
1121
1098
|
bottom: 0;
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1099
|
+
width: 100%;
|
|
1100
|
+
padding: 0 12px 0 8px;
|
|
1101
|
+
height: var(--bottom-panel);
|
|
1102
|
+
vertical-align: middle;
|
|
1103
|
+
pointer-events: auto;
|
|
1104
|
+
transition: bottom 0.4s ease-out;
|
|
1105
|
+
display: flex;
|
|
1106
|
+
justify-content: space-between;
|
|
1107
|
+
}
|
|
1108
|
+
.media-control-skin-1 .media-control-left-panel {
|
|
1128
1109
|
display: flex;
|
|
1129
1110
|
align-items: center;
|
|
1130
|
-
gap:
|
|
1111
|
+
gap: 0.5rem;
|
|
1112
|
+
justify-content: flex-start;
|
|
1131
1113
|
}
|
|
1132
|
-
.
|
|
1133
|
-
|
|
1114
|
+
.media-control-skin-1 .media-control-button,
|
|
1115
|
+
.media-control-skin-1 .media-control-indicator,
|
|
1116
|
+
.media-control-skin-1 .media-control-item {
|
|
1117
|
+
order: 50;
|
|
1134
1118
|
}
|
|
1135
|
-
.
|
|
1136
|
-
|
|
1119
|
+
.media-control-skin-1 .media-control-item {
|
|
1120
|
+
display: flex;
|
|
1121
|
+
align-items: center;
|
|
1137
1122
|
}
|
|
1138
|
-
.
|
|
1139
|
-
|
|
1123
|
+
.media-control-skin-1 [data-playpause],
|
|
1124
|
+
.media-control-skin-1 [data-playstop] {
|
|
1125
|
+
order: 1;
|
|
1140
1126
|
}
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
position: fixed;
|
|
1144
|
-
height: auto;
|
|
1145
|
-
width: auto;
|
|
1146
|
-
inset: 0;
|
|
1147
|
-
min-width: 100vw;
|
|
1148
|
-
padding-bottom: 4px;
|
|
1149
|
-
padding-left: 4px;
|
|
1150
|
-
padding-right: 4px;
|
|
1127
|
+
.media-control-skin-1 [data-volume] {
|
|
1128
|
+
order: 2;
|
|
1151
1129
|
}
|
|
1152
|
-
.
|
|
1153
|
-
|
|
1130
|
+
.media-control-skin-1 [data-position] {
|
|
1131
|
+
order: 3;
|
|
1154
1132
|
}
|
|
1155
|
-
.
|
|
1156
|
-
|
|
1133
|
+
.media-control-skin-1 [data-duration] {
|
|
1134
|
+
order: 3;
|
|
1157
1135
|
}
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
height: auto;
|
|
1163
|
-
}
|
|
1164
|
-
.mobile .speedtest-summary-block {
|
|
1165
|
-
width: 100%;
|
|
1166
|
-
flex-direction: column;
|
|
1167
|
-
}
|
|
1168
|
-
.mobile .speedtest-summary-block .speedtest-summary-subblock {
|
|
1169
|
-
width: 100%;
|
|
1170
|
-
}
|
|
1171
|
-
.mobile .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
1172
|
-
width: 100%;
|
|
1173
|
-
}
|
|
1174
|
-
.mobile .speedtest-summary-header {
|
|
1175
|
-
padding-top: 12px;
|
|
1176
|
-
height: 38px;
|
|
1177
|
-
text-align: center;
|
|
1178
|
-
}
|
|
1179
|
-
.mobile .speedtest-quality-header {
|
|
1180
|
-
text-align: center;
|
|
1181
|
-
}
|
|
1182
|
-
.mobile .speedtest-footer .speedtest-footer-refresh {
|
|
1183
|
-
inset: 50% auto auto 50%;
|
|
1184
|
-
transform: translate(-50%, -50%);
|
|
1185
|
-
}
|
|
1136
|
+
.media-control-skin-1 .media-control-center-panel {
|
|
1137
|
+
height: 100%;
|
|
1138
|
+
text-align: center;
|
|
1139
|
+
line-height: var(--bottom-panel);
|
|
1186
1140
|
}
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1141
|
+
.media-control-skin-1 .media-control-right-panel {
|
|
1142
|
+
display: flex;
|
|
1143
|
+
align-items: center;
|
|
1144
|
+
gap: 1rem;
|
|
1145
|
+
justify-content: flex-end;
|
|
1191
1146
|
}
|
|
1192
|
-
@media
|
|
1193
|
-
.
|
|
1194
|
-
|
|
1147
|
+
@media (max-width: 420px) {
|
|
1148
|
+
.media-control-skin-1 .media-control-right-panel {
|
|
1149
|
+
gap: 0.5rem;
|
|
1195
1150
|
}
|
|
1196
|
-
}.scrub-thumbnails {
|
|
1197
|
-
position: absolute;
|
|
1198
|
-
bottom: 52px;
|
|
1199
|
-
width: 100%;
|
|
1200
|
-
transition: opacity 0.3s ease;
|
|
1201
|
-
}
|
|
1202
|
-
.scrub-thumbnails.hidden {
|
|
1203
|
-
opacity: 0;
|
|
1204
1151
|
}
|
|
1205
|
-
.
|
|
1152
|
+
.media-control-skin-1 button.media-control-button {
|
|
1153
|
+
background-color: transparent;
|
|
1154
|
+
border: 0;
|
|
1155
|
+
padding: 0;
|
|
1156
|
+
cursor: pointer;
|
|
1206
1157
|
display: inline-block;
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
background-color: #000;
|
|
1210
|
-
}
|
|
1211
|
-
.scrub-thumbnails .thumbnail-container .thumbnail-img {
|
|
1212
|
-
position: absolute;
|
|
1213
|
-
width: auto;
|
|
1214
|
-
}
|
|
1215
|
-
.scrub-thumbnails .thumbnails-text {
|
|
1216
|
-
background-color: rgba(74, 74, 74, 0.7);
|
|
1217
|
-
border-radius: 3px;
|
|
1218
|
-
white-space: nowrap;
|
|
1219
|
-
overflow: hidden;
|
|
1220
|
-
text-overflow: ellipsis;
|
|
1221
|
-
color: white;
|
|
1222
|
-
position: absolute;
|
|
1223
|
-
bottom: 23px;
|
|
1224
|
-
width: 100px;
|
|
1225
|
-
padding: 0 4px;
|
|
1226
|
-
font-size: 12px;
|
|
1158
|
+
height: 20px;
|
|
1159
|
+
width: 24px;
|
|
1227
1160
|
}
|
|
1228
|
-
.
|
|
1229
|
-
|
|
1230
|
-
overflow: hidden;
|
|
1231
|
-
position: absolute;
|
|
1232
|
-
bottom: 0;
|
|
1233
|
-
left: 0;
|
|
1234
|
-
border-color: #4a4a4a;
|
|
1235
|
-
border-style: solid;
|
|
1236
|
-
border-width: 3px;
|
|
1237
|
-
border-radius: 3px;
|
|
1161
|
+
.media-control-skin-1 button.media-control-button svg {
|
|
1162
|
+
height: 20px;
|
|
1238
1163
|
}
|
|
1239
|
-
.
|
|
1240
|
-
|
|
1164
|
+
.media-control-skin-1 button.media-control-button svg path {
|
|
1165
|
+
fill: white;
|
|
1241
1166
|
}
|
|
1242
|
-
.
|
|
1243
|
-
|
|
1244
|
-
left: 0;
|
|
1245
|
-
bottom: 0;
|
|
1246
|
-
right: 0;
|
|
1247
|
-
background-color: #000;
|
|
1248
|
-
overflow: hidden;
|
|
1167
|
+
.media-control-skin-1 button.media-control-button:focus {
|
|
1168
|
+
outline: none;
|
|
1249
1169
|
}
|
|
1250
|
-
.
|
|
1251
|
-
|
|
1252
|
-
top: 0;
|
|
1253
|
-
left: 0;
|
|
1170
|
+
.media-control-skin-1 button.media-control-button[data-play] {
|
|
1171
|
+
float: left;
|
|
1254
1172
|
height: 100%;
|
|
1255
|
-
white-space: nowrap;
|
|
1256
1173
|
}
|
|
1257
|
-
.
|
|
1258
|
-
|
|
1259
|
-
}.player-logo[data-logo] {
|
|
1260
|
-
position: absolute;
|
|
1261
|
-
z-index: 2;
|
|
1262
|
-
width: 100%;
|
|
1174
|
+
.media-control-skin-1 button.media-control-button[data-pause] {
|
|
1175
|
+
float: left;
|
|
1263
1176
|
height: 100%;
|
|
1264
1177
|
}
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
}[data-player] {
|
|
1269
|
-
--bottom-panel: 40px;
|
|
1270
|
-
}
|
|
1271
|
-
|
|
1272
|
-
.container .media-control-notransition {
|
|
1273
|
-
transition: none !important;
|
|
1274
|
-
}
|
|
1275
|
-
.container .player-poster .play-wrapper {
|
|
1276
|
-
opacity: 1;
|
|
1178
|
+
.media-control-skin-1 button.media-control-button[data-stop] {
|
|
1179
|
+
float: left;
|
|
1180
|
+
height: 100%;
|
|
1277
1181
|
}
|
|
1278
|
-
.
|
|
1279
|
-
|
|
1182
|
+
.media-control-skin-1 button.media-control-button[data-fullscreen] {
|
|
1183
|
+
order: 100;
|
|
1184
|
+
background-color: transparent;
|
|
1185
|
+
border: 0;
|
|
1186
|
+
height: 40px;
|
|
1280
1187
|
}
|
|
1281
|
-
.
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
height: 120px;
|
|
1289
|
-
border: 2px solid white;
|
|
1290
|
-
border-radius: 50%;
|
|
1291
|
-
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
1292
|
-
filter: alpha(opacity=60);
|
|
1293
|
-
opacity: 1;
|
|
1294
|
-
box-shadow: 0 0 1px 0 white;
|
|
1188
|
+
.media-control-skin-1 button.media-control-button[data-hd-indicator] {
|
|
1189
|
+
background-color: transparent;
|
|
1190
|
+
border: 0;
|
|
1191
|
+
cursor: default;
|
|
1192
|
+
display: none !important;
|
|
1193
|
+
float: right;
|
|
1194
|
+
height: 100%;
|
|
1295
1195
|
}
|
|
1296
|
-
.
|
|
1297
|
-
|
|
1298
|
-
|
|
1196
|
+
.media-control-skin-1 .media-control-indicator[data-position], .media-control-skin-1 .media-control-indicator[data-duration] {
|
|
1197
|
+
display: flex;
|
|
1198
|
+
color: white;
|
|
1199
|
+
cursor: default;
|
|
1200
|
+
line-height: var(--bottom-panel);
|
|
1201
|
+
position: relative;
|
|
1299
1202
|
}
|
|
1300
|
-
.
|
|
1301
|
-
|
|
1203
|
+
.media-control-skin-1 .media-control-indicator[data-position] {
|
|
1204
|
+
margin: 1px 0 0 7px;
|
|
1302
1205
|
}
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
position: absolute;
|
|
1309
|
-
margin: 0;
|
|
1310
|
-
top: -40px;
|
|
1311
|
-
padding: 0;
|
|
1312
|
-
margin-left: -32px;
|
|
1313
|
-
margin-top: -3px;
|
|
1314
|
-
width: 80px;
|
|
1206
|
+
.media-control-skin-1 .media-control-indicator[data-duration] {
|
|
1207
|
+
color: rgb(255, 255, 255);
|
|
1208
|
+
opacity: 0.5;
|
|
1209
|
+
margin-top: 1px;
|
|
1210
|
+
margin-right: 6px;
|
|
1315
1211
|
}
|
|
1316
|
-
.media-control-skin-1
|
|
1212
|
+
.media-control-skin-1 .media-control-indicator[data-duration]::before {
|
|
1213
|
+
content: "|";
|
|
1214
|
+
margin-right: 7px;
|
|
1215
|
+
}
|
|
1216
|
+
.media-control-skin-1 .bar-container[data-seekbar] {
|
|
1317
1217
|
position: absolute;
|
|
1218
|
+
top: -11px;
|
|
1219
|
+
left: 0;
|
|
1220
|
+
display: inline-block;
|
|
1221
|
+
vertical-align: middle;
|
|
1318
1222
|
width: 100%;
|
|
1319
|
-
height:
|
|
1320
|
-
|
|
1223
|
+
height: 20px;
|
|
1224
|
+
cursor: pointer;
|
|
1321
1225
|
}
|
|
1322
|
-
.media-control-skin-1
|
|
1323
|
-
|
|
1226
|
+
.media-control-skin-1 .bar-container[data-seekbar] .bar-background[data-seekbar] {
|
|
1227
|
+
width: 100%;
|
|
1228
|
+
height: 3px;
|
|
1229
|
+
position: relative;
|
|
1230
|
+
top: 8px;
|
|
1231
|
+
background-color: #666;
|
|
1324
1232
|
}
|
|
1325
|
-
.media-control-skin-1
|
|
1326
|
-
|
|
1327
|
-
top:
|
|
1328
|
-
|
|
1233
|
+
.media-control-skin-1 .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-1[data-seekbar] {
|
|
1234
|
+
position: absolute;
|
|
1235
|
+
top: 0;
|
|
1236
|
+
left: 0;
|
|
1237
|
+
width: 0;
|
|
1238
|
+
height: 100%;
|
|
1239
|
+
background-color: var(--player-seekbar-buffer-color);
|
|
1240
|
+
transition: all 0.1s ease-out;
|
|
1329
1241
|
}
|
|
1330
|
-
.media-control-skin-1
|
|
1331
|
-
|
|
1332
|
-
top:
|
|
1242
|
+
.media-control-skin-1 .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
|
|
1243
|
+
position: absolute;
|
|
1244
|
+
top: 0;
|
|
1245
|
+
left: 0;
|
|
1246
|
+
width: 0;
|
|
1247
|
+
height: 100%;
|
|
1248
|
+
background-color: var(--player-seekbar-current-color);
|
|
1249
|
+
transition: all 0.1s ease-out;
|
|
1333
1250
|
}
|
|
1334
|
-
.media-control-skin-1
|
|
1335
|
-
|
|
1251
|
+
.media-control-skin-1 .bar-container[data-seekbar].seek-disabled {
|
|
1252
|
+
cursor: default;
|
|
1253
|
+
display: none;
|
|
1336
1254
|
}
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1255
|
+
.media-control-skin-1 .bar-scrubber[data-seekbar] {
|
|
1256
|
+
position: absolute;
|
|
1257
|
+
transform: translateX(-50%);
|
|
1258
|
+
top: 0;
|
|
1259
|
+
left: 0;
|
|
1260
|
+
width: 20px;
|
|
1261
|
+
height: 20px;
|
|
1262
|
+
opacity: 1;
|
|
1263
|
+
transition: all 0.1s ease-out;
|
|
1340
1264
|
}
|
|
1341
|
-
.media-control-skin-1.
|
|
1342
|
-
|
|
1265
|
+
.media-control-skin-1 .bar-scrubber[data-seekbar] .bar-scrubber-icon[data-seekbar] {
|
|
1266
|
+
position: absolute;
|
|
1267
|
+
left: 4.5px;
|
|
1268
|
+
top: 4.5px;
|
|
1269
|
+
width: 11px;
|
|
1270
|
+
height: 11px;
|
|
1271
|
+
border-radius: 50%;
|
|
1272
|
+
background-color: white;
|
|
1343
1273
|
}
|
|
1344
|
-
.media-control-skin-1
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
transform: none;
|
|
1274
|
+
.media-control-skin-1 .drawer-container[data-volume] {
|
|
1275
|
+
display: flex;
|
|
1276
|
+
justify-content: flex-start;
|
|
1277
|
+
height: var(--bottom-panel);
|
|
1278
|
+
cursor: pointer;
|
|
1279
|
+
box-sizing: border-box;
|
|
1351
1280
|
}
|
|
1352
|
-
.media-control-skin-1
|
|
1353
|
-
|
|
1281
|
+
.media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] {
|
|
1282
|
+
bottom: 0;
|
|
1354
1283
|
}
|
|
1355
|
-
.media-control-skin-1
|
|
1356
|
-
|
|
1284
|
+
.media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] {
|
|
1285
|
+
background-color: transparent;
|
|
1286
|
+
border: 0;
|
|
1287
|
+
box-sizing: content-box;
|
|
1288
|
+
height: var(--bottom-panel);
|
|
1289
|
+
width: 20px;
|
|
1357
1290
|
}
|
|
1358
|
-
.media-control-skin-1.
|
|
1359
|
-
|
|
1291
|
+
.media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] svg {
|
|
1292
|
+
height: 20px;
|
|
1293
|
+
position: relative;
|
|
1294
|
+
top: 3px;
|
|
1295
|
+
margin-top: 7px;
|
|
1360
1296
|
}
|
|
1361
|
-
.media-control-skin-1.
|
|
1362
|
-
|
|
1363
|
-
margin-right: 10px;
|
|
1297
|
+
.media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] svg path {
|
|
1298
|
+
fill: white;
|
|
1364
1299
|
}
|
|
1365
|
-
.media-control-skin-1.
|
|
1366
|
-
|
|
1300
|
+
.media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume].muted svg {
|
|
1301
|
+
margin-left: 2px;
|
|
1367
1302
|
}
|
|
1368
|
-
.media-control-skin-1
|
|
1369
|
-
|
|
1370
|
-
margin:
|
|
1303
|
+
.media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] {
|
|
1304
|
+
position: relative;
|
|
1305
|
+
margin-left: 10px;
|
|
1306
|
+
top: 8px;
|
|
1307
|
+
width: 80px;
|
|
1308
|
+
height: 23px;
|
|
1309
|
+
padding: 3px 0;
|
|
1310
|
+
transition: width 0.2s ease-out;
|
|
1371
1311
|
}
|
|
1372
|
-
.media-control-skin-1.
|
|
1373
|
-
|
|
1374
|
-
|
|
1312
|
+
.media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] {
|
|
1313
|
+
height: 3px;
|
|
1314
|
+
border-radius: 100px;
|
|
1315
|
+
position: relative;
|
|
1316
|
+
top: 7px;
|
|
1317
|
+
background-color: #666;
|
|
1375
1318
|
}
|
|
1376
|
-
.media-control-skin-1.
|
|
1377
|
-
|
|
1319
|
+
.media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] .bar-fill-1[data-volume] {
|
|
1320
|
+
position: absolute;
|
|
1321
|
+
top: 0;
|
|
1322
|
+
left: 0;
|
|
1323
|
+
width: 0;
|
|
1324
|
+
height: 100%;
|
|
1325
|
+
border-radius: 100px;
|
|
1326
|
+
background-color: white;
|
|
1327
|
+
transition: all 0.1s ease-out;
|
|
1378
1328
|
}
|
|
1379
|
-
.media-control-skin-1
|
|
1380
|
-
|
|
1381
|
-
|
|
1329
|
+
.media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] .bar-fill-2[data-volume] {
|
|
1330
|
+
position: absolute;
|
|
1331
|
+
top: 0;
|
|
1332
|
+
left: 0;
|
|
1333
|
+
width: 0;
|
|
1334
|
+
height: 100%;
|
|
1335
|
+
background-color: var(--player-vod-color);
|
|
1336
|
+
transition: all 0.1s ease-out;
|
|
1382
1337
|
}
|
|
1383
|
-
.media-control-skin-1
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1338
|
+
.media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber[data-volume] {
|
|
1339
|
+
position: absolute;
|
|
1340
|
+
transform: translateX(-50%);
|
|
1341
|
+
top: 3px;
|
|
1342
|
+
margin-left: 3px;
|
|
1343
|
+
width: 16px;
|
|
1344
|
+
height: 16px;
|
|
1345
|
+
opacity: 1;
|
|
1346
|
+
transition: all 0.1s ease-out;
|
|
1390
1347
|
}
|
|
1391
|
-
.media-control-skin-1.
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1348
|
+
.media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber[data-volume] .bar-scrubber-icon[data-volume] {
|
|
1349
|
+
position: absolute;
|
|
1350
|
+
left: 3px;
|
|
1351
|
+
top: 5px;
|
|
1352
|
+
width: 7px;
|
|
1353
|
+
height: 7px;
|
|
1354
|
+
border-radius: 50%;
|
|
1355
|
+
background-color: white;
|
|
1395
1356
|
}
|
|
1396
|
-
.media-control-skin-1
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1357
|
+
.media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume] {
|
|
1358
|
+
float: left;
|
|
1359
|
+
width: 4px;
|
|
1360
|
+
padding-left: 2px;
|
|
1361
|
+
height: 12px;
|
|
1362
|
+
opacity: 0.5;
|
|
1363
|
+
box-shadow: inset 2px 0 0 white;
|
|
1364
|
+
transition: transform 0.2s ease-out;
|
|
1403
1365
|
}
|
|
1404
|
-
.media-control-skin-1
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
margin-right: 4px;
|
|
1366
|
+
.media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume].fill {
|
|
1367
|
+
box-shadow: inset 2px 0 0 #fff;
|
|
1368
|
+
opacity: 1;
|
|
1408
1369
|
}
|
|
1409
|
-
.media-control-skin-1.
|
|
1410
|
-
|
|
1370
|
+
.media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume]:nth-of-type(1) {
|
|
1371
|
+
padding-left: 0;
|
|
1411
1372
|
}
|
|
1412
|
-
.media-control-skin-1.
|
|
1413
|
-
|
|
1373
|
+
.media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume]:hover {
|
|
1374
|
+
transform: scaleY(1.5);
|
|
1414
1375
|
}
|
|
1415
|
-
.media-control-skin-1
|
|
1416
|
-
|
|
1417
|
-
|
|
1376
|
+
.media-control-skin-1 .seek-time {
|
|
1377
|
+
height: 26px;
|
|
1378
|
+
line-height: 26px;
|
|
1379
|
+
bottom: 52px;
|
|
1380
|
+
border-radius: 3px;
|
|
1381
|
+
background-color: rgba(74, 74, 74, 0.7);
|
|
1418
1382
|
}
|
|
1419
|
-
.media-control-skin-1
|
|
1420
|
-
|
|
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;
|
|
1421
1387
|
}
|
|
1422
|
-
.media-control-skin-1
|
|
1423
|
-
|
|
1424
|
-
|
|
1388
|
+
.media-control-skin-1 .seek-time .seek-time__pos {
|
|
1389
|
+
padding-left: 8px;
|
|
1390
|
+
padding-right: 8px;
|
|
1425
1391
|
}
|
|
1426
|
-
.media-control-skin-1
|
|
1392
|
+
.media-control-skin-1 .media-control-dd {
|
|
1393
|
+
display: flex;
|
|
1427
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;
|
|
1428
1405
|
}
|
|
1429
|
-
.media-control-skin-1
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
display: none;
|
|
1406
|
+
.media-control-skin-1 .media-control-dd__text {
|
|
1407
|
+
text-overflow: ellipsis;
|
|
1408
|
+
overflow: hidden;
|
|
1409
|
+
white-space: nowrap;
|
|
1410
|
+
max-width: 100px;
|
|
1435
1411
|
}
|
|
1436
|
-
.media-control-skin-1
|
|
1437
|
-
|
|
1438
|
-
height: 12px;
|
|
1439
|
-
top: 9px;
|
|
1440
|
-
padding: 0;
|
|
1412
|
+
.media-control-skin-1 .media-control-dd.changing {
|
|
1413
|
+
animation: pulse 0.5s infinite alternate;
|
|
1441
1414
|
}
|
|
1442
|
-
.media-control-skin-1
|
|
1443
|
-
|
|
1444
|
-
height: 32px;
|
|
1415
|
+
.media-control-skin-1 .media-control-dd svg {
|
|
1416
|
+
fill: var(--gplayer-mc-text-color);
|
|
1445
1417
|
}
|
|
1446
|
-
.media-control-skin-1
|
|
1447
|
-
|
|
1418
|
+
.media-control-skin-1 .media-control-dd__arrow {
|
|
1419
|
+
width: 9px;
|
|
1420
|
+
height: 6px;
|
|
1448
1421
|
}
|
|
1449
|
-
|
|
1450
|
-
:
|
|
1451
|
-
--font-size-media-controls: 14px;
|
|
1452
|
-
--font-size-media-controls-dropdown: 16px;
|
|
1453
|
-
--gplayer-mc-font-size-dropdown: 16px;
|
|
1454
|
-
--player-vod-color: #005aff;
|
|
1455
|
-
--player-dvr-color: #fff;
|
|
1456
|
-
--player-live-color: #ff0101;
|
|
1457
|
-
--player-seekbar-current-color: #ff5700;
|
|
1458
|
-
--player-seekbar-buffer-color: #fff;
|
|
1459
|
-
--gplayer-mc-text-color: #fff;
|
|
1460
|
-
--gplayer-mc-text-dim-color: #fffffe;
|
|
1461
|
-
--gplayer-mc-popup-border-color: rgb(255 255 255 / 10%);
|
|
1462
|
-
--gplayer-mc-popup-bg: rgb(74 74 74 / 60%);
|
|
1422
|
+
.media-control-skin-1 .media-control-dd__wrap {
|
|
1423
|
+
position: relative;
|
|
1463
1424
|
}
|
|
1464
|
-
|
|
1465
|
-
|
|
1425
|
+
.media-control-skin-1 .media-control-dd__popup {
|
|
1426
|
+
max-width: 200px;
|
|
1427
|
+
list-style-type: none;
|
|
1466
1428
|
position: absolute;
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
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;
|
|
1473
1438
|
}
|
|
1474
|
-
.media-control-skin-1.
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
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;
|
|
1478
1443
|
}
|
|
1479
|
-
.media-control-skin-1.
|
|
1480
|
-
|
|
1481
|
-
|
|
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;
|
|
1482
1453
|
}
|
|
1483
|
-
.media-control-skin-1 .media-control-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
speak: none;
|
|
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);
|
|
1487
1457
|
color: var(--gplayer-mc-text-color);
|
|
1488
|
-
vertical-align: middle;
|
|
1489
|
-
text-align: left;
|
|
1490
|
-
transition: all 0.1s ease;
|
|
1491
|
-
}
|
|
1492
|
-
.media-control-skin-1 .media-control-icon:hover {
|
|
1493
|
-
color: white;
|
|
1494
1458
|
}
|
|
1495
|
-
.media-control-skin-1.media-control-
|
|
1496
|
-
|
|
1459
|
+
.media-control-skin-1 .media-control-dd__popup li.current a {
|
|
1460
|
+
color: #f00;
|
|
1497
1461
|
}
|
|
1498
|
-
.media-control-skin-1.media-control-
|
|
1499
|
-
bottom:
|
|
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;
|
|
1500
1465
|
}
|
|
1501
|
-
.media-control-skin-1
|
|
1502
|
-
|
|
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;
|
|
1503
1469
|
}
|
|
1504
|
-
|
|
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] {
|
|
1505
1482
|
position: absolute;
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
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%);
|
|
1515
1494
|
}
|
|
1516
|
-
.
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
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;
|
|
1521
1504
|
}
|
|
1522
|
-
.
|
|
1523
|
-
|
|
1524
|
-
.media-control-skin-1 .media-control-item {
|
|
1525
|
-
order: 50;
|
|
1505
|
+
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
1506
|
+
animation-delay: -0.32s;
|
|
1526
1507
|
}
|
|
1527
|
-
.
|
|
1528
|
-
|
|
1529
|
-
align-items: center;
|
|
1508
|
+
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
1509
|
+
animation-delay: -0.16s;
|
|
1530
1510
|
}
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
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;
|
|
1534
1523
|
}
|
|
1535
|
-
.
|
|
1536
|
-
|
|
1524
|
+
.share_plugin[data-share].share-hide .share-button-container {
|
|
1525
|
+
right: -50px;
|
|
1537
1526
|
}
|
|
1538
|
-
.
|
|
1539
|
-
|
|
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;
|
|
1540
1538
|
}
|
|
1541
|
-
.
|
|
1542
|
-
|
|
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;
|
|
1543
1548
|
}
|
|
1544
|
-
.
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
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; */
|
|
1548
1560
|
}
|
|
1549
|
-
.
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
gap: 1rem;
|
|
1553
|
-
justify-content: flex-end;
|
|
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);
|
|
1554
1564
|
}
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
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;
|
|
1559
1569
|
}
|
|
1560
|
-
.
|
|
1561
|
-
background-color: transparent;
|
|
1562
|
-
border: 0;
|
|
1563
|
-
padding: 0;
|
|
1564
|
-
cursor: pointer;
|
|
1570
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
1565
1571
|
display: inline-block;
|
|
1566
|
-
height: 20px;
|
|
1567
1572
|
width: 24px;
|
|
1573
|
+
float: right;
|
|
1574
|
+
margin: 5px;
|
|
1575
|
+
cursor: pointer;
|
|
1568
1576
|
}
|
|
1569
|
-
.
|
|
1570
|
-
|
|
1577
|
+
.share_plugin[data-share] .share-container .share-container-main {
|
|
1578
|
+
margin-bottom: 8px;
|
|
1571
1579
|
}
|
|
1572
|
-
.
|
|
1573
|
-
|
|
1580
|
+
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
1581
|
+
text-align: left;
|
|
1582
|
+
font-size: 14px;
|
|
1583
|
+
padding: 5px;
|
|
1574
1584
|
}
|
|
1575
|
-
.
|
|
1576
|
-
|
|
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;
|
|
1577
1592
|
}
|
|
1578
|
-
.
|
|
1579
|
-
|
|
1580
|
-
|
|
1593
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
1594
|
+
max-height: 90px;
|
|
1595
|
+
resize: none;
|
|
1581
1596
|
}
|
|
1582
|
-
.
|
|
1583
|
-
|
|
1584
|
-
|
|
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;
|
|
1585
1608
|
}
|
|
1586
|
-
.media-control-skin-1 button.media-control-button
|
|
1587
|
-
|
|
1588
|
-
height: 100%;
|
|
1609
|
+
.media-control-skin-1 .media-control-cc button.media-control-button:hover {
|
|
1610
|
+
color: white;
|
|
1589
1611
|
}
|
|
1590
|
-
.media-control-skin-1
|
|
1591
|
-
|
|
1592
|
-
background-color: transparent;
|
|
1593
|
-
border: 0;
|
|
1594
|
-
height: 40px;
|
|
1612
|
+
.media-control-skin-1 .media-control-cc ul li {
|
|
1613
|
+
text-align: center;
|
|
1595
1614
|
}
|
|
1596
|
-
.media-control-skin-1
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
display: none !important;
|
|
1601
|
-
float: right;
|
|
1602
|
-
height: 100%;
|
|
1615
|
+
.media-control-skin-1 .media-control-cc ul li a {
|
|
1616
|
+
height: 30px;
|
|
1617
|
+
padding: 5px 10px;
|
|
1618
|
+
color: #fffffe;
|
|
1603
1619
|
}
|
|
1604
|
-
.media-control-skin-1 .media-control-
|
|
1605
|
-
|
|
1606
|
-
color: white;
|
|
1607
|
-
cursor: default;
|
|
1608
|
-
line-height: var(--bottom-panel);
|
|
1609
|
-
position: relative;
|
|
1620
|
+
.media-control-skin-1 .media-control-cc ul li a:hover {
|
|
1621
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
1610
1622
|
}
|
|
1611
|
-
.media-control-skin-1 .media-control-
|
|
1612
|
-
|
|
1623
|
+
.media-control-skin-1 .media-control-cc ul li.current a {
|
|
1624
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
1613
1625
|
}
|
|
1614
|
-
.media-control-skin-1 .media-control-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
margin-top: 1px;
|
|
1618
|
-
margin-right: 6px;
|
|
1626
|
+
.media-control-skin-1 .media-control-cc ul li:first-child a {
|
|
1627
|
+
border-bottom-left-radius: 4px;
|
|
1628
|
+
border-bottom-right-radius: 4px;
|
|
1619
1629
|
}
|
|
1620
|
-
.media-control-skin-1 .media-control-
|
|
1621
|
-
|
|
1622
|
-
|
|
1630
|
+
.media-control-skin-1 .media-control-cc ul li:last-child a {
|
|
1631
|
+
border-top-left-radius: 4px;
|
|
1632
|
+
border-top-right-radius: 4px;
|
|
1623
1633
|
}
|
|
1624
|
-
.media-control-skin-1 .
|
|
1634
|
+
.media-control-skin-1 .media-control-cc {
|
|
1635
|
+
position: relative;
|
|
1636
|
+
order: 85;
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1639
|
+
.container .gplayer-cc-line {
|
|
1625
1640
|
position: absolute;
|
|
1626
|
-
|
|
1627
|
-
left: 0;
|
|
1628
|
-
display: inline-block;
|
|
1629
|
-
vertical-align: middle;
|
|
1641
|
+
bottom: calc(var(--bottom-panel) + 5px);
|
|
1630
1642
|
width: 100%;
|
|
1631
|
-
height: 20px;
|
|
1632
|
-
cursor: pointer;
|
|
1633
1643
|
}
|
|
1634
|
-
.
|
|
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;
|
|
1649
|
+
}.scrub-thumbnails {
|
|
1650
|
+
position: absolute;
|
|
1651
|
+
bottom: 52px;
|
|
1635
1652
|
width: 100%;
|
|
1636
|
-
|
|
1653
|
+
transition: opacity 0.3s ease;
|
|
1654
|
+
}
|
|
1655
|
+
.scrub-thumbnails.hidden {
|
|
1656
|
+
opacity: 0;
|
|
1657
|
+
}
|
|
1658
|
+
.scrub-thumbnails .thumbnail-container {
|
|
1659
|
+
display: inline-block;
|
|
1637
1660
|
position: relative;
|
|
1638
|
-
|
|
1639
|
-
background-color: #
|
|
1661
|
+
overflow: hidden;
|
|
1662
|
+
background-color: #000;
|
|
1640
1663
|
}
|
|
1641
|
-
.
|
|
1664
|
+
.scrub-thumbnails .thumbnail-container .thumbnail-img {
|
|
1642
1665
|
position: absolute;
|
|
1643
|
-
|
|
1644
|
-
left: 0;
|
|
1645
|
-
width: 0;
|
|
1646
|
-
height: 100%;
|
|
1647
|
-
background-color: var(--player-seekbar-buffer-color);
|
|
1648
|
-
transition: all 0.1s ease-out;
|
|
1666
|
+
width: auto;
|
|
1649
1667
|
}
|
|
1650
|
-
.
|
|
1668
|
+
.scrub-thumbnails .thumbnails-text {
|
|
1669
|
+
background-color: rgba(74, 74, 74, 0.7);
|
|
1670
|
+
border-radius: 3px;
|
|
1671
|
+
white-space: nowrap;
|
|
1672
|
+
overflow: hidden;
|
|
1673
|
+
text-overflow: ellipsis;
|
|
1674
|
+
color: white;
|
|
1651
1675
|
position: absolute;
|
|
1652
|
-
|
|
1676
|
+
bottom: 23px;
|
|
1677
|
+
width: 100px;
|
|
1678
|
+
padding: 0 4px;
|
|
1679
|
+
font-size: 12px;
|
|
1680
|
+
}
|
|
1681
|
+
.scrub-thumbnails .spotlight {
|
|
1682
|
+
background-color: #4a4a4a;
|
|
1683
|
+
overflow: hidden;
|
|
1684
|
+
position: absolute;
|
|
1685
|
+
bottom: 0;
|
|
1653
1686
|
left: 0;
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1687
|
+
border-color: #4a4a4a;
|
|
1688
|
+
border-style: solid;
|
|
1689
|
+
border-width: 3px;
|
|
1690
|
+
border-radius: 3px;
|
|
1658
1691
|
}
|
|
1659
|
-
.
|
|
1660
|
-
|
|
1661
|
-
display: none;
|
|
1692
|
+
.scrub-thumbnails .spotlight img {
|
|
1693
|
+
width: auto;
|
|
1662
1694
|
}
|
|
1663
|
-
.
|
|
1695
|
+
.scrub-thumbnails .backdrop {
|
|
1664
1696
|
position: absolute;
|
|
1665
|
-
transform: translateX(-50%);
|
|
1666
|
-
top: 0;
|
|
1667
1697
|
left: 0;
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1698
|
+
bottom: 0;
|
|
1699
|
+
right: 0;
|
|
1700
|
+
background-color: #000;
|
|
1701
|
+
overflow: hidden;
|
|
1672
1702
|
}
|
|
1673
|
-
.
|
|
1703
|
+
.scrub-thumbnails .backdrop .carousel {
|
|
1674
1704
|
position: absolute;
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
border-radius: 50%;
|
|
1680
|
-
background-color: white;
|
|
1681
|
-
}
|
|
1682
|
-
.media-control-skin-1 .drawer-container[data-volume] {
|
|
1683
|
-
display: flex;
|
|
1684
|
-
justify-content: flex-start;
|
|
1685
|
-
height: var(--bottom-panel);
|
|
1686
|
-
cursor: pointer;
|
|
1687
|
-
box-sizing: border-box;
|
|
1688
|
-
}
|
|
1689
|
-
.media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] {
|
|
1690
|
-
bottom: 0;
|
|
1705
|
+
top: 0;
|
|
1706
|
+
left: 0;
|
|
1707
|
+
height: 100%;
|
|
1708
|
+
white-space: nowrap;
|
|
1691
1709
|
}
|
|
1692
|
-
.
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1710
|
+
.scrub-thumbnails .backdrop .carousel img {
|
|
1711
|
+
width: auto;
|
|
1712
|
+
}*,
|
|
1713
|
+
:focus,
|
|
1714
|
+
:visited {
|
|
1715
|
+
outline: none !important;
|
|
1698
1716
|
}
|
|
1699
|
-
|
|
1700
|
-
|
|
1717
|
+
|
|
1718
|
+
.multicamera[data-multicamera] {
|
|
1719
|
+
float: right;
|
|
1720
|
+
margin-top: 4px;
|
|
1701
1721
|
position: relative;
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
}
|
|
1705
|
-
.media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] svg path {
|
|
1706
|
-
fill: white;
|
|
1707
|
-
}
|
|
1708
|
-
.media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume].muted svg {
|
|
1709
|
-
margin-left: 2px;
|
|
1722
|
+
margin-right: 20px;
|
|
1723
|
+
width: 20px;
|
|
1710
1724
|
}
|
|
1711
|
-
.
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1725
|
+
.multicamera[data-multicamera] button {
|
|
1726
|
+
background-color: transparent;
|
|
1727
|
+
color: #fff;
|
|
1728
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1729
|
+
-webkit-font-smoothing: antialiased;
|
|
1730
|
+
border: none;
|
|
1731
|
+
font-size: 14px;
|
|
1732
|
+
padding: 0;
|
|
1719
1733
|
}
|
|
1720
|
-
.
|
|
1721
|
-
height:
|
|
1722
|
-
border-radius: 100px;
|
|
1734
|
+
.multicamera[data-multicamera] button svg {
|
|
1735
|
+
height: 20px;
|
|
1723
1736
|
position: relative;
|
|
1724
|
-
top:
|
|
1725
|
-
background-color: #666;
|
|
1737
|
+
margin-top: 6px;
|
|
1726
1738
|
}
|
|
1727
|
-
.
|
|
1739
|
+
.multicamera[data-multicamera] button:hover {
|
|
1740
|
+
color: #c9c9c9;
|
|
1741
|
+
}
|
|
1742
|
+
.multicamera[data-multicamera] button.changing {
|
|
1743
|
+
animation: pulse 0.5s infinite alternate;
|
|
1744
|
+
}
|
|
1745
|
+
.multicamera[data-multicamera] button span.quality-arrow {
|
|
1746
|
+
width: 9px;
|
|
1747
|
+
height: 6px;
|
|
1748
|
+
margin-top: 11px;
|
|
1749
|
+
margin-left: 5px;
|
|
1750
|
+
}
|
|
1751
|
+
.multicamera[data-multicamera] > ul {
|
|
1752
|
+
padding: 6px 0;
|
|
1753
|
+
right: -24px;
|
|
1754
|
+
width: 245px;
|
|
1755
|
+
list-style-type: none;
|
|
1728
1756
|
position: absolute;
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
border-radius: 100px;
|
|
1734
|
-
background-color: white;
|
|
1735
|
-
transition: all 0.1s ease-out;
|
|
1757
|
+
bottom: 48px;
|
|
1758
|
+
border-radius: 4px;
|
|
1759
|
+
display: none;
|
|
1760
|
+
background-color: rgba(74, 74, 74, 0.9);
|
|
1736
1761
|
}
|
|
1737
|
-
.
|
|
1762
|
+
.multicamera[data-multicamera] > ul::after {
|
|
1763
|
+
content: "";
|
|
1738
1764
|
position: absolute;
|
|
1739
|
-
top:
|
|
1740
|
-
left:
|
|
1765
|
+
top: 100%;
|
|
1766
|
+
left: 85%;
|
|
1767
|
+
margin-left: -10px;
|
|
1741
1768
|
width: 0;
|
|
1742
|
-
height:
|
|
1743
|
-
|
|
1744
|
-
|
|
1769
|
+
height: 0;
|
|
1770
|
+
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
1771
|
+
border-right: 10px solid transparent;
|
|
1772
|
+
border-left: 10px solid transparent;
|
|
1745
1773
|
}
|
|
1746
|
-
.
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
top: 3px;
|
|
1750
|
-
margin-left: 3px;
|
|
1751
|
-
width: 16px;
|
|
1752
|
-
height: 16px;
|
|
1753
|
-
opacity: 1;
|
|
1754
|
-
transition: all 0.1s ease-out;
|
|
1774
|
+
.multicamera[data-multicamera] li {
|
|
1775
|
+
font-size: 10px;
|
|
1776
|
+
cursor: pointer;
|
|
1755
1777
|
}
|
|
1756
|
-
.
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
height: 7px;
|
|
1762
|
-
border-radius: 50%;
|
|
1763
|
-
background-color: white;
|
|
1778
|
+
.multicamera[data-multicamera] li .multicamera-item {
|
|
1779
|
+
display: flex;
|
|
1780
|
+
padding: 10px 0;
|
|
1781
|
+
justify-content: center;
|
|
1782
|
+
position: relative;
|
|
1764
1783
|
}
|
|
1765
|
-
.
|
|
1766
|
-
|
|
1767
|
-
width: 4px;
|
|
1768
|
-
padding-left: 2px;
|
|
1769
|
-
height: 12px;
|
|
1770
|
-
opacity: 0.5;
|
|
1771
|
-
box-shadow: inset 2px 0 0 white;
|
|
1772
|
-
transition: transform 0.2s ease-out;
|
|
1784
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
1785
|
+
pointer-events: none;
|
|
1773
1786
|
}
|
|
1774
|
-
.
|
|
1775
|
-
|
|
1776
|
-
opacity: 1;
|
|
1787
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
1788
|
+
opacity: 0.5;
|
|
1777
1789
|
}
|
|
1778
|
-
.
|
|
1779
|
-
|
|
1790
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
1791
|
+
opacity: 0.5;
|
|
1780
1792
|
}
|
|
1781
|
-
.
|
|
1782
|
-
|
|
1793
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
1794
|
+
background-color: rgba(0, 0, 0, 0);
|
|
1783
1795
|
}
|
|
1784
|
-
.
|
|
1785
|
-
|
|
1786
|
-
line-height: 26px;
|
|
1787
|
-
bottom: 52px;
|
|
1788
|
-
border-radius: 3px;
|
|
1789
|
-
background-color: rgba(74, 74, 74, 0.7);
|
|
1796
|
+
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
1797
|
+
background-color: rgba(0, 0, 0, 0.3);
|
|
1790
1798
|
}
|
|
1791
|
-
.
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1799
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
1800
|
+
width: 80px;
|
|
1801
|
+
height: 60px;
|
|
1795
1802
|
}
|
|
1796
|
-
.
|
|
1797
|
-
|
|
1798
|
-
|
|
1803
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
|
|
1804
|
+
width: 80px;
|
|
1805
|
+
height: 60px;
|
|
1799
1806
|
}
|
|
1800
|
-
.
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
align-items: baseline;
|
|
1805
|
-
gap: 4px;
|
|
1806
|
-
vertical-align: baseline;
|
|
1807
|
-
padding: 0;
|
|
1808
|
-
background-color: transparent;
|
|
1809
|
-
color: var(--gplayer-mc-text-color);
|
|
1810
|
-
-webkit-font-smoothing: antialiased;
|
|
1811
|
-
border: none;
|
|
1812
|
-
cursor: pointer;
|
|
1807
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
1808
|
+
width: 120px;
|
|
1809
|
+
text-align: left;
|
|
1810
|
+
margin-left: 15px;
|
|
1813
1811
|
}
|
|
1814
|
-
.
|
|
1812
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title,
|
|
1813
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1814
|
+
width: 120px;
|
|
1815
|
+
height: 20px;
|
|
1816
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1817
|
+
font-size: 14px;
|
|
1818
|
+
font-weight: normal;
|
|
1819
|
+
font-style: normal;
|
|
1820
|
+
font-stretch: normal;
|
|
1821
|
+
line-height: 1.43;
|
|
1822
|
+
letter-spacing: normal;
|
|
1823
|
+
text-align: left;
|
|
1824
|
+
color: #fff;
|
|
1815
1825
|
text-overflow: ellipsis;
|
|
1816
1826
|
overflow: hidden;
|
|
1817
|
-
white-space: nowrap;
|
|
1818
|
-
max-width: 100px;
|
|
1819
1827
|
}
|
|
1820
|
-
.
|
|
1821
|
-
|
|
1828
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1829
|
+
opacity: 0.6;
|
|
1822
1830
|
}
|
|
1823
|
-
.
|
|
1824
|
-
|
|
1831
|
+
.multicamera[data-multicamera] li a {
|
|
1832
|
+
color: #444;
|
|
1833
|
+
padding: 2px 10px;
|
|
1834
|
+
display: block;
|
|
1835
|
+
text-decoration: none;
|
|
1825
1836
|
}
|
|
1826
|
-
.
|
|
1827
|
-
|
|
1828
|
-
|
|
1837
|
+
.multicamera[data-multicamera] li a:hover {
|
|
1838
|
+
background-color: #555;
|
|
1839
|
+
color: white;
|
|
1829
1840
|
}
|
|
1830
|
-
.
|
|
1831
|
-
|
|
1841
|
+
.multicamera[data-multicamera] li a:hover a {
|
|
1842
|
+
color: white;
|
|
1843
|
+
text-decoration: none;
|
|
1832
1844
|
}
|
|
1833
|
-
.
|
|
1834
|
-
|
|
1835
|
-
|
|
1845
|
+
.multicamera[data-multicamera] li.current a {
|
|
1846
|
+
color: #f00;
|
|
1847
|
+
}.player-logo[data-logo] {
|
|
1836
1848
|
position: absolute;
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
border-radius: 4px;
|
|
1841
|
-
bottom: 40px;
|
|
1842
|
-
right: -2px;
|
|
1843
|
-
overflow-x: hidden;
|
|
1844
|
-
overflow-y: auto;
|
|
1845
|
-
padding: 5px 0;
|
|
1846
|
-
}
|
|
1847
|
-
.media-control-skin-1 .media-control-dd__popup li {
|
|
1848
|
-
font-size: var(--gplayer-mc-font-size-dropdown);
|
|
1849
|
-
text-align: right;
|
|
1850
|
-
height: 30px;
|
|
1849
|
+
z-index: 2;
|
|
1850
|
+
width: 100%;
|
|
1851
|
+
height: 100%;
|
|
1851
1852
|
}
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1853
|
+
|
|
1854
|
+
.clappr-logo {
|
|
1855
|
+
position: absolute;
|
|
1856
|
+
}.seek-time {
|
|
1857
|
+
position: absolute;
|
|
1857
1858
|
white-space: nowrap;
|
|
1858
|
-
|
|
1859
|
+
height: 20px;
|
|
1859
1860
|
line-height: 20px;
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
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;
|
|
1866
1867
|
}
|
|
1867
|
-
.
|
|
1868
|
-
|
|
1868
|
+
.seek-time.hidden {
|
|
1869
|
+
opacity: 0;
|
|
1869
1870
|
}
|
|
1870
|
-
.
|
|
1871
|
-
|
|
1872
|
-
|
|
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;
|
|
1873
1878
|
}
|
|
1874
|
-
.
|
|
1875
|
-
|
|
1876
|
-
|
|
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;
|
|
1877
1885
|
}
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
color: #fff;
|
|
1882
|
-
}
|
|
1883
|
-
50% {
|
|
1884
|
-
color: #ff0101;
|
|
1885
|
-
}
|
|
1886
|
-
100% {
|
|
1887
|
-
color: #B80000;
|
|
1888
|
-
}
|
|
1886
|
+
.seek-time .seek-time__duration::before {
|
|
1887
|
+
content: "|";
|
|
1888
|
+
margin-right: 7px;
|
|
1889
1889
|
}
|