@gcorevideo/player 2.20.13 → 2.20.14
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/assets/error-screen/error_screen.ejs +1 -1
- package/dist/core.js +1 -1
- package/dist/index.css +1401 -1401
- package/dist/index.js +3 -2
- package/dist/plugins/index.css +747 -747
- package/dist/plugins/index.js +3 -2
- package/lib/plugins/error-screen/ErrorScreen.d.ts.map +1 -1
- package/lib/plugins/error-screen/ErrorScreen.js +1 -0
- package/package.json +1 -1
- package/src/plugins/error-screen/ErrorScreen.ts +1 -0
- package/src/plugins/error-screen/__tests__/__snapshots__/ErrorScreen.test.ts.snap +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/dist/plugins/index.css
CHANGED
|
@@ -122,250 +122,6 @@
|
|
|
122
122
|
.gplayer-lite-btn::-moz-focus-inner {
|
|
123
123
|
border: 0;
|
|
124
124
|
padding: 0;
|
|
125
|
-
}.context-menu {
|
|
126
|
-
z-index: 999;
|
|
127
|
-
position: absolute;
|
|
128
|
-
top: 0;
|
|
129
|
-
left: 0;
|
|
130
|
-
text-align: center;
|
|
131
|
-
}
|
|
132
|
-
.context-menu .context-menu-list {
|
|
133
|
-
font-family: "Proxima Nova", sans-serif;
|
|
134
|
-
font-size: 12px;
|
|
135
|
-
line-height: 12px;
|
|
136
|
-
list-style-type: none;
|
|
137
|
-
text-align: left;
|
|
138
|
-
padding: 5px;
|
|
139
|
-
margin-left: auto;
|
|
140
|
-
margin-right: auto;
|
|
141
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
142
|
-
border: 1px solid #666;
|
|
143
|
-
border-radius: 4px;
|
|
144
|
-
}
|
|
145
|
-
.context-menu .context-menu-list .context-menu-list-item {
|
|
146
|
-
color: white;
|
|
147
|
-
padding: 5px;
|
|
148
|
-
cursor: pointer;
|
|
149
|
-
}*, :focus, :visited {
|
|
150
|
-
outline: none !important;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
.audio_selector[data-track-selector] {
|
|
154
|
-
float: right;
|
|
155
|
-
margin-top: 4px;
|
|
156
|
-
position: relative;
|
|
157
|
-
width: 50px;
|
|
158
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
159
|
-
}
|
|
160
|
-
.audio_selector[data-track-selector] button {
|
|
161
|
-
background-color: transparent;
|
|
162
|
-
color: #fff;
|
|
163
|
-
-webkit-font-smoothing: antialiased;
|
|
164
|
-
border: none;
|
|
165
|
-
font-size: 14px;
|
|
166
|
-
cursor: pointer;
|
|
167
|
-
}
|
|
168
|
-
.audio_selector[data-track-selector] button .audio-text {
|
|
169
|
-
text-overflow: ellipsis;
|
|
170
|
-
overflow: hidden;
|
|
171
|
-
white-space: nowrap;
|
|
172
|
-
max-width: 100px;
|
|
173
|
-
background-color: transparent;
|
|
174
|
-
-webkit-font-smoothing: antialiased;
|
|
175
|
-
border: none;
|
|
176
|
-
font-size: 14px;
|
|
177
|
-
cursor: pointer;
|
|
178
|
-
padding-top: 5px;
|
|
179
|
-
}
|
|
180
|
-
.audio_selector[data-track-selector] button:hover {
|
|
181
|
-
color: #c9c9c9;
|
|
182
|
-
}
|
|
183
|
-
.audio_selector[data-track-selector] button.changing {
|
|
184
|
-
animation: pulse 0.5s infinite alternate;
|
|
185
|
-
}
|
|
186
|
-
.audio_selector[data-track-selector] button span.audio-arrow {
|
|
187
|
-
width: 9px;
|
|
188
|
-
height: 6px;
|
|
189
|
-
margin-top: 11px;
|
|
190
|
-
margin-left: 5px;
|
|
191
|
-
}
|
|
192
|
-
.audio_selector[data-track-selector] > ul {
|
|
193
|
-
max-width: 114px;
|
|
194
|
-
list-style-type: none;
|
|
195
|
-
position: absolute;
|
|
196
|
-
bottom: 25px;
|
|
197
|
-
border: 1px solid black;
|
|
198
|
-
display: none;
|
|
199
|
-
background-color: #e6e6e6;
|
|
200
|
-
}
|
|
201
|
-
.audio_selector[data-track-selector] li {
|
|
202
|
-
font-size: 10px;
|
|
203
|
-
}
|
|
204
|
-
.audio_selector[data-track-selector] li[data-title] {
|
|
205
|
-
background-color: #c3c2c2;
|
|
206
|
-
padding: 5px;
|
|
207
|
-
}
|
|
208
|
-
.audio_selector[data-track-selector] li a {
|
|
209
|
-
color: #444;
|
|
210
|
-
padding: 2px 10px;
|
|
211
|
-
display: block;
|
|
212
|
-
text-decoration: none;
|
|
213
|
-
text-overflow: ellipsis;
|
|
214
|
-
overflow: hidden;
|
|
215
|
-
white-space: nowrap;
|
|
216
|
-
}
|
|
217
|
-
.audio_selector[data-track-selector] li a:hover {
|
|
218
|
-
background-color: #555;
|
|
219
|
-
color: white;
|
|
220
|
-
}
|
|
221
|
-
.audio_selector[data-track-selector] li a:hover a {
|
|
222
|
-
color: white;
|
|
223
|
-
text-decoration: none;
|
|
224
|
-
}
|
|
225
|
-
.audio_selector[data-track-selector] li.current a {
|
|
226
|
-
color: #f00;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
.audio_selector[data-track-selector] {
|
|
230
|
-
width: auto;
|
|
231
|
-
margin-top: 7px;
|
|
232
|
-
margin-right: 20px;
|
|
233
|
-
}
|
|
234
|
-
.audio_selector[data-track-selector] button[data-level-selector-button],
|
|
235
|
-
.audio_selector[data-track-selector] button[data-track-selector-button] {
|
|
236
|
-
display: flex;
|
|
237
|
-
justify-content: center;
|
|
238
|
-
padding: 0;
|
|
239
|
-
}
|
|
240
|
-
.audio_selector[data-track-selector] button[data-level-selector-button]:hover,
|
|
241
|
-
.audio_selector[data-track-selector] button[data-track-selector-button]:hover {
|
|
242
|
-
color: white;
|
|
243
|
-
}
|
|
244
|
-
.audio_selector[data-track-selector] ul {
|
|
245
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
246
|
-
border: none;
|
|
247
|
-
min-width: 60px;
|
|
248
|
-
transform: rotate(180deg);
|
|
249
|
-
border-radius: 4px;
|
|
250
|
-
bottom: 40px;
|
|
251
|
-
right: -2px;
|
|
252
|
-
}
|
|
253
|
-
.audio_selector[data-track-selector] ul li {
|
|
254
|
-
transform: rotate(-180deg);
|
|
255
|
-
font-size: 16px;
|
|
256
|
-
text-align: right;
|
|
257
|
-
height: 30px;
|
|
258
|
-
}
|
|
259
|
-
.audio_selector[data-track-selector] ul li a {
|
|
260
|
-
height: 30px;
|
|
261
|
-
padding: 5px 10px;
|
|
262
|
-
color: #fffffe;
|
|
263
|
-
}
|
|
264
|
-
.audio_selector[data-track-selector] ul li a:hover {
|
|
265
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
266
|
-
}
|
|
267
|
-
.audio_selector[data-track-selector] ul li:first-child a {
|
|
268
|
-
border-bottom-left-radius: 4px;
|
|
269
|
-
border-bottom-right-radius: 4px;
|
|
270
|
-
}
|
|
271
|
-
.audio_selector[data-track-selector] ul li:last-child a {
|
|
272
|
-
border-top-left-radius: 4px;
|
|
273
|
-
border-top-right-radius: 4px;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
@keyframes pulse {
|
|
277
|
-
0% {
|
|
278
|
-
color: #fff;
|
|
279
|
-
}
|
|
280
|
-
50% {
|
|
281
|
-
color: #ff0101;
|
|
282
|
-
}
|
|
283
|
-
100% {
|
|
284
|
-
color: #B80000;
|
|
285
|
-
}
|
|
286
|
-
}.big-mute-icon-wrapper[data-big-mute] {
|
|
287
|
-
position: absolute;
|
|
288
|
-
z-index: 9998;
|
|
289
|
-
background-color: transparent;
|
|
290
|
-
display: flex;
|
|
291
|
-
justify-content: center;
|
|
292
|
-
width: 100%;
|
|
293
|
-
height: calc(100% - 50px);
|
|
294
|
-
margin: 0 auto;
|
|
295
|
-
opacity: 0.75;
|
|
296
|
-
transition: opacity 0.1s ease;
|
|
297
|
-
pointer-events: auto;
|
|
298
|
-
}
|
|
299
|
-
.big-mute-icon-wrapper[data-big-mute].hide {
|
|
300
|
-
display: none;
|
|
301
|
-
}
|
|
302
|
-
.big-mute-icon-wrapper[data-big-mute]:hover {
|
|
303
|
-
cursor: pointer;
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
.big-mute-icon[data-big-mute-icon] {
|
|
307
|
-
display: flex;
|
|
308
|
-
align-items: center;
|
|
309
|
-
justify-content: center;
|
|
310
|
-
align-self: center;
|
|
311
|
-
width: 120px;
|
|
312
|
-
height: 120px;
|
|
313
|
-
border: 2px solid white;
|
|
314
|
-
border-radius: 50%;
|
|
315
|
-
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
316
|
-
filter: alpha(opacity=60);
|
|
317
|
-
opacity: 1;
|
|
318
|
-
box-shadow: 0 0 1px 0 white;
|
|
319
|
-
background: rgba(240, 243, 247, 0.9411764706);
|
|
320
|
-
z-index: 10000;
|
|
321
|
-
}
|
|
322
|
-
.big-mute-icon[data-big-mute-icon] svg {
|
|
323
|
-
margin-left: 5px;
|
|
324
|
-
width: 80px;
|
|
325
|
-
height: 80px;
|
|
326
|
-
}
|
|
327
|
-
.big-mute-icon[data-big-mute-icon] svg path {
|
|
328
|
-
fill: #1f1e1e !important;
|
|
329
|
-
}
|
|
330
|
-
.big-mute-icon[data-big-mute-icon]:hover {
|
|
331
|
-
background: rgba(240, 243, 247, 0.8784313725);
|
|
332
|
-
}
|
|
333
|
-
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
334
|
-
fill: #151515 !important;
|
|
335
|
-
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
336
|
-
color: #CCCACA;
|
|
337
|
-
position: absolute;
|
|
338
|
-
top: 0;
|
|
339
|
-
height: 100%;
|
|
340
|
-
width: 100%;
|
|
341
|
-
background-color: rgba(0, 0, 0, 0.7);
|
|
342
|
-
z-index: 2000;
|
|
343
|
-
display: flex;
|
|
344
|
-
flex-direction: column;
|
|
345
|
-
justify-content: center;
|
|
346
|
-
}
|
|
347
|
-
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
348
|
-
font-size: 14px;
|
|
349
|
-
color: #CCCACA;
|
|
350
|
-
margin-top: 45px;
|
|
351
|
-
}
|
|
352
|
-
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
353
|
-
font-weight: bold;
|
|
354
|
-
line-height: 30px;
|
|
355
|
-
font-size: 18px;
|
|
356
|
-
}
|
|
357
|
-
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
358
|
-
width: 90%;
|
|
359
|
-
margin: 0 auto;
|
|
360
|
-
}
|
|
361
|
-
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
362
|
-
font-size: 13px;
|
|
363
|
-
margin-top: 15px;
|
|
364
|
-
}
|
|
365
|
-
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
366
|
-
cursor: pointer;
|
|
367
|
-
width: 30px;
|
|
368
|
-
margin: 15px auto 0;
|
|
369
125
|
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
370
126
|
float: right;
|
|
371
127
|
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
@@ -480,79 +236,286 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
480
236
|
height: 20px;
|
|
481
237
|
}.clips.bar-container[data-seekbar] {
|
|
482
238
|
clip-path: url("#myClip");
|
|
483
|
-
}.
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-audio-tracks {
|
|
488
|
-
display: block;
|
|
489
|
-
}
|
|
490
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] {
|
|
491
|
-
width: 40px;
|
|
492
|
-
margin-top: 0;
|
|
493
|
-
}
|
|
494
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] button[data-subtitles-button] {
|
|
239
|
+
}.big-mute-icon-wrapper[data-big-mute] {
|
|
240
|
+
position: absolute;
|
|
241
|
+
z-index: 9998;
|
|
242
|
+
background-color: transparent;
|
|
495
243
|
display: flex;
|
|
496
244
|
justify-content: center;
|
|
497
|
-
|
|
245
|
+
width: 100%;
|
|
246
|
+
height: calc(100% - 50px);
|
|
247
|
+
margin: 0 auto;
|
|
248
|
+
opacity: 0.75;
|
|
249
|
+
transition: opacity 0.1s ease;
|
|
250
|
+
pointer-events: auto;
|
|
251
|
+
}
|
|
252
|
+
.big-mute-icon-wrapper[data-big-mute].hide {
|
|
253
|
+
display: none;
|
|
254
|
+
}
|
|
255
|
+
.big-mute-icon-wrapper[data-big-mute]:hover {
|
|
256
|
+
cursor: pointer;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.big-mute-icon[data-big-mute-icon] {
|
|
260
|
+
display: flex;
|
|
498
261
|
align-items: center;
|
|
262
|
+
justify-content: center;
|
|
263
|
+
align-self: center;
|
|
264
|
+
width: 120px;
|
|
265
|
+
height: 120px;
|
|
266
|
+
border: 2px solid white;
|
|
267
|
+
border-radius: 50%;
|
|
268
|
+
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
269
|
+
filter: alpha(opacity=60);
|
|
270
|
+
opacity: 1;
|
|
271
|
+
box-shadow: 0 0 1px 0 white;
|
|
272
|
+
background: rgba(240, 243, 247, 0.9411764706);
|
|
273
|
+
z-index: 10000;
|
|
499
274
|
}
|
|
500
|
-
.
|
|
501
|
-
|
|
275
|
+
.big-mute-icon[data-big-mute-icon] svg {
|
|
276
|
+
margin-left: 5px;
|
|
277
|
+
width: 80px;
|
|
278
|
+
height: 80px;
|
|
502
279
|
}
|
|
503
|
-
.
|
|
504
|
-
|
|
280
|
+
.big-mute-icon[data-big-mute-icon] svg path {
|
|
281
|
+
fill: #1f1e1e !important;
|
|
282
|
+
}
|
|
283
|
+
.big-mute-icon[data-big-mute-icon]:hover {
|
|
284
|
+
background: rgba(240, 243, 247, 0.8784313725);
|
|
285
|
+
}
|
|
286
|
+
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
287
|
+
fill: #151515 !important;
|
|
288
|
+
}*, :focus, :visited {
|
|
289
|
+
outline: none !important;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.multicamera[data-multicamera] {
|
|
293
|
+
float: right;
|
|
294
|
+
margin-top: 4px;
|
|
295
|
+
position: relative;
|
|
296
|
+
margin-right: 20px;
|
|
297
|
+
width: 20px;
|
|
298
|
+
}
|
|
299
|
+
.multicamera[data-multicamera] button {
|
|
300
|
+
background-color: transparent;
|
|
301
|
+
color: #fff;
|
|
302
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
303
|
+
-webkit-font-smoothing: antialiased;
|
|
505
304
|
border: none;
|
|
506
|
-
|
|
507
|
-
|
|
305
|
+
font-size: 14px;
|
|
306
|
+
padding: 0;
|
|
307
|
+
}
|
|
308
|
+
.multicamera[data-multicamera] button svg {
|
|
309
|
+
height: 20px;
|
|
310
|
+
position: relative;
|
|
311
|
+
margin-top: 6px;
|
|
312
|
+
}
|
|
313
|
+
.multicamera[data-multicamera] button:hover {
|
|
314
|
+
color: #c9c9c9;
|
|
315
|
+
}
|
|
316
|
+
.multicamera[data-multicamera] button.changing {
|
|
317
|
+
animation: pulse 0.5s infinite alternate;
|
|
318
|
+
}
|
|
319
|
+
.multicamera[data-multicamera] button span.quality-arrow {
|
|
320
|
+
width: 9px;
|
|
321
|
+
height: 6px;
|
|
322
|
+
margin-top: 11px;
|
|
323
|
+
margin-left: 5px;
|
|
324
|
+
}
|
|
325
|
+
.multicamera[data-multicamera] > ul {
|
|
326
|
+
padding: 6px 0;
|
|
327
|
+
right: -24px;
|
|
328
|
+
width: 245px;
|
|
329
|
+
list-style-type: none;
|
|
330
|
+
position: absolute;
|
|
331
|
+
bottom: 48px;
|
|
508
332
|
border-radius: 4px;
|
|
509
|
-
|
|
510
|
-
|
|
333
|
+
display: none;
|
|
334
|
+
background-color: rgba(74, 74, 74, 0.9);
|
|
511
335
|
}
|
|
512
|
-
.
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
336
|
+
.multicamera[data-multicamera] > ul::after {
|
|
337
|
+
content: "";
|
|
338
|
+
position: absolute;
|
|
339
|
+
top: 100%;
|
|
340
|
+
left: 85%;
|
|
341
|
+
margin-left: -10px;
|
|
342
|
+
width: 0;
|
|
343
|
+
height: 0;
|
|
344
|
+
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
345
|
+
border-right: 10px solid transparent;
|
|
346
|
+
border-left: 10px solid transparent;
|
|
518
347
|
}
|
|
519
|
-
.
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
color: #fffffe;
|
|
348
|
+
.multicamera[data-multicamera] li {
|
|
349
|
+
font-size: 10px;
|
|
350
|
+
cursor: pointer;
|
|
523
351
|
}
|
|
524
|
-
.
|
|
525
|
-
|
|
352
|
+
.multicamera[data-multicamera] li .multicamera-item {
|
|
353
|
+
display: flex;
|
|
354
|
+
padding: 10px 0;
|
|
355
|
+
justify-content: center;
|
|
356
|
+
position: relative;
|
|
526
357
|
}
|
|
527
|
-
.
|
|
528
|
-
|
|
358
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
359
|
+
pointer-events: none;
|
|
529
360
|
}
|
|
530
|
-
.
|
|
531
|
-
|
|
532
|
-
border-bottom-right-radius: 4px;
|
|
361
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
362
|
+
opacity: 0.5;
|
|
533
363
|
}
|
|
534
|
-
.
|
|
535
|
-
|
|
536
|
-
border-top-right-radius: 4px;
|
|
364
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
365
|
+
opacity: 0.5;
|
|
537
366
|
}
|
|
538
|
-
.
|
|
539
|
-
|
|
540
|
-
line-height: 26px;
|
|
541
|
-
bottom: 52px;
|
|
542
|
-
border-radius: 3px;
|
|
543
|
-
background-color: rgba(74, 74, 74, 0.7);
|
|
367
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
368
|
+
background-color: rgba(0, 0, 0, 0);
|
|
544
369
|
}
|
|
545
|
-
.
|
|
546
|
-
|
|
547
|
-
|
|
370
|
+
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
371
|
+
background-color: rgba(0, 0, 0, 0.3);
|
|
372
|
+
}
|
|
373
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
374
|
+
width: 80px;
|
|
375
|
+
height: 60px;
|
|
376
|
+
}
|
|
377
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
|
|
378
|
+
width: 80px;
|
|
379
|
+
height: 60px;
|
|
380
|
+
}
|
|
381
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
382
|
+
width: 120px;
|
|
383
|
+
text-align: left;
|
|
384
|
+
margin-left: 15px;
|
|
385
|
+
}
|
|
386
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
387
|
+
width: 120px;
|
|
388
|
+
height: 20px;
|
|
548
389
|
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
390
|
+
font-size: 14px;
|
|
391
|
+
font-weight: normal;
|
|
392
|
+
font-style: normal;
|
|
393
|
+
font-stretch: normal;
|
|
394
|
+
line-height: 1.43;
|
|
395
|
+
letter-spacing: normal;
|
|
396
|
+
text-align: left;
|
|
397
|
+
color: #fff;
|
|
398
|
+
text-overflow: ellipsis;
|
|
399
|
+
overflow: hidden;
|
|
549
400
|
}
|
|
550
|
-
.
|
|
551
|
-
|
|
552
|
-
padding-right: 8px;
|
|
401
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
402
|
+
opacity: 0.6;
|
|
553
403
|
}
|
|
554
|
-
.
|
|
555
|
-
|
|
404
|
+
.multicamera[data-multicamera] li[data-title] {
|
|
405
|
+
background-color: #c3c2c2;
|
|
406
|
+
padding: 5px;
|
|
407
|
+
}
|
|
408
|
+
.multicamera[data-multicamera] li a {
|
|
409
|
+
color: #444;
|
|
410
|
+
padding: 2px 10px;
|
|
411
|
+
display: block;
|
|
412
|
+
text-decoration: none;
|
|
413
|
+
}
|
|
414
|
+
.multicamera[data-multicamera] li a:hover {
|
|
415
|
+
background-color: #555;
|
|
416
|
+
color: white;
|
|
417
|
+
}
|
|
418
|
+
.multicamera[data-multicamera] li a:hover a {
|
|
419
|
+
color: white;
|
|
420
|
+
text-decoration: none;
|
|
421
|
+
}
|
|
422
|
+
.multicamera[data-multicamera] li.current a {
|
|
423
|
+
color: #f00;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
@keyframes pulse {
|
|
427
|
+
0% {
|
|
428
|
+
color: #fff;
|
|
429
|
+
}
|
|
430
|
+
50% {
|
|
431
|
+
color: #ff0101;
|
|
432
|
+
}
|
|
433
|
+
100% {
|
|
434
|
+
color: #B80000;
|
|
435
|
+
}
|
|
436
|
+
}.share_plugin[data-share] {
|
|
437
|
+
pointer-events: auto;
|
|
438
|
+
z-index: 5;
|
|
439
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
440
|
+
}
|
|
441
|
+
.share_plugin[data-share].share-hide .share-button-container {
|
|
442
|
+
right: -50px;
|
|
443
|
+
}
|
|
444
|
+
.share_plugin[data-share] .share-button-container {
|
|
445
|
+
cursor: pointer;
|
|
446
|
+
width: 36px;
|
|
447
|
+
height: 36px;
|
|
448
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
449
|
+
border-radius: 4px;
|
|
450
|
+
position: absolute;
|
|
451
|
+
right: 10px;
|
|
452
|
+
top: 10px;
|
|
453
|
+
padding-top: 6px;
|
|
454
|
+
transition: all 0.3s ease-out;
|
|
455
|
+
}
|
|
456
|
+
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
457
|
+
background-color: transparent;
|
|
458
|
+
border: 0;
|
|
459
|
+
margin: 0 6px;
|
|
460
|
+
padding: 0;
|
|
461
|
+
cursor: pointer;
|
|
462
|
+
display: inline-block;
|
|
463
|
+
width: 19px;
|
|
464
|
+
height: 20px;
|
|
465
|
+
}
|
|
466
|
+
.share_plugin[data-share] .share-container {
|
|
467
|
+
pointer-events: auto;
|
|
468
|
+
position: absolute;
|
|
469
|
+
width: 280px;
|
|
470
|
+
background-color: white;
|
|
471
|
+
transform: translate(0, 50%);
|
|
472
|
+
transform: translate(-50%, -50%);
|
|
473
|
+
left: 50%;
|
|
474
|
+
/* margin-left: -140px; */
|
|
475
|
+
top: calc(50% - 20px);
|
|
476
|
+
/* margin-top: -170px; */
|
|
477
|
+
}
|
|
478
|
+
.share_plugin[data-share] .share-container .share-container-header {
|
|
479
|
+
text-align: left;
|
|
480
|
+
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
481
|
+
}
|
|
482
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
483
|
+
display: inline-block;
|
|
484
|
+
font-size: 16px;
|
|
485
|
+
margin: 5px;
|
|
486
|
+
}
|
|
487
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
488
|
+
display: inline-block;
|
|
489
|
+
width: 24px;
|
|
490
|
+
float: right;
|
|
491
|
+
margin: 5px;
|
|
492
|
+
cursor: pointer;
|
|
493
|
+
}
|
|
494
|
+
.share_plugin[data-share] .share-container .share-container-main {
|
|
495
|
+
margin-bottom: 8px;
|
|
496
|
+
}
|
|
497
|
+
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
498
|
+
text-align: left;
|
|
499
|
+
font-size: 14px;
|
|
500
|
+
padding: 5px;
|
|
501
|
+
}
|
|
502
|
+
.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 {
|
|
503
|
+
overflow: hidden;
|
|
504
|
+
text-overflow: ellipsis;
|
|
505
|
+
color: #818181;
|
|
506
|
+
border: solid 1px #d3d3d3;
|
|
507
|
+
width: calc(100% - 10px);
|
|
508
|
+
padding: 5px;
|
|
509
|
+
}
|
|
510
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
511
|
+
max-height: 90px;
|
|
512
|
+
resize: none;
|
|
513
|
+
}
|
|
514
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
515
|
+
width: 32px;
|
|
516
|
+
display: inline-block;
|
|
517
|
+
margin-right: 5px;
|
|
518
|
+
cursor: pointer;
|
|
556
519
|
}[data-player] {
|
|
557
520
|
--bottom-panel: 40px;
|
|
558
521
|
}
|
|
@@ -1060,248 +1023,104 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1060
1023
|
height: var(--bottom-panel);
|
|
1061
1024
|
cursor: pointer;
|
|
1062
1025
|
box-sizing: border-box;
|
|
1063
|
-
margin-right: 20px;
|
|
1064
|
-
}
|
|
1065
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] {
|
|
1066
|
-
float: left;
|
|
1067
|
-
bottom: 0;
|
|
1068
|
-
}
|
|
1069
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] {
|
|
1070
|
-
background-color: transparent;
|
|
1071
|
-
border: 0;
|
|
1072
|
-
box-sizing: content-box;
|
|
1073
|
-
height: var(--bottom-panel);
|
|
1074
|
-
width: 20px;
|
|
1075
|
-
}
|
|
1076
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] svg {
|
|
1077
|
-
height: 20px;
|
|
1078
|
-
position: relative;
|
|
1079
|
-
top: 3px;
|
|
1080
|
-
margin-top: 7px;
|
|
1081
|
-
}
|
|
1082
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] svg path {
|
|
1083
|
-
fill: white;
|
|
1084
|
-
}
|
|
1085
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume].muted svg {
|
|
1086
|
-
margin-left: 2px;
|
|
1087
|
-
}
|
|
1088
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] {
|
|
1089
|
-
float: left;
|
|
1090
|
-
position: relative;
|
|
1091
|
-
margin-left: 10px;
|
|
1092
|
-
top: 8px;
|
|
1093
|
-
width: 80px;
|
|
1094
|
-
height: 23px;
|
|
1095
|
-
padding: 3px 0;
|
|
1096
|
-
transition: width 0.2s ease-out;
|
|
1097
|
-
}
|
|
1098
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] {
|
|
1099
|
-
height: 3px;
|
|
1100
|
-
border-radius: 100px;
|
|
1101
|
-
position: relative;
|
|
1102
|
-
top: 7px;
|
|
1103
|
-
background-color: #666;
|
|
1104
|
-
}
|
|
1105
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] .bar-fill-1[data-volume] {
|
|
1106
|
-
position: absolute;
|
|
1107
|
-
top: 0;
|
|
1108
|
-
left: 0;
|
|
1109
|
-
width: 0;
|
|
1110
|
-
height: 100%;
|
|
1111
|
-
border-radius: 100px;
|
|
1112
|
-
background-color: white;
|
|
1113
|
-
transition: all 0.1s ease-out;
|
|
1114
|
-
}
|
|
1115
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] .bar-fill-2[data-volume] {
|
|
1116
|
-
position: absolute;
|
|
1117
|
-
top: 0;
|
|
1118
|
-
left: 0;
|
|
1119
|
-
width: 0;
|
|
1120
|
-
height: 100%;
|
|
1121
|
-
background-color: #005aff;
|
|
1122
|
-
transition: all 0.1s ease-out;
|
|
1123
|
-
}
|
|
1124
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber[data-volume] {
|
|
1125
|
-
position: absolute;
|
|
1126
|
-
transform: translateX(-50%);
|
|
1127
|
-
top: 3px;
|
|
1128
|
-
margin-left: 3px;
|
|
1129
|
-
width: 16px;
|
|
1130
|
-
height: 16px;
|
|
1131
|
-
opacity: 1;
|
|
1132
|
-
transition: all 0.1s ease-out;
|
|
1133
|
-
}
|
|
1134
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber[data-volume] .bar-scrubber-icon[data-volume] {
|
|
1135
|
-
position: absolute;
|
|
1136
|
-
left: 3px;
|
|
1137
|
-
top: 5px;
|
|
1138
|
-
width: 7px;
|
|
1139
|
-
height: 7px;
|
|
1140
|
-
border-radius: 50%;
|
|
1141
|
-
background-color: white;
|
|
1142
|
-
}
|
|
1143
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume] {
|
|
1144
|
-
float: left;
|
|
1145
|
-
width: 4px;
|
|
1146
|
-
padding-left: 2px;
|
|
1147
|
-
height: 12px;
|
|
1148
|
-
opacity: 0.5;
|
|
1149
|
-
box-shadow: inset 2px 0 0 white;
|
|
1150
|
-
transition: transform 0.2s ease-out;
|
|
1151
|
-
}
|
|
1152
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume].fill {
|
|
1153
|
-
box-shadow: inset 2px 0 0 #fff;
|
|
1154
|
-
opacity: 1;
|
|
1155
|
-
}
|
|
1156
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume]:nth-of-type(1) {
|
|
1157
|
-
padding-left: 0;
|
|
1158
|
-
}
|
|
1159
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume]:hover {
|
|
1160
|
-
transform: scaleY(1.5);
|
|
1161
|
-
}.dvr-controls[data-dvr-controls] {
|
|
1162
|
-
display: inline-block;
|
|
1163
|
-
float: left;
|
|
1164
|
-
color: #fff;
|
|
1165
|
-
line-height: 32px;
|
|
1166
|
-
font-size: 10px;
|
|
1167
|
-
font-weight: bold;
|
|
1168
|
-
margin-left: 6px;
|
|
1169
|
-
height: 40px;
|
|
1170
|
-
line-height: 40px;
|
|
1171
|
-
margin-left: 0;
|
|
1172
|
-
}
|
|
1173
|
-
.dvr-controls[data-dvr-controls] .live-info {
|
|
1174
|
-
cursor: default;
|
|
1175
|
-
font-family: "Roboto", "Open Sans", Arial, sans-serif;
|
|
1176
|
-
text-transform: uppercase;
|
|
1177
|
-
}
|
|
1178
|
-
.dvr-controls[data-dvr-controls] .live-info:before {
|
|
1179
|
-
content: "";
|
|
1180
|
-
display: inline-block;
|
|
1181
|
-
position: relative;
|
|
1182
|
-
width: 7px;
|
|
1183
|
-
height: 7px;
|
|
1184
|
-
border-radius: 3.5px;
|
|
1185
|
-
margin-right: 3.5px;
|
|
1186
|
-
background-color: #ff0101;
|
|
1187
|
-
}
|
|
1188
|
-
.dvr-controls[data-dvr-controls] .live-info.disabled {
|
|
1189
|
-
opacity: 0.3;
|
|
1190
|
-
}
|
|
1191
|
-
.dvr-controls[data-dvr-controls] .live-info.disabled:before {
|
|
1192
|
-
background-color: #fff;
|
|
1193
|
-
}
|
|
1194
|
-
.dvr-controls[data-dvr-controls] .live-button {
|
|
1195
|
-
cursor: pointer;
|
|
1196
|
-
outline: none;
|
|
1197
|
-
display: none;
|
|
1198
|
-
border: 0;
|
|
1199
|
-
color: #fff;
|
|
1200
|
-
background-color: transparent;
|
|
1201
|
-
height: 32px;
|
|
1202
|
-
padding: 0;
|
|
1203
|
-
opacity: 0.7;
|
|
1204
|
-
font-family: "Roboto", "Open Sans", Arial, sans-serif;
|
|
1205
|
-
text-transform: uppercase;
|
|
1206
|
-
transition: all 0.1s ease;
|
|
1207
|
-
}
|
|
1208
|
-
.dvr-controls[data-dvr-controls] .live-button:before {
|
|
1209
|
-
content: "";
|
|
1210
|
-
display: inline-block;
|
|
1211
|
-
position: relative;
|
|
1212
|
-
width: 7px;
|
|
1213
|
-
height: 7px;
|
|
1214
|
-
border-radius: 3.5px;
|
|
1215
|
-
margin-right: 3.5px;
|
|
1216
|
-
background-color: #fff;
|
|
1217
|
-
}
|
|
1218
|
-
.dvr-controls[data-dvr-controls] .live-button:hover {
|
|
1219
|
-
opacity: 1;
|
|
1220
|
-
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
1221
|
-
}
|
|
1222
|
-
.dvr-controls[data-dvr-controls] .live-info {
|
|
1223
|
-
font-size: 14px;
|
|
1224
|
-
letter-spacing: 0.8px;
|
|
1225
|
-
font-weight: 500;
|
|
1226
|
-
color: #fffffe;
|
|
1227
|
-
margin-left: 21px;
|
|
1026
|
+
margin-right: 20px;
|
|
1228
1027
|
}
|
|
1229
|
-
.
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
border-radius: 50%;
|
|
1233
|
-
margin-right: 8px;
|
|
1234
|
-
background-color: #ed4f4a;
|
|
1028
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] {
|
|
1029
|
+
float: left;
|
|
1030
|
+
bottom: 0;
|
|
1235
1031
|
}
|
|
1236
|
-
.
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
margin-left: 20px;
|
|
1032
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] {
|
|
1033
|
+
background-color: transparent;
|
|
1034
|
+
border: 0;
|
|
1035
|
+
box-sizing: content-box;
|
|
1036
|
+
height: var(--bottom-panel);
|
|
1037
|
+
width: 20px;
|
|
1243
1038
|
}
|
|
1244
|
-
.
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
margin-
|
|
1249
|
-
background-color: #cacaca;
|
|
1039
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] svg {
|
|
1040
|
+
height: 20px;
|
|
1041
|
+
position: relative;
|
|
1042
|
+
top: 3px;
|
|
1043
|
+
margin-top: 7px;
|
|
1250
1044
|
}
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
display: none;
|
|
1045
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] svg path {
|
|
1046
|
+
fill: white;
|
|
1254
1047
|
}
|
|
1255
|
-
.
|
|
1256
|
-
|
|
1048
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume].muted svg {
|
|
1049
|
+
margin-left: 2px;
|
|
1257
1050
|
}
|
|
1258
|
-
.
|
|
1259
|
-
|
|
1051
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] {
|
|
1052
|
+
float: left;
|
|
1053
|
+
position: relative;
|
|
1054
|
+
margin-left: 10px;
|
|
1055
|
+
top: 8px;
|
|
1056
|
+
width: 80px;
|
|
1057
|
+
height: 23px;
|
|
1058
|
+
padding: 3px 0;
|
|
1059
|
+
transition: width 0.2s ease-out;
|
|
1260
1060
|
}
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1061
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] {
|
|
1062
|
+
height: 3px;
|
|
1063
|
+
border-radius: 100px;
|
|
1064
|
+
position: relative;
|
|
1065
|
+
top: 7px;
|
|
1066
|
+
background-color: #666;
|
|
1067
|
+
}
|
|
1068
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] .bar-fill-1[data-volume] {
|
|
1268
1069
|
position: absolute;
|
|
1269
|
-
height: 100%;
|
|
1270
|
-
width: 100%;
|
|
1271
|
-
z-index: 998;
|
|
1272
1070
|
top: 0;
|
|
1273
1071
|
left: 0;
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
background-
|
|
1072
|
+
width: 0;
|
|
1073
|
+
height: 100%;
|
|
1074
|
+
border-radius: 100px;
|
|
1075
|
+
background-color: white;
|
|
1076
|
+
transition: all 0.1s ease-out;
|
|
1278
1077
|
}
|
|
1279
|
-
.
|
|
1280
|
-
|
|
1078
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] .bar-fill-2[data-volume] {
|
|
1079
|
+
position: absolute;
|
|
1080
|
+
top: 0;
|
|
1081
|
+
left: 0;
|
|
1082
|
+
width: 0;
|
|
1083
|
+
height: 100%;
|
|
1084
|
+
background-color: #005aff;
|
|
1085
|
+
transition: all 0.1s ease-out;
|
|
1281
1086
|
}
|
|
1282
|
-
.
|
|
1087
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber[data-volume] {
|
|
1088
|
+
position: absolute;
|
|
1089
|
+
transform: translateX(-50%);
|
|
1090
|
+
top: 3px;
|
|
1091
|
+
margin-left: 3px;
|
|
1092
|
+
width: 16px;
|
|
1093
|
+
height: 16px;
|
|
1283
1094
|
opacity: 1;
|
|
1095
|
+
transition: all 0.1s ease-out;
|
|
1284
1096
|
}
|
|
1285
|
-
.
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1097
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber[data-volume] .bar-scrubber-icon[data-volume] {
|
|
1098
|
+
position: absolute;
|
|
1099
|
+
left: 3px;
|
|
1100
|
+
top: 5px;
|
|
1101
|
+
width: 7px;
|
|
1102
|
+
height: 7px;
|
|
1103
|
+
border-radius: 50%;
|
|
1104
|
+
background-color: white;
|
|
1291
1105
|
}
|
|
1292
|
-
.
|
|
1293
|
-
|
|
1294
|
-
|
|
1106
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume] {
|
|
1107
|
+
float: left;
|
|
1108
|
+
width: 4px;
|
|
1109
|
+
padding-left: 2px;
|
|
1110
|
+
height: 12px;
|
|
1111
|
+
opacity: 0.5;
|
|
1112
|
+
box-shadow: inset 2px 0 0 white;
|
|
1113
|
+
transition: transform 0.2s ease-out;
|
|
1295
1114
|
}
|
|
1296
|
-
.
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
float: right;
|
|
1300
|
-
height: 40px;
|
|
1301
|
-
margin-right: 20px;
|
|
1115
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume].fill {
|
|
1116
|
+
box-shadow: inset 2px 0 0 #fff;
|
|
1117
|
+
opacity: 1;
|
|
1302
1118
|
}
|
|
1303
|
-
.media-control-
|
|
1304
|
-
|
|
1119
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume]:nth-of-type(1) {
|
|
1120
|
+
padding-left: 0;
|
|
1121
|
+
}
|
|
1122
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume]:hover {
|
|
1123
|
+
transform: scaleY(1.5);
|
|
1305
1124
|
}:root {
|
|
1306
1125
|
--primary-background-color: #000;
|
|
1307
1126
|
--secondary-background-color: #262626;
|
|
@@ -1684,165 +1503,206 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1684
1503
|
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
|
|
1685
1504
|
width: 25%;
|
|
1686
1505
|
}
|
|
1687
|
-
}.
|
|
1688
|
-
|
|
1506
|
+
}.level-disabled {
|
|
1507
|
+
opacity: 0.5;
|
|
1508
|
+
pointer-events: none;
|
|
1509
|
+
}.media-control-skin-1[data-media-control-skin-1] .media-control-quality,
|
|
1510
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-audio-tracks {
|
|
1511
|
+
display: block;
|
|
1689
1512
|
}
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
width: 100%;
|
|
1694
|
-
height: calc(100% - 50px);
|
|
1695
|
-
z-index: 9998;
|
|
1696
|
-
background-color: transparent;
|
|
1697
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1513
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] {
|
|
1514
|
+
width: 40px;
|
|
1515
|
+
margin-top: 0;
|
|
1698
1516
|
}
|
|
1699
|
-
.
|
|
1700
|
-
width: 100%;
|
|
1701
|
-
height: 100%;
|
|
1517
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] button[data-subtitles-button] {
|
|
1702
1518
|
display: flex;
|
|
1703
|
-
justify-content:
|
|
1519
|
+
justify-content: center;
|
|
1520
|
+
padding: 0;
|
|
1521
|
+
align-items: center;
|
|
1704
1522
|
}
|
|
1705
|
-
.
|
|
1706
|
-
|
|
1707
|
-
|
|
1523
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] button[data-subtitles-button]:hover {
|
|
1524
|
+
color: white;
|
|
1525
|
+
}
|
|
1526
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul {
|
|
1527
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
1528
|
+
border: none;
|
|
1529
|
+
width: auto;
|
|
1530
|
+
transform: rotate(180deg);
|
|
1531
|
+
border-radius: 4px;
|
|
1532
|
+
bottom: 52px;
|
|
1533
|
+
margin-left: -28px;
|
|
1534
|
+
}
|
|
1535
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li {
|
|
1536
|
+
transform: rotate(-180deg);
|
|
1537
|
+
font-size: 16px;
|
|
1538
|
+
text-align: center;
|
|
1539
|
+
white-space: nowrap;
|
|
1540
|
+
height: 30px;
|
|
1541
|
+
}
|
|
1542
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li a {
|
|
1543
|
+
height: 30px;
|
|
1544
|
+
padding: 5px 10px;
|
|
1545
|
+
color: #fffffe;
|
|
1546
|
+
}
|
|
1547
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li a:hover {
|
|
1548
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
1549
|
+
}
|
|
1550
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li.current a {
|
|
1551
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
1552
|
+
}
|
|
1553
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li:first-child a {
|
|
1554
|
+
border-bottom-left-radius: 4px;
|
|
1555
|
+
border-bottom-right-radius: 4px;
|
|
1556
|
+
}
|
|
1557
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li:last-child a {
|
|
1558
|
+
border-top-left-radius: 4px;
|
|
1559
|
+
border-top-right-radius: 4px;
|
|
1560
|
+
}
|
|
1561
|
+
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] {
|
|
1562
|
+
height: 26px;
|
|
1563
|
+
line-height: 26px;
|
|
1564
|
+
bottom: 52px;
|
|
1565
|
+
border-radius: 3px;
|
|
1566
|
+
background-color: rgba(74, 74, 74, 0.7);
|
|
1567
|
+
}
|
|
1568
|
+
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span {
|
|
1569
|
+
letter-spacing: 0.8px;
|
|
1570
|
+
font-size: 14px;
|
|
1571
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1572
|
+
}
|
|
1573
|
+
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-seek-time] {
|
|
1574
|
+
padding-left: 8px;
|
|
1575
|
+
padding-right: 8px;
|
|
1576
|
+
}
|
|
1577
|
+
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
|
|
1578
|
+
display: none !important;
|
|
1708
1579
|
}*, :focus, :visited {
|
|
1709
1580
|
outline: none !important;
|
|
1710
1581
|
}
|
|
1711
1582
|
|
|
1712
|
-
.
|
|
1583
|
+
.audio_selector[data-track-selector] {
|
|
1713
1584
|
float: right;
|
|
1714
1585
|
margin-top: 4px;
|
|
1715
1586
|
position: relative;
|
|
1716
|
-
|
|
1717
|
-
|
|
1587
|
+
width: 50px;
|
|
1588
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1718
1589
|
}
|
|
1719
|
-
.
|
|
1590
|
+
.audio_selector[data-track-selector] button {
|
|
1720
1591
|
background-color: transparent;
|
|
1721
1592
|
color: #fff;
|
|
1722
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1723
1593
|
-webkit-font-smoothing: antialiased;
|
|
1724
1594
|
border: none;
|
|
1725
1595
|
font-size: 14px;
|
|
1726
|
-
|
|
1596
|
+
cursor: pointer;
|
|
1727
1597
|
}
|
|
1728
|
-
.
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1598
|
+
.audio_selector[data-track-selector] button .audio-text {
|
|
1599
|
+
text-overflow: ellipsis;
|
|
1600
|
+
overflow: hidden;
|
|
1601
|
+
white-space: nowrap;
|
|
1602
|
+
max-width: 100px;
|
|
1603
|
+
background-color: transparent;
|
|
1604
|
+
-webkit-font-smoothing: antialiased;
|
|
1605
|
+
border: none;
|
|
1606
|
+
font-size: 14px;
|
|
1607
|
+
cursor: pointer;
|
|
1608
|
+
padding-top: 5px;
|
|
1732
1609
|
}
|
|
1733
|
-
.
|
|
1610
|
+
.audio_selector[data-track-selector] button:hover {
|
|
1734
1611
|
color: #c9c9c9;
|
|
1735
1612
|
}
|
|
1736
|
-
.
|
|
1613
|
+
.audio_selector[data-track-selector] button.changing {
|
|
1737
1614
|
animation: pulse 0.5s infinite alternate;
|
|
1738
1615
|
}
|
|
1739
|
-
.
|
|
1616
|
+
.audio_selector[data-track-selector] button span.audio-arrow {
|
|
1740
1617
|
width: 9px;
|
|
1741
1618
|
height: 6px;
|
|
1742
1619
|
margin-top: 11px;
|
|
1743
1620
|
margin-left: 5px;
|
|
1744
1621
|
}
|
|
1745
|
-
.
|
|
1746
|
-
|
|
1747
|
-
right: -24px;
|
|
1748
|
-
width: 245px;
|
|
1622
|
+
.audio_selector[data-track-selector] > ul {
|
|
1623
|
+
max-width: 114px;
|
|
1749
1624
|
list-style-type: none;
|
|
1750
1625
|
position: absolute;
|
|
1751
|
-
bottom:
|
|
1752
|
-
border
|
|
1626
|
+
bottom: 25px;
|
|
1627
|
+
border: 1px solid black;
|
|
1753
1628
|
display: none;
|
|
1754
|
-
background-color:
|
|
1755
|
-
}
|
|
1756
|
-
.multicamera[data-multicamera] > ul::after {
|
|
1757
|
-
content: "";
|
|
1758
|
-
position: absolute;
|
|
1759
|
-
top: 100%;
|
|
1760
|
-
left: 85%;
|
|
1761
|
-
margin-left: -10px;
|
|
1762
|
-
width: 0;
|
|
1763
|
-
height: 0;
|
|
1764
|
-
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
1765
|
-
border-right: 10px solid transparent;
|
|
1766
|
-
border-left: 10px solid transparent;
|
|
1629
|
+
background-color: #e6e6e6;
|
|
1767
1630
|
}
|
|
1768
|
-
.
|
|
1631
|
+
.audio_selector[data-track-selector] li {
|
|
1769
1632
|
font-size: 10px;
|
|
1770
|
-
cursor: pointer;
|
|
1771
|
-
}
|
|
1772
|
-
.multicamera[data-multicamera] li .multicamera-item {
|
|
1773
|
-
display: flex;
|
|
1774
|
-
padding: 10px 0;
|
|
1775
|
-
justify-content: center;
|
|
1776
|
-
position: relative;
|
|
1777
|
-
}
|
|
1778
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
1779
|
-
pointer-events: none;
|
|
1780
|
-
}
|
|
1781
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
1782
|
-
opacity: 0.5;
|
|
1783
|
-
}
|
|
1784
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
1785
|
-
opacity: 0.5;
|
|
1786
|
-
}
|
|
1787
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
1788
|
-
background-color: rgba(0, 0, 0, 0);
|
|
1789
|
-
}
|
|
1790
|
-
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
1791
|
-
background-color: rgba(0, 0, 0, 0.3);
|
|
1792
|
-
}
|
|
1793
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
1794
|
-
width: 80px;
|
|
1795
|
-
height: 60px;
|
|
1796
|
-
}
|
|
1797
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
|
|
1798
|
-
width: 80px;
|
|
1799
|
-
height: 60px;
|
|
1800
|
-
}
|
|
1801
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
1802
|
-
width: 120px;
|
|
1803
|
-
text-align: left;
|
|
1804
|
-
margin-left: 15px;
|
|
1805
1633
|
}
|
|
1806
|
-
.
|
|
1807
|
-
width: 120px;
|
|
1808
|
-
height: 20px;
|
|
1809
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1810
|
-
font-size: 14px;
|
|
1811
|
-
font-weight: normal;
|
|
1812
|
-
font-style: normal;
|
|
1813
|
-
font-stretch: normal;
|
|
1814
|
-
line-height: 1.43;
|
|
1815
|
-
letter-spacing: normal;
|
|
1816
|
-
text-align: left;
|
|
1817
|
-
color: #fff;
|
|
1818
|
-
text-overflow: ellipsis;
|
|
1819
|
-
overflow: hidden;
|
|
1820
|
-
}
|
|
1821
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1822
|
-
opacity: 0.6;
|
|
1823
|
-
}
|
|
1824
|
-
.multicamera[data-multicamera] li[data-title] {
|
|
1634
|
+
.audio_selector[data-track-selector] li[data-title] {
|
|
1825
1635
|
background-color: #c3c2c2;
|
|
1826
1636
|
padding: 5px;
|
|
1827
1637
|
}
|
|
1828
|
-
.
|
|
1638
|
+
.audio_selector[data-track-selector] li a {
|
|
1829
1639
|
color: #444;
|
|
1830
1640
|
padding: 2px 10px;
|
|
1831
1641
|
display: block;
|
|
1832
1642
|
text-decoration: none;
|
|
1643
|
+
text-overflow: ellipsis;
|
|
1644
|
+
overflow: hidden;
|
|
1645
|
+
white-space: nowrap;
|
|
1833
1646
|
}
|
|
1834
|
-
.
|
|
1647
|
+
.audio_selector[data-track-selector] li a:hover {
|
|
1835
1648
|
background-color: #555;
|
|
1836
1649
|
color: white;
|
|
1837
1650
|
}
|
|
1838
|
-
.
|
|
1651
|
+
.audio_selector[data-track-selector] li a:hover a {
|
|
1839
1652
|
color: white;
|
|
1840
1653
|
text-decoration: none;
|
|
1841
1654
|
}
|
|
1842
|
-
.
|
|
1655
|
+
.audio_selector[data-track-selector] li.current a {
|
|
1843
1656
|
color: #f00;
|
|
1844
1657
|
}
|
|
1845
1658
|
|
|
1659
|
+
.audio_selector[data-track-selector] {
|
|
1660
|
+
width: auto;
|
|
1661
|
+
margin-top: 7px;
|
|
1662
|
+
margin-right: 20px;
|
|
1663
|
+
}
|
|
1664
|
+
.audio_selector[data-track-selector] button[data-level-selector-button],
|
|
1665
|
+
.audio_selector[data-track-selector] button[data-track-selector-button] {
|
|
1666
|
+
display: flex;
|
|
1667
|
+
justify-content: center;
|
|
1668
|
+
padding: 0;
|
|
1669
|
+
}
|
|
1670
|
+
.audio_selector[data-track-selector] button[data-level-selector-button]:hover,
|
|
1671
|
+
.audio_selector[data-track-selector] button[data-track-selector-button]:hover {
|
|
1672
|
+
color: white;
|
|
1673
|
+
}
|
|
1674
|
+
.audio_selector[data-track-selector] ul {
|
|
1675
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
1676
|
+
border: none;
|
|
1677
|
+
min-width: 60px;
|
|
1678
|
+
transform: rotate(180deg);
|
|
1679
|
+
border-radius: 4px;
|
|
1680
|
+
bottom: 40px;
|
|
1681
|
+
right: -2px;
|
|
1682
|
+
}
|
|
1683
|
+
.audio_selector[data-track-selector] ul li {
|
|
1684
|
+
transform: rotate(-180deg);
|
|
1685
|
+
font-size: 16px;
|
|
1686
|
+
text-align: right;
|
|
1687
|
+
height: 30px;
|
|
1688
|
+
}
|
|
1689
|
+
.audio_selector[data-track-selector] ul li a {
|
|
1690
|
+
height: 30px;
|
|
1691
|
+
padding: 5px 10px;
|
|
1692
|
+
color: #fffffe;
|
|
1693
|
+
}
|
|
1694
|
+
.audio_selector[data-track-selector] ul li a:hover {
|
|
1695
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
1696
|
+
}
|
|
1697
|
+
.audio_selector[data-track-selector] ul li:first-child a {
|
|
1698
|
+
border-bottom-left-radius: 4px;
|
|
1699
|
+
border-bottom-right-radius: 4px;
|
|
1700
|
+
}
|
|
1701
|
+
.audio_selector[data-track-selector] ul li:last-child a {
|
|
1702
|
+
border-top-left-radius: 4px;
|
|
1703
|
+
border-top-right-radius: 4px;
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1846
1706
|
@keyframes pulse {
|
|
1847
1707
|
0% {
|
|
1848
1708
|
color: #fff;
|
|
@@ -1853,89 +1713,147 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1853
1713
|
100% {
|
|
1854
1714
|
color: #B80000;
|
|
1855
1715
|
}
|
|
1856
|
-
}.
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1716
|
+
}.spinner-three-bounce[data-spinner] {
|
|
1717
|
+
position: absolute;
|
|
1718
|
+
width: 70px;
|
|
1719
|
+
text-align: center;
|
|
1720
|
+
z-index: 999;
|
|
1721
|
+
left: 0;
|
|
1722
|
+
right: 0;
|
|
1723
|
+
margin: 0 auto;
|
|
1724
|
+
margin-left: auto;
|
|
1725
|
+
margin-right: auto;
|
|
1726
|
+
/* center vertically */
|
|
1727
|
+
top: 50%;
|
|
1728
|
+
transform: translateY(-50%);
|
|
1860
1729
|
}
|
|
1861
|
-
.
|
|
1862
|
-
|
|
1730
|
+
.spinner-three-bounce[data-spinner] > div {
|
|
1731
|
+
width: 18px;
|
|
1732
|
+
height: 18px;
|
|
1733
|
+
background-color: #FFF;
|
|
1734
|
+
border-radius: 100%;
|
|
1735
|
+
display: inline-block;
|
|
1736
|
+
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
1737
|
+
/* Prevent first frame from flickering when animation starts */
|
|
1738
|
+
animation-fill-mode: both;
|
|
1863
1739
|
}
|
|
1864
|
-
.
|
|
1865
|
-
|
|
1866
|
-
width: 36px;
|
|
1867
|
-
height: 36px;
|
|
1868
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
1869
|
-
border-radius: 4px;
|
|
1870
|
-
position: absolute;
|
|
1871
|
-
right: 10px;
|
|
1872
|
-
top: 10px;
|
|
1873
|
-
padding-top: 6px;
|
|
1874
|
-
transition: all 0.3s ease-out;
|
|
1740
|
+
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
1741
|
+
animation-delay: -0.32s;
|
|
1875
1742
|
}
|
|
1876
|
-
.
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1743
|
+
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
1744
|
+
animation-delay: -0.16s;
|
|
1745
|
+
}
|
|
1746
|
+
|
|
1747
|
+
@keyframes bouncedelay {
|
|
1748
|
+
0%, 80%, 100% {
|
|
1749
|
+
transform: scale(0);
|
|
1750
|
+
}
|
|
1751
|
+
40% {
|
|
1752
|
+
transform: scale(1);
|
|
1753
|
+
}
|
|
1754
|
+
}.dvr-controls[data-dvr-controls] {
|
|
1882
1755
|
display: inline-block;
|
|
1883
|
-
|
|
1884
|
-
|
|
1756
|
+
float: left;
|
|
1757
|
+
color: #fff;
|
|
1758
|
+
line-height: 32px;
|
|
1759
|
+
font-size: 10px;
|
|
1760
|
+
font-weight: bold;
|
|
1761
|
+
margin-left: 6px;
|
|
1762
|
+
height: 40px;
|
|
1763
|
+
line-height: 40px;
|
|
1764
|
+
margin-left: 0;
|
|
1885
1765
|
}
|
|
1886
|
-
.
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
background-color: white;
|
|
1891
|
-
transform: translate(0, 50%);
|
|
1892
|
-
transform: translate(-50%, -50%);
|
|
1893
|
-
left: 50%;
|
|
1894
|
-
/* margin-left: -140px; */
|
|
1895
|
-
top: calc(50% - 20px);
|
|
1896
|
-
/* margin-top: -170px; */
|
|
1766
|
+
.dvr-controls[data-dvr-controls] .live-info {
|
|
1767
|
+
cursor: default;
|
|
1768
|
+
font-family: "Roboto", "Open Sans", Arial, sans-serif;
|
|
1769
|
+
text-transform: uppercase;
|
|
1897
1770
|
}
|
|
1898
|
-
.
|
|
1899
|
-
|
|
1900
|
-
|
|
1771
|
+
.dvr-controls[data-dvr-controls] .live-info:before {
|
|
1772
|
+
content: "";
|
|
1773
|
+
display: inline-block;
|
|
1774
|
+
position: relative;
|
|
1775
|
+
width: 7px;
|
|
1776
|
+
height: 7px;
|
|
1777
|
+
border-radius: 3.5px;
|
|
1778
|
+
margin-right: 3.5px;
|
|
1779
|
+
background-color: #ff0101;
|
|
1780
|
+
}
|
|
1781
|
+
.dvr-controls[data-dvr-controls] .live-info.disabled {
|
|
1782
|
+
opacity: 0.3;
|
|
1783
|
+
}
|
|
1784
|
+
.dvr-controls[data-dvr-controls] .live-info.disabled:before {
|
|
1785
|
+
background-color: #fff;
|
|
1786
|
+
}
|
|
1787
|
+
.dvr-controls[data-dvr-controls] .live-button {
|
|
1788
|
+
cursor: pointer;
|
|
1789
|
+
outline: none;
|
|
1790
|
+
display: none;
|
|
1791
|
+
border: 0;
|
|
1792
|
+
color: #fff;
|
|
1793
|
+
background-color: transparent;
|
|
1794
|
+
height: 32px;
|
|
1795
|
+
padding: 0;
|
|
1796
|
+
opacity: 0.7;
|
|
1797
|
+
font-family: "Roboto", "Open Sans", Arial, sans-serif;
|
|
1798
|
+
text-transform: uppercase;
|
|
1799
|
+
transition: all 0.1s ease;
|
|
1901
1800
|
}
|
|
1902
|
-
.
|
|
1801
|
+
.dvr-controls[data-dvr-controls] .live-button:before {
|
|
1802
|
+
content: "";
|
|
1903
1803
|
display: inline-block;
|
|
1904
|
-
|
|
1905
|
-
|
|
1804
|
+
position: relative;
|
|
1805
|
+
width: 7px;
|
|
1806
|
+
height: 7px;
|
|
1807
|
+
border-radius: 3.5px;
|
|
1808
|
+
margin-right: 3.5px;
|
|
1809
|
+
background-color: #fff;
|
|
1906
1810
|
}
|
|
1907
|
-
.
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
float: right;
|
|
1911
|
-
margin: 5px;
|
|
1912
|
-
cursor: pointer;
|
|
1811
|
+
.dvr-controls[data-dvr-controls] .live-button:hover {
|
|
1812
|
+
opacity: 1;
|
|
1813
|
+
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
1913
1814
|
}
|
|
1914
|
-
.
|
|
1915
|
-
|
|
1815
|
+
.dvr-controls[data-dvr-controls] .live-info {
|
|
1816
|
+
font-size: 14px;
|
|
1817
|
+
letter-spacing: 0.8px;
|
|
1818
|
+
font-weight: 500;
|
|
1819
|
+
color: #fffffe;
|
|
1820
|
+
margin-left: 21px;
|
|
1916
1821
|
}
|
|
1917
|
-
.
|
|
1918
|
-
|
|
1822
|
+
.dvr-controls[data-dvr-controls] .live-info::before {
|
|
1823
|
+
width: 10px;
|
|
1824
|
+
height: 10px;
|
|
1825
|
+
border-radius: 50%;
|
|
1826
|
+
margin-right: 8px;
|
|
1827
|
+
background-color: #ed4f4a;
|
|
1828
|
+
}
|
|
1829
|
+
.dvr-controls[data-dvr-controls] .live-button {
|
|
1830
|
+
height: 40px;
|
|
1831
|
+
opacity: 1;
|
|
1919
1832
|
font-size: 14px;
|
|
1920
|
-
|
|
1833
|
+
letter-spacing: 0.8px;
|
|
1834
|
+
font-weight: 500;
|
|
1835
|
+
margin-left: 20px;
|
|
1921
1836
|
}
|
|
1922
|
-
.
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
padding: 5px;
|
|
1837
|
+
.dvr-controls[data-dvr-controls] .live-button::before {
|
|
1838
|
+
width: 10px;
|
|
1839
|
+
height: 10px;
|
|
1840
|
+
border-radius: 50%;
|
|
1841
|
+
margin-right: 8px;
|
|
1842
|
+
background-color: #cacaca;
|
|
1929
1843
|
}
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1844
|
+
|
|
1845
|
+
.dvr .dvr-controls[data-dvr-controls] .live-info {
|
|
1846
|
+
display: none;
|
|
1933
1847
|
}
|
|
1934
|
-
.
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1848
|
+
.dvr .dvr-controls[data-dvr-controls] .live-button {
|
|
1849
|
+
display: block;
|
|
1850
|
+
}
|
|
1851
|
+
.dvr.media-control.live[data-media-control] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
|
|
1852
|
+
background-color: #005aff;
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1855
|
+
.media-control.live[data-media-control] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
|
|
1856
|
+
background-color: #ff0101;
|
|
1939
1857
|
}.seek-time[data-seek-time] {
|
|
1940
1858
|
position: absolute;
|
|
1941
1859
|
white-space: nowrap;
|
|
@@ -1969,6 +1887,135 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1969
1887
|
.seek-time[data-seek-time] [data-duration]::before {
|
|
1970
1888
|
content: "|";
|
|
1971
1889
|
margin-right: 7px;
|
|
1890
|
+
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
1891
|
+
color: #CCCACA;
|
|
1892
|
+
position: absolute;
|
|
1893
|
+
top: 0;
|
|
1894
|
+
height: 100%;
|
|
1895
|
+
width: 100%;
|
|
1896
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
1897
|
+
z-index: 2000;
|
|
1898
|
+
display: flex;
|
|
1899
|
+
flex-direction: column;
|
|
1900
|
+
justify-content: center;
|
|
1901
|
+
}
|
|
1902
|
+
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
1903
|
+
font-size: 14px;
|
|
1904
|
+
color: #CCCACA;
|
|
1905
|
+
margin-top: 45px;
|
|
1906
|
+
}
|
|
1907
|
+
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
1908
|
+
font-weight: bold;
|
|
1909
|
+
line-height: 30px;
|
|
1910
|
+
font-size: 18px;
|
|
1911
|
+
}
|
|
1912
|
+
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
1913
|
+
width: 90%;
|
|
1914
|
+
margin: 0 auto;
|
|
1915
|
+
}
|
|
1916
|
+
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
1917
|
+
font-size: 13px;
|
|
1918
|
+
margin-top: 15px;
|
|
1919
|
+
}
|
|
1920
|
+
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
1921
|
+
cursor: pointer;
|
|
1922
|
+
width: 30px;
|
|
1923
|
+
margin: 15px auto 0;
|
|
1924
|
+
}.player-poster[data-poster] {
|
|
1925
|
+
display: flex;
|
|
1926
|
+
justify-content: center;
|
|
1927
|
+
align-items: center;
|
|
1928
|
+
position: absolute;
|
|
1929
|
+
height: 100%;
|
|
1930
|
+
width: 100%;
|
|
1931
|
+
z-index: 998;
|
|
1932
|
+
top: 0;
|
|
1933
|
+
left: 0;
|
|
1934
|
+
background-color: #000;
|
|
1935
|
+
background-size: cover;
|
|
1936
|
+
background-repeat: no-repeat;
|
|
1937
|
+
background-position: 50% 50%;
|
|
1938
|
+
}
|
|
1939
|
+
.player-poster[data-poster].clickable {
|
|
1940
|
+
cursor: pointer;
|
|
1941
|
+
}
|
|
1942
|
+
.player-poster[data-poster]:hover .play-wrapper[data-poster] {
|
|
1943
|
+
opacity: 1;
|
|
1944
|
+
}
|
|
1945
|
+
.player-poster[data-poster] .play-wrapper[data-poster] {
|
|
1946
|
+
width: 100%;
|
|
1947
|
+
height: 25%;
|
|
1948
|
+
margin: 0 auto;
|
|
1949
|
+
opacity: 0.75;
|
|
1950
|
+
transition: opacity 0.1s ease;
|
|
1951
|
+
}
|
|
1952
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg {
|
|
1953
|
+
height: 100%;
|
|
1954
|
+
display: inline;
|
|
1955
|
+
}
|
|
1956
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg path {
|
|
1957
|
+
fill: #fff;
|
|
1958
|
+
}.context-menu {
|
|
1959
|
+
z-index: 999;
|
|
1960
|
+
position: absolute;
|
|
1961
|
+
top: 0;
|
|
1962
|
+
left: 0;
|
|
1963
|
+
text-align: center;
|
|
1964
|
+
}
|
|
1965
|
+
.context-menu .context-menu-list {
|
|
1966
|
+
font-family: "Proxima Nova", sans-serif;
|
|
1967
|
+
font-size: 12px;
|
|
1968
|
+
line-height: 12px;
|
|
1969
|
+
list-style-type: none;
|
|
1970
|
+
text-align: left;
|
|
1971
|
+
padding: 5px;
|
|
1972
|
+
margin-left: auto;
|
|
1973
|
+
margin-right: auto;
|
|
1974
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
1975
|
+
border: 1px solid #666;
|
|
1976
|
+
border-radius: 4px;
|
|
1977
|
+
}
|
|
1978
|
+
.context-menu .context-menu-list .context-menu-list-item {
|
|
1979
|
+
color: white;
|
|
1980
|
+
padding: 5px;
|
|
1981
|
+
cursor: pointer;
|
|
1982
|
+
}.media-control-pip button {
|
|
1983
|
+
float: right;
|
|
1984
|
+
height: 40px;
|
|
1985
|
+
margin-right: 20px;
|
|
1986
|
+
}
|
|
1987
|
+
.media-control-pip button svg {
|
|
1988
|
+
height: 20px;
|
|
1989
|
+
}.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
|
|
1990
|
+
height: 0;
|
|
1991
|
+
}
|
|
1992
|
+
|
|
1993
|
+
.skip_time_plugin[data-skip-time] {
|
|
1994
|
+
position: absolute;
|
|
1995
|
+
width: 100%;
|
|
1996
|
+
height: calc(100% - 50px);
|
|
1997
|
+
z-index: 9998;
|
|
1998
|
+
background-color: transparent;
|
|
1999
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
2000
|
+
}
|
|
2001
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
|
|
2002
|
+
width: 100%;
|
|
2003
|
+
height: 100%;
|
|
2004
|
+
display: flex;
|
|
2005
|
+
justify-content: space-between;
|
|
2006
|
+
}
|
|
2007
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
|
|
2008
|
+
width: 33.3%;
|
|
2009
|
+
height: 100%;
|
|
2010
|
+
}.player-logo[data-logo] {
|
|
2011
|
+
position: absolute;
|
|
2012
|
+
z-index: 2;
|
|
2013
|
+
width: 100%;
|
|
2014
|
+
height: 100%;
|
|
2015
|
+
}
|
|
2016
|
+
|
|
2017
|
+
.clappr-logo {
|
|
2018
|
+
position: absolute;
|
|
1972
2019
|
}.scrub-thumbnails {
|
|
1973
2020
|
position: absolute;
|
|
1974
2021
|
bottom: 52px;
|
|
@@ -2030,44 +2077,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
2030
2077
|
}
|
|
2031
2078
|
.scrub-thumbnails .backdrop .carousel img {
|
|
2032
2079
|
width: auto;
|
|
2033
|
-
}.spinner-three-bounce[data-spinner] {
|
|
2034
|
-
position: absolute;
|
|
2035
|
-
width: 70px;
|
|
2036
|
-
text-align: center;
|
|
2037
|
-
z-index: 999;
|
|
2038
|
-
left: 0;
|
|
2039
|
-
right: 0;
|
|
2040
|
-
margin: 0 auto;
|
|
2041
|
-
margin-left: auto;
|
|
2042
|
-
margin-right: auto;
|
|
2043
|
-
/* center vertically */
|
|
2044
|
-
top: 50%;
|
|
2045
|
-
transform: translateY(-50%);
|
|
2046
|
-
}
|
|
2047
|
-
.spinner-three-bounce[data-spinner] > div {
|
|
2048
|
-
width: 18px;
|
|
2049
|
-
height: 18px;
|
|
2050
|
-
background-color: #FFF;
|
|
2051
|
-
border-radius: 100%;
|
|
2052
|
-
display: inline-block;
|
|
2053
|
-
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
2054
|
-
/* Prevent first frame from flickering when animation starts */
|
|
2055
|
-
animation-fill-mode: both;
|
|
2056
|
-
}
|
|
2057
|
-
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
2058
|
-
animation-delay: -0.32s;
|
|
2059
|
-
}
|
|
2060
|
-
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
2061
|
-
animation-delay: -0.16s;
|
|
2062
|
-
}
|
|
2063
|
-
|
|
2064
|
-
@keyframes bouncedelay {
|
|
2065
|
-
0%, 80%, 100% {
|
|
2066
|
-
transform: scale(0);
|
|
2067
|
-
}
|
|
2068
|
-
40% {
|
|
2069
|
-
transform: scale(1);
|
|
2070
|
-
}
|
|
2071
2080
|
}*, :focus, :visited {
|
|
2072
2081
|
outline: none !important;
|
|
2073
2082
|
}
|
|
@@ -2149,13 +2158,4 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
2149
2158
|
.ios-fullscreen::cue {
|
|
2150
2159
|
visibility: visible !important;
|
|
2151
2160
|
font-size: 1em !important;
|
|
2152
|
-
}.player-logo[data-logo] {
|
|
2153
|
-
position: absolute;
|
|
2154
|
-
z-index: 2;
|
|
2155
|
-
width: 100%;
|
|
2156
|
-
height: 100%;
|
|
2157
|
-
}
|
|
2158
|
-
|
|
2159
|
-
.clappr-logo {
|
|
2160
|
-
position: absolute;
|
|
2161
2161
|
}
|