@gcorevideo/player 2.23.3 → 2.24.1
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 +1 -1
- package/dist/index.css +630 -630
- package/dist/index.js +116 -4
- package/dist/player.d.ts +52 -4
- package/docs/api/player.cmcdconfig._constructor_.md +50 -0
- package/docs/api/player.cmcdconfig.bindevents.md +19 -0
- package/docs/api/player.cmcdconfig.exportids.md +21 -0
- package/docs/api/player.cmcdconfig.md +191 -0
- package/docs/api/player.cmcdconfig.name.md +15 -0
- package/docs/api/player.cmcdconfig.supportedversion.md +14 -0
- package/docs/api/player.cmcdconfig.version.md +14 -0
- package/docs/api/player.cmcdconfigpluginsettings.md +18 -0
- package/docs/api/player.md +22 -0
- package/lib/index.plugins.d.ts +1 -0
- package/lib/index.plugins.d.ts.map +1 -1
- package/lib/index.plugins.js +1 -0
- package/lib/plugins/big-mute-button/BigMuteButton.d.ts +1 -1
- package/lib/plugins/big-mute-button/BigMuteButton.d.ts.map +1 -1
- package/lib/plugins/big-mute-button/BigMuteButton.js +3 -2
- package/lib/plugins/cmcd-config/CmcdConfig.d.ts +45 -0
- package/lib/plugins/cmcd-config/CmcdConfig.d.ts.map +1 -0
- package/lib/plugins/cmcd-config/CmcdConfig.js +110 -0
- package/lib/plugins/cmcd-config/utils.d.ts +2 -0
- package/lib/plugins/cmcd-config/utils.d.ts.map +1 -0
- package/lib/plugins/cmcd-config/utils.js +3 -0
- package/lib/testUtils.d.ts +5 -1
- package/lib/testUtils.d.ts.map +1 -1
- package/lib/testUtils.js +4 -2
- package/package.json +1 -1
- package/src/index.plugins.ts +1 -0
- package/src/plugins/big-mute-button/BigMuteButton.ts +3 -2
- package/src/plugins/cmcd-config/CmcdConfig.ts +148 -0
- package/src/plugins/cmcd-config/__tests__/CmcdConfig.test.ts +174 -0
- package/src/plugins/cmcd-config/utils.ts +3 -0
- package/src/plugins/media-control/__tests__/MediaControl.test.ts +4 -3
- package/src/testUtils.ts +4 -2
- package/temp/player.api.json +243 -0
- package/tsconfig.tsbuildinfo +1 -1
package/dist/index.css
CHANGED
|
@@ -122,51 +122,114 @@
|
|
|
122
122
|
.gplayer-lite-btn::-moz-focus-inner {
|
|
123
123
|
border: 0;
|
|
124
124
|
padding: 0;
|
|
125
|
-
}.
|
|
126
|
-
|
|
127
|
-
|
|
125
|
+
}.dvr-controls[data-dvr] {
|
|
126
|
+
display: inline-block;
|
|
127
|
+
color: var(--player-dvr-color);
|
|
128
|
+
line-height: 32px;
|
|
129
|
+
font-size: 10px;
|
|
130
|
+
font-weight: bold;
|
|
131
|
+
margin-left: 6px;
|
|
132
|
+
height: 40px;
|
|
133
|
+
line-height: 40px;
|
|
134
|
+
margin-left: 0;
|
|
128
135
|
}
|
|
129
|
-
.
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
bottom: 52px;
|
|
133
|
-
width: 250px;
|
|
134
|
-
min-height: 48px;
|
|
135
|
-
z-index: 9999;
|
|
136
|
-
border-radius: 4px;
|
|
136
|
+
.dvr-controls[data-dvr] .live-info {
|
|
137
|
+
cursor: default;
|
|
138
|
+
text-transform: uppercase;
|
|
137
139
|
}
|
|
138
|
-
.
|
|
139
|
-
|
|
140
|
+
.dvr-controls[data-dvr] .live-info:before {
|
|
141
|
+
content: "";
|
|
142
|
+
display: inline-block;
|
|
143
|
+
position: relative;
|
|
144
|
+
width: 7px;
|
|
145
|
+
height: 7px;
|
|
146
|
+
border-radius: 3.5px;
|
|
147
|
+
margin-right: 3.5px;
|
|
148
|
+
background-color: var(--player-live-color);
|
|
140
149
|
}
|
|
141
|
-
.
|
|
142
|
-
|
|
143
|
-
text-align: left;
|
|
144
|
-
line-height: 22px;
|
|
145
|
-
padding: 5px 14px;
|
|
146
|
-
width: 250px;
|
|
147
|
-
font-size: 12px;
|
|
148
|
-
display: flex;
|
|
149
|
-
align-items: center;
|
|
150
|
-
justify-content: flex-start;
|
|
151
|
-
gap: 8px;
|
|
150
|
+
.dvr-controls[data-dvr] .live-info.disabled {
|
|
151
|
+
opacity: 0.3;
|
|
152
152
|
}
|
|
153
|
-
.
|
|
154
|
-
|
|
155
|
-
height: 24px;
|
|
153
|
+
.dvr-controls[data-dvr] .live-info.disabled:before {
|
|
154
|
+
background-color: var(--player-dvr-color);
|
|
156
155
|
}
|
|
157
|
-
.
|
|
158
|
-
|
|
156
|
+
.dvr-controls[data-dvr] .live-button {
|
|
157
|
+
cursor: pointer;
|
|
158
|
+
outline: none;
|
|
159
|
+
display: none;
|
|
160
|
+
border: 0;
|
|
161
|
+
color: var(--player-dvr-color);
|
|
162
|
+
background-color: transparent;
|
|
163
|
+
height: 32px;
|
|
164
|
+
padding: 0;
|
|
165
|
+
opacity: 0.7;
|
|
166
|
+
text-transform: uppercase;
|
|
167
|
+
transition: all 0.1s ease;
|
|
168
|
+
}
|
|
169
|
+
.dvr-controls[data-dvr] .live-button:before {
|
|
170
|
+
content: "";
|
|
159
171
|
display: inline-block;
|
|
172
|
+
position: relative;
|
|
173
|
+
width: 7px;
|
|
174
|
+
height: 7px;
|
|
175
|
+
border-radius: 3.5px;
|
|
176
|
+
margin-right: 3.5px;
|
|
177
|
+
background-color: var(--player-dvr-color);
|
|
160
178
|
}
|
|
161
|
-
.
|
|
162
|
-
|
|
179
|
+
.dvr-controls[data-dvr] .live-button:hover {
|
|
180
|
+
opacity: 1;
|
|
181
|
+
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
163
182
|
}
|
|
164
|
-
.
|
|
165
|
-
|
|
166
|
-
|
|
183
|
+
.dvr-controls[data-dvr] .live-info {
|
|
184
|
+
font-size: 14px;
|
|
185
|
+
letter-spacing: 0.8px;
|
|
186
|
+
font-weight: 500;
|
|
187
|
+
color: #fffffe;
|
|
188
|
+
margin-left: 21px;
|
|
167
189
|
}
|
|
168
|
-
.
|
|
169
|
-
|
|
190
|
+
.dvr-controls[data-dvr] .live-info::before {
|
|
191
|
+
width: 10px;
|
|
192
|
+
height: 10px;
|
|
193
|
+
border-radius: 50%;
|
|
194
|
+
margin-right: 8px;
|
|
195
|
+
background-color: #ed4f4a;
|
|
196
|
+
}
|
|
197
|
+
.dvr-controls[data-dvr] .live-button {
|
|
198
|
+
height: 40px;
|
|
199
|
+
opacity: 1;
|
|
200
|
+
font-size: 14px;
|
|
201
|
+
letter-spacing: 0.8px;
|
|
202
|
+
font-weight: 500;
|
|
203
|
+
margin-left: 20px;
|
|
204
|
+
}
|
|
205
|
+
.dvr-controls[data-dvr] .live-button::before {
|
|
206
|
+
width: 10px;
|
|
207
|
+
height: 10px;
|
|
208
|
+
border-radius: 50%;
|
|
209
|
+
margin-right: 8px;
|
|
210
|
+
background-color: #cacaca;
|
|
211
|
+
}@charset "UTF-8";
|
|
212
|
+
.media-control-clips {
|
|
213
|
+
display: flex;
|
|
214
|
+
gap: 6px;
|
|
215
|
+
}
|
|
216
|
+
.media-control-clips .media-clip-text {
|
|
217
|
+
text-overflow: ellipsis;
|
|
218
|
+
white-space: nowrap;
|
|
219
|
+
overflow: hidden;
|
|
220
|
+
display: inline-block;
|
|
221
|
+
text-overflow: ellipsis;
|
|
222
|
+
color: white;
|
|
223
|
+
cursor: default;
|
|
224
|
+
line-height: var(--bottom-panel);
|
|
225
|
+
position: relative;
|
|
226
|
+
}
|
|
227
|
+
.media-control-clips .media-clip-text::before {
|
|
228
|
+
content: "•";
|
|
229
|
+
padding-right: 6px;
|
|
230
|
+
}
|
|
231
|
+
.media-control-clips .media-clip-text {
|
|
232
|
+
max-width: 100px;
|
|
170
233
|
}*,
|
|
171
234
|
:focus,
|
|
172
235
|
:visited {
|
|
@@ -267,67 +330,6 @@
|
|
|
267
330
|
100% {
|
|
268
331
|
color: #B80000;
|
|
269
332
|
}
|
|
270
|
-
}*, :focus, :visited {
|
|
271
|
-
outline: none !important;
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
.gear-wrapper .go-back {
|
|
275
|
-
font-weight: 600;
|
|
276
|
-
font-size: 14px;
|
|
277
|
-
line-height: 20px;
|
|
278
|
-
width: 100%;
|
|
279
|
-
text-align: left;
|
|
280
|
-
padding: 12px;
|
|
281
|
-
}
|
|
282
|
-
.gear-wrapper .go-back .arrow-left-icon {
|
|
283
|
-
float: left;
|
|
284
|
-
padding-top: 2px;
|
|
285
|
-
padding-right: 2px;
|
|
286
|
-
}
|
|
287
|
-
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
288
|
-
height: 16px;
|
|
289
|
-
}
|
|
290
|
-
.gear-wrapper ul.gear-sub-menu {
|
|
291
|
-
width: 100%;
|
|
292
|
-
list-style-type: none;
|
|
293
|
-
min-width: 60px;
|
|
294
|
-
border-top: 2px solid rgb(36, 36, 36);
|
|
295
|
-
}
|
|
296
|
-
.gear-wrapper ul.gear-sub-menu li {
|
|
297
|
-
font-size: 12px;
|
|
298
|
-
text-align: left;
|
|
299
|
-
}
|
|
300
|
-
.gear-wrapper ul.gear-sub-menu li[data-title] {
|
|
301
|
-
background-color: #c3c2c2;
|
|
302
|
-
padding: 5px;
|
|
303
|
-
}
|
|
304
|
-
.gear-wrapper ul.gear-sub-menu li a {
|
|
305
|
-
display: block;
|
|
306
|
-
text-decoration: none;
|
|
307
|
-
height: 32px;
|
|
308
|
-
padding: 5px 10px;
|
|
309
|
-
line-height: 22px;
|
|
310
|
-
color: #fffffe;
|
|
311
|
-
}
|
|
312
|
-
.gear-wrapper ul.gear-sub-menu li a:hover {
|
|
313
|
-
color: white;
|
|
314
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
315
|
-
}
|
|
316
|
-
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
317
|
-
color: white;
|
|
318
|
-
text-decoration: none;
|
|
319
|
-
}
|
|
320
|
-
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
321
|
-
width: 30px;
|
|
322
|
-
height: 20px;
|
|
323
|
-
float: left;
|
|
324
|
-
display: block;
|
|
325
|
-
}
|
|
326
|
-
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
327
|
-
display: none;
|
|
328
|
-
}
|
|
329
|
-
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
330
|
-
display: inline;
|
|
331
333
|
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
332
334
|
color: #CCCACA;
|
|
333
335
|
position: absolute;
|
|
@@ -411,136 +413,28 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
411
413
|
}
|
|
412
414
|
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
413
415
|
fill: #151515 !important;
|
|
414
|
-
}
|
|
415
|
-
|
|
416
|
-
display: flex;
|
|
417
|
-
gap: 6px;
|
|
416
|
+
}[data-player] {
|
|
417
|
+
--bottom-panel: 40px;
|
|
418
418
|
}
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
overflow: hidden;
|
|
423
|
-
display: inline-block;
|
|
424
|
-
text-overflow: ellipsis;
|
|
425
|
-
color: white;
|
|
426
|
-
cursor: default;
|
|
427
|
-
line-height: var(--bottom-panel);
|
|
428
|
-
position: relative;
|
|
419
|
+
|
|
420
|
+
.container .media-control-notransition {
|
|
421
|
+
transition: none !important;
|
|
429
422
|
}
|
|
430
|
-
.
|
|
431
|
-
|
|
432
|
-
padding-right: 6px;
|
|
423
|
+
.container .player-poster .play-wrapper {
|
|
424
|
+
opacity: 1;
|
|
433
425
|
}
|
|
434
|
-
.
|
|
435
|
-
|
|
436
|
-
}.dvr-controls[data-dvr] {
|
|
437
|
-
display: inline-block;
|
|
438
|
-
color: var(--player-dvr-color);
|
|
439
|
-
line-height: 32px;
|
|
440
|
-
font-size: 10px;
|
|
441
|
-
font-weight: bold;
|
|
442
|
-
margin-left: 6px;
|
|
443
|
-
height: 40px;
|
|
444
|
-
line-height: 40px;
|
|
445
|
-
margin-left: 0;
|
|
426
|
+
.container.crop-video [data-html5-video] {
|
|
427
|
+
object-fit: cover;
|
|
446
428
|
}
|
|
447
|
-
.
|
|
448
|
-
|
|
449
|
-
|
|
429
|
+
.container .cc-line {
|
|
430
|
+
position: absolute;
|
|
431
|
+
bottom: calc(var(--bottom-panel) + 5px);
|
|
432
|
+
width: 100%;
|
|
450
433
|
}
|
|
451
|
-
.
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
width: 7px;
|
|
456
|
-
height: 7px;
|
|
457
|
-
border-radius: 3.5px;
|
|
458
|
-
margin-right: 3.5px;
|
|
459
|
-
background-color: var(--player-live-color);
|
|
460
|
-
}
|
|
461
|
-
.dvr-controls[data-dvr] .live-info.disabled {
|
|
462
|
-
opacity: 0.3;
|
|
463
|
-
}
|
|
464
|
-
.dvr-controls[data-dvr] .live-info.disabled:before {
|
|
465
|
-
background-color: var(--player-dvr-color);
|
|
466
|
-
}
|
|
467
|
-
.dvr-controls[data-dvr] .live-button {
|
|
468
|
-
cursor: pointer;
|
|
469
|
-
outline: none;
|
|
470
|
-
display: none;
|
|
471
|
-
border: 0;
|
|
472
|
-
color: var(--player-dvr-color);
|
|
473
|
-
background-color: transparent;
|
|
474
|
-
height: 32px;
|
|
475
|
-
padding: 0;
|
|
476
|
-
opacity: 0.7;
|
|
477
|
-
text-transform: uppercase;
|
|
478
|
-
transition: all 0.1s ease;
|
|
479
|
-
}
|
|
480
|
-
.dvr-controls[data-dvr] .live-button:before {
|
|
481
|
-
content: "";
|
|
482
|
-
display: inline-block;
|
|
483
|
-
position: relative;
|
|
484
|
-
width: 7px;
|
|
485
|
-
height: 7px;
|
|
486
|
-
border-radius: 3.5px;
|
|
487
|
-
margin-right: 3.5px;
|
|
488
|
-
background-color: var(--player-dvr-color);
|
|
489
|
-
}
|
|
490
|
-
.dvr-controls[data-dvr] .live-button:hover {
|
|
491
|
-
opacity: 1;
|
|
492
|
-
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
493
|
-
}
|
|
494
|
-
.dvr-controls[data-dvr] .live-info {
|
|
495
|
-
font-size: 14px;
|
|
496
|
-
letter-spacing: 0.8px;
|
|
497
|
-
font-weight: 500;
|
|
498
|
-
color: #fffffe;
|
|
499
|
-
margin-left: 21px;
|
|
500
|
-
}
|
|
501
|
-
.dvr-controls[data-dvr] .live-info::before {
|
|
502
|
-
width: 10px;
|
|
503
|
-
height: 10px;
|
|
504
|
-
border-radius: 50%;
|
|
505
|
-
margin-right: 8px;
|
|
506
|
-
background-color: #ed4f4a;
|
|
507
|
-
}
|
|
508
|
-
.dvr-controls[data-dvr] .live-button {
|
|
509
|
-
height: 40px;
|
|
510
|
-
opacity: 1;
|
|
511
|
-
font-size: 14px;
|
|
512
|
-
letter-spacing: 0.8px;
|
|
513
|
-
font-weight: 500;
|
|
514
|
-
margin-left: 20px;
|
|
515
|
-
}
|
|
516
|
-
.dvr-controls[data-dvr] .live-button::before {
|
|
517
|
-
width: 10px;
|
|
518
|
-
height: 10px;
|
|
519
|
-
border-radius: 50%;
|
|
520
|
-
margin-right: 8px;
|
|
521
|
-
background-color: #cacaca;
|
|
522
|
-
}[data-player] {
|
|
523
|
-
--bottom-panel: 40px;
|
|
524
|
-
}
|
|
525
|
-
|
|
526
|
-
.container .media-control-notransition {
|
|
527
|
-
transition: none !important;
|
|
528
|
-
}
|
|
529
|
-
.container .player-poster .play-wrapper {
|
|
530
|
-
opacity: 1;
|
|
531
|
-
}
|
|
532
|
-
.container.crop-video [data-html5-video] {
|
|
533
|
-
object-fit: cover;
|
|
534
|
-
}
|
|
535
|
-
.container .cc-line {
|
|
536
|
-
position: absolute;
|
|
537
|
-
bottom: calc(var(--bottom-panel) + 5px);
|
|
538
|
-
width: 100%;
|
|
539
|
-
}
|
|
540
|
-
.container .cc-line p {
|
|
541
|
-
width: auto;
|
|
542
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
543
|
-
color: white;
|
|
434
|
+
.container .cc-line p {
|
|
435
|
+
width: auto;
|
|
436
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
437
|
+
color: white;
|
|
544
438
|
display: inline-block;
|
|
545
439
|
}
|
|
546
440
|
.container .player-poster .circle-poster {
|
|
@@ -1166,363 +1060,116 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1166
1060
|
}
|
|
1167
1061
|
.player-poster .play-wrapper svg path {
|
|
1168
1062
|
fill: #fff;
|
|
1169
|
-
}
|
|
1170
|
-
|
|
1063
|
+
}:root {
|
|
1064
|
+
--primary-background-color: #000;
|
|
1065
|
+
--secondary-background-color: #262626;
|
|
1066
|
+
--primary-text-color: #fff;
|
|
1067
|
+
--secondary-text-color: #fff4f2;
|
|
1068
|
+
--hover-text-color: #f9b090;
|
|
1069
|
+
--speedtest-red: #df564d;
|
|
1070
|
+
--speedtest-orange: #df934d;
|
|
1071
|
+
--speedtest-yellow: #dfd04d;
|
|
1072
|
+
--speedtest-light-green: #c2df4d;
|
|
1073
|
+
--speedtest-green: #73df4d;
|
|
1171
1074
|
}
|
|
1172
1075
|
|
|
1173
|
-
.
|
|
1076
|
+
.clappr-nerd-stats {
|
|
1077
|
+
cursor: default;
|
|
1078
|
+
}
|
|
1079
|
+
.clappr-nerd-stats .stats-box {
|
|
1174
1080
|
position: absolute;
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1081
|
+
display: inline-block;
|
|
1082
|
+
bottom: 52px;
|
|
1083
|
+
right: 0;
|
|
1084
|
+
top: 0;
|
|
1085
|
+
left: 0;
|
|
1086
|
+
bottom: 0;
|
|
1087
|
+
padding: 0 10px 12px;
|
|
1088
|
+
margin: 0;
|
|
1089
|
+
line-height: 20px;
|
|
1090
|
+
font-size: 12px;
|
|
1091
|
+
font-weight: 500;
|
|
1092
|
+
background: var(--primary-background-color);
|
|
1093
|
+
color: #fff;
|
|
1094
|
+
z-index: 20000;
|
|
1095
|
+
overflow: auto;
|
|
1096
|
+
max-width: 100%;
|
|
1180
1097
|
}
|
|
1181
|
-
.
|
|
1098
|
+
.clappr-nerd-stats .stats-box-top {
|
|
1099
|
+
position: absolute;
|
|
1100
|
+
top: 0;
|
|
1101
|
+
left: 0;
|
|
1102
|
+
z-index: 9999;
|
|
1182
1103
|
width: 100%;
|
|
1183
|
-
height:
|
|
1184
|
-
|
|
1185
|
-
justify-content: space-between;
|
|
1104
|
+
height: 32px;
|
|
1105
|
+
background: var(--primary-background-color);
|
|
1186
1106
|
}
|
|
1187
|
-
.
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1107
|
+
.clappr-nerd-stats .stats-box-top .close-button {
|
|
1108
|
+
position: absolute;
|
|
1109
|
+
right: 12px;
|
|
1110
|
+
top: 10px;
|
|
1111
|
+
display: block;
|
|
1112
|
+
width: 12px;
|
|
1113
|
+
height: 12px;
|
|
1114
|
+
}
|
|
1115
|
+
.clappr-nerd-stats .stats-box-top .close-button svg path {
|
|
1116
|
+
fill: var(--primary-text-color);
|
|
1117
|
+
}
|
|
1118
|
+
.clappr-nerd-stats .stats-box-top .close-button:hover svg path {
|
|
1119
|
+
fill: var(--hover-text-color);
|
|
1120
|
+
}
|
|
1121
|
+
.clappr-nerd-stats .stats-box-main {
|
|
1122
|
+
overflow: hidden;
|
|
1123
|
+
margin-top: 44px;
|
|
1192
1124
|
display: flex;
|
|
1125
|
+
flex-wrap: wrap;
|
|
1193
1126
|
}
|
|
1194
|
-
.
|
|
1195
|
-
|
|
1127
|
+
.clappr-nerd-stats .stats-box-main ul {
|
|
1128
|
+
flex: 0 1 1fr;
|
|
1129
|
+
min-width: 200px;
|
|
1196
1130
|
}
|
|
1197
|
-
.
|
|
1198
|
-
|
|
1199
|
-
}.context-menu {
|
|
1200
|
-
z-index: 999;
|
|
1201
|
-
position: absolute;
|
|
1202
|
-
top: 0;
|
|
1203
|
-
left: 0;
|
|
1204
|
-
text-align: center;
|
|
1131
|
+
.clappr-nerd-stats .stats-box.wide {
|
|
1132
|
+
width: 820px;
|
|
1205
1133
|
}
|
|
1206
|
-
.
|
|
1207
|
-
font-family: "Proxima Nova", sans-serif;
|
|
1208
|
-
font-size: 12px;
|
|
1209
|
-
line-height: 12px;
|
|
1134
|
+
.clappr-nerd-stats .stats-box ul, .clappr-nerd-stats .stats-box li {
|
|
1210
1135
|
list-style-type: none;
|
|
1211
|
-
text-align: left;
|
|
1212
|
-
padding: 5px;
|
|
1213
|
-
margin-left: auto;
|
|
1214
|
-
margin-right: auto;
|
|
1215
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
1216
|
-
border: 1px solid #666;
|
|
1217
|
-
border-radius: 4px;
|
|
1218
1136
|
}
|
|
1219
|
-
.
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
display: flex;
|
|
1225
|
-
gap: 8px;
|
|
1226
|
-
align-items: center;
|
|
1227
|
-
justify-content: center;
|
|
1228
|
-
cursor: pointer;
|
|
1229
|
-
padding: 5px;
|
|
1230
|
-
width: 100%;
|
|
1137
|
+
.clappr-nerd-stats .stats-box ul div, .clappr-nerd-stats .stats-box li div {
|
|
1138
|
+
padding-left: 2px;
|
|
1139
|
+
padding-right: 2px;
|
|
1140
|
+
background: var(--primary-background-color);
|
|
1141
|
+
gap: 10px;
|
|
1231
1142
|
}
|
|
1232
|
-
.
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
outline: none !important;
|
|
1143
|
+
.clappr-nerd-stats .stats-box ul {
|
|
1144
|
+
padding: 5px;
|
|
1145
|
+
width: 200px;
|
|
1146
|
+
flex: 0 1 50%;
|
|
1237
1147
|
}
|
|
1238
|
-
|
|
1239
|
-
.multicamera[data-multicamera] {
|
|
1240
|
-
float: right;
|
|
1241
|
-
margin-top: 4px;
|
|
1148
|
+
.clappr-nerd-stats .stats-box ul li {
|
|
1242
1149
|
position: relative;
|
|
1243
|
-
|
|
1244
|
-
|
|
1150
|
+
padding: 0 5px;
|
|
1151
|
+
text-align: left;
|
|
1245
1152
|
}
|
|
1246
|
-
.
|
|
1247
|
-
background-color: transparent;
|
|
1248
|
-
color: #fff;
|
|
1249
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1250
|
-
-webkit-font-smoothing: antialiased;
|
|
1251
|
-
border: none;
|
|
1252
|
-
font-size: 14px;
|
|
1153
|
+
.clappr-nerd-stats .stats-box ul li.canvas-wrapper {
|
|
1253
1154
|
padding: 0;
|
|
1254
1155
|
}
|
|
1255
|
-
.
|
|
1256
|
-
|
|
1257
|
-
position: relative;
|
|
1258
|
-
margin-top: 6px;
|
|
1156
|
+
.clappr-nerd-stats .stats-box ul li.canvas-wrapper canvas {
|
|
1157
|
+
width: 100%;
|
|
1259
1158
|
}
|
|
1260
|
-
.
|
|
1261
|
-
|
|
1159
|
+
.clappr-nerd-stats .stats-box ul li:nth-child(2n) {
|
|
1160
|
+
background: var(--secondary-background-color);
|
|
1262
1161
|
}
|
|
1263
|
-
.
|
|
1264
|
-
|
|
1162
|
+
.clappr-nerd-stats .stats-box ul li:nth-child(2n) div {
|
|
1163
|
+
background: var(--secondary-background-color);
|
|
1265
1164
|
}
|
|
1266
|
-
.
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1165
|
+
.clappr-nerd-stats .stats-box ul li.title {
|
|
1166
|
+
text-align: center;
|
|
1167
|
+
font-weight: bold;
|
|
1168
|
+
padding-bottom: 4px;
|
|
1169
|
+
font-size: 14px;
|
|
1271
1170
|
}
|
|
1272
|
-
.
|
|
1273
|
-
|
|
1274
|
-
right: -24px;
|
|
1275
|
-
width: 245px;
|
|
1276
|
-
list-style-type: none;
|
|
1277
|
-
position: absolute;
|
|
1278
|
-
bottom: 48px;
|
|
1279
|
-
border-radius: 4px;
|
|
1280
|
-
display: none;
|
|
1281
|
-
background-color: rgba(74, 74, 74, 0.9);
|
|
1282
|
-
}
|
|
1283
|
-
.multicamera[data-multicamera] > ul::after {
|
|
1284
|
-
content: "";
|
|
1285
|
-
position: absolute;
|
|
1286
|
-
top: 100%;
|
|
1287
|
-
left: 85%;
|
|
1288
|
-
margin-left: -10px;
|
|
1289
|
-
width: 0;
|
|
1290
|
-
height: 0;
|
|
1291
|
-
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
1292
|
-
border-right: 10px solid transparent;
|
|
1293
|
-
border-left: 10px solid transparent;
|
|
1294
|
-
}
|
|
1295
|
-
.multicamera[data-multicamera] li {
|
|
1296
|
-
font-size: 10px;
|
|
1297
|
-
cursor: pointer;
|
|
1298
|
-
}
|
|
1299
|
-
.multicamera[data-multicamera] li .multicamera-item {
|
|
1300
|
-
display: flex;
|
|
1301
|
-
padding: 10px 0;
|
|
1302
|
-
justify-content: center;
|
|
1303
|
-
position: relative;
|
|
1304
|
-
}
|
|
1305
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
1306
|
-
pointer-events: none;
|
|
1307
|
-
}
|
|
1308
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
1309
|
-
opacity: 0.5;
|
|
1310
|
-
}
|
|
1311
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
1312
|
-
opacity: 0.5;
|
|
1313
|
-
}
|
|
1314
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
1315
|
-
background-color: rgba(0, 0, 0, 0);
|
|
1316
|
-
}
|
|
1317
|
-
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
1318
|
-
background-color: rgba(0, 0, 0, 0.3);
|
|
1319
|
-
}
|
|
1320
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
1321
|
-
width: 80px;
|
|
1322
|
-
height: 60px;
|
|
1323
|
-
}
|
|
1324
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
|
|
1325
|
-
width: 80px;
|
|
1326
|
-
height: 60px;
|
|
1327
|
-
}
|
|
1328
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
1329
|
-
width: 120px;
|
|
1330
|
-
text-align: left;
|
|
1331
|
-
margin-left: 15px;
|
|
1332
|
-
}
|
|
1333
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1334
|
-
width: 120px;
|
|
1335
|
-
height: 20px;
|
|
1336
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1337
|
-
font-size: 14px;
|
|
1338
|
-
font-weight: normal;
|
|
1339
|
-
font-style: normal;
|
|
1340
|
-
font-stretch: normal;
|
|
1341
|
-
line-height: 1.43;
|
|
1342
|
-
letter-spacing: normal;
|
|
1343
|
-
text-align: left;
|
|
1344
|
-
color: #fff;
|
|
1345
|
-
text-overflow: ellipsis;
|
|
1346
|
-
overflow: hidden;
|
|
1347
|
-
}
|
|
1348
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1349
|
-
opacity: 0.6;
|
|
1350
|
-
}
|
|
1351
|
-
.multicamera[data-multicamera] li[data-title] {
|
|
1352
|
-
background-color: #c3c2c2;
|
|
1353
|
-
padding: 5px;
|
|
1354
|
-
}
|
|
1355
|
-
.multicamera[data-multicamera] li a {
|
|
1356
|
-
color: #444;
|
|
1357
|
-
padding: 2px 10px;
|
|
1358
|
-
display: block;
|
|
1359
|
-
text-decoration: none;
|
|
1360
|
-
}
|
|
1361
|
-
.multicamera[data-multicamera] li a:hover {
|
|
1362
|
-
background-color: #555;
|
|
1363
|
-
color: white;
|
|
1364
|
-
}
|
|
1365
|
-
.multicamera[data-multicamera] li a:hover a {
|
|
1366
|
-
color: white;
|
|
1367
|
-
text-decoration: none;
|
|
1368
|
-
}
|
|
1369
|
-
.multicamera[data-multicamera] li.current a {
|
|
1370
|
-
color: #f00;
|
|
1371
|
-
}
|
|
1372
|
-
|
|
1373
|
-
@keyframes pulse {
|
|
1374
|
-
0% {
|
|
1375
|
-
color: #fff;
|
|
1376
|
-
}
|
|
1377
|
-
50% {
|
|
1378
|
-
color: #ff0101;
|
|
1379
|
-
}
|
|
1380
|
-
100% {
|
|
1381
|
-
color: #B80000;
|
|
1382
|
-
}
|
|
1383
|
-
}.seek-time {
|
|
1384
|
-
position: absolute;
|
|
1385
|
-
white-space: nowrap;
|
|
1386
|
-
height: 20px;
|
|
1387
|
-
line-height: 20px;
|
|
1388
|
-
font-size: 0;
|
|
1389
|
-
left: -100%;
|
|
1390
|
-
bottom: 55px;
|
|
1391
|
-
background-color: rgba(2, 2, 2, 0.5);
|
|
1392
|
-
z-index: 9999;
|
|
1393
|
-
transition: opacity 0.1s ease;
|
|
1394
|
-
}
|
|
1395
|
-
.seek-time.hidden {
|
|
1396
|
-
opacity: 0;
|
|
1397
|
-
}
|
|
1398
|
-
.seek-time .seek-time__pos {
|
|
1399
|
-
display: inline-block;
|
|
1400
|
-
color: white;
|
|
1401
|
-
font-size: 10px;
|
|
1402
|
-
padding-left: 7px;
|
|
1403
|
-
padding-right: 7px;
|
|
1404
|
-
vertical-align: top;
|
|
1405
|
-
}
|
|
1406
|
-
.seek-time .seek-time__duration {
|
|
1407
|
-
display: inline-block;
|
|
1408
|
-
color: rgba(255, 255, 255, 0.5);
|
|
1409
|
-
font-size: 10px;
|
|
1410
|
-
padding-right: 7px;
|
|
1411
|
-
vertical-align: top;
|
|
1412
|
-
}
|
|
1413
|
-
.seek-time .seek-time__duration::before {
|
|
1414
|
-
content: "|";
|
|
1415
|
-
margin-right: 7px;
|
|
1416
|
-
}:root {
|
|
1417
|
-
--primary-background-color: #000;
|
|
1418
|
-
--secondary-background-color: #262626;
|
|
1419
|
-
--primary-text-color: #fff;
|
|
1420
|
-
--secondary-text-color: #fff4f2;
|
|
1421
|
-
--hover-text-color: #f9b090;
|
|
1422
|
-
--speedtest-red: #df564d;
|
|
1423
|
-
--speedtest-orange: #df934d;
|
|
1424
|
-
--speedtest-yellow: #dfd04d;
|
|
1425
|
-
--speedtest-light-green: #c2df4d;
|
|
1426
|
-
--speedtest-green: #73df4d;
|
|
1427
|
-
}
|
|
1428
|
-
|
|
1429
|
-
.clappr-nerd-stats {
|
|
1430
|
-
cursor: default;
|
|
1431
|
-
}
|
|
1432
|
-
.clappr-nerd-stats .stats-box {
|
|
1433
|
-
position: absolute;
|
|
1434
|
-
display: inline-block;
|
|
1435
|
-
bottom: 52px;
|
|
1436
|
-
right: 0;
|
|
1437
|
-
top: 0;
|
|
1438
|
-
left: 0;
|
|
1439
|
-
bottom: 0;
|
|
1440
|
-
padding: 0 10px 12px;
|
|
1441
|
-
margin: 0;
|
|
1442
|
-
line-height: 20px;
|
|
1443
|
-
font-size: 12px;
|
|
1444
|
-
font-weight: 500;
|
|
1445
|
-
background: var(--primary-background-color);
|
|
1446
|
-
color: #fff;
|
|
1447
|
-
z-index: 20000;
|
|
1448
|
-
overflow: auto;
|
|
1449
|
-
max-width: 100%;
|
|
1450
|
-
}
|
|
1451
|
-
.clappr-nerd-stats .stats-box-top {
|
|
1452
|
-
position: absolute;
|
|
1453
|
-
top: 0;
|
|
1454
|
-
left: 0;
|
|
1455
|
-
z-index: 9999;
|
|
1456
|
-
width: 100%;
|
|
1457
|
-
height: 32px;
|
|
1458
|
-
background: var(--primary-background-color);
|
|
1459
|
-
}
|
|
1460
|
-
.clappr-nerd-stats .stats-box-top .close-button {
|
|
1461
|
-
position: absolute;
|
|
1462
|
-
right: 12px;
|
|
1463
|
-
top: 10px;
|
|
1464
|
-
display: block;
|
|
1465
|
-
width: 12px;
|
|
1466
|
-
height: 12px;
|
|
1467
|
-
}
|
|
1468
|
-
.clappr-nerd-stats .stats-box-top .close-button svg path {
|
|
1469
|
-
fill: var(--primary-text-color);
|
|
1470
|
-
}
|
|
1471
|
-
.clappr-nerd-stats .stats-box-top .close-button:hover svg path {
|
|
1472
|
-
fill: var(--hover-text-color);
|
|
1473
|
-
}
|
|
1474
|
-
.clappr-nerd-stats .stats-box-main {
|
|
1475
|
-
overflow: hidden;
|
|
1476
|
-
margin-top: 44px;
|
|
1477
|
-
display: flex;
|
|
1478
|
-
flex-wrap: wrap;
|
|
1479
|
-
}
|
|
1480
|
-
.clappr-nerd-stats .stats-box-main ul {
|
|
1481
|
-
flex: 0 1 1fr;
|
|
1482
|
-
min-width: 200px;
|
|
1483
|
-
}
|
|
1484
|
-
.clappr-nerd-stats .stats-box.wide {
|
|
1485
|
-
width: 820px;
|
|
1486
|
-
}
|
|
1487
|
-
.clappr-nerd-stats .stats-box ul, .clappr-nerd-stats .stats-box li {
|
|
1488
|
-
list-style-type: none;
|
|
1489
|
-
}
|
|
1490
|
-
.clappr-nerd-stats .stats-box ul div, .clappr-nerd-stats .stats-box li div {
|
|
1491
|
-
padding-left: 2px;
|
|
1492
|
-
padding-right: 2px;
|
|
1493
|
-
background: var(--primary-background-color);
|
|
1494
|
-
gap: 10px;
|
|
1495
|
-
}
|
|
1496
|
-
.clappr-nerd-stats .stats-box ul {
|
|
1497
|
-
padding: 5px;
|
|
1498
|
-
width: 200px;
|
|
1499
|
-
flex: 0 1 50%;
|
|
1500
|
-
}
|
|
1501
|
-
.clappr-nerd-stats .stats-box ul li {
|
|
1502
|
-
position: relative;
|
|
1503
|
-
padding: 0 5px;
|
|
1504
|
-
text-align: left;
|
|
1505
|
-
}
|
|
1506
|
-
.clappr-nerd-stats .stats-box ul li.canvas-wrapper {
|
|
1507
|
-
padding: 0;
|
|
1508
|
-
}
|
|
1509
|
-
.clappr-nerd-stats .stats-box ul li.canvas-wrapper canvas {
|
|
1510
|
-
width: 100%;
|
|
1511
|
-
}
|
|
1512
|
-
.clappr-nerd-stats .stats-box ul li:nth-child(2n) {
|
|
1513
|
-
background: var(--secondary-background-color);
|
|
1514
|
-
}
|
|
1515
|
-
.clappr-nerd-stats .stats-box ul li:nth-child(2n) div {
|
|
1516
|
-
background: var(--secondary-background-color);
|
|
1517
|
-
}
|
|
1518
|
-
.clappr-nerd-stats .stats-box ul li.title {
|
|
1519
|
-
text-align: center;
|
|
1520
|
-
font-weight: bold;
|
|
1521
|
-
padding-bottom: 4px;
|
|
1522
|
-
font-size: 14px;
|
|
1523
|
-
}
|
|
1524
|
-
.clappr-nerd-stats .stats-box ul li div {
|
|
1525
|
-
margin: 0;
|
|
1171
|
+
.clappr-nerd-stats .stats-box ul li div {
|
|
1172
|
+
margin: 0;
|
|
1526
1173
|
position: absolute;
|
|
1527
1174
|
right: 0;
|
|
1528
1175
|
top: 0;
|
|
@@ -1777,58 +1424,142 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1777
1424
|
.fullscreen .clappr-nerd-stats .stats-box {
|
|
1778
1425
|
top: unset;
|
|
1779
1426
|
}
|
|
1780
|
-
}*,
|
|
1781
|
-
:focus,
|
|
1782
|
-
:visited {
|
|
1427
|
+
}*, :focus, :visited {
|
|
1783
1428
|
outline: none !important;
|
|
1784
1429
|
}
|
|
1785
1430
|
|
|
1786
|
-
.
|
|
1787
|
-
|
|
1788
|
-
|
|
1431
|
+
.multicamera[data-multicamera] {
|
|
1432
|
+
float: right;
|
|
1433
|
+
margin-top: 4px;
|
|
1434
|
+
position: relative;
|
|
1435
|
+
margin-right: 20px;
|
|
1436
|
+
width: 20px;
|
|
1789
1437
|
}
|
|
1790
|
-
.
|
|
1438
|
+
.multicamera[data-multicamera] button {
|
|
1791
1439
|
background-color: transparent;
|
|
1792
1440
|
color: #fff;
|
|
1441
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1793
1442
|
-webkit-font-smoothing: antialiased;
|
|
1794
1443
|
border: none;
|
|
1795
|
-
|
|
1444
|
+
font-size: 14px;
|
|
1445
|
+
padding: 0;
|
|
1796
1446
|
}
|
|
1797
|
-
.
|
|
1798
|
-
|
|
1447
|
+
.multicamera[data-multicamera] button svg {
|
|
1448
|
+
height: 20px;
|
|
1449
|
+
position: relative;
|
|
1450
|
+
margin-top: 6px;
|
|
1799
1451
|
}
|
|
1800
|
-
.
|
|
1452
|
+
.multicamera[data-multicamera] button:hover {
|
|
1801
1453
|
color: #c9c9c9;
|
|
1802
1454
|
}
|
|
1803
|
-
.
|
|
1455
|
+
.multicamera[data-multicamera] button.changing {
|
|
1804
1456
|
animation: pulse 0.5s infinite alternate;
|
|
1805
1457
|
}
|
|
1806
|
-
.
|
|
1807
|
-
width:
|
|
1458
|
+
.multicamera[data-multicamera] button span.quality-arrow {
|
|
1459
|
+
width: 9px;
|
|
1460
|
+
height: 6px;
|
|
1461
|
+
margin-top: 11px;
|
|
1462
|
+
margin-left: 5px;
|
|
1463
|
+
}
|
|
1464
|
+
.multicamera[data-multicamera] > ul {
|
|
1465
|
+
padding: 6px 0;
|
|
1466
|
+
right: -24px;
|
|
1467
|
+
width: 245px;
|
|
1808
1468
|
list-style-type: none;
|
|
1809
1469
|
position: absolute;
|
|
1810
|
-
bottom:
|
|
1811
|
-
border:
|
|
1812
|
-
|
|
1813
|
-
|
|
1470
|
+
bottom: 48px;
|
|
1471
|
+
border-radius: 4px;
|
|
1472
|
+
display: none;
|
|
1473
|
+
background-color: rgba(74, 74, 74, 0.9);
|
|
1814
1474
|
}
|
|
1815
|
-
.
|
|
1475
|
+
.multicamera[data-multicamera] > ul::after {
|
|
1476
|
+
content: "";
|
|
1477
|
+
position: absolute;
|
|
1478
|
+
top: 100%;
|
|
1479
|
+
left: 85%;
|
|
1480
|
+
margin-left: -10px;
|
|
1481
|
+
width: 0;
|
|
1482
|
+
height: 0;
|
|
1483
|
+
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
1484
|
+
border-right: 10px solid transparent;
|
|
1485
|
+
border-left: 10px solid transparent;
|
|
1486
|
+
}
|
|
1487
|
+
.multicamera[data-multicamera] li {
|
|
1488
|
+
font-size: 10px;
|
|
1489
|
+
cursor: pointer;
|
|
1490
|
+
}
|
|
1491
|
+
.multicamera[data-multicamera] li .multicamera-item {
|
|
1492
|
+
display: flex;
|
|
1493
|
+
padding: 10px 0;
|
|
1494
|
+
justify-content: center;
|
|
1495
|
+
position: relative;
|
|
1496
|
+
}
|
|
1497
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
1498
|
+
pointer-events: none;
|
|
1499
|
+
}
|
|
1500
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
1501
|
+
opacity: 0.5;
|
|
1502
|
+
}
|
|
1503
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
1504
|
+
opacity: 0.5;
|
|
1505
|
+
}
|
|
1506
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
1507
|
+
background-color: rgba(0, 0, 0, 0);
|
|
1508
|
+
}
|
|
1509
|
+
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
1510
|
+
background-color: rgba(0, 0, 0, 0.3);
|
|
1511
|
+
}
|
|
1512
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
1513
|
+
width: 80px;
|
|
1514
|
+
height: 60px;
|
|
1515
|
+
}
|
|
1516
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
|
|
1517
|
+
width: 80px;
|
|
1518
|
+
height: 60px;
|
|
1519
|
+
}
|
|
1520
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
1521
|
+
width: 120px;
|
|
1522
|
+
text-align: left;
|
|
1523
|
+
margin-left: 15px;
|
|
1524
|
+
}
|
|
1525
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1526
|
+
width: 120px;
|
|
1527
|
+
height: 20px;
|
|
1528
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1529
|
+
font-size: 14px;
|
|
1530
|
+
font-weight: normal;
|
|
1531
|
+
font-style: normal;
|
|
1532
|
+
font-stretch: normal;
|
|
1533
|
+
line-height: 1.43;
|
|
1534
|
+
letter-spacing: normal;
|
|
1535
|
+
text-align: left;
|
|
1536
|
+
color: #fff;
|
|
1537
|
+
text-overflow: ellipsis;
|
|
1538
|
+
overflow: hidden;
|
|
1539
|
+
}
|
|
1540
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1541
|
+
opacity: 0.6;
|
|
1542
|
+
}
|
|
1543
|
+
.multicamera[data-multicamera] li[data-title] {
|
|
1544
|
+
background-color: #c3c2c2;
|
|
1545
|
+
padding: 5px;
|
|
1546
|
+
}
|
|
1547
|
+
.multicamera[data-multicamera] li a {
|
|
1816
1548
|
color: #444;
|
|
1817
1549
|
padding: 2px 10px;
|
|
1818
1550
|
display: block;
|
|
1819
1551
|
text-decoration: none;
|
|
1820
1552
|
}
|
|
1821
|
-
.
|
|
1553
|
+
.multicamera[data-multicamera] li a:hover {
|
|
1822
1554
|
background-color: #555;
|
|
1823
1555
|
color: white;
|
|
1824
1556
|
}
|
|
1825
|
-
.
|
|
1557
|
+
.multicamera[data-multicamera] li a:hover a {
|
|
1826
1558
|
color: white;
|
|
1827
1559
|
text-decoration: none;
|
|
1828
1560
|
}
|
|
1829
|
-
.
|
|
1561
|
+
.multicamera[data-multicamera] li.current a {
|
|
1830
1562
|
color: #f00;
|
|
1831
|
-
background-color: #555;
|
|
1832
1563
|
}
|
|
1833
1564
|
|
|
1834
1565
|
@keyframes pulse {
|
|
@@ -1841,62 +1572,160 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1841
1572
|
100% {
|
|
1842
1573
|
color: #B80000;
|
|
1843
1574
|
}
|
|
1575
|
+
}.seek-time {
|
|
1576
|
+
position: absolute;
|
|
1577
|
+
white-space: nowrap;
|
|
1578
|
+
height: 20px;
|
|
1579
|
+
line-height: 20px;
|
|
1580
|
+
font-size: 0;
|
|
1581
|
+
left: -100%;
|
|
1582
|
+
bottom: 55px;
|
|
1583
|
+
background-color: rgba(2, 2, 2, 0.5);
|
|
1584
|
+
z-index: 9999;
|
|
1585
|
+
transition: opacity 0.1s ease;
|
|
1844
1586
|
}
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1587
|
+
.seek-time.hidden {
|
|
1588
|
+
opacity: 0;
|
|
1589
|
+
}
|
|
1590
|
+
.seek-time .seek-time__pos {
|
|
1591
|
+
display: inline-block;
|
|
1592
|
+
color: white;
|
|
1593
|
+
font-size: 10px;
|
|
1594
|
+
padding-left: 7px;
|
|
1595
|
+
padding-right: 7px;
|
|
1596
|
+
vertical-align: top;
|
|
1597
|
+
}
|
|
1598
|
+
.seek-time .seek-time__duration {
|
|
1599
|
+
display: inline-block;
|
|
1600
|
+
color: rgba(255, 255, 255, 0.5);
|
|
1601
|
+
font-size: 10px;
|
|
1602
|
+
padding-right: 7px;
|
|
1603
|
+
vertical-align: top;
|
|
1604
|
+
}
|
|
1605
|
+
.seek-time .seek-time__duration::before {
|
|
1606
|
+
content: "|";
|
|
1607
|
+
margin-right: 7px;
|
|
1608
|
+
}*, :focus, :visited {
|
|
1609
|
+
outline: none !important;
|
|
1848
1610
|
}
|
|
1849
1611
|
|
|
1850
|
-
.
|
|
1851
|
-
|
|
1852
|
-
font-size:
|
|
1853
|
-
|
|
1854
|
-
position: absolute;
|
|
1855
|
-
z-index: 2;
|
|
1612
|
+
.gear-wrapper .go-back {
|
|
1613
|
+
font-weight: 600;
|
|
1614
|
+
font-size: 14px;
|
|
1615
|
+
line-height: 20px;
|
|
1856
1616
|
width: 100%;
|
|
1857
|
-
|
|
1617
|
+
text-align: left;
|
|
1618
|
+
padding: 12px;
|
|
1858
1619
|
}
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1620
|
+
.gear-wrapper .go-back .arrow-left-icon {
|
|
1621
|
+
float: left;
|
|
1622
|
+
padding-top: 2px;
|
|
1623
|
+
padding-right: 2px;
|
|
1624
|
+
}
|
|
1625
|
+
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
1626
|
+
height: 16px;
|
|
1627
|
+
}
|
|
1628
|
+
.gear-wrapper ul.gear-sub-menu {
|
|
1629
|
+
width: 100%;
|
|
1630
|
+
list-style-type: none;
|
|
1631
|
+
min-width: 60px;
|
|
1632
|
+
border-top: 2px solid rgb(36, 36, 36);
|
|
1633
|
+
}
|
|
1634
|
+
.gear-wrapper ul.gear-sub-menu li {
|
|
1635
|
+
font-size: 12px;
|
|
1636
|
+
text-align: left;
|
|
1637
|
+
}
|
|
1638
|
+
.gear-wrapper ul.gear-sub-menu li[data-title] {
|
|
1639
|
+
background-color: #c3c2c2;
|
|
1640
|
+
padding: 5px;
|
|
1641
|
+
}
|
|
1642
|
+
.gear-wrapper ul.gear-sub-menu li a {
|
|
1643
|
+
display: block;
|
|
1644
|
+
text-decoration: none;
|
|
1645
|
+
height: 32px;
|
|
1646
|
+
padding: 5px 10px;
|
|
1647
|
+
line-height: 22px;
|
|
1648
|
+
color: #fffffe;
|
|
1649
|
+
}
|
|
1650
|
+
.gear-wrapper ul.gear-sub-menu li a:hover {
|
|
1651
|
+
color: white;
|
|
1652
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
1653
|
+
}
|
|
1654
|
+
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
1655
|
+
color: white;
|
|
1656
|
+
text-decoration: none;
|
|
1657
|
+
}
|
|
1658
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
1659
|
+
width: 30px;
|
|
1660
|
+
height: 20px;
|
|
1661
|
+
float: left;
|
|
1662
|
+
display: block;
|
|
1663
|
+
}
|
|
1664
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
1665
|
+
display: none;
|
|
1666
|
+
}
|
|
1667
|
+
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
1668
|
+
display: inline;
|
|
1669
|
+
}.quality-levels li.disabled {
|
|
1670
|
+
opacity: 0.5;
|
|
1671
|
+
pointer-events: none;
|
|
1672
|
+
}
|
|
1673
|
+
.quality-levels li.current {
|
|
1674
|
+
background-color: #000;
|
|
1675
|
+
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
1676
|
+
order: 99;
|
|
1677
|
+
height: 20px;
|
|
1678
|
+
}
|
|
1679
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
|
|
1863
1680
|
position: absolute;
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
margin-left: auto;
|
|
1871
|
-
margin-right: auto;
|
|
1872
|
-
/* center vertically */
|
|
1873
|
-
top: 50%;
|
|
1874
|
-
transform: translateY(-50%);
|
|
1681
|
+
right: 16px;
|
|
1682
|
+
bottom: 52px;
|
|
1683
|
+
width: 250px;
|
|
1684
|
+
min-height: 48px;
|
|
1685
|
+
z-index: 9999;
|
|
1686
|
+
border-radius: 4px;
|
|
1875
1687
|
}
|
|
1876
|
-
.
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1688
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
|
|
1689
|
+
padding: 8px 0;
|
|
1690
|
+
}
|
|
1691
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
|
|
1692
|
+
margin: 0;
|
|
1693
|
+
text-align: left;
|
|
1694
|
+
line-height: 22px;
|
|
1695
|
+
padding: 5px 14px;
|
|
1696
|
+
width: 250px;
|
|
1697
|
+
font-size: 12px;
|
|
1698
|
+
display: flex;
|
|
1699
|
+
align-items: center;
|
|
1700
|
+
justify-content: flex-start;
|
|
1701
|
+
gap: 8px;
|
|
1702
|
+
}
|
|
1703
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
|
|
1704
|
+
flex: 24px 0 0;
|
|
1705
|
+
height: 24px;
|
|
1706
|
+
}
|
|
1707
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
|
|
1708
|
+
visibility: hidden;
|
|
1881
1709
|
display: inline-block;
|
|
1882
|
-
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
1883
|
-
/* Prevent first frame from flickering when animation starts */
|
|
1884
|
-
animation-fill-mode: both;
|
|
1885
1710
|
}
|
|
1886
|
-
.
|
|
1887
|
-
|
|
1711
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
|
|
1712
|
+
flex: 0 1 100%;
|
|
1888
1713
|
}
|
|
1889
|
-
.
|
|
1890
|
-
|
|
1714
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
|
|
1715
|
+
flex: 0 0 14px;
|
|
1716
|
+
height: 24px;
|
|
1891
1717
|
}
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1718
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
|
|
1719
|
+
flex: 1 0 auto;
|
|
1720
|
+
}.media-control-pip {
|
|
1721
|
+
order: 95;
|
|
1722
|
+
display: flex;
|
|
1723
|
+
}
|
|
1724
|
+
.media-control-pip button {
|
|
1725
|
+
height: 20px;
|
|
1726
|
+
}
|
|
1727
|
+
.media-control-pip button svg {
|
|
1728
|
+
height: 20px;
|
|
1900
1729
|
}.scrub-thumbnails {
|
|
1901
1730
|
position: absolute;
|
|
1902
1731
|
bottom: 52px;
|
|
@@ -2043,10 +1872,181 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
2043
1872
|
display: inline-block;
|
|
2044
1873
|
margin-right: 5px;
|
|
2045
1874
|
cursor: pointer;
|
|
2046
|
-
}.
|
|
2047
|
-
|
|
2048
|
-
pointer-events: none;
|
|
1875
|
+
}.container-with-poster-clickable .mc-skip-time {
|
|
1876
|
+
height: 0;
|
|
2049
1877
|
}
|
|
2050
|
-
|
|
2051
|
-
|
|
1878
|
+
|
|
1879
|
+
.mc-skip-time {
|
|
1880
|
+
position: absolute;
|
|
1881
|
+
width: 100%;
|
|
1882
|
+
height: calc(100% - 50px);
|
|
1883
|
+
z-index: 9998;
|
|
1884
|
+
background-color: transparent;
|
|
1885
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1886
|
+
}
|
|
1887
|
+
.mc-skip-time .skip-container {
|
|
1888
|
+
width: 100%;
|
|
1889
|
+
height: 100%;
|
|
1890
|
+
display: flex;
|
|
1891
|
+
justify-content: space-between;
|
|
1892
|
+
}
|
|
1893
|
+
.mc-skip-time .skip-container .skip-item {
|
|
1894
|
+
flex: 1 0 0px;
|
|
1895
|
+
height: 100%;
|
|
1896
|
+
}.context-menu {
|
|
1897
|
+
z-index: 999;
|
|
1898
|
+
position: absolute;
|
|
1899
|
+
top: 0;
|
|
1900
|
+
left: 0;
|
|
1901
|
+
text-align: center;
|
|
1902
|
+
}
|
|
1903
|
+
.context-menu .context-menu-list {
|
|
1904
|
+
font-family: "Proxima Nova", sans-serif;
|
|
1905
|
+
font-size: 12px;
|
|
1906
|
+
line-height: 12px;
|
|
1907
|
+
list-style-type: none;
|
|
1908
|
+
text-align: left;
|
|
1909
|
+
padding: 5px;
|
|
1910
|
+
margin-left: auto;
|
|
1911
|
+
margin-right: auto;
|
|
1912
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
1913
|
+
border: 1px solid #666;
|
|
1914
|
+
border-radius: 4px;
|
|
1915
|
+
}
|
|
1916
|
+
.context-menu .context-menu-list-item button {
|
|
1917
|
+
border: none;
|
|
1918
|
+
background-color: transparent;
|
|
1919
|
+
padding: 0;
|
|
1920
|
+
color: white;
|
|
1921
|
+
display: flex;
|
|
1922
|
+
gap: 8px;
|
|
1923
|
+
align-items: center;
|
|
1924
|
+
justify-content: center;
|
|
1925
|
+
cursor: pointer;
|
|
1926
|
+
padding: 5px;
|
|
1927
|
+
width: 100%;
|
|
1928
|
+
}
|
|
1929
|
+
.context-menu .context-menu-list-item_icon {
|
|
1930
|
+
width: 20px;
|
|
1931
|
+
height: 20px;
|
|
1932
|
+
}.spinner-three-bounce[data-spinner] {
|
|
1933
|
+
position: absolute;
|
|
1934
|
+
width: 70px;
|
|
1935
|
+
text-align: center;
|
|
1936
|
+
z-index: 999;
|
|
1937
|
+
left: 0;
|
|
1938
|
+
right: 0;
|
|
1939
|
+
margin: 0 auto;
|
|
1940
|
+
margin-left: auto;
|
|
1941
|
+
margin-right: auto;
|
|
1942
|
+
/* center vertically */
|
|
1943
|
+
top: 50%;
|
|
1944
|
+
transform: translateY(-50%);
|
|
1945
|
+
}
|
|
1946
|
+
.spinner-three-bounce[data-spinner] > div {
|
|
1947
|
+
width: 18px;
|
|
1948
|
+
height: 18px;
|
|
1949
|
+
background-color: #FFF;
|
|
1950
|
+
border-radius: 100%;
|
|
1951
|
+
display: inline-block;
|
|
1952
|
+
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
1953
|
+
/* Prevent first frame from flickering when animation starts */
|
|
1954
|
+
animation-fill-mode: both;
|
|
1955
|
+
}
|
|
1956
|
+
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
1957
|
+
animation-delay: -0.32s;
|
|
1958
|
+
}
|
|
1959
|
+
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
1960
|
+
animation-delay: -0.16s;
|
|
1961
|
+
}
|
|
1962
|
+
|
|
1963
|
+
@keyframes bouncedelay {
|
|
1964
|
+
0%, 80%, 100% {
|
|
1965
|
+
transform: scale(0);
|
|
1966
|
+
}
|
|
1967
|
+
40% {
|
|
1968
|
+
transform: scale(1);
|
|
1969
|
+
}
|
|
1970
|
+
}.player-logo[data-logo] {
|
|
1971
|
+
position: absolute;
|
|
1972
|
+
z-index: 2;
|
|
1973
|
+
width: 100%;
|
|
1974
|
+
height: 100%;
|
|
1975
|
+
}
|
|
1976
|
+
|
|
1977
|
+
.clappr-logo {
|
|
1978
|
+
position: absolute;
|
|
1979
|
+
}*,
|
|
1980
|
+
:focus,
|
|
1981
|
+
:visited {
|
|
1982
|
+
outline: none !important;
|
|
1983
|
+
}
|
|
1984
|
+
|
|
1985
|
+
.media-control-cc[data-cc] {
|
|
1986
|
+
position: relative;
|
|
1987
|
+
order: 85;
|
|
1988
|
+
}
|
|
1989
|
+
.media-control-cc[data-cc] button {
|
|
1990
|
+
background-color: transparent;
|
|
1991
|
+
color: #fff;
|
|
1992
|
+
-webkit-font-smoothing: antialiased;
|
|
1993
|
+
border: none;
|
|
1994
|
+
cursor: pointer;
|
|
1995
|
+
}
|
|
1996
|
+
.media-control-cc[data-cc] button .cc-text svg {
|
|
1997
|
+
fill: white;
|
|
1998
|
+
}
|
|
1999
|
+
.media-control-cc[data-cc] button:hover {
|
|
2000
|
+
color: #c9c9c9;
|
|
2001
|
+
}
|
|
2002
|
+
.media-control-cc[data-cc] button.changing {
|
|
2003
|
+
animation: pulse 0.5s infinite alternate;
|
|
2004
|
+
}
|
|
2005
|
+
.media-control-cc[data-cc] ul {
|
|
2006
|
+
width: 80px;
|
|
2007
|
+
list-style-type: none;
|
|
2008
|
+
position: absolute;
|
|
2009
|
+
bottom: 25px;
|
|
2010
|
+
border: 1px solid black;
|
|
2011
|
+
background-color: #e6e6e6;
|
|
2012
|
+
padding: 8px 0;
|
|
2013
|
+
}
|
|
2014
|
+
.media-control-cc[data-cc] li a {
|
|
2015
|
+
color: #444;
|
|
2016
|
+
padding: 2px 10px;
|
|
2017
|
+
display: block;
|
|
2018
|
+
text-decoration: none;
|
|
2019
|
+
}
|
|
2020
|
+
.media-control-cc[data-cc] li a:hover {
|
|
2021
|
+
background-color: #555;
|
|
2022
|
+
color: white;
|
|
2023
|
+
}
|
|
2024
|
+
.media-control-cc[data-cc] li a:hover a {
|
|
2025
|
+
color: white;
|
|
2026
|
+
text-decoration: none;
|
|
2027
|
+
}
|
|
2028
|
+
.media-control-cc[data-cc] li.current a {
|
|
2029
|
+
color: #f00;
|
|
2030
|
+
background-color: #555;
|
|
2031
|
+
}
|
|
2032
|
+
|
|
2033
|
+
@keyframes pulse {
|
|
2034
|
+
0% {
|
|
2035
|
+
color: #fff;
|
|
2036
|
+
}
|
|
2037
|
+
50% {
|
|
2038
|
+
color: #ff0101;
|
|
2039
|
+
}
|
|
2040
|
+
100% {
|
|
2041
|
+
color: #B80000;
|
|
2042
|
+
}
|
|
2043
|
+
}
|
|
2044
|
+
::cue {
|
|
2045
|
+
visibility: hidden !important;
|
|
2046
|
+
font-size: 0 !important;
|
|
2047
|
+
}
|
|
2048
|
+
|
|
2049
|
+
.ios-fullscreen::cue {
|
|
2050
|
+
visibility: visible !important;
|
|
2051
|
+
font-size: 1em !important;
|
|
2052
2052
|
}
|