@gcorevideo/player 2.22.17 → 2.22.20
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/audio-selector/track-selector.ejs +3 -3
- package/assets/bottom-gear/bottomgear.ejs +3 -3
- package/assets/clappr-nerd-stats/clappr-nerd-stats.ejs +76 -78
- package/assets/clappr-nerd-stats/clappr-nerd-stats.scss +10 -7
- package/assets/dvr-controls/dvr_controls.scss +0 -12
- package/dist/core.js +5 -7
- package/dist/index.css +1245 -1251
- package/dist/index.js +425 -261
- package/dist/player.d.ts +121 -108
- package/dist/plugins/index.css +577 -583
- package/dist/plugins/index.js +355 -187
- package/docs/api/player.bitratetrackrecord.md +20 -0
- package/docs/api/player.clapprstats.exportmetrics.md +2 -2
- package/docs/api/player.clapprstats.md +0 -4
- package/docs/api/player.clapprstatschronograph.md +115 -0
- package/docs/api/player.clapprstatscounter.md +211 -0
- package/docs/api/player.clapprstatsevents.md +51 -0
- package/docs/api/player.clapprstatsmetrics.md +52 -0
- package/docs/api/player.clipspluginsettings.md +1 -1
- package/docs/api/player.md +57 -2
- package/docs/api/player.nerdstats.md +3 -3
- package/docs/api/player.playerconfig.md +1 -1
- package/docs/api/player.playerconfig.playbacktype.md +6 -1
- package/docs/api/player.timeupdate.md +6 -3
- package/lib/playback/dash-playback/DashPlayback.d.ts +0 -1
- package/lib/playback/dash-playback/DashPlayback.d.ts.map +1 -1
- package/lib/playback/dash-playback/DashPlayback.js +4 -5
- package/lib/playback/hls-playback/HlsPlayback.d.ts +1 -1
- package/lib/playback/hls-playback/HlsPlayback.d.ts.map +1 -1
- package/lib/playback/hls-playback/HlsPlayback.js +0 -1
- package/lib/playback.types.d.ts +2 -3
- package/lib/playback.types.d.ts.map +1 -1
- package/lib/plugins/audio-selector/AudioSelector.d.ts +1 -1
- package/lib/plugins/audio-selector/AudioSelector.d.ts.map +1 -1
- package/lib/plugins/audio-selector/AudioSelector.js +15 -8
- package/lib/plugins/bottom-gear/BottomGear.d.ts +1 -1
- package/lib/plugins/bottom-gear/BottomGear.js +2 -2
- package/lib/plugins/clappr-nerd-stats/NerdStats.d.ts +17 -14
- package/lib/plugins/clappr-nerd-stats/NerdStats.d.ts.map +1 -1
- package/lib/plugins/clappr-nerd-stats/NerdStats.js +175 -124
- package/lib/plugins/clappr-nerd-stats/formatter.d.ts +5 -0
- package/lib/plugins/clappr-nerd-stats/formatter.d.ts.map +1 -1
- package/lib/plugins/clappr-nerd-stats/formatter.js +56 -24
- package/lib/plugins/clappr-nerd-stats/speedtest/index.d.ts +2 -2
- package/lib/plugins/clappr-nerd-stats/speedtest/index.d.ts.map +1 -1
- package/lib/plugins/clappr-nerd-stats/speedtest/types.d.ts +1 -1
- package/lib/plugins/clappr-nerd-stats/speedtest/types.d.ts.map +1 -1
- package/lib/plugins/clappr-nerd-stats/types.d.ts +3 -0
- package/lib/plugins/clappr-nerd-stats/types.d.ts.map +1 -1
- package/lib/plugins/clappr-nerd-stats/utils.d.ts +7 -0
- package/lib/plugins/clappr-nerd-stats/utils.d.ts.map +1 -0
- package/lib/plugins/clappr-nerd-stats/utils.js +67 -0
- package/lib/plugins/clappr-stats/ClapprStats.d.ts +5 -2
- package/lib/plugins/clappr-stats/ClapprStats.d.ts.map +1 -1
- package/lib/plugins/clappr-stats/ClapprStats.js +31 -33
- package/lib/plugins/clappr-stats/types.d.ts +21 -22
- package/lib/plugins/clappr-stats/types.d.ts.map +1 -1
- package/lib/plugins/clappr-stats/types.js +22 -22
- package/lib/plugins/clappr-stats/utils.d.ts +2 -2
- package/lib/plugins/clappr-stats/utils.d.ts.map +1 -1
- package/lib/plugins/clappr-stats/utils.js +0 -1
- package/lib/plugins/click-to-pause/ClickToPause.js +1 -1
- package/lib/plugins/clips/Clips.d.ts +1 -1
- package/lib/plugins/dvr-controls/DvrControls.d.ts +6 -2
- package/lib/plugins/dvr-controls/DvrControls.d.ts.map +1 -1
- package/lib/plugins/dvr-controls/DvrControls.js +39 -27
- package/lib/plugins/media-control/MediaControl.d.ts +6 -2
- package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
- package/lib/plugins/media-control/MediaControl.js +20 -9
- package/lib/plugins/picture-in-picture/PictureInPicture.js +1 -1
- package/lib/plugins/seek-time/SeekTime.d.ts +1 -1
- package/lib/plugins/seek-time/SeekTime.d.ts.map +1 -1
- package/lib/plugins/seek-time/SeekTime.js +3 -4
- package/lib/plugins/subtitles/ClosedCaptions.js +1 -1
- package/lib/plugins/vast-ads/VastAds.js +1 -1
- package/lib/plugins/vast-ads/rollmanager.js +1 -1
- package/lib/testUtils.d.ts.map +1 -1
- package/lib/testUtils.js +7 -4
- package/lib/types.d.ts +1 -1
- package/package.json +3 -3
- package/src/playback/__tests__/HTML5Video.test.ts +2 -2
- package/src/playback/dash-playback/DashPlayback.ts +5 -7
- package/src/playback/hls-playback/HlsPlayback.ts +2 -4
- package/src/playback.types.ts +2 -3
- package/src/plugins/audio-selector/AudioSelector.ts +14 -7
- package/src/plugins/audio-selector/__tests__/AudioSelector.test.ts +8 -8
- package/src/plugins/audio-selector/__tests__/__snapshots__/AudioSelector.test.ts.snap +15 -15
- package/src/plugins/bottom-gear/BottomGear.ts +2 -2
- package/src/plugins/bottom-gear/__tests__/BottomGear.test.ts +8 -5
- package/src/plugins/bottom-gear/__tests__/__snapshots__/BottomGear.test.ts.snap +3 -3
- package/src/plugins/clappr-nerd-stats/NerdStats.ts +216 -143
- package/src/plugins/clappr-nerd-stats/formatter.ts +91 -47
- package/src/plugins/clappr-nerd-stats/speedtest/index.ts +2 -2
- package/src/plugins/clappr-nerd-stats/speedtest/types.ts +1 -1
- package/src/plugins/clappr-nerd-stats/types.ts +43 -3
- package/src/plugins/clappr-nerd-stats/utils.ts +75 -0
- package/src/plugins/clappr-stats/ClapprStats.ts +41 -40
- package/src/plugins/clappr-stats/__tests__/ClapprStats.test.ts +12 -12
- package/src/plugins/clappr-stats/types.ts +43 -44
- package/src/plugins/clappr-stats/utils.ts +4 -5
- package/src/plugins/click-to-pause/ClickToPause.ts +1 -1
- package/src/plugins/clips/Clips.ts +1 -1
- package/src/plugins/clips/__tests__/Clips.test.ts +1 -1
- package/src/plugins/clips/__tests__/__snapshots__/Clips.test.ts.snap +1 -1
- package/src/plugins/dvr-controls/DvrControls.ts +51 -37
- package/src/plugins/dvr-controls/__tests__/DvrControls.test.ts +84 -26
- package/src/plugins/dvr-controls/__tests__/__snapshots__/DvrControls.test.ts.snap +0 -12
- package/src/plugins/media-control/MediaControl.ts +21 -9
- package/src/plugins/media-control/__tests__/MediaControl.test.ts +8 -5
- package/src/plugins/media-control/__tests__/__snapshots__/MediaControl.test.ts.snap +20 -20
- package/src/plugins/picture-in-picture/PictureInPicture.ts +1 -1
- package/src/plugins/seek-time/SeekTime.ts +4 -5
- package/src/plugins/subtitles/ClosedCaptions.ts +1 -1
- package/src/plugins/subtitles/__tests__/ClosedCaptions.test.ts +1 -1
- package/src/plugins/vast-ads/VastAds.ts +1 -1
- package/src/plugins/vast-ads/rollmanager.ts +1 -1
- package/src/testUtils.ts +11 -5
- package/src/types.ts +1 -1
- package/temp/player.api.json +630 -12
- package/tsconfig.tsbuildinfo +1 -1
package/dist/plugins/index.css
CHANGED
|
@@ -122,339 +122,6 @@
|
|
|
122
122
|
.gplayer-lite-btn::-moz-focus-inner {
|
|
123
123
|
border: 0;
|
|
124
124
|
padding: 0;
|
|
125
|
-
}.dvr-controls[data-dvr] {
|
|
126
|
-
display: inline-block;
|
|
127
|
-
color: var(--player-dvr-color);
|
|
128
|
-
line-height: 32px;
|
|
129
|
-
font-size: 10px;
|
|
130
|
-
font-weight: bold;
|
|
131
|
-
margin-left: 6px;
|
|
132
|
-
height: 40px;
|
|
133
|
-
line-height: 40px;
|
|
134
|
-
margin-left: 0;
|
|
135
|
-
}
|
|
136
|
-
.dvr-controls[data-dvr] .live-info {
|
|
137
|
-
cursor: default;
|
|
138
|
-
text-transform: uppercase;
|
|
139
|
-
}
|
|
140
|
-
.dvr-controls[data-dvr] .live-info:before {
|
|
141
|
-
content: "";
|
|
142
|
-
display: inline-block;
|
|
143
|
-
position: relative;
|
|
144
|
-
width: 7px;
|
|
145
|
-
height: 7px;
|
|
146
|
-
border-radius: 3.5px;
|
|
147
|
-
margin-right: 3.5px;
|
|
148
|
-
background-color: var(--player-live-color);
|
|
149
|
-
}
|
|
150
|
-
.dvr-controls[data-dvr] .live-info.disabled {
|
|
151
|
-
opacity: 0.3;
|
|
152
|
-
}
|
|
153
|
-
.dvr-controls[data-dvr] .live-info.disabled:before {
|
|
154
|
-
background-color: var(--player-dvr-color);
|
|
155
|
-
}
|
|
156
|
-
.dvr-controls[data-dvr] .live-button {
|
|
157
|
-
cursor: pointer;
|
|
158
|
-
outline: none;
|
|
159
|
-
display: none;
|
|
160
|
-
border: 0;
|
|
161
|
-
color: var(--player-dvr-color);
|
|
162
|
-
background-color: transparent;
|
|
163
|
-
height: 32px;
|
|
164
|
-
padding: 0;
|
|
165
|
-
opacity: 0.7;
|
|
166
|
-
text-transform: uppercase;
|
|
167
|
-
transition: all 0.1s ease;
|
|
168
|
-
}
|
|
169
|
-
.dvr-controls[data-dvr] .live-button:before {
|
|
170
|
-
content: "";
|
|
171
|
-
display: inline-block;
|
|
172
|
-
position: relative;
|
|
173
|
-
width: 7px;
|
|
174
|
-
height: 7px;
|
|
175
|
-
border-radius: 3.5px;
|
|
176
|
-
margin-right: 3.5px;
|
|
177
|
-
background-color: var(--player-dvr-color);
|
|
178
|
-
}
|
|
179
|
-
.dvr-controls[data-dvr] .live-button:hover {
|
|
180
|
-
opacity: 1;
|
|
181
|
-
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
182
|
-
}
|
|
183
|
-
.dvr-controls[data-dvr] .live-info {
|
|
184
|
-
font-size: 14px;
|
|
185
|
-
letter-spacing: 0.8px;
|
|
186
|
-
font-weight: 500;
|
|
187
|
-
color: #fffffe;
|
|
188
|
-
margin-left: 21px;
|
|
189
|
-
}
|
|
190
|
-
.dvr-controls[data-dvr] .live-info::before {
|
|
191
|
-
width: 10px;
|
|
192
|
-
height: 10px;
|
|
193
|
-
border-radius: 50%;
|
|
194
|
-
margin-right: 8px;
|
|
195
|
-
background-color: #ed4f4a;
|
|
196
|
-
}
|
|
197
|
-
.dvr-controls[data-dvr] .live-button {
|
|
198
|
-
height: 40px;
|
|
199
|
-
opacity: 1;
|
|
200
|
-
font-size: 14px;
|
|
201
|
-
letter-spacing: 0.8px;
|
|
202
|
-
font-weight: 500;
|
|
203
|
-
margin-left: 20px;
|
|
204
|
-
}
|
|
205
|
-
.dvr-controls[data-dvr] .live-button::before {
|
|
206
|
-
width: 10px;
|
|
207
|
-
height: 10px;
|
|
208
|
-
border-radius: 50%;
|
|
209
|
-
margin-right: 8px;
|
|
210
|
-
background-color: #cacaca;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
.dvr .dvr-controls[data-dvr] .live-info {
|
|
214
|
-
display: none;
|
|
215
|
-
}
|
|
216
|
-
.dvr .dvr-controls[data-dvr] .live-button {
|
|
217
|
-
display: block;
|
|
218
|
-
}*, :focus, :visited {
|
|
219
|
-
outline: none !important;
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
.gear-wrapper .go-back {
|
|
223
|
-
font-weight: 600;
|
|
224
|
-
font-size: 14px;
|
|
225
|
-
line-height: 20px;
|
|
226
|
-
width: 100%;
|
|
227
|
-
text-align: left;
|
|
228
|
-
padding: 12px;
|
|
229
|
-
}
|
|
230
|
-
.gear-wrapper .go-back .arrow-left-icon {
|
|
231
|
-
float: left;
|
|
232
|
-
padding-top: 2px;
|
|
233
|
-
padding-right: 2px;
|
|
234
|
-
}
|
|
235
|
-
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
236
|
-
height: 16px;
|
|
237
|
-
}
|
|
238
|
-
.gear-wrapper ul.gear-sub-menu {
|
|
239
|
-
width: 100%;
|
|
240
|
-
list-style-type: none;
|
|
241
|
-
min-width: 60px;
|
|
242
|
-
border-top: 2px solid rgb(36, 36, 36);
|
|
243
|
-
}
|
|
244
|
-
.gear-wrapper ul.gear-sub-menu li {
|
|
245
|
-
font-size: 12px;
|
|
246
|
-
text-align: left;
|
|
247
|
-
}
|
|
248
|
-
.gear-wrapper ul.gear-sub-menu li[data-title] {
|
|
249
|
-
background-color: #c3c2c2;
|
|
250
|
-
padding: 5px;
|
|
251
|
-
}
|
|
252
|
-
.gear-wrapper ul.gear-sub-menu li a {
|
|
253
|
-
display: block;
|
|
254
|
-
text-decoration: none;
|
|
255
|
-
height: 32px;
|
|
256
|
-
padding: 5px 10px;
|
|
257
|
-
line-height: 22px;
|
|
258
|
-
color: #fffffe;
|
|
259
|
-
}
|
|
260
|
-
.gear-wrapper ul.gear-sub-menu li a:hover {
|
|
261
|
-
color: white;
|
|
262
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
263
|
-
}
|
|
264
|
-
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
265
|
-
color: white;
|
|
266
|
-
text-decoration: none;
|
|
267
|
-
}
|
|
268
|
-
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
269
|
-
width: 30px;
|
|
270
|
-
height: 20px;
|
|
271
|
-
float: left;
|
|
272
|
-
display: block;
|
|
273
|
-
}
|
|
274
|
-
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
275
|
-
display: none;
|
|
276
|
-
}
|
|
277
|
-
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
278
|
-
display: inline;
|
|
279
|
-
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
280
|
-
order: 99;
|
|
281
|
-
height: 20px;
|
|
282
|
-
}
|
|
283
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
|
|
284
|
-
position: absolute;
|
|
285
|
-
right: 16px;
|
|
286
|
-
bottom: 52px;
|
|
287
|
-
width: 250px;
|
|
288
|
-
min-height: 48px;
|
|
289
|
-
z-index: 9999;
|
|
290
|
-
border-radius: 4px;
|
|
291
|
-
}
|
|
292
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
|
|
293
|
-
padding: 8px 0;
|
|
294
|
-
}
|
|
295
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
|
|
296
|
-
margin: 0;
|
|
297
|
-
text-align: left;
|
|
298
|
-
line-height: 22px;
|
|
299
|
-
padding: 5px 14px;
|
|
300
|
-
width: 250px;
|
|
301
|
-
font-size: 12px;
|
|
302
|
-
display: flex;
|
|
303
|
-
align-items: center;
|
|
304
|
-
justify-content: flex-start;
|
|
305
|
-
gap: 8px;
|
|
306
|
-
}
|
|
307
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
|
|
308
|
-
flex: 24px 0 0;
|
|
309
|
-
height: 24px;
|
|
310
|
-
}
|
|
311
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
|
|
312
|
-
visibility: hidden;
|
|
313
|
-
display: inline-block;
|
|
314
|
-
}
|
|
315
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
|
|
316
|
-
flex: 0 1 100%;
|
|
317
|
-
}
|
|
318
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
|
|
319
|
-
flex: 0 0 14px;
|
|
320
|
-
height: 24px;
|
|
321
|
-
}
|
|
322
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
|
|
323
|
-
flex: 1 0 auto;
|
|
324
|
-
}*,
|
|
325
|
-
:focus,
|
|
326
|
-
:visited {
|
|
327
|
-
outline: none !important;
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
.media-control-audiotracks {
|
|
331
|
-
position: relative;
|
|
332
|
-
}
|
|
333
|
-
.media-control-audiotracks button {
|
|
334
|
-
background-color: transparent;
|
|
335
|
-
color: #fff;
|
|
336
|
-
-webkit-font-smoothing: antialiased;
|
|
337
|
-
border: none;
|
|
338
|
-
cursor: pointer;
|
|
339
|
-
display: flex;
|
|
340
|
-
align-items: center;
|
|
341
|
-
padding: 0;
|
|
342
|
-
}
|
|
343
|
-
.media-control-audiotracks button .audio-text {
|
|
344
|
-
text-overflow: ellipsis;
|
|
345
|
-
overflow: hidden;
|
|
346
|
-
white-space: nowrap;
|
|
347
|
-
max-width: 100px;
|
|
348
|
-
background-color: transparent;
|
|
349
|
-
-webkit-font-smoothing: antialiased;
|
|
350
|
-
border: none;
|
|
351
|
-
cursor: pointer;
|
|
352
|
-
}
|
|
353
|
-
.media-control-audiotracks button:hover {
|
|
354
|
-
color: white;
|
|
355
|
-
}
|
|
356
|
-
.media-control-audiotracks button.changing {
|
|
357
|
-
animation: pulse 0.5s infinite alternate;
|
|
358
|
-
}
|
|
359
|
-
.media-control-audiotracks button span.audio-arrow {
|
|
360
|
-
width: 9px;
|
|
361
|
-
height: 6px;
|
|
362
|
-
margin-left: 5px;
|
|
363
|
-
}
|
|
364
|
-
.media-control-audiotracks .menu {
|
|
365
|
-
max-width: 114px;
|
|
366
|
-
list-style-type: none;
|
|
367
|
-
position: absolute;
|
|
368
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
369
|
-
border: none;
|
|
370
|
-
min-width: 60px;
|
|
371
|
-
border-radius: 4px;
|
|
372
|
-
bottom: 40px;
|
|
373
|
-
right: -2px;
|
|
374
|
-
}
|
|
375
|
-
.media-control-audiotracks .menu.hidden {
|
|
376
|
-
display: none;
|
|
377
|
-
}
|
|
378
|
-
.media-control-audiotracks li {
|
|
379
|
-
font-size: var(--font-size-media-controls-dropdown);
|
|
380
|
-
text-align: right;
|
|
381
|
-
height: 30px;
|
|
382
|
-
}
|
|
383
|
-
.media-control-audiotracks li[data-title] {
|
|
384
|
-
background-color: #c3c2c2;
|
|
385
|
-
padding: 5px;
|
|
386
|
-
}
|
|
387
|
-
.media-control-audiotracks li a {
|
|
388
|
-
display: block;
|
|
389
|
-
text-decoration: none;
|
|
390
|
-
text-overflow: ellipsis;
|
|
391
|
-
overflow: hidden;
|
|
392
|
-
white-space: nowrap;
|
|
393
|
-
height: 30px;
|
|
394
|
-
padding: 5px 10px;
|
|
395
|
-
color: #fffffe;
|
|
396
|
-
}
|
|
397
|
-
.media-control-audiotracks li a:hover {
|
|
398
|
-
text-decoration: none;
|
|
399
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
400
|
-
color: white;
|
|
401
|
-
}
|
|
402
|
-
.media-control-audiotracks li.current a {
|
|
403
|
-
color: #f00;
|
|
404
|
-
}
|
|
405
|
-
.media-control-audiotracks li:first-child a {
|
|
406
|
-
border-bottom-left-radius: 4px;
|
|
407
|
-
border-bottom-right-radius: 4px;
|
|
408
|
-
}
|
|
409
|
-
.media-control-audiotracks li:last-child a {
|
|
410
|
-
border-top-left-radius: 4px;
|
|
411
|
-
border-top-right-radius: 4px;
|
|
412
|
-
}
|
|
413
|
-
|
|
414
|
-
@keyframes pulse {
|
|
415
|
-
0% {
|
|
416
|
-
color: #fff;
|
|
417
|
-
}
|
|
418
|
-
50% {
|
|
419
|
-
color: #ff0101;
|
|
420
|
-
}
|
|
421
|
-
100% {
|
|
422
|
-
color: #B80000;
|
|
423
|
-
}
|
|
424
|
-
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
425
|
-
color: #CCCACA;
|
|
426
|
-
position: absolute;
|
|
427
|
-
top: 0;
|
|
428
|
-
height: 100%;
|
|
429
|
-
width: 100%;
|
|
430
|
-
background-color: rgba(0, 0, 0, 0.7);
|
|
431
|
-
z-index: 2000;
|
|
432
|
-
display: flex;
|
|
433
|
-
flex-direction: column;
|
|
434
|
-
justify-content: center;
|
|
435
|
-
}
|
|
436
|
-
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
437
|
-
font-size: 14px;
|
|
438
|
-
color: #CCCACA;
|
|
439
|
-
margin-top: 45px;
|
|
440
|
-
}
|
|
441
|
-
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
442
|
-
font-weight: bold;
|
|
443
|
-
line-height: 30px;
|
|
444
|
-
font-size: 18px;
|
|
445
|
-
}
|
|
446
|
-
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
447
|
-
width: 90%;
|
|
448
|
-
margin: 0 auto;
|
|
449
|
-
}
|
|
450
|
-
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
451
|
-
font-size: 13px;
|
|
452
|
-
margin-top: 15px;
|
|
453
|
-
}
|
|
454
|
-
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
455
|
-
cursor: pointer;
|
|
456
|
-
width: 30px;
|
|
457
|
-
margin: 15px auto 0;
|
|
458
125
|
}:root {
|
|
459
126
|
--primary-background-color: #000;
|
|
460
127
|
--secondary-background-color: #262626;
|
|
@@ -468,11 +135,14 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
468
135
|
--speedtest-green: #73df4d;
|
|
469
136
|
}
|
|
470
137
|
|
|
471
|
-
.clappr-nerd-stats
|
|
138
|
+
.clappr-nerd-stats .stats-box {
|
|
472
139
|
position: absolute;
|
|
473
140
|
display: inline-block;
|
|
474
141
|
bottom: 52px;
|
|
475
|
-
right:
|
|
142
|
+
right: 0;
|
|
143
|
+
top: 0;
|
|
144
|
+
left: 0;
|
|
145
|
+
bottom: 0;
|
|
476
146
|
padding: 0 10px 12px;
|
|
477
147
|
margin: 0;
|
|
478
148
|
line-height: 20px;
|
|
@@ -482,10 +152,8 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
482
152
|
color: #fff;
|
|
483
153
|
z-index: 20000;
|
|
484
154
|
overflow: auto;
|
|
485
|
-
max-height: calc(100vh - 60px);
|
|
486
|
-
max-width: calc(100vw - 10px);
|
|
487
155
|
}
|
|
488
|
-
.clappr-nerd-stats
|
|
156
|
+
.clappr-nerd-stats .stats-box-top {
|
|
489
157
|
position: absolute;
|
|
490
158
|
top: 0;
|
|
491
159
|
left: 0;
|
|
@@ -494,7 +162,7 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
494
162
|
height: 32px;
|
|
495
163
|
background: var(--primary-background-color);
|
|
496
164
|
}
|
|
497
|
-
.clappr-nerd-stats
|
|
165
|
+
.clappr-nerd-stats .stats-box-top .close-button {
|
|
498
166
|
float: right;
|
|
499
167
|
margin-right: 12px;
|
|
500
168
|
margin-top: 10px;
|
|
@@ -502,99 +170,99 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
502
170
|
width: 12px;
|
|
503
171
|
height: 12px;
|
|
504
172
|
}
|
|
505
|
-
.clappr-nerd-stats
|
|
173
|
+
.clappr-nerd-stats .stats-box-top .close-button svg path {
|
|
506
174
|
fill: var(--primary-text-color);
|
|
507
175
|
}
|
|
508
|
-
.clappr-nerd-stats
|
|
176
|
+
.clappr-nerd-stats .stats-box-top .close-button:hover svg path {
|
|
509
177
|
fill: var(--hover-text-color);
|
|
510
178
|
}
|
|
511
|
-
.clappr-nerd-stats
|
|
179
|
+
.clappr-nerd-stats .stats-box-main {
|
|
512
180
|
overflow: hidden;
|
|
513
181
|
margin-top: 44px;
|
|
514
182
|
}
|
|
515
|
-
.clappr-nerd-stats
|
|
183
|
+
.clappr-nerd-stats .stats-box.wide {
|
|
516
184
|
width: 820px;
|
|
517
185
|
}
|
|
518
|
-
.clappr-nerd-stats
|
|
186
|
+
.clappr-nerd-stats .stats-box ul, .clappr-nerd-stats .stats-box li {
|
|
519
187
|
list-style-type: none;
|
|
520
188
|
}
|
|
521
|
-
.clappr-nerd-stats
|
|
189
|
+
.clappr-nerd-stats .stats-box ul div, .clappr-nerd-stats .stats-box li div {
|
|
522
190
|
padding-left: 2px;
|
|
523
191
|
padding-right: 2px;
|
|
524
192
|
background: var(--primary-background-color);
|
|
525
193
|
}
|
|
526
|
-
.clappr-nerd-stats
|
|
194
|
+
.clappr-nerd-stats .stats-box ul {
|
|
527
195
|
display: inline-block;
|
|
528
196
|
float: left;
|
|
529
197
|
padding: 5px;
|
|
530
198
|
width: 200px;
|
|
531
199
|
}
|
|
532
|
-
.clappr-nerd-stats
|
|
200
|
+
.clappr-nerd-stats .stats-box ul li {
|
|
533
201
|
position: relative;
|
|
534
202
|
padding: 0 5px;
|
|
535
203
|
text-align: left;
|
|
536
204
|
}
|
|
537
|
-
.clappr-nerd-stats
|
|
205
|
+
.clappr-nerd-stats .stats-box ul li.canvas-wrapper {
|
|
538
206
|
padding: 0;
|
|
539
207
|
}
|
|
540
|
-
.clappr-nerd-stats
|
|
208
|
+
.clappr-nerd-stats .stats-box ul li.canvas-wrapper canvas {
|
|
541
209
|
width: 100%;
|
|
542
210
|
}
|
|
543
|
-
.clappr-nerd-stats
|
|
211
|
+
.clappr-nerd-stats .stats-box ul li:nth-child(2n) {
|
|
544
212
|
background: var(--secondary-background-color);
|
|
545
213
|
}
|
|
546
|
-
.clappr-nerd-stats
|
|
214
|
+
.clappr-nerd-stats .stats-box ul li:nth-child(2n) div {
|
|
547
215
|
background: var(--secondary-background-color);
|
|
548
216
|
}
|
|
549
|
-
.clappr-nerd-stats
|
|
217
|
+
.clappr-nerd-stats .stats-box ul li.title {
|
|
550
218
|
text-align: center;
|
|
551
219
|
font-weight: bold;
|
|
552
220
|
padding-bottom: 4px;
|
|
553
221
|
font-size: 14px;
|
|
554
222
|
}
|
|
555
|
-
.clappr-nerd-stats
|
|
223
|
+
.clappr-nerd-stats .stats-box ul li div {
|
|
556
224
|
margin: 0;
|
|
557
225
|
position: absolute;
|
|
558
226
|
right: 0;
|
|
559
227
|
top: 0;
|
|
560
228
|
}
|
|
561
229
|
|
|
562
|
-
.desktop .clappr-nerd-stats
|
|
230
|
+
.desktop .clappr-nerd-stats .stats-box.narrow {
|
|
563
231
|
width: 250px;
|
|
564
232
|
}
|
|
565
|
-
.desktop .clappr-nerd-stats
|
|
233
|
+
.desktop .clappr-nerd-stats .stats-box.narrow ul {
|
|
566
234
|
width: 100%;
|
|
567
235
|
}
|
|
568
|
-
.desktop .clappr-nerd-stats
|
|
236
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary {
|
|
569
237
|
padding: 0 5px;
|
|
570
238
|
height: auto;
|
|
571
239
|
}
|
|
572
|
-
.desktop .clappr-nerd-stats
|
|
240
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block {
|
|
573
241
|
width: 100%;
|
|
574
242
|
flex-direction: column;
|
|
575
243
|
}
|
|
576
|
-
.desktop .clappr-nerd-stats
|
|
244
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock {
|
|
577
245
|
width: 100%;
|
|
578
246
|
}
|
|
579
|
-
.desktop .clappr-nerd-stats
|
|
247
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-block .speedtest-summary-subblock-content {
|
|
580
248
|
width: 100%;
|
|
581
249
|
}
|
|
582
|
-
.desktop .clappr-nerd-stats
|
|
250
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-summary-header {
|
|
583
251
|
padding-top: 12px;
|
|
584
252
|
height: 38px;
|
|
585
253
|
text-align: center;
|
|
586
254
|
}
|
|
587
|
-
.desktop .clappr-nerd-stats
|
|
255
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-quality-header {
|
|
588
256
|
text-align: center;
|
|
589
257
|
}
|
|
590
|
-
.desktop .clappr-nerd-stats
|
|
258
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer {
|
|
591
259
|
height: 80px;
|
|
592
260
|
}
|
|
593
|
-
.desktop .clappr-nerd-stats
|
|
261
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer-about-link {
|
|
594
262
|
bottom: 0;
|
|
595
263
|
left: 0;
|
|
596
264
|
}
|
|
597
|
-
.desktop .clappr-nerd-stats
|
|
265
|
+
.desktop .clappr-nerd-stats .stats-box.narrow .speedtest-footer .speedtest-footer-refresh {
|
|
598
266
|
inset: 50% auto auto 50%;
|
|
599
267
|
transform: translate(-50%, -50%);
|
|
600
268
|
}
|
|
@@ -754,7 +422,7 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
754
422
|
fill: var(--hover-text-color);
|
|
755
423
|
}
|
|
756
424
|
|
|
757
|
-
.mobile .clappr-nerd-stats
|
|
425
|
+
.mobile .clappr-nerd-stats .stats-box {
|
|
758
426
|
position: fixed;
|
|
759
427
|
height: auto;
|
|
760
428
|
width: auto;
|
|
@@ -764,10 +432,10 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
764
432
|
padding-left: 4px;
|
|
765
433
|
padding-right: 4px;
|
|
766
434
|
}
|
|
767
|
-
.mobile .clappr-nerd-stats
|
|
435
|
+
.mobile .clappr-nerd-stats .stats-box-top {
|
|
768
436
|
position: fixed;
|
|
769
437
|
}
|
|
770
|
-
.mobile .clappr-nerd-stats
|
|
438
|
+
.mobile .clappr-nerd-stats .stats-box ul {
|
|
771
439
|
width: 50%;
|
|
772
440
|
}
|
|
773
441
|
|
|
@@ -800,7 +468,7 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
800
468
|
}
|
|
801
469
|
}
|
|
802
470
|
@media only screen and (orientation: landscape) {
|
|
803
|
-
.mobile .clappr-nerd-stats
|
|
471
|
+
.mobile .clappr-nerd-stats .stats-box ul {
|
|
804
472
|
width: 25%;
|
|
805
473
|
}
|
|
806
474
|
}.context-menu {
|
|
@@ -839,117 +507,332 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
839
507
|
.context-menu .context-menu-list-item_icon {
|
|
840
508
|
width: 20px;
|
|
841
509
|
height: 20px;
|
|
842
|
-
}
|
|
510
|
+
}*,
|
|
511
|
+
:focus,
|
|
512
|
+
:visited {
|
|
513
|
+
outline: none !important;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.media-control-audiotracks {
|
|
517
|
+
position: relative;
|
|
518
|
+
}
|
|
519
|
+
.media-control-audiotracks button {
|
|
520
|
+
background-color: transparent;
|
|
521
|
+
color: #fff;
|
|
522
|
+
-webkit-font-smoothing: antialiased;
|
|
523
|
+
border: none;
|
|
524
|
+
cursor: pointer;
|
|
525
|
+
display: flex;
|
|
526
|
+
align-items: center;
|
|
527
|
+
padding: 0;
|
|
528
|
+
}
|
|
529
|
+
.media-control-audiotracks button .audio-text {
|
|
530
|
+
text-overflow: ellipsis;
|
|
531
|
+
overflow: hidden;
|
|
532
|
+
white-space: nowrap;
|
|
533
|
+
max-width: 100px;
|
|
534
|
+
background-color: transparent;
|
|
535
|
+
-webkit-font-smoothing: antialiased;
|
|
536
|
+
border: none;
|
|
537
|
+
cursor: pointer;
|
|
538
|
+
}
|
|
539
|
+
.media-control-audiotracks button:hover {
|
|
540
|
+
color: white;
|
|
541
|
+
}
|
|
542
|
+
.media-control-audiotracks button.changing {
|
|
543
|
+
animation: pulse 0.5s infinite alternate;
|
|
544
|
+
}
|
|
545
|
+
.media-control-audiotracks button span.audio-arrow {
|
|
546
|
+
width: 9px;
|
|
547
|
+
height: 6px;
|
|
548
|
+
margin-left: 5px;
|
|
549
|
+
}
|
|
550
|
+
.media-control-audiotracks .menu {
|
|
551
|
+
max-width: 114px;
|
|
552
|
+
list-style-type: none;
|
|
843
553
|
position: absolute;
|
|
844
|
-
|
|
554
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
555
|
+
border: none;
|
|
556
|
+
min-width: 60px;
|
|
557
|
+
border-radius: 4px;
|
|
558
|
+
bottom: 40px;
|
|
559
|
+
right: -2px;
|
|
560
|
+
}
|
|
561
|
+
.media-control-audiotracks .menu.hidden {
|
|
562
|
+
display: none;
|
|
563
|
+
}
|
|
564
|
+
.media-control-audiotracks li {
|
|
565
|
+
font-size: var(--font-size-media-controls-dropdown);
|
|
566
|
+
text-align: right;
|
|
567
|
+
height: 30px;
|
|
568
|
+
}
|
|
569
|
+
.media-control-audiotracks li[data-title] {
|
|
570
|
+
background-color: #c3c2c2;
|
|
571
|
+
padding: 5px;
|
|
572
|
+
}
|
|
573
|
+
.media-control-audiotracks li a {
|
|
574
|
+
display: block;
|
|
575
|
+
text-decoration: none;
|
|
576
|
+
text-overflow: ellipsis;
|
|
577
|
+
overflow: hidden;
|
|
578
|
+
white-space: nowrap;
|
|
579
|
+
height: 30px;
|
|
580
|
+
padding: 5px 10px;
|
|
581
|
+
color: #fffffe;
|
|
582
|
+
}
|
|
583
|
+
.media-control-audiotracks li a:hover {
|
|
584
|
+
text-decoration: none;
|
|
585
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
586
|
+
color: white;
|
|
587
|
+
}
|
|
588
|
+
.media-control-audiotracks li.current a {
|
|
589
|
+
color: #f00;
|
|
590
|
+
}
|
|
591
|
+
.media-control-audiotracks li:first-child a {
|
|
592
|
+
border-bottom-left-radius: 4px;
|
|
593
|
+
border-bottom-right-radius: 4px;
|
|
594
|
+
}
|
|
595
|
+
.media-control-audiotracks li:last-child a {
|
|
596
|
+
border-top-left-radius: 4px;
|
|
597
|
+
border-top-right-radius: 4px;
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
@keyframes pulse {
|
|
601
|
+
0% {
|
|
602
|
+
color: #fff;
|
|
603
|
+
}
|
|
604
|
+
50% {
|
|
605
|
+
color: #ff0101;
|
|
606
|
+
}
|
|
607
|
+
100% {
|
|
608
|
+
color: #B80000;
|
|
609
|
+
}
|
|
610
|
+
}.dvr-controls[data-dvr] {
|
|
611
|
+
display: inline-block;
|
|
612
|
+
color: var(--player-dvr-color);
|
|
613
|
+
line-height: 32px;
|
|
614
|
+
font-size: 10px;
|
|
615
|
+
font-weight: bold;
|
|
616
|
+
margin-left: 6px;
|
|
617
|
+
height: 40px;
|
|
618
|
+
line-height: 40px;
|
|
619
|
+
margin-left: 0;
|
|
620
|
+
}
|
|
621
|
+
.dvr-controls[data-dvr] .live-info {
|
|
622
|
+
cursor: default;
|
|
623
|
+
text-transform: uppercase;
|
|
624
|
+
}
|
|
625
|
+
.dvr-controls[data-dvr] .live-info:before {
|
|
626
|
+
content: "";
|
|
627
|
+
display: inline-block;
|
|
628
|
+
position: relative;
|
|
629
|
+
width: 7px;
|
|
630
|
+
height: 7px;
|
|
631
|
+
border-radius: 3.5px;
|
|
632
|
+
margin-right: 3.5px;
|
|
633
|
+
background-color: var(--player-live-color);
|
|
634
|
+
}
|
|
635
|
+
.dvr-controls[data-dvr] .live-info.disabled {
|
|
636
|
+
opacity: 0.3;
|
|
637
|
+
}
|
|
638
|
+
.dvr-controls[data-dvr] .live-info.disabled:before {
|
|
639
|
+
background-color: var(--player-dvr-color);
|
|
640
|
+
}
|
|
641
|
+
.dvr-controls[data-dvr] .live-button {
|
|
642
|
+
cursor: pointer;
|
|
643
|
+
outline: none;
|
|
644
|
+
display: none;
|
|
645
|
+
border: 0;
|
|
646
|
+
color: var(--player-dvr-color);
|
|
845
647
|
background-color: transparent;
|
|
648
|
+
height: 32px;
|
|
649
|
+
padding: 0;
|
|
650
|
+
opacity: 0.7;
|
|
651
|
+
text-transform: uppercase;
|
|
652
|
+
transition: all 0.1s ease;
|
|
653
|
+
}
|
|
654
|
+
.dvr-controls[data-dvr] .live-button:before {
|
|
655
|
+
content: "";
|
|
656
|
+
display: inline-block;
|
|
657
|
+
position: relative;
|
|
658
|
+
width: 7px;
|
|
659
|
+
height: 7px;
|
|
660
|
+
border-radius: 3.5px;
|
|
661
|
+
margin-right: 3.5px;
|
|
662
|
+
background-color: var(--player-dvr-color);
|
|
663
|
+
}
|
|
664
|
+
.dvr-controls[data-dvr] .live-button:hover {
|
|
665
|
+
opacity: 1;
|
|
666
|
+
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
667
|
+
}
|
|
668
|
+
.dvr-controls[data-dvr] .live-info {
|
|
669
|
+
font-size: 14px;
|
|
670
|
+
letter-spacing: 0.8px;
|
|
671
|
+
font-weight: 500;
|
|
672
|
+
color: #fffffe;
|
|
673
|
+
margin-left: 21px;
|
|
674
|
+
}
|
|
675
|
+
.dvr-controls[data-dvr] .live-info::before {
|
|
676
|
+
width: 10px;
|
|
677
|
+
height: 10px;
|
|
678
|
+
border-radius: 50%;
|
|
679
|
+
margin-right: 8px;
|
|
680
|
+
background-color: #ed4f4a;
|
|
681
|
+
}
|
|
682
|
+
.dvr-controls[data-dvr] .live-button {
|
|
683
|
+
height: 40px;
|
|
684
|
+
opacity: 1;
|
|
685
|
+
font-size: 14px;
|
|
686
|
+
letter-spacing: 0.8px;
|
|
687
|
+
font-weight: 500;
|
|
688
|
+
margin-left: 20px;
|
|
689
|
+
}
|
|
690
|
+
.dvr-controls[data-dvr] .live-button::before {
|
|
691
|
+
width: 10px;
|
|
692
|
+
height: 10px;
|
|
693
|
+
border-radius: 50%;
|
|
694
|
+
margin-right: 8px;
|
|
695
|
+
background-color: #cacaca;
|
|
696
|
+
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
697
|
+
color: #CCCACA;
|
|
698
|
+
position: absolute;
|
|
699
|
+
top: 0;
|
|
700
|
+
height: 100%;
|
|
701
|
+
width: 100%;
|
|
702
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
703
|
+
z-index: 2000;
|
|
846
704
|
display: flex;
|
|
705
|
+
flex-direction: column;
|
|
847
706
|
justify-content: center;
|
|
848
|
-
|
|
849
|
-
|
|
707
|
+
}
|
|
708
|
+
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
709
|
+
font-size: 14px;
|
|
710
|
+
color: #CCCACA;
|
|
711
|
+
margin-top: 45px;
|
|
712
|
+
}
|
|
713
|
+
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
714
|
+
font-weight: bold;
|
|
715
|
+
line-height: 30px;
|
|
716
|
+
font-size: 18px;
|
|
717
|
+
}
|
|
718
|
+
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
719
|
+
width: 90%;
|
|
850
720
|
margin: 0 auto;
|
|
851
|
-
opacity: 0.75;
|
|
852
|
-
transition: opacity 0.1s ease;
|
|
853
|
-
pointer-events: auto;
|
|
854
721
|
}
|
|
855
|
-
.
|
|
856
|
-
|
|
722
|
+
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
723
|
+
font-size: 13px;
|
|
724
|
+
margin-top: 15px;
|
|
725
|
+
}
|
|
726
|
+
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
727
|
+
cursor: pointer;
|
|
728
|
+
width: 30px;
|
|
729
|
+
margin: 15px auto 0;
|
|
730
|
+
}*, :focus, :visited {
|
|
731
|
+
outline: none !important;
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
.gear-wrapper .go-back {
|
|
735
|
+
font-weight: 600;
|
|
736
|
+
font-size: 14px;
|
|
737
|
+
line-height: 20px;
|
|
738
|
+
width: 100%;
|
|
739
|
+
text-align: left;
|
|
740
|
+
padding: 12px;
|
|
741
|
+
}
|
|
742
|
+
.gear-wrapper .go-back .arrow-left-icon {
|
|
743
|
+
float: left;
|
|
744
|
+
padding-top: 2px;
|
|
745
|
+
padding-right: 2px;
|
|
746
|
+
}
|
|
747
|
+
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
748
|
+
height: 16px;
|
|
749
|
+
}
|
|
750
|
+
.gear-wrapper ul.gear-sub-menu {
|
|
751
|
+
width: 100%;
|
|
752
|
+
list-style-type: none;
|
|
753
|
+
min-width: 60px;
|
|
754
|
+
border-top: 2px solid rgb(36, 36, 36);
|
|
755
|
+
}
|
|
756
|
+
.gear-wrapper ul.gear-sub-menu li {
|
|
757
|
+
font-size: 12px;
|
|
758
|
+
text-align: left;
|
|
857
759
|
}
|
|
858
|
-
.
|
|
859
|
-
|
|
760
|
+
.gear-wrapper ul.gear-sub-menu li[data-title] {
|
|
761
|
+
background-color: #c3c2c2;
|
|
762
|
+
padding: 5px;
|
|
860
763
|
}
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
height: 120px;
|
|
869
|
-
border: 2px solid white;
|
|
870
|
-
border-radius: 50%;
|
|
871
|
-
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
872
|
-
filter: alpha(opacity=60);
|
|
873
|
-
opacity: 1;
|
|
874
|
-
box-shadow: 0 0 1px 0 white;
|
|
875
|
-
background: rgba(240, 243, 247, 0.9411764706);
|
|
876
|
-
z-index: 10000;
|
|
764
|
+
.gear-wrapper ul.gear-sub-menu li a {
|
|
765
|
+
display: block;
|
|
766
|
+
text-decoration: none;
|
|
767
|
+
height: 32px;
|
|
768
|
+
padding: 5px 10px;
|
|
769
|
+
line-height: 22px;
|
|
770
|
+
color: #fffffe;
|
|
877
771
|
}
|
|
878
|
-
.
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
height: 80px;
|
|
772
|
+
.gear-wrapper ul.gear-sub-menu li a:hover {
|
|
773
|
+
color: white;
|
|
774
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
882
775
|
}
|
|
883
|
-
.
|
|
884
|
-
|
|
776
|
+
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
777
|
+
color: white;
|
|
778
|
+
text-decoration: none;
|
|
885
779
|
}
|
|
886
|
-
.
|
|
887
|
-
|
|
780
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
781
|
+
width: 30px;
|
|
782
|
+
height: 20px;
|
|
783
|
+
float: left;
|
|
784
|
+
display: block;
|
|
888
785
|
}
|
|
889
|
-
.
|
|
890
|
-
|
|
891
|
-
}@charset "UTF-8";
|
|
892
|
-
.media-control-clips {
|
|
893
|
-
display: flex;
|
|
894
|
-
gap: 6px;
|
|
786
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
787
|
+
display: none;
|
|
895
788
|
}
|
|
896
|
-
.
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
text-overflow: ellipsis;
|
|
902
|
-
color: white;
|
|
903
|
-
cursor: default;
|
|
904
|
-
line-height: var(--bottom-panel);
|
|
905
|
-
position: relative;
|
|
789
|
+
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
790
|
+
display: inline;
|
|
791
|
+
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
792
|
+
order: 99;
|
|
793
|
+
height: 20px;
|
|
906
794
|
}
|
|
907
|
-
.media-control-
|
|
908
|
-
|
|
909
|
-
|
|
795
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
|
|
796
|
+
position: absolute;
|
|
797
|
+
right: 16px;
|
|
798
|
+
bottom: 52px;
|
|
799
|
+
width: 250px;
|
|
800
|
+
min-height: 48px;
|
|
801
|
+
z-index: 9999;
|
|
802
|
+
border-radius: 4px;
|
|
910
803
|
}
|
|
911
|
-
.media-control-
|
|
912
|
-
|
|
913
|
-
}
|
|
804
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
|
|
805
|
+
padding: 8px 0;
|
|
806
|
+
}
|
|
807
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
|
|
808
|
+
margin: 0;
|
|
809
|
+
text-align: left;
|
|
810
|
+
line-height: 22px;
|
|
811
|
+
padding: 5px 14px;
|
|
812
|
+
width: 250px;
|
|
813
|
+
font-size: 12px;
|
|
914
814
|
display: flex;
|
|
915
|
-
justify-content: center;
|
|
916
815
|
align-items: center;
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
width: 100%;
|
|
920
|
-
z-index: 998;
|
|
921
|
-
top: 0;
|
|
922
|
-
left: 0;
|
|
923
|
-
background-color: #000;
|
|
924
|
-
background-size: cover;
|
|
925
|
-
background-repeat: no-repeat;
|
|
926
|
-
background-position: 50% 50%;
|
|
927
|
-
}
|
|
928
|
-
.player-poster[data-poster].clickable {
|
|
929
|
-
cursor: pointer;
|
|
816
|
+
justify-content: flex-start;
|
|
817
|
+
gap: 8px;
|
|
930
818
|
}
|
|
931
|
-
.
|
|
932
|
-
|
|
819
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
|
|
820
|
+
flex: 24px 0 0;
|
|
821
|
+
height: 24px;
|
|
933
822
|
}
|
|
934
|
-
.
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
margin: 0 auto;
|
|
938
|
-
opacity: 0.75;
|
|
939
|
-
transition: opacity 0.1s ease;
|
|
823
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
|
|
824
|
+
visibility: hidden;
|
|
825
|
+
display: inline-block;
|
|
940
826
|
}
|
|
941
|
-
.
|
|
942
|
-
|
|
943
|
-
display: inline;
|
|
827
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
|
|
828
|
+
flex: 0 1 100%;
|
|
944
829
|
}
|
|
945
|
-
.
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
opacity: 0.5;
|
|
949
|
-
pointer-events: none;
|
|
830
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
|
|
831
|
+
flex: 0 0 14px;
|
|
832
|
+
height: 24px;
|
|
950
833
|
}
|
|
951
|
-
.
|
|
952
|
-
|
|
834
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
|
|
835
|
+
flex: 1 0 auto;
|
|
953
836
|
}[data-player] {
|
|
954
837
|
--bottom-panel: 40px;
|
|
955
838
|
}
|
|
@@ -1567,131 +1450,55 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1567
1450
|
}
|
|
1568
1451
|
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
|
|
1569
1452
|
display: none !important;
|
|
1570
|
-
}.
|
|
1571
|
-
pointer-events: auto;
|
|
1572
|
-
z-index: 5;
|
|
1573
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
1574
|
-
}
|
|
1575
|
-
.share_plugin[data-share].share-hide .share-button-container {
|
|
1576
|
-
right: -50px;
|
|
1577
|
-
}
|
|
1578
|
-
.share_plugin[data-share] .share-button-container {
|
|
1579
|
-
cursor: pointer;
|
|
1580
|
-
width: 36px;
|
|
1581
|
-
height: 36px;
|
|
1582
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
1583
|
-
border-radius: 4px;
|
|
1453
|
+
}.big-mute-icon-wrapper[data-big-mute] {
|
|
1584
1454
|
position: absolute;
|
|
1585
|
-
|
|
1586
|
-
top: 10px;
|
|
1587
|
-
padding-top: 6px;
|
|
1588
|
-
transition: all 0.3s ease-out;
|
|
1589
|
-
}
|
|
1590
|
-
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
1455
|
+
z-index: 9998;
|
|
1591
1456
|
background-color: transparent;
|
|
1592
|
-
border: 0;
|
|
1593
|
-
margin: 0 6px;
|
|
1594
|
-
padding: 0;
|
|
1595
|
-
cursor: pointer;
|
|
1596
|
-
display: inline-block;
|
|
1597
|
-
width: 19px;
|
|
1598
|
-
height: 20px;
|
|
1599
|
-
}
|
|
1600
|
-
.share_plugin[data-share] .share-container {
|
|
1601
|
-
pointer-events: auto;
|
|
1602
|
-
position: absolute;
|
|
1603
|
-
width: 280px;
|
|
1604
|
-
background-color: white;
|
|
1605
|
-
transform: translate(0, 50%);
|
|
1606
|
-
transform: translate(-50%, -50%);
|
|
1607
|
-
left: 50%;
|
|
1608
|
-
/* margin-left: -140px; */
|
|
1609
|
-
top: calc(50% - 20px);
|
|
1610
|
-
/* margin-top: -170px; */
|
|
1611
|
-
}
|
|
1612
|
-
.share_plugin[data-share] .share-container .share-container-header {
|
|
1613
|
-
text-align: left;
|
|
1614
|
-
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
1615
|
-
}
|
|
1616
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
1617
|
-
display: inline-block;
|
|
1618
|
-
font-size: 16px;
|
|
1619
|
-
margin: 5px;
|
|
1620
|
-
}
|
|
1621
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
1622
|
-
display: inline-block;
|
|
1623
|
-
width: 24px;
|
|
1624
|
-
float: right;
|
|
1625
|
-
margin: 5px;
|
|
1626
|
-
cursor: pointer;
|
|
1627
|
-
}
|
|
1628
|
-
.share_plugin[data-share] .share-container .share-container-main {
|
|
1629
|
-
margin-bottom: 8px;
|
|
1630
|
-
}
|
|
1631
|
-
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
1632
|
-
text-align: left;
|
|
1633
|
-
font-size: 14px;
|
|
1634
|
-
padding: 5px;
|
|
1635
|
-
}
|
|
1636
|
-
.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 {
|
|
1637
|
-
overflow: hidden;
|
|
1638
|
-
text-overflow: ellipsis;
|
|
1639
|
-
color: #818181;
|
|
1640
|
-
border: solid 1px #d3d3d3;
|
|
1641
|
-
width: calc(100% - 10px);
|
|
1642
|
-
padding: 5px;
|
|
1643
|
-
}
|
|
1644
|
-
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
1645
|
-
max-height: 90px;
|
|
1646
|
-
resize: none;
|
|
1647
|
-
}
|
|
1648
|
-
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
1649
|
-
width: 32px;
|
|
1650
|
-
display: inline-block;
|
|
1651
|
-
margin-right: 5px;
|
|
1652
|
-
cursor: pointer;
|
|
1653
|
-
}.media-control-pip {
|
|
1654
|
-
order: 95;
|
|
1655
1457
|
display: flex;
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
height:
|
|
1659
|
-
|
|
1660
|
-
.
|
|
1661
|
-
height: 20px;
|
|
1662
|
-
}.seek-time[data-seek-time] {
|
|
1663
|
-
position: absolute;
|
|
1664
|
-
white-space: nowrap;
|
|
1665
|
-
height: 20px;
|
|
1666
|
-
line-height: 20px;
|
|
1667
|
-
font-size: 0;
|
|
1668
|
-
left: -100%;
|
|
1669
|
-
bottom: 55px;
|
|
1670
|
-
background-color: rgba(2, 2, 2, 0.5);
|
|
1671
|
-
z-index: 9999;
|
|
1458
|
+
justify-content: center;
|
|
1459
|
+
width: 100%;
|
|
1460
|
+
height: calc(100% - 50px);
|
|
1461
|
+
margin: 0 auto;
|
|
1462
|
+
opacity: 0.75;
|
|
1672
1463
|
transition: opacity 0.1s ease;
|
|
1464
|
+
pointer-events: auto;
|
|
1673
1465
|
}
|
|
1674
|
-
.
|
|
1675
|
-
|
|
1466
|
+
.big-mute-icon-wrapper[data-big-mute].hide {
|
|
1467
|
+
display: none;
|
|
1676
1468
|
}
|
|
1677
|
-
.
|
|
1678
|
-
|
|
1679
|
-
color: white;
|
|
1680
|
-
font-size: 10px;
|
|
1681
|
-
padding-left: 7px;
|
|
1682
|
-
padding-right: 7px;
|
|
1683
|
-
vertical-align: top;
|
|
1469
|
+
.big-mute-icon-wrapper[data-big-mute]:hover {
|
|
1470
|
+
cursor: pointer;
|
|
1684
1471
|
}
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1472
|
+
|
|
1473
|
+
.big-mute-icon[data-big-mute-icon] {
|
|
1474
|
+
display: flex;
|
|
1475
|
+
align-items: center;
|
|
1476
|
+
justify-content: center;
|
|
1477
|
+
align-self: center;
|
|
1478
|
+
width: 120px;
|
|
1479
|
+
height: 120px;
|
|
1480
|
+
border: 2px solid white;
|
|
1481
|
+
border-radius: 50%;
|
|
1482
|
+
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
1483
|
+
filter: alpha(opacity=60);
|
|
1484
|
+
opacity: 1;
|
|
1485
|
+
box-shadow: 0 0 1px 0 white;
|
|
1486
|
+
background: rgba(240, 243, 247, 0.9411764706);
|
|
1487
|
+
z-index: 10000;
|
|
1691
1488
|
}
|
|
1692
|
-
.
|
|
1693
|
-
|
|
1694
|
-
|
|
1489
|
+
.big-mute-icon[data-big-mute-icon] svg {
|
|
1490
|
+
margin-left: 5px;
|
|
1491
|
+
width: 80px;
|
|
1492
|
+
height: 80px;
|
|
1493
|
+
}
|
|
1494
|
+
.big-mute-icon[data-big-mute-icon] svg path {
|
|
1495
|
+
fill: #1f1e1e !important;
|
|
1496
|
+
}
|
|
1497
|
+
.big-mute-icon[data-big-mute-icon]:hover {
|
|
1498
|
+
background: rgba(240, 243, 247, 0.8784313725);
|
|
1499
|
+
}
|
|
1500
|
+
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
1501
|
+
fill: #151515 !important;
|
|
1695
1502
|
}*, :focus, :visited {
|
|
1696
1503
|
outline: none !important;
|
|
1697
1504
|
}
|
|
@@ -1840,6 +1647,193 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1840
1647
|
100% {
|
|
1841
1648
|
color: #B80000;
|
|
1842
1649
|
}
|
|
1650
|
+
}@charset "UTF-8";
|
|
1651
|
+
.media-control-clips {
|
|
1652
|
+
display: flex;
|
|
1653
|
+
gap: 6px;
|
|
1654
|
+
}
|
|
1655
|
+
.media-control-clips .media-clip-text {
|
|
1656
|
+
text-overflow: ellipsis;
|
|
1657
|
+
white-space: nowrap;
|
|
1658
|
+
overflow: hidden;
|
|
1659
|
+
display: inline-block;
|
|
1660
|
+
text-overflow: ellipsis;
|
|
1661
|
+
color: white;
|
|
1662
|
+
cursor: default;
|
|
1663
|
+
line-height: var(--bottom-panel);
|
|
1664
|
+
position: relative;
|
|
1665
|
+
}
|
|
1666
|
+
.media-control-clips .media-clip-text::before {
|
|
1667
|
+
content: "•";
|
|
1668
|
+
padding-right: 6px;
|
|
1669
|
+
}
|
|
1670
|
+
.media-control-clips .media-clip-text {
|
|
1671
|
+
max-width: 100px;
|
|
1672
|
+
}.seek-time[data-seek-time] {
|
|
1673
|
+
position: absolute;
|
|
1674
|
+
white-space: nowrap;
|
|
1675
|
+
height: 20px;
|
|
1676
|
+
line-height: 20px;
|
|
1677
|
+
font-size: 0;
|
|
1678
|
+
left: -100%;
|
|
1679
|
+
bottom: 55px;
|
|
1680
|
+
background-color: rgba(2, 2, 2, 0.5);
|
|
1681
|
+
z-index: 9999;
|
|
1682
|
+
transition: opacity 0.1s ease;
|
|
1683
|
+
}
|
|
1684
|
+
.seek-time[data-seek-time].hidden[data-seek-time] {
|
|
1685
|
+
opacity: 0;
|
|
1686
|
+
}
|
|
1687
|
+
.seek-time[data-seek-time] [data-seek-time] {
|
|
1688
|
+
display: inline-block;
|
|
1689
|
+
color: white;
|
|
1690
|
+
font-size: 10px;
|
|
1691
|
+
padding-left: 7px;
|
|
1692
|
+
padding-right: 7px;
|
|
1693
|
+
vertical-align: top;
|
|
1694
|
+
}
|
|
1695
|
+
.seek-time[data-seek-time] [data-duration] {
|
|
1696
|
+
display: inline-block;
|
|
1697
|
+
color: rgba(255, 255, 255, 0.5);
|
|
1698
|
+
font-size: 10px;
|
|
1699
|
+
padding-right: 7px;
|
|
1700
|
+
vertical-align: top;
|
|
1701
|
+
}
|
|
1702
|
+
.seek-time[data-seek-time] [data-duration]::before {
|
|
1703
|
+
content: "|";
|
|
1704
|
+
margin-right: 7px;
|
|
1705
|
+
}.quality-levels li.disabled {
|
|
1706
|
+
opacity: 0.5;
|
|
1707
|
+
pointer-events: none;
|
|
1708
|
+
}
|
|
1709
|
+
.quality-levels li.current {
|
|
1710
|
+
background-color: #000;
|
|
1711
|
+
}.media-control-pip {
|
|
1712
|
+
order: 95;
|
|
1713
|
+
display: flex;
|
|
1714
|
+
}
|
|
1715
|
+
.media-control-pip button {
|
|
1716
|
+
height: 20px;
|
|
1717
|
+
}
|
|
1718
|
+
.media-control-pip button svg {
|
|
1719
|
+
height: 20px;
|
|
1720
|
+
}.player-poster[data-poster] {
|
|
1721
|
+
display: flex;
|
|
1722
|
+
justify-content: center;
|
|
1723
|
+
align-items: center;
|
|
1724
|
+
position: absolute;
|
|
1725
|
+
height: 100%;
|
|
1726
|
+
width: 100%;
|
|
1727
|
+
z-index: 998;
|
|
1728
|
+
top: 0;
|
|
1729
|
+
left: 0;
|
|
1730
|
+
background-color: #000;
|
|
1731
|
+
background-size: cover;
|
|
1732
|
+
background-repeat: no-repeat;
|
|
1733
|
+
background-position: 50% 50%;
|
|
1734
|
+
}
|
|
1735
|
+
.player-poster[data-poster].clickable {
|
|
1736
|
+
cursor: pointer;
|
|
1737
|
+
}
|
|
1738
|
+
.player-poster[data-poster]:hover .play-wrapper[data-poster] {
|
|
1739
|
+
opacity: 1;
|
|
1740
|
+
}
|
|
1741
|
+
.player-poster[data-poster] .play-wrapper[data-poster] {
|
|
1742
|
+
width: 100%;
|
|
1743
|
+
height: 25%;
|
|
1744
|
+
margin: 0 auto;
|
|
1745
|
+
opacity: 0.75;
|
|
1746
|
+
transition: opacity 0.1s ease;
|
|
1747
|
+
}
|
|
1748
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg {
|
|
1749
|
+
height: 100%;
|
|
1750
|
+
display: inline;
|
|
1751
|
+
}
|
|
1752
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg path {
|
|
1753
|
+
fill: #fff;
|
|
1754
|
+
}.share_plugin[data-share] {
|
|
1755
|
+
pointer-events: auto;
|
|
1756
|
+
z-index: 5;
|
|
1757
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
1758
|
+
}
|
|
1759
|
+
.share_plugin[data-share].share-hide .share-button-container {
|
|
1760
|
+
right: -50px;
|
|
1761
|
+
}
|
|
1762
|
+
.share_plugin[data-share] .share-button-container {
|
|
1763
|
+
cursor: pointer;
|
|
1764
|
+
width: 36px;
|
|
1765
|
+
height: 36px;
|
|
1766
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
1767
|
+
border-radius: 4px;
|
|
1768
|
+
position: absolute;
|
|
1769
|
+
right: 10px;
|
|
1770
|
+
top: 10px;
|
|
1771
|
+
padding-top: 6px;
|
|
1772
|
+
transition: all 0.3s ease-out;
|
|
1773
|
+
}
|
|
1774
|
+
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
1775
|
+
background-color: transparent;
|
|
1776
|
+
border: 0;
|
|
1777
|
+
margin: 0 6px;
|
|
1778
|
+
padding: 0;
|
|
1779
|
+
cursor: pointer;
|
|
1780
|
+
display: inline-block;
|
|
1781
|
+
width: 19px;
|
|
1782
|
+
height: 20px;
|
|
1783
|
+
}
|
|
1784
|
+
.share_plugin[data-share] .share-container {
|
|
1785
|
+
pointer-events: auto;
|
|
1786
|
+
position: absolute;
|
|
1787
|
+
width: 280px;
|
|
1788
|
+
background-color: white;
|
|
1789
|
+
transform: translate(0, 50%);
|
|
1790
|
+
transform: translate(-50%, -50%);
|
|
1791
|
+
left: 50%;
|
|
1792
|
+
/* margin-left: -140px; */
|
|
1793
|
+
top: calc(50% - 20px);
|
|
1794
|
+
/* margin-top: -170px; */
|
|
1795
|
+
}
|
|
1796
|
+
.share_plugin[data-share] .share-container .share-container-header {
|
|
1797
|
+
text-align: left;
|
|
1798
|
+
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
1799
|
+
}
|
|
1800
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
1801
|
+
display: inline-block;
|
|
1802
|
+
font-size: 16px;
|
|
1803
|
+
margin: 5px;
|
|
1804
|
+
}
|
|
1805
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
1806
|
+
display: inline-block;
|
|
1807
|
+
width: 24px;
|
|
1808
|
+
float: right;
|
|
1809
|
+
margin: 5px;
|
|
1810
|
+
cursor: pointer;
|
|
1811
|
+
}
|
|
1812
|
+
.share_plugin[data-share] .share-container .share-container-main {
|
|
1813
|
+
margin-bottom: 8px;
|
|
1814
|
+
}
|
|
1815
|
+
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
1816
|
+
text-align: left;
|
|
1817
|
+
font-size: 14px;
|
|
1818
|
+
padding: 5px;
|
|
1819
|
+
}
|
|
1820
|
+
.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 {
|
|
1821
|
+
overflow: hidden;
|
|
1822
|
+
text-overflow: ellipsis;
|
|
1823
|
+
color: #818181;
|
|
1824
|
+
border: solid 1px #d3d3d3;
|
|
1825
|
+
width: calc(100% - 10px);
|
|
1826
|
+
padding: 5px;
|
|
1827
|
+
}
|
|
1828
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
1829
|
+
max-height: 90px;
|
|
1830
|
+
resize: none;
|
|
1831
|
+
}
|
|
1832
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
1833
|
+
width: 32px;
|
|
1834
|
+
display: inline-block;
|
|
1835
|
+
margin-right: 5px;
|
|
1836
|
+
cursor: pointer;
|
|
1843
1837
|
}.spinner-three-bounce[data-spinner] {
|
|
1844
1838
|
position: absolute;
|
|
1845
1839
|
width: 70px;
|
|
@@ -2013,6 +2007,15 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
2013
2007
|
}
|
|
2014
2008
|
.scrub-thumbnails .backdrop .carousel img {
|
|
2015
2009
|
width: auto;
|
|
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;
|
|
2016
2019
|
}.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
|
|
2017
2020
|
height: 0;
|
|
2018
2021
|
}
|
|
@@ -2034,13 +2037,4 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
2034
2037
|
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
|
|
2035
2038
|
width: 33.3%;
|
|
2036
2039
|
height: 100%;
|
|
2037
|
-
}.player-logo[data-logo] {
|
|
2038
|
-
position: absolute;
|
|
2039
|
-
z-index: 2;
|
|
2040
|
-
width: 100%;
|
|
2041
|
-
height: 100%;
|
|
2042
|
-
}
|
|
2043
|
-
|
|
2044
|
-
.clappr-logo {
|
|
2045
|
-
position: absolute;
|
|
2046
2040
|
}
|