@gcorevideo/player 2.20.4 → 2.20.5
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 +3 -1
- package/dist/core.js +407 -205
- package/dist/index.css +1238 -1238
- package/dist/index.js +542 -383
- package/dist/plugins/index.css +993 -993
- package/dist/plugins/index.js +113 -159
- package/lib/Player.d.ts.map +1 -1
- package/lib/Player.js +2 -2
- package/lib/playback/BasePlayback.d.ts +11 -0
- package/lib/playback/BasePlayback.d.ts.map +1 -0
- package/lib/playback/BasePlayback.js +33 -0
- package/lib/playback/dash-playback/DashPlayback.d.ts +3 -2
- package/lib/playback/dash-playback/DashPlayback.d.ts.map +1 -1
- package/lib/playback/dash-playback/DashPlayback.js +7 -7
- package/lib/playback/hls-playback/HlsPlayback.d.ts +2 -2
- package/lib/playback/hls-playback/HlsPlayback.d.ts.map +1 -1
- package/lib/playback/hls-playback/HlsPlayback.js +8 -5
- package/lib/playback/utils.d.ts +2 -0
- package/lib/playback/utils.d.ts.map +1 -0
- package/lib/playback/utils.js +1 -0
- package/lib/playback.types.d.ts +10 -3
- package/lib/playback.types.d.ts.map +1 -1
- package/lib/playback.types.js +3 -3
- package/lib/plugins/context-menu/ContextMenu.d.ts.map +1 -1
- package/lib/plugins/context-menu/ContextMenu.js +1 -2
- package/lib/plugins/error-screen/ErrorScreen.d.ts +39 -24
- package/lib/plugins/error-screen/ErrorScreen.d.ts.map +1 -1
- package/lib/plugins/error-screen/ErrorScreen.js +70 -136
- package/lib/plugins/media-control/MediaControl.d.ts +1 -1
- package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
- package/lib/plugins/media-control/MediaControl.js +7 -5
- package/lib/plugins/multi-camera/MultiCamera.d.ts.map +1 -1
- package/lib/plugins/multi-camera/MultiCamera.js +2 -3
- package/lib/plugins/poster/Poster.js +1 -1
- package/lib/plugins/source-controller/SourceController.d.ts +2 -1
- package/lib/plugins/source-controller/SourceController.d.ts.map +1 -1
- package/lib/plugins/source-controller/SourceController.js +12 -6
- package/lib/plugins/spinner-three-bounce/SpinnerThreeBounce.d.ts +2 -1
- package/lib/plugins/spinner-three-bounce/SpinnerThreeBounce.d.ts.map +1 -1
- package/lib/plugins/spinner-three-bounce/SpinnerThreeBounce.js +19 -3
- package/lib/testUtils.d.ts +66 -2
- package/lib/testUtils.d.ts.map +1 -1
- package/lib/testUtils.js +95 -2
- package/package.json +2 -2
- package/src/Player.ts +2 -2
- package/src/__tests__/Player.test.ts +2 -3
- package/src/playback/BasePlayback.ts +41 -0
- package/src/playback/dash-playback/DashPlayback.ts +11 -15
- package/src/playback/hls-playback/HlsPlayback.ts +7 -5
- package/src/playback/utils.ts +2 -0
- package/src/playback.types.ts +11 -3
- package/src/plugins/context-menu/ContextMenu.ts +1 -2
- package/src/plugins/error-screen/ErrorScreen.ts +121 -195
- package/src/plugins/error-screen/__tests__/ErrorScreen.test.ts +113 -0
- package/src/plugins/error-screen/__tests__/__snapshots__/ErrorScreen.test.ts.snap +20 -0
- package/src/plugins/level-selector/__tests__/LevelSelector.test.ts +32 -57
- package/src/plugins/media-control/MediaControl.ts +8 -5
- package/src/plugins/multi-camera/MultiCamera.ts +2 -3
- package/src/plugins/poster/Poster.ts +1 -1
- package/src/plugins/source-controller/SourceController.ts +20 -14
- package/src/plugins/source-controller/__tests__/SourceController.test.ts +29 -46
- package/src/plugins/spinner-three-bounce/SpinnerThreeBounce.ts +20 -3
- package/src/testUtils.ts +100 -3
- package/tsconfig.tsbuildinfo +1 -1
package/dist/plugins/index.css
CHANGED
|
@@ -122,718 +122,864 @@
|
|
|
122
122
|
.gplayer-lite-btn::-moz-focus-inner {
|
|
123
123
|
border: 0;
|
|
124
124
|
padding: 0;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
|
|
125
|
+
}*, :focus, :visited {
|
|
126
|
+
outline: none !important;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.audio_selector[data-track-selector] {
|
|
130
|
+
float: right;
|
|
131
|
+
margin-top: 4px;
|
|
132
|
+
position: relative;
|
|
133
|
+
width: 50px;
|
|
134
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
135
|
+
}
|
|
136
|
+
.audio_selector[data-track-selector] button {
|
|
137
|
+
background-color: transparent;
|
|
128
138
|
color: #fff;
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
font-
|
|
132
|
-
|
|
139
|
+
-webkit-font-smoothing: antialiased;
|
|
140
|
+
border: none;
|
|
141
|
+
font-size: 14px;
|
|
142
|
+
cursor: pointer;
|
|
133
143
|
}
|
|
134
|
-
.
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
144
|
+
.audio_selector[data-track-selector] button .audio-text {
|
|
145
|
+
text-overflow: ellipsis;
|
|
146
|
+
overflow: hidden;
|
|
147
|
+
white-space: nowrap;
|
|
148
|
+
max-width: 100px;
|
|
149
|
+
background-color: transparent;
|
|
150
|
+
-webkit-font-smoothing: antialiased;
|
|
151
|
+
border: none;
|
|
152
|
+
font-size: 14px;
|
|
153
|
+
cursor: pointer;
|
|
154
|
+
padding-top: 5px;
|
|
138
155
|
}
|
|
139
|
-
.
|
|
140
|
-
|
|
141
|
-
display: inline-block;
|
|
142
|
-
position: relative;
|
|
143
|
-
width: 7px;
|
|
144
|
-
height: 7px;
|
|
145
|
-
border-radius: 3.5px;
|
|
146
|
-
margin-right: 3.5px;
|
|
147
|
-
background-color: #ff0101;
|
|
156
|
+
.audio_selector[data-track-selector] button:hover {
|
|
157
|
+
color: #c9c9c9;
|
|
148
158
|
}
|
|
149
|
-
.
|
|
150
|
-
|
|
159
|
+
.audio_selector[data-track-selector] button.changing {
|
|
160
|
+
animation: pulse 0.5s infinite alternate;
|
|
151
161
|
}
|
|
152
|
-
.
|
|
153
|
-
|
|
162
|
+
.audio_selector[data-track-selector] button span.audio-arrow {
|
|
163
|
+
width: 9px;
|
|
164
|
+
height: 6px;
|
|
165
|
+
margin-top: 11px;
|
|
166
|
+
margin-left: 5px;
|
|
154
167
|
}
|
|
155
|
-
.
|
|
156
|
-
|
|
157
|
-
|
|
168
|
+
.audio_selector[data-track-selector] > ul {
|
|
169
|
+
max-width: 114px;
|
|
170
|
+
list-style-type: none;
|
|
171
|
+
position: absolute;
|
|
172
|
+
bottom: 25px;
|
|
173
|
+
border: 1px solid black;
|
|
158
174
|
display: none;
|
|
159
|
-
|
|
160
|
-
color: #fff;
|
|
161
|
-
background-color: transparent;
|
|
162
|
-
height: 32px;
|
|
163
|
-
padding: 0;
|
|
164
|
-
opacity: 0.7;
|
|
165
|
-
font-family: "Roboto", "Open Sans", Arial, sans-serif;
|
|
166
|
-
text-transform: uppercase;
|
|
167
|
-
transition: all 0.1s ease;
|
|
175
|
+
background-color: #e6e6e6;
|
|
168
176
|
}
|
|
169
|
-
.
|
|
170
|
-
|
|
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: #fff;
|
|
177
|
+
.audio_selector[data-track-selector] li {
|
|
178
|
+
font-size: 10px;
|
|
178
179
|
}
|
|
179
|
-
.
|
|
180
|
-
|
|
181
|
-
|
|
180
|
+
.audio_selector[data-track-selector] li[data-title] {
|
|
181
|
+
background-color: #c3c2c2;
|
|
182
|
+
padding: 5px;
|
|
183
|
+
}
|
|
184
|
+
.audio_selector[data-track-selector] li a {
|
|
185
|
+
color: #444;
|
|
186
|
+
padding: 2px 10px;
|
|
187
|
+
display: block;
|
|
188
|
+
text-decoration: none;
|
|
189
|
+
text-overflow: ellipsis;
|
|
190
|
+
overflow: hidden;
|
|
191
|
+
white-space: nowrap;
|
|
192
|
+
}
|
|
193
|
+
.audio_selector[data-track-selector] li a:hover {
|
|
194
|
+
background-color: #555;
|
|
195
|
+
color: white;
|
|
196
|
+
}
|
|
197
|
+
.audio_selector[data-track-selector] li a:hover a {
|
|
198
|
+
color: white;
|
|
199
|
+
text-decoration: none;
|
|
200
|
+
}
|
|
201
|
+
.audio_selector[data-track-selector] li.current a {
|
|
202
|
+
color: #f00;
|
|
182
203
|
}
|
|
183
204
|
|
|
184
|
-
.
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
margin-
|
|
205
|
+
.audio_selector[data-track-selector] {
|
|
206
|
+
width: auto;
|
|
207
|
+
margin-top: 7px;
|
|
208
|
+
margin-right: 20px;
|
|
188
209
|
}
|
|
189
|
-
.
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
margin-left: 21px;
|
|
210
|
+
.audio_selector[data-track-selector] button[data-level-selector-button],
|
|
211
|
+
.audio_selector[data-track-selector] button[data-track-selector-button] {
|
|
212
|
+
display: flex;
|
|
213
|
+
justify-content: center;
|
|
214
|
+
padding: 0;
|
|
195
215
|
}
|
|
196
|
-
.
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
border-radius: 50%;
|
|
200
|
-
margin-right: 8px;
|
|
201
|
-
background-color: #ed4f4a;
|
|
216
|
+
.audio_selector[data-track-selector] button[data-level-selector-button]:hover,
|
|
217
|
+
.audio_selector[data-track-selector] button[data-track-selector-button]:hover {
|
|
218
|
+
color: white;
|
|
202
219
|
}
|
|
203
|
-
.
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
220
|
+
.audio_selector[data-track-selector] ul {
|
|
221
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
222
|
+
border: none;
|
|
223
|
+
min-width: 60px;
|
|
224
|
+
transform: rotate(180deg);
|
|
225
|
+
border-radius: 4px;
|
|
226
|
+
bottom: 40px;
|
|
227
|
+
right: -2px;
|
|
210
228
|
}
|
|
211
|
-
.
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
background-color: #cacaca;
|
|
229
|
+
.audio_selector[data-track-selector] ul li {
|
|
230
|
+
transform: rotate(-180deg);
|
|
231
|
+
font-size: 16px;
|
|
232
|
+
text-align: right;
|
|
233
|
+
height: 30px;
|
|
217
234
|
}
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
235
|
+
.audio_selector[data-track-selector] ul li a {
|
|
236
|
+
height: 30px;
|
|
237
|
+
padding: 5px 10px;
|
|
238
|
+
color: #fffffe;
|
|
221
239
|
}
|
|
222
|
-
.
|
|
223
|
-
|
|
240
|
+
.audio_selector[data-track-selector] ul li a:hover {
|
|
241
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
224
242
|
}
|
|
225
|
-
.
|
|
226
|
-
|
|
243
|
+
.audio_selector[data-track-selector] ul li:first-child a {
|
|
244
|
+
border-bottom-left-radius: 4px;
|
|
245
|
+
border-bottom-right-radius: 4px;
|
|
246
|
+
}
|
|
247
|
+
.audio_selector[data-track-selector] ul li:last-child a {
|
|
248
|
+
border-top-left-radius: 4px;
|
|
249
|
+
border-top-right-radius: 4px;
|
|
227
250
|
}
|
|
228
251
|
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
252
|
+
@keyframes pulse {
|
|
253
|
+
0% {
|
|
254
|
+
color: #fff;
|
|
255
|
+
}
|
|
256
|
+
50% {
|
|
257
|
+
color: #ff0101;
|
|
258
|
+
}
|
|
259
|
+
100% {
|
|
260
|
+
color: #B80000;
|
|
261
|
+
}
|
|
262
|
+
}.context-menu {
|
|
263
|
+
z-index: 999;
|
|
264
|
+
position: absolute;
|
|
265
|
+
top: 0;
|
|
266
|
+
left: 0;
|
|
267
|
+
text-align: center;
|
|
268
|
+
}
|
|
269
|
+
.context-menu .context-menu-list {
|
|
270
|
+
font-family: "Proxima Nova", sans-serif;
|
|
271
|
+
font-size: 12px;
|
|
272
|
+
line-height: 12px;
|
|
273
|
+
list-style-type: none;
|
|
274
|
+
text-align: left;
|
|
275
|
+
padding: 5px;
|
|
276
|
+
margin-left: auto;
|
|
277
|
+
margin-right: auto;
|
|
278
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
279
|
+
border: 1px solid #666;
|
|
280
|
+
border-radius: 4px;
|
|
281
|
+
}
|
|
282
|
+
.context-menu .context-menu-list .context-menu-list-item {
|
|
283
|
+
color: white;
|
|
284
|
+
padding: 5px;
|
|
285
|
+
cursor: pointer;
|
|
286
|
+
}:root {
|
|
287
|
+
--primary-background-color: #000;
|
|
288
|
+
--secondary-background-color: #262626;
|
|
289
|
+
--primary-text-color: #fff;
|
|
290
|
+
--secondary-text-color: #fff4f2;
|
|
291
|
+
--hover-text-color: #f9b090;
|
|
292
|
+
--speedtest-red: #df564d;
|
|
293
|
+
--speedtest-orange: #df934d;
|
|
294
|
+
--speedtest-yellow: #dfd04d;
|
|
295
|
+
--speedtest-light-green: #c2df4d;
|
|
296
|
+
--speedtest-green: #73df4d;
|
|
233
297
|
}
|
|
234
298
|
|
|
235
|
-
.
|
|
236
|
-
|
|
237
|
-
|
|
299
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box {
|
|
300
|
+
position: absolute;
|
|
301
|
+
display: inline-block;
|
|
302
|
+
bottom: 52px;
|
|
303
|
+
right: 16px;
|
|
304
|
+
padding: 0 10px 12px;
|
|
305
|
+
margin: 0;
|
|
238
306
|
line-height: 20px;
|
|
307
|
+
font-size: 12px;
|
|
308
|
+
font-weight: 500;
|
|
309
|
+
background: var(--primary-background-color);
|
|
310
|
+
color: #fff;
|
|
311
|
+
z-index: 20000;
|
|
312
|
+
overflow: auto;
|
|
313
|
+
max-height: calc(100vh - 60px);
|
|
314
|
+
max-width: calc(100vw - 10px);
|
|
315
|
+
}
|
|
316
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top {
|
|
317
|
+
position: absolute;
|
|
318
|
+
top: 0;
|
|
319
|
+
left: 0;
|
|
320
|
+
z-index: 99990;
|
|
239
321
|
width: 100%;
|
|
240
|
-
|
|
241
|
-
|
|
322
|
+
height: 32px;
|
|
323
|
+
background: var(--primary-background-color);
|
|
242
324
|
}
|
|
243
|
-
.
|
|
244
|
-
float:
|
|
245
|
-
|
|
246
|
-
|
|
325
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button {
|
|
326
|
+
float: right;
|
|
327
|
+
margin-right: 12px;
|
|
328
|
+
margin-top: 10px;
|
|
329
|
+
display: block;
|
|
330
|
+
width: 12px;
|
|
331
|
+
height: 12px;
|
|
247
332
|
}
|
|
248
|
-
.
|
|
249
|
-
|
|
333
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button svg path {
|
|
334
|
+
fill: var(--primary-text-color);
|
|
250
335
|
}
|
|
251
|
-
.
|
|
252
|
-
|
|
336
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top .close-button:hover svg path {
|
|
337
|
+
fill: var(--hover-text-color);
|
|
338
|
+
}
|
|
339
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-main {
|
|
340
|
+
overflow: hidden;
|
|
341
|
+
margin-top: 44px;
|
|
342
|
+
}
|
|
343
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.wide {
|
|
344
|
+
width: 820px;
|
|
345
|
+
}
|
|
346
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul, .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box li {
|
|
253
347
|
list-style-type: none;
|
|
254
|
-
background-color: transparent;
|
|
255
|
-
min-width: 60px;
|
|
256
|
-
border-top: 2px solid rgb(36, 36, 36);
|
|
257
348
|
}
|
|
258
|
-
.
|
|
259
|
-
|
|
260
|
-
|
|
349
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul div, .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box li div {
|
|
350
|
+
padding-left: 2px;
|
|
351
|
+
padding-right: 2px;
|
|
352
|
+
background: var(--primary-background-color);
|
|
261
353
|
}
|
|
262
|
-
.
|
|
263
|
-
|
|
354
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
|
|
355
|
+
display: inline-block;
|
|
356
|
+
float: left;
|
|
264
357
|
padding: 5px;
|
|
358
|
+
width: 200px;
|
|
265
359
|
}
|
|
266
|
-
.
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
padding: 5px 10px;
|
|
271
|
-
line-height: 22px;
|
|
272
|
-
color: #fffffe;
|
|
360
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li {
|
|
361
|
+
position: relative;
|
|
362
|
+
padding: 0 5px;
|
|
363
|
+
text-align: left;
|
|
273
364
|
}
|
|
274
|
-
.
|
|
275
|
-
|
|
276
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
365
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.canvas-wrapper {
|
|
366
|
+
padding: 0;
|
|
277
367
|
}
|
|
278
|
-
.
|
|
279
|
-
|
|
280
|
-
text-decoration: none;
|
|
368
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.canvas-wrapper canvas {
|
|
369
|
+
width: 100%;
|
|
281
370
|
}
|
|
282
|
-
.
|
|
283
|
-
|
|
284
|
-
height: 20px;
|
|
285
|
-
float: left;
|
|
286
|
-
display: block;
|
|
371
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li:nth-child(2n) {
|
|
372
|
+
background: var(--secondary-background-color);
|
|
287
373
|
}
|
|
288
|
-
.
|
|
289
|
-
|
|
374
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li:nth-child(2n) div {
|
|
375
|
+
background: var(--secondary-background-color);
|
|
290
376
|
}
|
|
291
|
-
.
|
|
292
|
-
|
|
377
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li.title {
|
|
378
|
+
text-align: center;
|
|
379
|
+
font-weight: bold;
|
|
380
|
+
padding-bottom: 4px;
|
|
381
|
+
font-size: 14px;
|
|
293
382
|
}
|
|
294
|
-
.
|
|
295
|
-
|
|
296
|
-
}.big-mute-icon-wrapper[data-big-mute] {
|
|
383
|
+
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li div {
|
|
384
|
+
margin: 0;
|
|
297
385
|
position: absolute;
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
386
|
+
right: 0;
|
|
387
|
+
top: 0;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow {
|
|
391
|
+
width: 250px;
|
|
392
|
+
}
|
|
393
|
+
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow ul {
|
|
302
394
|
width: 100%;
|
|
303
|
-
height: calc(100% - 50px);
|
|
304
|
-
margin: 0 auto;
|
|
305
|
-
opacity: 0.75;
|
|
306
|
-
transition: opacity 0.1s ease;
|
|
307
|
-
pointer-events: auto;
|
|
308
395
|
}
|
|
309
|
-
.
|
|
310
|
-
|
|
396
|
+
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary {
|
|
397
|
+
padding: 0 5px;
|
|
398
|
+
height: auto;
|
|
311
399
|
}
|
|
312
|
-
.
|
|
313
|
-
|
|
400
|
+
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block {
|
|
401
|
+
width: 100%;
|
|
402
|
+
flex-direction: column;
|
|
314
403
|
}
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
display: flex;
|
|
318
|
-
align-items: center;
|
|
319
|
-
justify-content: center;
|
|
320
|
-
align-self: center;
|
|
321
|
-
width: 120px;
|
|
322
|
-
height: 120px;
|
|
323
|
-
border: 2px solid white;
|
|
324
|
-
border-radius: 50%;
|
|
325
|
-
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
326
|
-
filter: alpha(opacity=60);
|
|
327
|
-
opacity: 1;
|
|
328
|
-
box-shadow: 0 0 1px 0 white;
|
|
329
|
-
background: rgba(240, 243, 247, 0.9411764706);
|
|
330
|
-
z-index: 10000;
|
|
404
|
+
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock {
|
|
405
|
+
width: 100%;
|
|
331
406
|
}
|
|
332
|
-
.
|
|
333
|
-
|
|
334
|
-
|
|
407
|
+
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
408
|
+
width: 100%;
|
|
409
|
+
}
|
|
410
|
+
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-summary-header {
|
|
411
|
+
padding-top: 12px;
|
|
412
|
+
height: 38px;
|
|
413
|
+
text-align: center;
|
|
414
|
+
}
|
|
415
|
+
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-quality-header {
|
|
416
|
+
text-align: center;
|
|
417
|
+
}
|
|
418
|
+
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer {
|
|
335
419
|
height: 80px;
|
|
336
420
|
}
|
|
337
|
-
.
|
|
338
|
-
|
|
421
|
+
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer-about-link {
|
|
422
|
+
bottom: 0;
|
|
423
|
+
left: 0;
|
|
339
424
|
}
|
|
340
|
-
.
|
|
341
|
-
|
|
425
|
+
.desktop .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box.narrow .speedtest-footer .speedtest-footer-refresh {
|
|
426
|
+
inset: 50% auto auto 50%;
|
|
427
|
+
transform: translate(-50%, -50%);
|
|
342
428
|
}
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
color: #
|
|
429
|
+
|
|
430
|
+
.speed-test-button {
|
|
431
|
+
margin: 10px 0 0;
|
|
432
|
+
color: #000;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.speed-test {
|
|
347
436
|
position: absolute;
|
|
348
437
|
top: 0;
|
|
349
|
-
|
|
350
|
-
width: 100%;
|
|
351
|
-
|
|
352
|
-
z-index:
|
|
353
|
-
display: flex;
|
|
354
|
-
flex-direction: column;
|
|
355
|
-
justify-content: center;
|
|
356
|
-
}
|
|
357
|
-
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
358
|
-
font-size: 14px;
|
|
359
|
-
color: #CCCACA;
|
|
360
|
-
margin-top: 45px;
|
|
438
|
+
left: 0;
|
|
439
|
+
width: 100%;
|
|
440
|
+
height: 100%;
|
|
441
|
+
z-index: 9999;
|
|
361
442
|
}
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
font-size: 18px;
|
|
443
|
+
.speed-test .speed-test-header {
|
|
444
|
+
width: 100%;
|
|
445
|
+
height: 32px;
|
|
366
446
|
}
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
margin:
|
|
447
|
+
.speed-test .speed-test-header .close-speed-test {
|
|
448
|
+
float: right;
|
|
449
|
+
margin-right: 5px;
|
|
450
|
+
line-height: 32px;
|
|
451
|
+
cursor: pointer;
|
|
452
|
+
color: var(--primary-text-color);
|
|
370
453
|
}
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
margin-top: 15px;
|
|
454
|
+
.speed-test .speed-test-header .close-speed-test:hover {
|
|
455
|
+
color: var(--hover-text-color);
|
|
374
456
|
}
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
width: 30px;
|
|
378
|
-
margin: 15px auto 0;
|
|
379
|
-
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
457
|
+
|
|
458
|
+
.settings-button {
|
|
380
459
|
float: right;
|
|
381
|
-
|
|
382
|
-
}
|
|
383
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .button-gear {
|
|
460
|
+
margin: 0 12px 0 0;
|
|
384
461
|
height: 40px;
|
|
385
|
-
width:
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .button-gear svg {
|
|
389
|
-
height: 20px;
|
|
462
|
+
width: 24px;
|
|
463
|
+
border: none;
|
|
464
|
+
padding: 0;
|
|
390
465
|
}
|
|
391
|
-
|
|
466
|
+
|
|
467
|
+
.settings-options-list {
|
|
392
468
|
position: absolute;
|
|
393
469
|
right: 16px;
|
|
394
470
|
bottom: 52px;
|
|
395
|
-
|
|
471
|
+
background: var(--primary-background-color);
|
|
396
472
|
width: 250px;
|
|
397
|
-
|
|
473
|
+
height: 48px;
|
|
398
474
|
z-index: 9999;
|
|
399
475
|
border-radius: 4px;
|
|
400
476
|
}
|
|
401
|
-
.
|
|
402
|
-
padding: 8px 0;
|
|
403
|
-
}
|
|
404
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list svg {
|
|
477
|
+
.settings-options-list svg {
|
|
405
478
|
float: left;
|
|
406
479
|
margin-right: 10px;
|
|
407
480
|
}
|
|
408
|
-
.
|
|
481
|
+
.settings-options-list .settings-speedtest-option {
|
|
482
|
+
color: var(--primary-text-color);
|
|
409
483
|
margin: 0;
|
|
410
484
|
text-align: left;
|
|
485
|
+
height: 24px;
|
|
411
486
|
line-height: 22px;
|
|
412
|
-
padding:
|
|
487
|
+
padding: 14px;
|
|
413
488
|
width: 250px;
|
|
414
489
|
font-size: 12px;
|
|
415
490
|
}
|
|
416
|
-
.
|
|
417
|
-
|
|
418
|
-
margin-right: -14px;
|
|
491
|
+
.settings-options-list .settings-speedtest-option:hover {
|
|
492
|
+
color: var(--hover-text-color);
|
|
419
493
|
}
|
|
420
|
-
.
|
|
421
|
-
|
|
422
|
-
margin-right: 8px;
|
|
494
|
+
.settings-options-list .settings-speedtest-option:hover svg path {
|
|
495
|
+
fill: var(--hover-text-color);
|
|
423
496
|
}
|
|
424
|
-
.
|
|
425
|
-
|
|
426
|
-
}:root {
|
|
427
|
-
--primary-background-color: #000;
|
|
428
|
-
--secondary-background-color: #262626;
|
|
429
|
-
--primary-text-color: #fff;
|
|
430
|
-
--secondary-text-color: #fff4f2;
|
|
431
|
-
--hover-text-color: #f9b090;
|
|
432
|
-
--speedtest-red: #df564d;
|
|
433
|
-
--speedtest-orange: #df934d;
|
|
434
|
-
--speedtest-yellow: #dfd04d;
|
|
435
|
-
--speedtest-light-green: #c2df4d;
|
|
436
|
-
--speedtest-green: #73df4d;
|
|
497
|
+
.settings-options-list .settings-speedtest-option svg path {
|
|
498
|
+
fill: var(--primary-text-color);
|
|
437
499
|
}
|
|
438
500
|
|
|
439
|
-
.
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
bottom:
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
501
|
+
.speedtest-summary {
|
|
502
|
+
width: 100%;
|
|
503
|
+
border-top: 1px solid var(--secondary-background-color) !important;
|
|
504
|
+
border-bottom: 1px solid var(--secondary-background-color) !important;
|
|
505
|
+
display: flex !important;
|
|
506
|
+
flex-direction: column;
|
|
507
|
+
align-items: stretch;
|
|
508
|
+
justify-content: space-between;
|
|
509
|
+
}
|
|
510
|
+
.speedtest-summary .speedtest-summary-header {
|
|
511
|
+
width: 100%;
|
|
512
|
+
padding-top: 4px;
|
|
513
|
+
text-align: left;
|
|
514
|
+
height: 32px;
|
|
515
|
+
font-size: 14px;
|
|
516
|
+
font-weight: 500;
|
|
446
517
|
line-height: 20px;
|
|
518
|
+
}
|
|
519
|
+
.speedtest-summary .speedtest-summary-block {
|
|
520
|
+
position: relative;
|
|
521
|
+
display: flex;
|
|
522
|
+
flex-direction: row;
|
|
523
|
+
width: 100%;
|
|
524
|
+
}
|
|
525
|
+
.speedtest-summary .speedtest-summary-block .speedtest-summary-subblock {
|
|
526
|
+
width: 50%;
|
|
527
|
+
margin-top: 4px;
|
|
528
|
+
margin-bottom: 12px;
|
|
529
|
+
}
|
|
530
|
+
.speedtest-summary .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
531
|
+
padding: 2px;
|
|
532
|
+
width: 248px;
|
|
533
|
+
max-width: 100%;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.speedtest-quality {
|
|
537
|
+
width: 100%;
|
|
538
|
+
height: 36px;
|
|
539
|
+
display: flex !important;
|
|
540
|
+
flex-direction: column !important;
|
|
541
|
+
justify-content: space-between !important;
|
|
542
|
+
}
|
|
543
|
+
.speedtest-quality .speedtest-quality-header {
|
|
447
544
|
font-size: 12px;
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
color:
|
|
451
|
-
|
|
452
|
-
overflow: auto;
|
|
453
|
-
max-height: calc(100vh - 60px);
|
|
454
|
-
max-width: calc(100vw - 10px);
|
|
545
|
+
height: 20px;
|
|
546
|
+
border-left: 2px solid var(--secondary-background-color) !important;
|
|
547
|
+
background-color: var(--secondary-background-color);
|
|
548
|
+
text-align: left;
|
|
455
549
|
}
|
|
456
|
-
.
|
|
550
|
+
.speedtest-quality-content {
|
|
551
|
+
width: 100%;
|
|
552
|
+
margin-top: 8px;
|
|
553
|
+
height: 8px;
|
|
554
|
+
display: flex !important;
|
|
555
|
+
flex-direction: row !important;
|
|
556
|
+
align-items: stretch !important;
|
|
557
|
+
justify-content: space-between;
|
|
558
|
+
}
|
|
559
|
+
.speedtest-quality-content-item {
|
|
560
|
+
width: 18.8%;
|
|
561
|
+
background-color: #fff;
|
|
562
|
+
}
|
|
563
|
+
.speedtest-quality-content-item.speedtest-quality-value-1 {
|
|
564
|
+
background-color: var(--speedtest-red);
|
|
565
|
+
}
|
|
566
|
+
.speedtest-quality-content-item.speedtest-quality-value-2 {
|
|
567
|
+
background-color: var(--speedtest-orange);
|
|
568
|
+
}
|
|
569
|
+
.speedtest-quality-content-item.speedtest-quality-value-3 {
|
|
570
|
+
background-color: var(--speedtest-yellow);
|
|
571
|
+
}
|
|
572
|
+
.speedtest-quality-content-item.speedtest-quality-value-4 {
|
|
573
|
+
background-color: var(--speedtest-light-green);
|
|
574
|
+
}
|
|
575
|
+
.speedtest-quality-content-item.speedtest-quality-value-5 {
|
|
576
|
+
background-color: var(--speedtest-green);
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
.speedtest-footer {
|
|
580
|
+
position: relative;
|
|
581
|
+
float: left;
|
|
582
|
+
width: 100%;
|
|
583
|
+
height: 30px;
|
|
584
|
+
line-height: 16px;
|
|
585
|
+
}
|
|
586
|
+
.speedtest-footer-about-link {
|
|
457
587
|
position: absolute;
|
|
458
|
-
|
|
588
|
+
bottom: 0;
|
|
459
589
|
left: 0;
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
height: 32px;
|
|
463
|
-
background: var(--primary-background-color);
|
|
590
|
+
color: var(--secondary-text-color);
|
|
591
|
+
text-decoration: underline !important;
|
|
464
592
|
}
|
|
465
|
-
.
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
593
|
+
.speedtest-footer-about-link:hover {
|
|
594
|
+
color: var(--hover-text-color);
|
|
595
|
+
}
|
|
596
|
+
.speedtest-footer .speedtest-footer-refresh {
|
|
597
|
+
position: absolute;
|
|
598
|
+
bottom: 0;
|
|
599
|
+
right: 0;
|
|
600
|
+
color: var(--secondary-text-color);
|
|
601
|
+
font-size: 14px;
|
|
602
|
+
font-weight: 400;
|
|
603
|
+
line-height: 16px;
|
|
604
|
+
height: 16px;
|
|
605
|
+
display: flex;
|
|
606
|
+
align-items: center;
|
|
607
|
+
gap: 4px;
|
|
608
|
+
}
|
|
609
|
+
.speedtest-footer .speedtest-footer-refresh svg path {
|
|
610
|
+
fill: var(--secondary-text-color);
|
|
611
|
+
}
|
|
612
|
+
.speedtest-footer .speedtest-footer-refresh:hover {
|
|
613
|
+
color: var(--hover-text-color);
|
|
614
|
+
}
|
|
615
|
+
.speedtest-footer .speedtest-footer-refresh:hover svg path {
|
|
616
|
+
fill: var(--hover-text-color);
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box {
|
|
620
|
+
position: fixed;
|
|
621
|
+
height: auto;
|
|
622
|
+
width: auto;
|
|
623
|
+
inset: 0;
|
|
624
|
+
min-width: 100vw;
|
|
625
|
+
padding-bottom: 4px;
|
|
626
|
+
padding-left: 4px;
|
|
627
|
+
padding-right: 4px;
|
|
628
|
+
}
|
|
629
|
+
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top {
|
|
630
|
+
position: fixed;
|
|
631
|
+
}
|
|
632
|
+
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
|
|
633
|
+
width: 50%;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
@media only screen and (orientation: portrait) {
|
|
637
|
+
.mobile .speedtest-summary {
|
|
638
|
+
padding: 0 5px;
|
|
639
|
+
height: auto;
|
|
640
|
+
}
|
|
641
|
+
.mobile .speedtest-summary-block {
|
|
642
|
+
width: 100%;
|
|
643
|
+
flex-direction: column;
|
|
644
|
+
}
|
|
645
|
+
.mobile .speedtest-summary-block .speedtest-summary-subblock {
|
|
646
|
+
width: 100%;
|
|
647
|
+
}
|
|
648
|
+
.mobile .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
649
|
+
width: 100%;
|
|
650
|
+
}
|
|
651
|
+
.mobile .speedtest-summary-header {
|
|
652
|
+
padding-top: 12px;
|
|
653
|
+
height: 38px;
|
|
654
|
+
text-align: center;
|
|
655
|
+
}
|
|
656
|
+
.mobile .speedtest-quality-header {
|
|
657
|
+
text-align: center;
|
|
658
|
+
}
|
|
659
|
+
.mobile .speedtest-footer .speedtest-footer-refresh {
|
|
660
|
+
inset: 50% auto auto 50%;
|
|
661
|
+
transform: translate(-50%, -50%);
|
|
662
|
+
}
|
|
472
663
|
}
|
|
473
|
-
|
|
474
|
-
|
|
664
|
+
@media only screen and (orientation: landscape) {
|
|
665
|
+
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
|
|
666
|
+
width: 25%;
|
|
667
|
+
}
|
|
668
|
+
}.dvr-controls[data-dvr-controls] {
|
|
669
|
+
display: inline-block;
|
|
670
|
+
float: left;
|
|
671
|
+
color: #fff;
|
|
672
|
+
line-height: 32px;
|
|
673
|
+
font-size: 10px;
|
|
674
|
+
font-weight: bold;
|
|
675
|
+
margin-left: 6px;
|
|
475
676
|
}
|
|
476
|
-
.
|
|
477
|
-
|
|
677
|
+
.dvr-controls[data-dvr-controls] .live-info {
|
|
678
|
+
cursor: default;
|
|
679
|
+
font-family: "Roboto", "Open Sans", Arial, sans-serif;
|
|
680
|
+
text-transform: uppercase;
|
|
478
681
|
}
|
|
479
|
-
.
|
|
480
|
-
|
|
481
|
-
|
|
682
|
+
.dvr-controls[data-dvr-controls] .live-info:before {
|
|
683
|
+
content: "";
|
|
684
|
+
display: inline-block;
|
|
685
|
+
position: relative;
|
|
686
|
+
width: 7px;
|
|
687
|
+
height: 7px;
|
|
688
|
+
border-radius: 3.5px;
|
|
689
|
+
margin-right: 3.5px;
|
|
690
|
+
background-color: #ff0101;
|
|
482
691
|
}
|
|
483
|
-
.
|
|
484
|
-
|
|
692
|
+
.dvr-controls[data-dvr-controls] .live-info.disabled {
|
|
693
|
+
opacity: 0.3;
|
|
485
694
|
}
|
|
486
|
-
.
|
|
487
|
-
|
|
695
|
+
.dvr-controls[data-dvr-controls] .live-info.disabled:before {
|
|
696
|
+
background-color: #fff;
|
|
488
697
|
}
|
|
489
|
-
.
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
698
|
+
.dvr-controls[data-dvr-controls] .live-button {
|
|
699
|
+
cursor: pointer;
|
|
700
|
+
outline: none;
|
|
701
|
+
display: none;
|
|
702
|
+
border: 0;
|
|
703
|
+
color: #fff;
|
|
704
|
+
background-color: transparent;
|
|
705
|
+
height: 32px;
|
|
706
|
+
padding: 0;
|
|
707
|
+
opacity: 0.7;
|
|
708
|
+
font-family: "Roboto", "Open Sans", Arial, sans-serif;
|
|
709
|
+
text-transform: uppercase;
|
|
710
|
+
transition: all 0.1s ease;
|
|
493
711
|
}
|
|
494
|
-
.
|
|
712
|
+
.dvr-controls[data-dvr-controls] .live-button:before {
|
|
713
|
+
content: "";
|
|
495
714
|
display: inline-block;
|
|
496
|
-
float: left;
|
|
497
|
-
padding: 5px;
|
|
498
|
-
width: 200px;
|
|
499
|
-
}
|
|
500
|
-
.clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul li {
|
|
501
715
|
position: relative;
|
|
502
|
-
|
|
503
|
-
|
|
716
|
+
width: 7px;
|
|
717
|
+
height: 7px;
|
|
718
|
+
border-radius: 3.5px;
|
|
719
|
+
margin-right: 3.5px;
|
|
720
|
+
background-color: #fff;
|
|
504
721
|
}
|
|
505
|
-
.
|
|
506
|
-
|
|
722
|
+
.dvr-controls[data-dvr-controls] .live-button:hover {
|
|
723
|
+
opacity: 1;
|
|
724
|
+
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
507
725
|
}
|
|
508
|
-
|
|
509
|
-
|
|
726
|
+
|
|
727
|
+
.dvr-controls[data-dvr-controls] {
|
|
728
|
+
height: 40px;
|
|
729
|
+
line-height: 40px;
|
|
730
|
+
margin-left: 0;
|
|
510
731
|
}
|
|
511
|
-
.
|
|
512
|
-
|
|
732
|
+
.dvr-controls[data-dvr-controls] .live-info {
|
|
733
|
+
font-size: 14px;
|
|
734
|
+
letter-spacing: 0.8px;
|
|
735
|
+
font-weight: 500;
|
|
736
|
+
color: #fffffe;
|
|
737
|
+
margin-left: 21px;
|
|
513
738
|
}
|
|
514
|
-
.
|
|
515
|
-
|
|
739
|
+
.dvr-controls[data-dvr-controls] .live-info::before {
|
|
740
|
+
width: 10px;
|
|
741
|
+
height: 10px;
|
|
742
|
+
border-radius: 50%;
|
|
743
|
+
margin-right: 8px;
|
|
744
|
+
background-color: #ed4f4a;
|
|
516
745
|
}
|
|
517
|
-
.
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
padding-bottom: 4px;
|
|
746
|
+
.dvr-controls[data-dvr-controls] .live-button {
|
|
747
|
+
height: 40px;
|
|
748
|
+
opacity: 1;
|
|
521
749
|
font-size: 14px;
|
|
750
|
+
letter-spacing: 0.8px;
|
|
751
|
+
font-weight: 500;
|
|
752
|
+
margin-left: 20px;
|
|
522
753
|
}
|
|
523
|
-
.
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
754
|
+
.dvr-controls[data-dvr-controls] .live-button::before {
|
|
755
|
+
width: 10px;
|
|
756
|
+
height: 10px;
|
|
757
|
+
border-radius: 50%;
|
|
758
|
+
margin-right: 8px;
|
|
759
|
+
background-color: #cacaca;
|
|
528
760
|
}
|
|
529
761
|
|
|
530
|
-
.
|
|
531
|
-
|
|
762
|
+
.dvr .dvr-controls[data-dvr-controls] .live-info {
|
|
763
|
+
display: none;
|
|
532
764
|
}
|
|
533
|
-
.
|
|
534
|
-
|
|
765
|
+
.dvr .dvr-controls[data-dvr-controls] .live-button {
|
|
766
|
+
display: block;
|
|
535
767
|
}
|
|
536
|
-
.
|
|
537
|
-
|
|
538
|
-
height: auto;
|
|
768
|
+
.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] {
|
|
769
|
+
background-color: #005aff;
|
|
539
770
|
}
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
771
|
+
|
|
772
|
+
.media-control.live[data-media-control] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
|
|
773
|
+
background-color: #ff0101;
|
|
774
|
+
}.clips.bar-container[data-seekbar] {
|
|
775
|
+
clip-path: url("#myClip");
|
|
776
|
+
}*, :focus, :visited {
|
|
777
|
+
outline: none !important;
|
|
543
778
|
}
|
|
544
|
-
|
|
779
|
+
|
|
780
|
+
.gear-wrapper .go-back {
|
|
781
|
+
font-weight: 600;
|
|
782
|
+
font-size: 14px;
|
|
783
|
+
line-height: 20px;
|
|
545
784
|
width: 100%;
|
|
785
|
+
text-align: left;
|
|
786
|
+
padding: 12px;
|
|
546
787
|
}
|
|
547
|
-
.
|
|
548
|
-
|
|
788
|
+
.gear-wrapper .go-back .arrow-left-icon {
|
|
789
|
+
float: left;
|
|
790
|
+
padding-top: 2px;
|
|
791
|
+
padding-right: 2px;
|
|
549
792
|
}
|
|
550
|
-
.
|
|
551
|
-
|
|
552
|
-
height: 38px;
|
|
553
|
-
text-align: center;
|
|
793
|
+
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
794
|
+
height: 16px;
|
|
554
795
|
}
|
|
555
|
-
.
|
|
556
|
-
|
|
796
|
+
.gear-wrapper ul.gear-sub-menu {
|
|
797
|
+
width: 100%;
|
|
798
|
+
list-style-type: none;
|
|
799
|
+
background-color: transparent;
|
|
800
|
+
min-width: 60px;
|
|
801
|
+
border-top: 2px solid rgb(36, 36, 36);
|
|
557
802
|
}
|
|
558
|
-
.
|
|
559
|
-
|
|
803
|
+
.gear-wrapper ul.gear-sub-menu li {
|
|
804
|
+
font-size: 12px;
|
|
805
|
+
text-align: left;
|
|
560
806
|
}
|
|
561
|
-
.
|
|
562
|
-
|
|
563
|
-
|
|
807
|
+
.gear-wrapper ul.gear-sub-menu li[data-title] {
|
|
808
|
+
background-color: #c3c2c2;
|
|
809
|
+
padding: 5px;
|
|
564
810
|
}
|
|
565
|
-
.
|
|
566
|
-
|
|
567
|
-
|
|
811
|
+
.gear-wrapper ul.gear-sub-menu li a {
|
|
812
|
+
display: block;
|
|
813
|
+
text-decoration: none;
|
|
814
|
+
height: 32px;
|
|
815
|
+
padding: 5px 10px;
|
|
816
|
+
line-height: 22px;
|
|
817
|
+
color: #fffffe;
|
|
568
818
|
}
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
color: #000;
|
|
819
|
+
.gear-wrapper ul.gear-sub-menu li a:hover {
|
|
820
|
+
color: white;
|
|
821
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
573
822
|
}
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
top: 0;
|
|
578
|
-
left: 0;
|
|
579
|
-
width: 100%;
|
|
580
|
-
height: 100%;
|
|
581
|
-
z-index: 9999;
|
|
823
|
+
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
824
|
+
color: white;
|
|
825
|
+
text-decoration: none;
|
|
582
826
|
}
|
|
583
|
-
.
|
|
584
|
-
width:
|
|
585
|
-
height:
|
|
827
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
828
|
+
width: 30px;
|
|
829
|
+
height: 20px;
|
|
830
|
+
float: left;
|
|
831
|
+
display: block;
|
|
586
832
|
}
|
|
587
|
-
.
|
|
588
|
-
|
|
589
|
-
margin-right: 5px;
|
|
590
|
-
line-height: 32px;
|
|
591
|
-
cursor: pointer;
|
|
592
|
-
color: var(--primary-text-color);
|
|
833
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
834
|
+
display: none;
|
|
593
835
|
}
|
|
594
|
-
.
|
|
595
|
-
|
|
836
|
+
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
837
|
+
display: inline;
|
|
596
838
|
}
|
|
597
|
-
|
|
598
|
-
|
|
839
|
+
.gear-wrapper svg {
|
|
840
|
+
height: 20px;
|
|
841
|
+
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
599
842
|
float: right;
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
843
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
844
|
+
}
|
|
845
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .button-gear {
|
|
846
|
+
height: 40px;
|
|
847
|
+
width: 40px;
|
|
848
|
+
padding-right: 20px;
|
|
605
849
|
}
|
|
606
|
-
|
|
607
|
-
|
|
850
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .button-gear svg {
|
|
851
|
+
height: 20px;
|
|
852
|
+
}
|
|
853
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
|
|
608
854
|
position: absolute;
|
|
609
855
|
right: 16px;
|
|
610
856
|
bottom: 52px;
|
|
611
|
-
|
|
857
|
+
display: none;
|
|
612
858
|
width: 250px;
|
|
613
|
-
height: 48px;
|
|
859
|
+
min-height: 48px;
|
|
614
860
|
z-index: 9999;
|
|
615
861
|
border-radius: 4px;
|
|
616
862
|
}
|
|
617
|
-
.
|
|
863
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
|
|
864
|
+
padding: 8px 0;
|
|
865
|
+
}
|
|
866
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list svg {
|
|
618
867
|
float: left;
|
|
619
868
|
margin-right: 10px;
|
|
620
869
|
}
|
|
621
|
-
.
|
|
622
|
-
color: var(--primary-text-color);
|
|
870
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
|
|
623
871
|
margin: 0;
|
|
624
872
|
text-align: left;
|
|
625
|
-
height: 24px;
|
|
626
873
|
line-height: 22px;
|
|
627
|
-
padding: 14px;
|
|
874
|
+
padding: 5px 14px;
|
|
628
875
|
width: 250px;
|
|
629
876
|
font-size: 12px;
|
|
630
877
|
}
|
|
631
|
-
.
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
.settings-options-list .settings-speedtest-option:hover svg path {
|
|
635
|
-
fill: var(--hover-text-color);
|
|
636
|
-
}
|
|
637
|
-
.settings-options-list .settings-speedtest-option svg path {
|
|
638
|
-
fill: var(--primary-text-color);
|
|
639
|
-
}
|
|
640
|
-
|
|
641
|
-
.speedtest-summary {
|
|
642
|
-
width: 100%;
|
|
643
|
-
border-top: 1px solid var(--secondary-background-color) !important;
|
|
644
|
-
border-bottom: 1px solid var(--secondary-background-color) !important;
|
|
645
|
-
display: flex !important;
|
|
646
|
-
flex-direction: column;
|
|
647
|
-
align-items: stretch;
|
|
648
|
-
justify-content: space-between;
|
|
649
|
-
}
|
|
650
|
-
.speedtest-summary .speedtest-summary-header {
|
|
651
|
-
width: 100%;
|
|
652
|
-
padding-top: 4px;
|
|
653
|
-
text-align: left;
|
|
654
|
-
height: 32px;
|
|
655
|
-
font-size: 14px;
|
|
656
|
-
font-weight: 500;
|
|
657
|
-
line-height: 20px;
|
|
658
|
-
}
|
|
659
|
-
.speedtest-summary .speedtest-summary-block {
|
|
660
|
-
position: relative;
|
|
661
|
-
display: flex;
|
|
662
|
-
flex-direction: row;
|
|
663
|
-
width: 100%;
|
|
664
|
-
}
|
|
665
|
-
.speedtest-summary .speedtest-summary-block .speedtest-summary-subblock {
|
|
666
|
-
width: 50%;
|
|
667
|
-
margin-top: 4px;
|
|
668
|
-
margin-bottom: 12px;
|
|
669
|
-
}
|
|
670
|
-
.speedtest-summary .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
671
|
-
padding: 2px;
|
|
672
|
-
width: 248px;
|
|
673
|
-
max-width: 100%;
|
|
878
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_arrow-right-icon {
|
|
879
|
+
float: right;
|
|
880
|
+
margin-right: -14px;
|
|
674
881
|
}
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
height: 36px;
|
|
679
|
-
display: flex !important;
|
|
680
|
-
flex-direction: column !important;
|
|
681
|
-
justify-content: space-between !important;
|
|
882
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_value {
|
|
883
|
+
float: right;
|
|
884
|
+
margin-right: 8px;
|
|
682
885
|
}
|
|
683
|
-
.
|
|
684
|
-
font-size: 12px;
|
|
886
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option svg {
|
|
685
887
|
height: 20px;
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
}
|
|
690
|
-
.speedtest-quality-content {
|
|
888
|
+
}.scrub-thumbnails {
|
|
889
|
+
position: absolute;
|
|
890
|
+
bottom: 52px;
|
|
691
891
|
width: 100%;
|
|
692
|
-
|
|
693
|
-
height: 8px;
|
|
694
|
-
display: flex !important;
|
|
695
|
-
flex-direction: row !important;
|
|
696
|
-
align-items: stretch !important;
|
|
697
|
-
justify-content: space-between;
|
|
698
|
-
}
|
|
699
|
-
.speedtest-quality-content-item {
|
|
700
|
-
width: 18.8%;
|
|
701
|
-
background-color: #fff;
|
|
702
|
-
}
|
|
703
|
-
.speedtest-quality-content-item.speedtest-quality-value-1 {
|
|
704
|
-
background-color: var(--speedtest-red);
|
|
705
|
-
}
|
|
706
|
-
.speedtest-quality-content-item.speedtest-quality-value-2 {
|
|
707
|
-
background-color: var(--speedtest-orange);
|
|
892
|
+
transition: opacity 0.3s ease;
|
|
708
893
|
}
|
|
709
|
-
.
|
|
710
|
-
|
|
894
|
+
.scrub-thumbnails.hidden {
|
|
895
|
+
opacity: 0;
|
|
711
896
|
}
|
|
712
|
-
.
|
|
713
|
-
|
|
897
|
+
.scrub-thumbnails .thumbnail-container {
|
|
898
|
+
display: inline-block;
|
|
899
|
+
position: relative;
|
|
900
|
+
overflow: hidden;
|
|
901
|
+
background-color: #000;
|
|
714
902
|
}
|
|
715
|
-
.
|
|
716
|
-
|
|
903
|
+
.scrub-thumbnails .thumbnail-container .thumbnail-img {
|
|
904
|
+
position: absolute;
|
|
905
|
+
width: auto;
|
|
717
906
|
}
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
907
|
+
.scrub-thumbnails .thumbnails-text {
|
|
908
|
+
background-color: rgba(74, 74, 74, 0.7);
|
|
909
|
+
border-radius: 3px;
|
|
910
|
+
white-space: nowrap;
|
|
911
|
+
overflow: hidden;
|
|
912
|
+
text-overflow: ellipsis;
|
|
913
|
+
color: white;
|
|
914
|
+
position: absolute;
|
|
915
|
+
bottom: 23px;
|
|
916
|
+
width: 100px;
|
|
725
917
|
}
|
|
726
|
-
.
|
|
918
|
+
.scrub-thumbnails .spotlight {
|
|
919
|
+
background-color: #4a4a4a;
|
|
920
|
+
overflow: hidden;
|
|
727
921
|
position: absolute;
|
|
728
922
|
bottom: 0;
|
|
729
923
|
left: 0;
|
|
730
|
-
color:
|
|
731
|
-
|
|
924
|
+
border-color: #4a4a4a;
|
|
925
|
+
border-style: solid;
|
|
926
|
+
border-width: 3px;
|
|
927
|
+
border-radius: 3px;
|
|
732
928
|
}
|
|
733
|
-
.
|
|
734
|
-
|
|
929
|
+
.scrub-thumbnails .spotlight img {
|
|
930
|
+
width: auto;
|
|
735
931
|
}
|
|
736
|
-
.
|
|
932
|
+
.scrub-thumbnails .backdrop {
|
|
737
933
|
position: absolute;
|
|
934
|
+
left: 0;
|
|
738
935
|
bottom: 0;
|
|
739
936
|
right: 0;
|
|
740
|
-
color:
|
|
741
|
-
|
|
742
|
-
font-weight: 400;
|
|
743
|
-
line-height: 16px;
|
|
744
|
-
height: 16px;
|
|
745
|
-
display: flex;
|
|
746
|
-
align-items: center;
|
|
747
|
-
gap: 4px;
|
|
748
|
-
}
|
|
749
|
-
.speedtest-footer .speedtest-footer-refresh svg path {
|
|
750
|
-
fill: var(--secondary-text-color);
|
|
751
|
-
}
|
|
752
|
-
.speedtest-footer .speedtest-footer-refresh:hover {
|
|
753
|
-
color: var(--hover-text-color);
|
|
937
|
+
background-color: #000;
|
|
938
|
+
overflow: hidden;
|
|
754
939
|
}
|
|
755
|
-
.
|
|
756
|
-
|
|
940
|
+
.scrub-thumbnails .backdrop .carousel {
|
|
941
|
+
position: absolute;
|
|
942
|
+
top: 0;
|
|
943
|
+
left: 0;
|
|
944
|
+
height: 100%;
|
|
945
|
+
white-space: nowrap;
|
|
757
946
|
}
|
|
758
|
-
|
|
759
|
-
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box {
|
|
760
|
-
position: fixed;
|
|
761
|
-
height: auto;
|
|
947
|
+
.scrub-thumbnails .backdrop .carousel img {
|
|
762
948
|
width: auto;
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
padding-bottom: 4px;
|
|
766
|
-
padding-left: 4px;
|
|
767
|
-
padding-right: 4px;
|
|
768
|
-
}
|
|
769
|
-
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box-top {
|
|
770
|
-
position: fixed;
|
|
771
|
-
}
|
|
772
|
-
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
|
|
773
|
-
width: 50%;
|
|
774
|
-
}
|
|
775
|
-
|
|
776
|
-
@media only screen and (orientation: portrait) {
|
|
777
|
-
.mobile .speedtest-summary {
|
|
778
|
-
padding: 0 5px;
|
|
779
|
-
height: auto;
|
|
780
|
-
}
|
|
781
|
-
.mobile .speedtest-summary-block {
|
|
782
|
-
width: 100%;
|
|
783
|
-
flex-direction: column;
|
|
784
|
-
}
|
|
785
|
-
.mobile .speedtest-summary-block .speedtest-summary-subblock {
|
|
786
|
-
width: 100%;
|
|
787
|
-
}
|
|
788
|
-
.mobile .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
789
|
-
width: 100%;
|
|
790
|
-
}
|
|
791
|
-
.mobile .speedtest-summary-header {
|
|
792
|
-
padding-top: 12px;
|
|
793
|
-
height: 38px;
|
|
794
|
-
text-align: center;
|
|
795
|
-
}
|
|
796
|
-
.mobile .speedtest-quality-header {
|
|
797
|
-
text-align: center;
|
|
798
|
-
}
|
|
799
|
-
.mobile .speedtest-footer .speedtest-footer-refresh {
|
|
800
|
-
inset: 50% auto auto 50%;
|
|
801
|
-
transform: translate(-50%, -50%);
|
|
802
|
-
}
|
|
803
|
-
}
|
|
804
|
-
@media only screen and (orientation: landscape) {
|
|
805
|
-
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
|
|
806
|
-
width: 25%;
|
|
807
|
-
}
|
|
808
|
-
}.context-menu {
|
|
809
|
-
z-index: 999;
|
|
949
|
+
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
950
|
+
color: #CCCACA;
|
|
810
951
|
position: absolute;
|
|
811
952
|
top: 0;
|
|
812
|
-
|
|
813
|
-
|
|
953
|
+
height: 100%;
|
|
954
|
+
width: 100%;
|
|
955
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
956
|
+
z-index: 2000;
|
|
957
|
+
display: flex;
|
|
958
|
+
flex-direction: column;
|
|
959
|
+
justify-content: center;
|
|
960
|
+
}
|
|
961
|
+
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
962
|
+
font-size: 14px;
|
|
963
|
+
color: #CCCACA;
|
|
964
|
+
margin-top: 45px;
|
|
965
|
+
}
|
|
966
|
+
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
967
|
+
font-weight: bold;
|
|
968
|
+
line-height: 30px;
|
|
969
|
+
font-size: 18px;
|
|
814
970
|
}
|
|
815
|
-
.
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
line-height: 12px;
|
|
819
|
-
list-style-type: none;
|
|
820
|
-
text-align: left;
|
|
821
|
-
padding: 5px;
|
|
822
|
-
margin-left: auto;
|
|
823
|
-
margin-right: auto;
|
|
824
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
825
|
-
border: 1px solid #666;
|
|
826
|
-
border-radius: 4px;
|
|
971
|
+
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
972
|
+
width: 90%;
|
|
973
|
+
margin: 0 auto;
|
|
827
974
|
}
|
|
828
|
-
.
|
|
829
|
-
|
|
830
|
-
|
|
975
|
+
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
976
|
+
font-size: 13px;
|
|
977
|
+
margin-top: 15px;
|
|
978
|
+
}
|
|
979
|
+
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
831
980
|
cursor: pointer;
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
}.level-disabled {
|
|
835
|
-
opacity: 0.5;
|
|
836
|
-
pointer-events: none;
|
|
981
|
+
width: 30px;
|
|
982
|
+
margin: 15px auto 0;
|
|
837
983
|
}[data-player] {
|
|
838
984
|
--bottom-panel: 40px;
|
|
839
985
|
}
|
|
@@ -1439,6 +1585,77 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1439
1585
|
}
|
|
1440
1586
|
.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 {
|
|
1441
1587
|
transform: scaleY(1.5);
|
|
1588
|
+
}.spinner-three-bounce[data-spinner] {
|
|
1589
|
+
position: absolute;
|
|
1590
|
+
width: 70px;
|
|
1591
|
+
text-align: center;
|
|
1592
|
+
z-index: 999;
|
|
1593
|
+
left: 0;
|
|
1594
|
+
right: 0;
|
|
1595
|
+
margin: 0 auto;
|
|
1596
|
+
margin-left: auto;
|
|
1597
|
+
margin-right: auto;
|
|
1598
|
+
/* center vertically */
|
|
1599
|
+
top: 50%;
|
|
1600
|
+
transform: translateY(-50%);
|
|
1601
|
+
}
|
|
1602
|
+
.spinner-three-bounce[data-spinner] > div {
|
|
1603
|
+
width: 18px;
|
|
1604
|
+
height: 18px;
|
|
1605
|
+
background-color: #FFF;
|
|
1606
|
+
border-radius: 100%;
|
|
1607
|
+
display: inline-block;
|
|
1608
|
+
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
1609
|
+
/* Prevent first frame from flickering when animation starts */
|
|
1610
|
+
animation-fill-mode: both;
|
|
1611
|
+
}
|
|
1612
|
+
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
1613
|
+
animation-delay: -0.32s;
|
|
1614
|
+
}
|
|
1615
|
+
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
1616
|
+
animation-delay: -0.16s;
|
|
1617
|
+
}
|
|
1618
|
+
|
|
1619
|
+
@keyframes bouncedelay {
|
|
1620
|
+
0%, 80%, 100% {
|
|
1621
|
+
transform: scale(0);
|
|
1622
|
+
}
|
|
1623
|
+
40% {
|
|
1624
|
+
transform: scale(1);
|
|
1625
|
+
}
|
|
1626
|
+
}.seek-time[data-seek-time] {
|
|
1627
|
+
position: absolute;
|
|
1628
|
+
white-space: nowrap;
|
|
1629
|
+
height: 20px;
|
|
1630
|
+
line-height: 20px;
|
|
1631
|
+
font-size: 0;
|
|
1632
|
+
left: -100%;
|
|
1633
|
+
bottom: 55px;
|
|
1634
|
+
background-color: rgba(2, 2, 2, 0.5);
|
|
1635
|
+
z-index: 9999;
|
|
1636
|
+
transition: opacity 0.1s ease;
|
|
1637
|
+
}
|
|
1638
|
+
.seek-time[data-seek-time].hidden[data-seek-time] {
|
|
1639
|
+
opacity: 0;
|
|
1640
|
+
}
|
|
1641
|
+
.seek-time[data-seek-time] [data-seek-time] {
|
|
1642
|
+
display: inline-block;
|
|
1643
|
+
color: white;
|
|
1644
|
+
font-size: 10px;
|
|
1645
|
+
padding-left: 7px;
|
|
1646
|
+
padding-right: 7px;
|
|
1647
|
+
vertical-align: top;
|
|
1648
|
+
}
|
|
1649
|
+
.seek-time[data-seek-time] [data-duration] {
|
|
1650
|
+
display: inline-block;
|
|
1651
|
+
color: rgba(255, 255, 255, 0.5);
|
|
1652
|
+
font-size: 10px;
|
|
1653
|
+
padding-right: 7px;
|
|
1654
|
+
vertical-align: top;
|
|
1655
|
+
}
|
|
1656
|
+
.seek-time[data-seek-time] [data-duration]::before {
|
|
1657
|
+
content: "|";
|
|
1658
|
+
margin-right: 7px;
|
|
1442
1659
|
}.media-control-skin-1[data-media-control-skin-1] .media-control-quality,
|
|
1443
1660
|
.media-control-skin-1[data-media-control-skin-1] .media-control-audio-tracks {
|
|
1444
1661
|
display: block;
|
|
@@ -1509,206 +1726,142 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1509
1726
|
}
|
|
1510
1727
|
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
|
|
1511
1728
|
display: none !important;
|
|
1512
|
-
}
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
.multicamera[data-multicamera] {
|
|
1517
|
-
float: right;
|
|
1518
|
-
margin-top: 4px;
|
|
1519
|
-
position: relative;
|
|
1520
|
-
margin-right: 20px;
|
|
1521
|
-
width: 20px;
|
|
1522
|
-
}
|
|
1523
|
-
.multicamera[data-multicamera] button {
|
|
1729
|
+
}.big-mute-icon-wrapper[data-big-mute] {
|
|
1730
|
+
position: absolute;
|
|
1731
|
+
z-index: 9998;
|
|
1524
1732
|
background-color: transparent;
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
height: 20px;
|
|
1534
|
-
position: relative;
|
|
1535
|
-
margin-top: 6px;
|
|
1536
|
-
}
|
|
1537
|
-
.multicamera[data-multicamera] button:hover {
|
|
1538
|
-
color: #c9c9c9;
|
|
1539
|
-
}
|
|
1540
|
-
.multicamera[data-multicamera] button.changing {
|
|
1541
|
-
animation: pulse 0.5s infinite alternate;
|
|
1542
|
-
}
|
|
1543
|
-
.multicamera[data-multicamera] button span.quality-arrow {
|
|
1544
|
-
width: 9px;
|
|
1545
|
-
height: 6px;
|
|
1546
|
-
margin-top: 11px;
|
|
1547
|
-
margin-left: 5px;
|
|
1733
|
+
display: flex;
|
|
1734
|
+
justify-content: center;
|
|
1735
|
+
width: 100%;
|
|
1736
|
+
height: calc(100% - 50px);
|
|
1737
|
+
margin: 0 auto;
|
|
1738
|
+
opacity: 0.75;
|
|
1739
|
+
transition: opacity 0.1s ease;
|
|
1740
|
+
pointer-events: auto;
|
|
1548
1741
|
}
|
|
1549
|
-
.
|
|
1550
|
-
padding: 6px 0;
|
|
1551
|
-
right: -24px;
|
|
1552
|
-
width: 245px;
|
|
1553
|
-
list-style-type: none;
|
|
1554
|
-
position: absolute;
|
|
1555
|
-
bottom: 48px;
|
|
1556
|
-
border-radius: 4px;
|
|
1742
|
+
.big-mute-icon-wrapper[data-big-mute].hide {
|
|
1557
1743
|
display: none;
|
|
1558
|
-
background-color: rgba(74, 74, 74, 0.9);
|
|
1559
|
-
}
|
|
1560
|
-
.multicamera[data-multicamera] > ul::after {
|
|
1561
|
-
content: "";
|
|
1562
|
-
position: absolute;
|
|
1563
|
-
top: 100%;
|
|
1564
|
-
left: 85%;
|
|
1565
|
-
margin-left: -10px;
|
|
1566
|
-
width: 0;
|
|
1567
|
-
height: 0;
|
|
1568
|
-
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
1569
|
-
border-right: 10px solid transparent;
|
|
1570
|
-
border-left: 10px solid transparent;
|
|
1571
1744
|
}
|
|
1572
|
-
.
|
|
1573
|
-
font-size: 10px;
|
|
1745
|
+
.big-mute-icon-wrapper[data-big-mute]:hover {
|
|
1574
1746
|
cursor: pointer;
|
|
1575
1747
|
}
|
|
1576
|
-
|
|
1748
|
+
|
|
1749
|
+
.big-mute-icon[data-big-mute-icon] {
|
|
1577
1750
|
display: flex;
|
|
1578
|
-
|
|
1751
|
+
align-items: center;
|
|
1579
1752
|
justify-content: center;
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
1592
|
-
background-color: rgba(0, 0, 0, 0);
|
|
1593
|
-
}
|
|
1594
|
-
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
1595
|
-
background-color: rgba(0, 0, 0, 0.3);
|
|
1596
|
-
}
|
|
1597
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
1598
|
-
width: 80px;
|
|
1599
|
-
height: 60px;
|
|
1753
|
+
align-self: center;
|
|
1754
|
+
width: 120px;
|
|
1755
|
+
height: 120px;
|
|
1756
|
+
border: 2px solid white;
|
|
1757
|
+
border-radius: 50%;
|
|
1758
|
+
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
1759
|
+
filter: alpha(opacity=60);
|
|
1760
|
+
opacity: 1;
|
|
1761
|
+
box-shadow: 0 0 1px 0 white;
|
|
1762
|
+
background: rgba(240, 243, 247, 0.9411764706);
|
|
1763
|
+
z-index: 10000;
|
|
1600
1764
|
}
|
|
1601
|
-
.
|
|
1765
|
+
.big-mute-icon[data-big-mute-icon] svg {
|
|
1766
|
+
margin-left: 5px;
|
|
1602
1767
|
width: 80px;
|
|
1603
|
-
height:
|
|
1604
|
-
}
|
|
1605
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
1606
|
-
width: 120px;
|
|
1607
|
-
text-align: left;
|
|
1608
|
-
margin-left: 15px;
|
|
1768
|
+
height: 80px;
|
|
1609
1769
|
}
|
|
1610
|
-
.
|
|
1611
|
-
|
|
1612
|
-
height: 20px;
|
|
1613
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1614
|
-
font-size: 14px;
|
|
1615
|
-
font-weight: normal;
|
|
1616
|
-
font-style: normal;
|
|
1617
|
-
font-stretch: normal;
|
|
1618
|
-
line-height: 1.43;
|
|
1619
|
-
letter-spacing: normal;
|
|
1620
|
-
text-align: left;
|
|
1621
|
-
color: #fff;
|
|
1622
|
-
text-overflow: ellipsis;
|
|
1623
|
-
overflow: hidden;
|
|
1770
|
+
.big-mute-icon[data-big-mute-icon] svg path {
|
|
1771
|
+
fill: #1f1e1e !important;
|
|
1624
1772
|
}
|
|
1625
|
-
.
|
|
1626
|
-
|
|
1773
|
+
.big-mute-icon[data-big-mute-icon]:hover {
|
|
1774
|
+
background: rgba(240, 243, 247, 0.8784313725);
|
|
1627
1775
|
}
|
|
1628
|
-
.
|
|
1629
|
-
|
|
1630
|
-
|
|
1776
|
+
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
1777
|
+
fill: #151515 !important;
|
|
1778
|
+
}.player-poster[data-poster] {
|
|
1779
|
+
display: flex;
|
|
1780
|
+
justify-content: center;
|
|
1781
|
+
align-items: center;
|
|
1782
|
+
position: absolute;
|
|
1783
|
+
height: 100%;
|
|
1784
|
+
width: 100%;
|
|
1785
|
+
z-index: 998;
|
|
1786
|
+
top: 0;
|
|
1787
|
+
left: 0;
|
|
1788
|
+
background-color: #000;
|
|
1789
|
+
background-size: cover;
|
|
1790
|
+
background-repeat: no-repeat;
|
|
1791
|
+
background-position: 50% 50%;
|
|
1631
1792
|
}
|
|
1632
|
-
.
|
|
1633
|
-
|
|
1634
|
-
padding: 2px 10px;
|
|
1635
|
-
display: block;
|
|
1636
|
-
text-decoration: none;
|
|
1793
|
+
.player-poster[data-poster].clickable {
|
|
1794
|
+
cursor: pointer;
|
|
1637
1795
|
}
|
|
1638
|
-
.
|
|
1639
|
-
|
|
1640
|
-
color: white;
|
|
1796
|
+
.player-poster[data-poster]:hover .play-wrapper[data-poster] {
|
|
1797
|
+
opacity: 1;
|
|
1641
1798
|
}
|
|
1642
|
-
.
|
|
1643
|
-
|
|
1644
|
-
|
|
1799
|
+
.player-poster[data-poster] .play-wrapper[data-poster] {
|
|
1800
|
+
width: 100%;
|
|
1801
|
+
height: 25%;
|
|
1802
|
+
margin: 0 auto;
|
|
1803
|
+
opacity: 0.75;
|
|
1804
|
+
transition: opacity 0.1s ease;
|
|
1645
1805
|
}
|
|
1646
|
-
.
|
|
1647
|
-
|
|
1806
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg {
|
|
1807
|
+
height: 100%;
|
|
1808
|
+
display: inline;
|
|
1809
|
+
}
|
|
1810
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg path {
|
|
1811
|
+
fill: #fff;
|
|
1812
|
+
}.level-disabled {
|
|
1813
|
+
opacity: 0.5;
|
|
1814
|
+
pointer-events: none;
|
|
1815
|
+
}.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
|
|
1816
|
+
height: 0;
|
|
1648
1817
|
}
|
|
1649
1818
|
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
100% {
|
|
1658
|
-
color: #B80000;
|
|
1659
|
-
}
|
|
1660
|
-
}.media-control-pip button {
|
|
1661
|
-
float: right;
|
|
1662
|
-
height: 40px;
|
|
1663
|
-
margin-right: 20px;
|
|
1819
|
+
.skip_time_plugin[data-skip-time] {
|
|
1820
|
+
position: absolute;
|
|
1821
|
+
width: 100%;
|
|
1822
|
+
height: calc(100% - 50px);
|
|
1823
|
+
z-index: 9998;
|
|
1824
|
+
background-color: transparent;
|
|
1825
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1664
1826
|
}
|
|
1665
|
-
.
|
|
1666
|
-
|
|
1827
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
|
|
1828
|
+
width: 100%;
|
|
1829
|
+
height: 100%;
|
|
1830
|
+
display: flex;
|
|
1831
|
+
justify-content: space-between;
|
|
1832
|
+
}
|
|
1833
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
|
|
1834
|
+
width: 33.3%;
|
|
1835
|
+
height: 100%;
|
|
1667
1836
|
}*, :focus, :visited {
|
|
1668
1837
|
outline: none !important;
|
|
1669
1838
|
}
|
|
1670
1839
|
|
|
1671
|
-
.
|
|
1840
|
+
.subtitles[data-subtitles] {
|
|
1672
1841
|
float: right;
|
|
1673
|
-
margin-top: 4px;
|
|
1674
1842
|
position: relative;
|
|
1675
1843
|
width: 50px;
|
|
1676
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1677
1844
|
}
|
|
1678
|
-
.
|
|
1845
|
+
.subtitles[data-subtitles] button {
|
|
1679
1846
|
background-color: transparent;
|
|
1680
1847
|
color: #fff;
|
|
1848
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1681
1849
|
-webkit-font-smoothing: antialiased;
|
|
1682
1850
|
border: none;
|
|
1683
1851
|
font-size: 14px;
|
|
1684
1852
|
cursor: pointer;
|
|
1685
1853
|
}
|
|
1686
|
-
.
|
|
1687
|
-
|
|
1688
|
-
overflow: hidden;
|
|
1689
|
-
white-space: nowrap;
|
|
1690
|
-
max-width: 100px;
|
|
1691
|
-
background-color: transparent;
|
|
1692
|
-
-webkit-font-smoothing: antialiased;
|
|
1693
|
-
border: none;
|
|
1694
|
-
font-size: 14px;
|
|
1695
|
-
cursor: pointer;
|
|
1696
|
-
padding-top: 5px;
|
|
1854
|
+
.subtitles[data-subtitles] button .subtitle-text svg {
|
|
1855
|
+
fill: white;
|
|
1697
1856
|
}
|
|
1698
|
-
.
|
|
1857
|
+
.subtitles[data-subtitles] button:hover {
|
|
1699
1858
|
color: #c9c9c9;
|
|
1700
1859
|
}
|
|
1701
|
-
.
|
|
1860
|
+
.subtitles[data-subtitles] button.changing {
|
|
1702
1861
|
animation: pulse 0.5s infinite alternate;
|
|
1703
1862
|
}
|
|
1704
|
-
.
|
|
1705
|
-
width:
|
|
1706
|
-
height: 6px;
|
|
1707
|
-
margin-top: 11px;
|
|
1708
|
-
margin-left: 5px;
|
|
1709
|
-
}
|
|
1710
|
-
.audio_selector[data-track-selector] > ul {
|
|
1711
|
-
max-width: 114px;
|
|
1863
|
+
.subtitles[data-subtitles] > ul {
|
|
1864
|
+
width: 80px;
|
|
1712
1865
|
list-style-type: none;
|
|
1713
1866
|
position: absolute;
|
|
1714
1867
|
bottom: 25px;
|
|
@@ -1716,79 +1869,30 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1716
1869
|
display: none;
|
|
1717
1870
|
background-color: #e6e6e6;
|
|
1718
1871
|
}
|
|
1719
|
-
.
|
|
1872
|
+
.subtitles[data-subtitles] li {
|
|
1720
1873
|
font-size: 10px;
|
|
1721
1874
|
}
|
|
1722
|
-
.
|
|
1875
|
+
.subtitles[data-subtitles] li[data-title] {
|
|
1723
1876
|
background-color: #c3c2c2;
|
|
1724
1877
|
padding: 5px;
|
|
1725
1878
|
}
|
|
1726
|
-
.
|
|
1879
|
+
.subtitles[data-subtitles] li a {
|
|
1727
1880
|
color: #444;
|
|
1728
1881
|
padding: 2px 10px;
|
|
1729
1882
|
display: block;
|
|
1730
1883
|
text-decoration: none;
|
|
1731
|
-
text-overflow: ellipsis;
|
|
1732
|
-
overflow: hidden;
|
|
1733
|
-
white-space: nowrap;
|
|
1734
1884
|
}
|
|
1735
|
-
.
|
|
1885
|
+
.subtitles[data-subtitles] li a:hover {
|
|
1736
1886
|
background-color: #555;
|
|
1737
1887
|
color: white;
|
|
1738
1888
|
}
|
|
1739
|
-
.
|
|
1889
|
+
.subtitles[data-subtitles] li a:hover a {
|
|
1740
1890
|
color: white;
|
|
1741
1891
|
text-decoration: none;
|
|
1742
1892
|
}
|
|
1743
|
-
.
|
|
1893
|
+
.subtitles[data-subtitles] li.current a {
|
|
1744
1894
|
color: #f00;
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
.audio_selector[data-track-selector] {
|
|
1748
|
-
width: auto;
|
|
1749
|
-
margin-top: 7px;
|
|
1750
|
-
margin-right: 20px;
|
|
1751
|
-
}
|
|
1752
|
-
.audio_selector[data-track-selector] button[data-level-selector-button],
|
|
1753
|
-
.audio_selector[data-track-selector] button[data-track-selector-button] {
|
|
1754
|
-
display: flex;
|
|
1755
|
-
justify-content: center;
|
|
1756
|
-
padding: 0;
|
|
1757
|
-
}
|
|
1758
|
-
.audio_selector[data-track-selector] button[data-level-selector-button]:hover,
|
|
1759
|
-
.audio_selector[data-track-selector] button[data-track-selector-button]:hover {
|
|
1760
|
-
color: white;
|
|
1761
|
-
}
|
|
1762
|
-
.audio_selector[data-track-selector] ul {
|
|
1763
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
1764
|
-
border: none;
|
|
1765
|
-
min-width: 60px;
|
|
1766
|
-
transform: rotate(180deg);
|
|
1767
|
-
border-radius: 4px;
|
|
1768
|
-
bottom: 40px;
|
|
1769
|
-
right: -2px;
|
|
1770
|
-
}
|
|
1771
|
-
.audio_selector[data-track-selector] ul li {
|
|
1772
|
-
transform: rotate(-180deg);
|
|
1773
|
-
font-size: 16px;
|
|
1774
|
-
text-align: right;
|
|
1775
|
-
height: 30px;
|
|
1776
|
-
}
|
|
1777
|
-
.audio_selector[data-track-selector] ul li a {
|
|
1778
|
-
height: 30px;
|
|
1779
|
-
padding: 5px 10px;
|
|
1780
|
-
color: #fffffe;
|
|
1781
|
-
}
|
|
1782
|
-
.audio_selector[data-track-selector] ul li a:hover {
|
|
1783
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
1784
|
-
}
|
|
1785
|
-
.audio_selector[data-track-selector] ul li:first-child a {
|
|
1786
|
-
border-bottom-left-radius: 4px;
|
|
1787
|
-
border-bottom-right-radius: 4px;
|
|
1788
|
-
}
|
|
1789
|
-
.audio_selector[data-track-selector] ul li:last-child a {
|
|
1790
|
-
border-top-left-radius: 4px;
|
|
1791
|
-
border-top-right-radius: 4px;
|
|
1895
|
+
background-color: #555;
|
|
1792
1896
|
}
|
|
1793
1897
|
|
|
1794
1898
|
@keyframes pulse {
|
|
@@ -1801,99 +1905,151 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1801
1905
|
100% {
|
|
1802
1906
|
color: #B80000;
|
|
1803
1907
|
}
|
|
1804
|
-
}
|
|
1805
|
-
|
|
1806
|
-
|
|
1908
|
+
}
|
|
1909
|
+
::cue {
|
|
1910
|
+
visibility: hidden !important;
|
|
1911
|
+
font-size: 0 !important;
|
|
1912
|
+
}
|
|
1913
|
+
|
|
1914
|
+
.ios-fullscreen::cue {
|
|
1915
|
+
visibility: visible !important;
|
|
1916
|
+
font-size: 1em !important;
|
|
1917
|
+
}*, :focus, :visited {
|
|
1918
|
+
outline: none !important;
|
|
1919
|
+
}
|
|
1920
|
+
|
|
1921
|
+
.multicamera[data-multicamera] {
|
|
1922
|
+
float: right;
|
|
1923
|
+
margin-top: 4px;
|
|
1924
|
+
position: relative;
|
|
1925
|
+
margin-right: 20px;
|
|
1926
|
+
width: 20px;
|
|
1927
|
+
}
|
|
1928
|
+
.multicamera[data-multicamera] button {
|
|
1929
|
+
background-color: transparent;
|
|
1930
|
+
color: #fff;
|
|
1931
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1932
|
+
-webkit-font-smoothing: antialiased;
|
|
1933
|
+
border: none;
|
|
1934
|
+
font-size: 14px;
|
|
1935
|
+
padding: 0;
|
|
1936
|
+
}
|
|
1937
|
+
.multicamera[data-multicamera] button svg {
|
|
1807
1938
|
height: 20px;
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
left: -100%;
|
|
1811
|
-
bottom: 55px;
|
|
1812
|
-
background-color: rgba(2, 2, 2, 0.5);
|
|
1813
|
-
z-index: 9999;
|
|
1814
|
-
transition: opacity 0.1s ease;
|
|
1939
|
+
position: relative;
|
|
1940
|
+
margin-top: 6px;
|
|
1815
1941
|
}
|
|
1816
|
-
.
|
|
1817
|
-
|
|
1942
|
+
.multicamera[data-multicamera] button:hover {
|
|
1943
|
+
color: #c9c9c9;
|
|
1818
1944
|
}
|
|
1819
|
-
.
|
|
1820
|
-
|
|
1821
|
-
color: white;
|
|
1822
|
-
font-size: 10px;
|
|
1823
|
-
padding-left: 7px;
|
|
1824
|
-
padding-right: 7px;
|
|
1825
|
-
vertical-align: top;
|
|
1945
|
+
.multicamera[data-multicamera] button.changing {
|
|
1946
|
+
animation: pulse 0.5s infinite alternate;
|
|
1826
1947
|
}
|
|
1827
|
-
.
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
vertical-align: top;
|
|
1948
|
+
.multicamera[data-multicamera] button span.quality-arrow {
|
|
1949
|
+
width: 9px;
|
|
1950
|
+
height: 6px;
|
|
1951
|
+
margin-top: 11px;
|
|
1952
|
+
margin-left: 5px;
|
|
1833
1953
|
}
|
|
1834
|
-
.
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1954
|
+
.multicamera[data-multicamera] > ul {
|
|
1955
|
+
padding: 6px 0;
|
|
1956
|
+
right: -24px;
|
|
1957
|
+
width: 245px;
|
|
1958
|
+
list-style-type: none;
|
|
1959
|
+
position: absolute;
|
|
1960
|
+
bottom: 48px;
|
|
1961
|
+
border-radius: 4px;
|
|
1962
|
+
display: none;
|
|
1963
|
+
background-color: rgba(74, 74, 74, 0.9);
|
|
1964
|
+
}
|
|
1965
|
+
.multicamera[data-multicamera] > ul::after {
|
|
1966
|
+
content: "";
|
|
1967
|
+
position: absolute;
|
|
1968
|
+
top: 100%;
|
|
1969
|
+
left: 85%;
|
|
1970
|
+
margin-left: -10px;
|
|
1971
|
+
width: 0;
|
|
1972
|
+
height: 0;
|
|
1973
|
+
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
1974
|
+
border-right: 10px solid transparent;
|
|
1975
|
+
border-left: 10px solid transparent;
|
|
1839
1976
|
}
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1977
|
+
.multicamera[data-multicamera] li {
|
|
1978
|
+
font-size: 10px;
|
|
1979
|
+
cursor: pointer;
|
|
1980
|
+
}
|
|
1981
|
+
.multicamera[data-multicamera] li .multicamera-item {
|
|
1982
|
+
display: flex;
|
|
1983
|
+
padding: 10px 0;
|
|
1984
|
+
justify-content: center;
|
|
1843
1985
|
position: relative;
|
|
1844
|
-
width: 50px;
|
|
1845
1986
|
}
|
|
1846
|
-
.
|
|
1847
|
-
|
|
1848
|
-
color: #fff;
|
|
1849
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1850
|
-
-webkit-font-smoothing: antialiased;
|
|
1851
|
-
border: none;
|
|
1852
|
-
font-size: 14px;
|
|
1853
|
-
cursor: pointer;
|
|
1987
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
1988
|
+
pointer-events: none;
|
|
1854
1989
|
}
|
|
1855
|
-
.
|
|
1856
|
-
|
|
1990
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
1991
|
+
opacity: 0.5;
|
|
1857
1992
|
}
|
|
1858
|
-
.
|
|
1859
|
-
|
|
1993
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
1994
|
+
opacity: 0.5;
|
|
1860
1995
|
}
|
|
1861
|
-
.
|
|
1862
|
-
|
|
1996
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
1997
|
+
background-color: rgba(0, 0, 0, 0);
|
|
1863
1998
|
}
|
|
1864
|
-
.
|
|
1999
|
+
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
2000
|
+
background-color: rgba(0, 0, 0, 0.3);
|
|
2001
|
+
}
|
|
2002
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
1865
2003
|
width: 80px;
|
|
1866
|
-
|
|
1867
|
-
position: absolute;
|
|
1868
|
-
bottom: 25px;
|
|
1869
|
-
border: 1px solid black;
|
|
1870
|
-
display: none;
|
|
1871
|
-
background-color: #e6e6e6;
|
|
2004
|
+
height: 60px;
|
|
1872
2005
|
}
|
|
1873
|
-
.
|
|
1874
|
-
|
|
2006
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
|
|
2007
|
+
width: 80px;
|
|
2008
|
+
height: 60px;
|
|
1875
2009
|
}
|
|
1876
|
-
.
|
|
2010
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
2011
|
+
width: 120px;
|
|
2012
|
+
text-align: left;
|
|
2013
|
+
margin-left: 15px;
|
|
2014
|
+
}
|
|
2015
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
2016
|
+
width: 120px;
|
|
2017
|
+
height: 20px;
|
|
2018
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
2019
|
+
font-size: 14px;
|
|
2020
|
+
font-weight: normal;
|
|
2021
|
+
font-style: normal;
|
|
2022
|
+
font-stretch: normal;
|
|
2023
|
+
line-height: 1.43;
|
|
2024
|
+
letter-spacing: normal;
|
|
2025
|
+
text-align: left;
|
|
2026
|
+
color: #fff;
|
|
2027
|
+
text-overflow: ellipsis;
|
|
2028
|
+
overflow: hidden;
|
|
2029
|
+
}
|
|
2030
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
2031
|
+
opacity: 0.6;
|
|
2032
|
+
}
|
|
2033
|
+
.multicamera[data-multicamera] li[data-title] {
|
|
1877
2034
|
background-color: #c3c2c2;
|
|
1878
2035
|
padding: 5px;
|
|
1879
2036
|
}
|
|
1880
|
-
.
|
|
2037
|
+
.multicamera[data-multicamera] li a {
|
|
1881
2038
|
color: #444;
|
|
1882
2039
|
padding: 2px 10px;
|
|
1883
2040
|
display: block;
|
|
1884
2041
|
text-decoration: none;
|
|
1885
2042
|
}
|
|
1886
|
-
.
|
|
2043
|
+
.multicamera[data-multicamera] li a:hover {
|
|
1887
2044
|
background-color: #555;
|
|
1888
2045
|
color: white;
|
|
1889
2046
|
}
|
|
1890
|
-
.
|
|
2047
|
+
.multicamera[data-multicamera] li a:hover a {
|
|
1891
2048
|
color: white;
|
|
1892
2049
|
text-decoration: none;
|
|
1893
2050
|
}
|
|
1894
|
-
.
|
|
2051
|
+
.multicamera[data-multicamera] li.current a {
|
|
1895
2052
|
color: #f00;
|
|
1896
|
-
background-color: #555;
|
|
1897
2053
|
}
|
|
1898
2054
|
|
|
1899
2055
|
@keyframes pulse {
|
|
@@ -1906,131 +2062,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1906
2062
|
100% {
|
|
1907
2063
|
color: #B80000;
|
|
1908
2064
|
}
|
|
1909
|
-
}
|
|
1910
|
-
::cue {
|
|
1911
|
-
visibility: hidden !important;
|
|
1912
|
-
font-size: 0 !important;
|
|
1913
|
-
}
|
|
1914
|
-
|
|
1915
|
-
.ios-fullscreen::cue {
|
|
1916
|
-
visibility: visible !important;
|
|
1917
|
-
font-size: 1em !important;
|
|
1918
|
-
}.player-poster[data-poster] {
|
|
1919
|
-
display: flex;
|
|
1920
|
-
justify-content: center;
|
|
1921
|
-
align-items: center;
|
|
1922
|
-
position: absolute;
|
|
1923
|
-
height: 100%;
|
|
1924
|
-
width: 100%;
|
|
1925
|
-
z-index: 998;
|
|
1926
|
-
top: 0;
|
|
1927
|
-
left: 0;
|
|
1928
|
-
background-color: #000;
|
|
1929
|
-
background-size: cover;
|
|
1930
|
-
background-repeat: no-repeat;
|
|
1931
|
-
background-position: 50% 50%;
|
|
1932
|
-
}
|
|
1933
|
-
.player-poster[data-poster].clickable {
|
|
1934
|
-
cursor: pointer;
|
|
1935
|
-
}
|
|
1936
|
-
.player-poster[data-poster]:hover .play-wrapper[data-poster] {
|
|
1937
|
-
opacity: 1;
|
|
1938
|
-
}
|
|
1939
|
-
.player-poster[data-poster] .play-wrapper[data-poster] {
|
|
1940
|
-
width: 100%;
|
|
1941
|
-
height: 25%;
|
|
1942
|
-
margin: 0 auto;
|
|
1943
|
-
opacity: 0.75;
|
|
1944
|
-
transition: opacity 0.1s ease;
|
|
1945
|
-
}
|
|
1946
|
-
.player-poster[data-poster] .play-wrapper[data-poster] svg {
|
|
1947
|
-
height: 100%;
|
|
1948
|
-
display: inline;
|
|
1949
|
-
}
|
|
1950
|
-
.player-poster[data-poster] .play-wrapper[data-poster] svg path {
|
|
1951
|
-
fill: #fff;
|
|
1952
|
-
}.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
|
|
1953
|
-
height: 0;
|
|
1954
|
-
}
|
|
1955
|
-
|
|
1956
|
-
.skip_time_plugin[data-skip-time] {
|
|
1957
|
-
position: absolute;
|
|
1958
|
-
width: 100%;
|
|
1959
|
-
height: calc(100% - 50px);
|
|
1960
|
-
z-index: 9998;
|
|
1961
|
-
background-color: transparent;
|
|
1962
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1963
|
-
}
|
|
1964
|
-
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
|
|
1965
|
-
width: 100%;
|
|
1966
|
-
height: 100%;
|
|
1967
|
-
display: flex;
|
|
1968
|
-
justify-content: space-between;
|
|
1969
|
-
}
|
|
1970
|
-
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
|
|
1971
|
-
width: 33.3%;
|
|
1972
|
-
height: 100%;
|
|
1973
|
-
}.scrub-thumbnails {
|
|
1974
|
-
position: absolute;
|
|
1975
|
-
bottom: 52px;
|
|
1976
|
-
width: 100%;
|
|
1977
|
-
transition: opacity 0.3s ease;
|
|
1978
|
-
}
|
|
1979
|
-
.scrub-thumbnails.hidden {
|
|
1980
|
-
opacity: 0;
|
|
1981
|
-
}
|
|
1982
|
-
.scrub-thumbnails .thumbnail-container {
|
|
1983
|
-
display: inline-block;
|
|
1984
|
-
position: relative;
|
|
1985
|
-
overflow: hidden;
|
|
1986
|
-
background-color: #000;
|
|
1987
|
-
}
|
|
1988
|
-
.scrub-thumbnails .thumbnail-container .thumbnail-img {
|
|
1989
|
-
position: absolute;
|
|
1990
|
-
width: auto;
|
|
1991
|
-
}
|
|
1992
|
-
.scrub-thumbnails .thumbnails-text {
|
|
1993
|
-
background-color: rgba(74, 74, 74, 0.7);
|
|
1994
|
-
border-radius: 3px;
|
|
1995
|
-
white-space: nowrap;
|
|
1996
|
-
overflow: hidden;
|
|
1997
|
-
text-overflow: ellipsis;
|
|
1998
|
-
color: white;
|
|
1999
|
-
position: absolute;
|
|
2000
|
-
bottom: 23px;
|
|
2001
|
-
width: 100px;
|
|
2002
|
-
}
|
|
2003
|
-
.scrub-thumbnails .spotlight {
|
|
2004
|
-
background-color: #4a4a4a;
|
|
2005
|
-
overflow: hidden;
|
|
2006
|
-
position: absolute;
|
|
2007
|
-
bottom: 0;
|
|
2008
|
-
left: 0;
|
|
2009
|
-
border-color: #4a4a4a;
|
|
2010
|
-
border-style: solid;
|
|
2011
|
-
border-width: 3px;
|
|
2012
|
-
border-radius: 3px;
|
|
2013
|
-
}
|
|
2014
|
-
.scrub-thumbnails .spotlight img {
|
|
2015
|
-
width: auto;
|
|
2016
|
-
}
|
|
2017
|
-
.scrub-thumbnails .backdrop {
|
|
2018
|
-
position: absolute;
|
|
2019
|
-
left: 0;
|
|
2020
|
-
bottom: 0;
|
|
2021
|
-
right: 0;
|
|
2022
|
-
background-color: #000;
|
|
2023
|
-
overflow: hidden;
|
|
2024
|
-
}
|
|
2025
|
-
.scrub-thumbnails .backdrop .carousel {
|
|
2026
|
-
position: absolute;
|
|
2027
|
-
top: 0;
|
|
2028
|
-
left: 0;
|
|
2029
|
-
height: 100%;
|
|
2030
|
-
white-space: nowrap;
|
|
2031
|
-
}
|
|
2032
|
-
.scrub-thumbnails .backdrop .carousel img {
|
|
2033
|
-
width: auto;
|
|
2034
2065
|
}.share_plugin[data-share] {
|
|
2035
2066
|
pointer-events: auto;
|
|
2036
2067
|
z-index: 5;
|
|
@@ -2114,44 +2145,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
2114
2145
|
display: inline-block;
|
|
2115
2146
|
margin-right: 5px;
|
|
2116
2147
|
cursor: pointer;
|
|
2117
|
-
}.spinner-three-bounce[data-spinner] {
|
|
2118
|
-
position: absolute;
|
|
2119
|
-
width: 70px;
|
|
2120
|
-
text-align: center;
|
|
2121
|
-
z-index: 999;
|
|
2122
|
-
left: 0;
|
|
2123
|
-
right: 0;
|
|
2124
|
-
margin: 0 auto;
|
|
2125
|
-
margin-left: auto;
|
|
2126
|
-
margin-right: auto;
|
|
2127
|
-
/* center vertically */
|
|
2128
|
-
top: 50%;
|
|
2129
|
-
transform: translateY(-50%);
|
|
2130
|
-
}
|
|
2131
|
-
.spinner-three-bounce[data-spinner] > div {
|
|
2132
|
-
width: 18px;
|
|
2133
|
-
height: 18px;
|
|
2134
|
-
background-color: #FFF;
|
|
2135
|
-
border-radius: 100%;
|
|
2136
|
-
display: inline-block;
|
|
2137
|
-
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
2138
|
-
/* Prevent first frame from flickering when animation starts */
|
|
2139
|
-
animation-fill-mode: both;
|
|
2140
|
-
}
|
|
2141
|
-
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
2142
|
-
animation-delay: -0.32s;
|
|
2143
|
-
}
|
|
2144
|
-
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
2145
|
-
animation-delay: -0.16s;
|
|
2146
|
-
}
|
|
2147
|
-
|
|
2148
|
-
@keyframes bouncedelay {
|
|
2149
|
-
0%, 80%, 100% {
|
|
2150
|
-
transform: scale(0);
|
|
2151
|
-
}
|
|
2152
|
-
40% {
|
|
2153
|
-
transform: scale(1);
|
|
2154
|
-
}
|
|
2155
2148
|
}.player-logo[data-logo] {
|
|
2156
2149
|
position: absolute;
|
|
2157
2150
|
z-index: 2;
|
|
@@ -2161,4 +2154,11 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
2161
2154
|
|
|
2162
2155
|
.clappr-logo {
|
|
2163
2156
|
position: absolute;
|
|
2157
|
+
}.media-control-pip button {
|
|
2158
|
+
float: right;
|
|
2159
|
+
height: 40px;
|
|
2160
|
+
margin-right: 20px;
|
|
2161
|
+
}
|
|
2162
|
+
.media-control-pip button svg {
|
|
2163
|
+
height: 20px;
|
|
2164
2164
|
}
|