@gcorevideo/player 2.22.13 → 2.22.15
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/bottom-gear/gear.scss +20 -13
- package/assets/clappr-nerd-stats/button.ejs +2 -2
- package/assets/clappr-nerd-stats/clappr-nerd-stats.scss +0 -43
- package/assets/context-menu/context_menu.ejs +14 -6
- package/assets/context-menu/context_menu.scss +18 -4
- package/assets/level-selector/button.ejs +3 -3
- package/assets/level-selector/style.scss +0 -5
- package/assets/playback-rate/button.ejs +2 -2
- package/dist/core.js +5 -2
- package/dist/index.css +815 -834
- package/dist/index.js +79 -78
- package/dist/plugins/index.css +669 -688
- package/dist/plugins/index.js +73 -99
- package/lib/Player.d.ts.map +1 -1
- package/lib/Player.js +4 -1
- package/lib/plugins/clappr-nerd-stats/ClapprNerdStats.d.ts.map +1 -1
- package/lib/plugins/click-to-pause/ClickToPause.js +1 -1
- package/lib/plugins/context-menu/ContextMenu.d.ts +33 -12
- package/lib/plugins/context-menu/ContextMenu.d.ts.map +1 -1
- package/lib/plugins/context-menu/ContextMenu.js +40 -37
- package/lib/plugins/media-control/MediaControl.d.ts +4 -1
- package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
- package/lib/plugins/media-control/MediaControl.js +30 -14
- package/lib/plugins/playback-rate/PlaybackRate.d.ts.map +1 -1
- package/lib/plugins/playback-rate/PlaybackRate.js +1 -22
- package/package.json +1 -1
- package/src/Player.ts +4 -3
- package/src/plugins/clappr-nerd-stats/ClapprNerdStats.ts +0 -1
- package/src/plugins/click-to-pause/ClickToPause.ts +1 -1
- package/src/plugins/context-menu/ContextMenu.ts +72 -56
- package/src/plugins/level-selector/__tests__/__snapshots__/QualityLevels.test.ts.snap +3 -3
- package/src/plugins/media-control/MediaControl.ts +36 -15
- package/src/plugins/media-control/__tests__/MediaControl.test.ts +101 -32
- package/src/plugins/media-control/__tests__/__snapshots__/MediaControl.test.ts.snap +20 -20
- package/src/plugins/playback-rate/PlaybackRate.ts +1 -24
- package/src/plugins/playback-rate/__tests__/PlaybackRate.test.ts +2 -1
- package/tsconfig.tsbuildinfo +1 -1
- package/assets/clappr-nerd-stats/options-list.ejs +0 -9
- package/assets/clappr-nerd-stats/settings.ejs +0 -12
package/dist/plugins/index.css
CHANGED
|
@@ -122,224 +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
|
-
}.clips.bar-container[data-seekbar] {
|
|
219
|
-
clip-path: url("#myClip");
|
|
220
|
-
}.context-menu {
|
|
221
|
-
z-index: 999;
|
|
222
|
-
position: absolute;
|
|
223
|
-
top: 0;
|
|
224
|
-
left: 0;
|
|
225
|
-
text-align: center;
|
|
226
|
-
}
|
|
227
|
-
.context-menu .context-menu-list {
|
|
228
|
-
font-family: "Proxima Nova", sans-serif;
|
|
229
|
-
font-size: 12px;
|
|
230
|
-
line-height: 12px;
|
|
231
|
-
list-style-type: none;
|
|
232
|
-
text-align: left;
|
|
233
|
-
padding: 5px;
|
|
234
|
-
margin-left: auto;
|
|
235
|
-
margin-right: auto;
|
|
236
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
237
|
-
border: 1px solid #666;
|
|
238
|
-
border-radius: 4px;
|
|
239
|
-
}
|
|
240
|
-
.context-menu .context-menu-list .context-menu-list-item {
|
|
241
|
-
color: white;
|
|
242
|
-
padding: 5px;
|
|
243
|
-
cursor: pointer;
|
|
244
|
-
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
245
|
-
order: 99;
|
|
246
|
-
height: 20px;
|
|
247
|
-
}
|
|
248
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
|
|
249
|
-
position: absolute;
|
|
250
|
-
right: 16px;
|
|
251
|
-
bottom: 52px;
|
|
252
|
-
width: 250px;
|
|
253
|
-
min-height: 48px;
|
|
254
|
-
z-index: 9999;
|
|
255
|
-
border-radius: 4px;
|
|
256
|
-
}
|
|
257
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
|
|
258
|
-
padding: 8px 0;
|
|
259
|
-
}
|
|
260
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list svg {
|
|
261
|
-
float: left;
|
|
262
|
-
margin-right: 10px;
|
|
263
|
-
}
|
|
264
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
|
|
265
|
-
margin: 0;
|
|
266
|
-
text-align: left;
|
|
267
|
-
line-height: 22px;
|
|
268
|
-
padding: 5px 14px;
|
|
269
|
-
width: 250px;
|
|
270
|
-
font-size: 12px;
|
|
271
|
-
}
|
|
272
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_arrow-right-icon {
|
|
273
|
-
float: right;
|
|
274
|
-
margin-right: -14px;
|
|
275
|
-
}
|
|
276
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_value {
|
|
277
|
-
float: right;
|
|
278
|
-
margin-right: 8px;
|
|
279
|
-
}
|
|
280
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option svg {
|
|
281
|
-
height: 20px;
|
|
282
|
-
}*, :focus, :visited {
|
|
283
|
-
outline: none !important;
|
|
284
|
-
}
|
|
285
|
-
|
|
286
|
-
.gear-wrapper .go-back {
|
|
287
|
-
font-weight: 600;
|
|
288
|
-
font-size: 14px;
|
|
289
|
-
line-height: 20px;
|
|
290
|
-
width: 100%;
|
|
291
|
-
text-align: left;
|
|
292
|
-
padding: 12px;
|
|
293
|
-
}
|
|
294
|
-
.gear-wrapper .go-back .arrow-left-icon {
|
|
295
|
-
float: left;
|
|
296
|
-
padding-top: 2px;
|
|
297
|
-
padding-right: 2px;
|
|
298
|
-
}
|
|
299
|
-
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
300
|
-
height: 16px;
|
|
301
|
-
}
|
|
302
|
-
.gear-wrapper ul.gear-sub-menu {
|
|
303
|
-
width: 100%;
|
|
304
|
-
list-style-type: none;
|
|
305
|
-
min-width: 60px;
|
|
306
|
-
border-top: 2px solid rgb(36, 36, 36);
|
|
307
|
-
}
|
|
308
|
-
.gear-wrapper ul.gear-sub-menu li {
|
|
309
|
-
font-size: 12px;
|
|
310
|
-
text-align: left;
|
|
311
|
-
}
|
|
312
|
-
.gear-wrapper ul.gear-sub-menu li[data-title] {
|
|
313
|
-
background-color: #c3c2c2;
|
|
314
|
-
padding: 5px;
|
|
315
|
-
}
|
|
316
|
-
.gear-wrapper ul.gear-sub-menu li a {
|
|
317
|
-
display: block;
|
|
318
|
-
text-decoration: none;
|
|
319
|
-
height: 32px;
|
|
320
|
-
padding: 5px 10px;
|
|
321
|
-
line-height: 22px;
|
|
322
|
-
color: #fffffe;
|
|
323
|
-
}
|
|
324
|
-
.gear-wrapper ul.gear-sub-menu li a:hover {
|
|
325
|
-
color: white;
|
|
326
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
327
|
-
}
|
|
328
|
-
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
329
|
-
color: white;
|
|
330
|
-
text-decoration: none;
|
|
331
|
-
}
|
|
332
|
-
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
333
|
-
width: 30px;
|
|
334
|
-
height: 20px;
|
|
335
|
-
float: left;
|
|
336
|
-
display: block;
|
|
337
|
-
}
|
|
338
|
-
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
339
|
-
display: none;
|
|
340
|
-
}
|
|
341
|
-
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
342
|
-
display: inline;
|
|
343
125
|
}:root {
|
|
344
126
|
--primary-background-color: #000;
|
|
345
127
|
--secondary-background-color: #262626;
|
|
@@ -521,40 +303,6 @@
|
|
|
521
303
|
padding: 0;
|
|
522
304
|
}
|
|
523
305
|
|
|
524
|
-
.settings-options-list {
|
|
525
|
-
position: absolute;
|
|
526
|
-
right: 16px;
|
|
527
|
-
bottom: 52px;
|
|
528
|
-
background: var(--primary-background-color);
|
|
529
|
-
width: 250px;
|
|
530
|
-
height: 48px;
|
|
531
|
-
z-index: 9999;
|
|
532
|
-
border-radius: 4px;
|
|
533
|
-
}
|
|
534
|
-
.settings-options-list svg {
|
|
535
|
-
float: left;
|
|
536
|
-
margin-right: 10px;
|
|
537
|
-
}
|
|
538
|
-
.settings-options-list .settings-speedtest-option {
|
|
539
|
-
color: var(--primary-text-color);
|
|
540
|
-
margin: 0;
|
|
541
|
-
text-align: left;
|
|
542
|
-
height: 24px;
|
|
543
|
-
line-height: 22px;
|
|
544
|
-
padding: 14px;
|
|
545
|
-
width: 250px;
|
|
546
|
-
font-size: 12px;
|
|
547
|
-
}
|
|
548
|
-
.settings-options-list .settings-speedtest-option:hover {
|
|
549
|
-
color: var(--hover-text-color);
|
|
550
|
-
}
|
|
551
|
-
.settings-options-list .settings-speedtest-option:hover svg path {
|
|
552
|
-
fill: var(--hover-text-color);
|
|
553
|
-
}
|
|
554
|
-
.settings-options-list .settings-speedtest-option svg path {
|
|
555
|
-
fill: var(--primary-text-color);
|
|
556
|
-
}
|
|
557
|
-
|
|
558
306
|
.speedtest-summary {
|
|
559
307
|
width: 100%;
|
|
560
308
|
border-top: 1px solid var(--secondary-background-color) !important;
|
|
@@ -722,117 +470,17 @@
|
|
|
722
470
|
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
|
|
723
471
|
width: 25%;
|
|
724
472
|
}
|
|
725
|
-
}
|
|
726
|
-
:
|
|
727
|
-
:
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
color: #fff;
|
|
737
|
-
-webkit-font-smoothing: antialiased;
|
|
738
|
-
border: none;
|
|
739
|
-
cursor: pointer;
|
|
740
|
-
display: flex;
|
|
741
|
-
align-items: center;
|
|
742
|
-
padding: 0;
|
|
743
|
-
}
|
|
744
|
-
.media-control-audiotracks button .audio-text {
|
|
745
|
-
text-overflow: ellipsis;
|
|
746
|
-
overflow: hidden;
|
|
747
|
-
white-space: nowrap;
|
|
748
|
-
max-width: 100px;
|
|
749
|
-
background-color: transparent;
|
|
750
|
-
-webkit-font-smoothing: antialiased;
|
|
751
|
-
border: none;
|
|
752
|
-
cursor: pointer;
|
|
753
|
-
}
|
|
754
|
-
.media-control-audiotracks button:hover {
|
|
755
|
-
color: white;
|
|
756
|
-
}
|
|
757
|
-
.media-control-audiotracks button.changing {
|
|
758
|
-
animation: pulse 0.5s infinite alternate;
|
|
759
|
-
}
|
|
760
|
-
.media-control-audiotracks button span.audio-arrow {
|
|
761
|
-
width: 9px;
|
|
762
|
-
height: 6px;
|
|
763
|
-
margin-left: 5px;
|
|
764
|
-
}
|
|
765
|
-
.media-control-audiotracks .menu {
|
|
766
|
-
max-width: 114px;
|
|
767
|
-
list-style-type: none;
|
|
768
|
-
position: absolute;
|
|
769
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
770
|
-
border: none;
|
|
771
|
-
min-width: 60px;
|
|
772
|
-
border-radius: 4px;
|
|
773
|
-
bottom: 40px;
|
|
774
|
-
right: -2px;
|
|
775
|
-
}
|
|
776
|
-
.media-control-audiotracks .menu.hidden {
|
|
777
|
-
display: none;
|
|
778
|
-
}
|
|
779
|
-
.media-control-audiotracks li {
|
|
780
|
-
font-size: var(--font-size-media-controls-dropdown);
|
|
781
|
-
text-align: right;
|
|
782
|
-
height: 30px;
|
|
783
|
-
}
|
|
784
|
-
.media-control-audiotracks li[data-title] {
|
|
785
|
-
background-color: #c3c2c2;
|
|
786
|
-
padding: 5px;
|
|
787
|
-
}
|
|
788
|
-
.media-control-audiotracks li a {
|
|
789
|
-
display: block;
|
|
790
|
-
text-decoration: none;
|
|
791
|
-
text-overflow: ellipsis;
|
|
792
|
-
overflow: hidden;
|
|
793
|
-
white-space: nowrap;
|
|
794
|
-
height: 30px;
|
|
795
|
-
padding: 5px 10px;
|
|
796
|
-
color: #fffffe;
|
|
797
|
-
}
|
|
798
|
-
.media-control-audiotracks li a:hover {
|
|
799
|
-
text-decoration: none;
|
|
800
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
801
|
-
color: white;
|
|
802
|
-
}
|
|
803
|
-
.media-control-audiotracks li.current a {
|
|
804
|
-
color: #f00;
|
|
805
|
-
}
|
|
806
|
-
.media-control-audiotracks li:first-child a {
|
|
807
|
-
border-bottom-left-radius: 4px;
|
|
808
|
-
border-bottom-right-radius: 4px;
|
|
809
|
-
}
|
|
810
|
-
.media-control-audiotracks li:last-child a {
|
|
811
|
-
border-top-left-radius: 4px;
|
|
812
|
-
border-top-right-radius: 4px;
|
|
813
|
-
}
|
|
814
|
-
|
|
815
|
-
@keyframes pulse {
|
|
816
|
-
0% {
|
|
817
|
-
color: #fff;
|
|
818
|
-
}
|
|
819
|
-
50% {
|
|
820
|
-
color: #ff0101;
|
|
821
|
-
}
|
|
822
|
-
100% {
|
|
823
|
-
color: #B80000;
|
|
824
|
-
}
|
|
825
|
-
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
826
|
-
color: #CCCACA;
|
|
827
|
-
position: absolute;
|
|
828
|
-
top: 0;
|
|
829
|
-
height: 100%;
|
|
830
|
-
width: 100%;
|
|
831
|
-
background-color: rgba(0, 0, 0, 0.7);
|
|
832
|
-
z-index: 2000;
|
|
833
|
-
display: flex;
|
|
834
|
-
flex-direction: column;
|
|
835
|
-
justify-content: center;
|
|
473
|
+
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
474
|
+
color: #CCCACA;
|
|
475
|
+
position: absolute;
|
|
476
|
+
top: 0;
|
|
477
|
+
height: 100%;
|
|
478
|
+
width: 100%;
|
|
479
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
480
|
+
z-index: 2000;
|
|
481
|
+
display: flex;
|
|
482
|
+
flex-direction: column;
|
|
483
|
+
justify-content: center;
|
|
836
484
|
}
|
|
837
485
|
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
838
486
|
font-size: 14px;
|
|
@@ -856,100 +504,303 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
856
504
|
cursor: pointer;
|
|
857
505
|
width: 30px;
|
|
858
506
|
margin: 15px auto 0;
|
|
859
|
-
}
|
|
860
|
-
|
|
507
|
+
}*, :focus, :visited {
|
|
508
|
+
outline: none !important;
|
|
861
509
|
}
|
|
862
510
|
|
|
863
|
-
.
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
.quality-levels li.current {
|
|
868
|
-
background-color: #000;
|
|
869
|
-
}.big-mute-icon-wrapper[data-big-mute] {
|
|
870
|
-
position: absolute;
|
|
871
|
-
z-index: 9998;
|
|
872
|
-
background-color: transparent;
|
|
873
|
-
display: flex;
|
|
874
|
-
justify-content: center;
|
|
511
|
+
.gear-wrapper .go-back {
|
|
512
|
+
font-weight: 600;
|
|
513
|
+
font-size: 14px;
|
|
514
|
+
line-height: 20px;
|
|
875
515
|
width: 100%;
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
opacity: 0.75;
|
|
879
|
-
transition: opacity 0.1s ease;
|
|
880
|
-
pointer-events: auto;
|
|
516
|
+
text-align: left;
|
|
517
|
+
padding: 12px;
|
|
881
518
|
}
|
|
882
|
-
.
|
|
883
|
-
|
|
519
|
+
.gear-wrapper .go-back .arrow-left-icon {
|
|
520
|
+
float: left;
|
|
521
|
+
padding-top: 2px;
|
|
522
|
+
padding-right: 2px;
|
|
884
523
|
}
|
|
885
|
-
.
|
|
886
|
-
|
|
524
|
+
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
525
|
+
height: 16px;
|
|
887
526
|
}
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
align-self: center;
|
|
894
|
-
width: 120px;
|
|
895
|
-
height: 120px;
|
|
896
|
-
border: 2px solid white;
|
|
897
|
-
border-radius: 50%;
|
|
898
|
-
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
899
|
-
filter: alpha(opacity=60);
|
|
900
|
-
opacity: 1;
|
|
901
|
-
box-shadow: 0 0 1px 0 white;
|
|
902
|
-
background: rgba(240, 243, 247, 0.9411764706);
|
|
903
|
-
z-index: 10000;
|
|
527
|
+
.gear-wrapper ul.gear-sub-menu {
|
|
528
|
+
width: 100%;
|
|
529
|
+
list-style-type: none;
|
|
530
|
+
min-width: 60px;
|
|
531
|
+
border-top: 2px solid rgb(36, 36, 36);
|
|
904
532
|
}
|
|
905
|
-
.
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
height: 80px;
|
|
533
|
+
.gear-wrapper ul.gear-sub-menu li {
|
|
534
|
+
font-size: 12px;
|
|
535
|
+
text-align: left;
|
|
909
536
|
}
|
|
910
|
-
.
|
|
911
|
-
|
|
537
|
+
.gear-wrapper ul.gear-sub-menu li[data-title] {
|
|
538
|
+
background-color: #c3c2c2;
|
|
539
|
+
padding: 5px;
|
|
912
540
|
}
|
|
913
|
-
.
|
|
914
|
-
|
|
541
|
+
.gear-wrapper ul.gear-sub-menu li a {
|
|
542
|
+
display: block;
|
|
543
|
+
text-decoration: none;
|
|
544
|
+
height: 32px;
|
|
545
|
+
padding: 5px 10px;
|
|
546
|
+
line-height: 22px;
|
|
547
|
+
color: #fffffe;
|
|
915
548
|
}
|
|
916
|
-
.
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
order: 95;
|
|
920
|
-
display: flex;
|
|
549
|
+
.gear-wrapper ul.gear-sub-menu li a:hover {
|
|
550
|
+
color: white;
|
|
551
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
921
552
|
}
|
|
922
|
-
.
|
|
923
|
-
|
|
553
|
+
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
554
|
+
color: white;
|
|
555
|
+
text-decoration: none;
|
|
924
556
|
}
|
|
925
|
-
.
|
|
557
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
558
|
+
width: 30px;
|
|
926
559
|
height: 20px;
|
|
927
|
-
|
|
928
|
-
|
|
560
|
+
float: left;
|
|
561
|
+
display: block;
|
|
929
562
|
}
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
transition: none !important;
|
|
563
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
564
|
+
display: none;
|
|
933
565
|
}
|
|
934
|
-
.
|
|
935
|
-
|
|
566
|
+
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
567
|
+
display: inline;
|
|
568
|
+
}.clips.bar-container[data-seekbar] {
|
|
569
|
+
clip-path: url("#myClip");
|
|
570
|
+
}.context-menu {
|
|
571
|
+
z-index: 999;
|
|
572
|
+
position: absolute;
|
|
573
|
+
top: 0;
|
|
574
|
+
left: 0;
|
|
575
|
+
text-align: center;
|
|
936
576
|
}
|
|
937
|
-
.
|
|
938
|
-
|
|
577
|
+
.context-menu .context-menu-list {
|
|
578
|
+
font-family: "Proxima Nova", sans-serif;
|
|
579
|
+
font-size: 12px;
|
|
580
|
+
line-height: 12px;
|
|
581
|
+
list-style-type: none;
|
|
582
|
+
text-align: left;
|
|
583
|
+
padding: 5px;
|
|
584
|
+
margin-left: auto;
|
|
585
|
+
margin-right: auto;
|
|
586
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
587
|
+
border: 1px solid #666;
|
|
588
|
+
border-radius: 4px;
|
|
939
589
|
}
|
|
940
|
-
.
|
|
941
|
-
|
|
942
|
-
|
|
590
|
+
.context-menu .context-menu-list-item button {
|
|
591
|
+
border: none;
|
|
592
|
+
background-color: transparent;
|
|
593
|
+
padding: 0;
|
|
594
|
+
color: white;
|
|
595
|
+
display: flex;
|
|
596
|
+
gap: 8px;
|
|
597
|
+
align-items: center;
|
|
598
|
+
justify-content: center;
|
|
599
|
+
cursor: pointer;
|
|
600
|
+
padding: 5px;
|
|
943
601
|
width: 100%;
|
|
944
602
|
}
|
|
945
|
-
.
|
|
946
|
-
width:
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
603
|
+
.context-menu .context-menu-list-item_icon {
|
|
604
|
+
width: 20px;
|
|
605
|
+
height: 20px;
|
|
606
|
+
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
607
|
+
order: 99;
|
|
608
|
+
height: 20px;
|
|
950
609
|
}
|
|
951
|
-
.
|
|
952
|
-
|
|
610
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
|
|
611
|
+
position: absolute;
|
|
612
|
+
right: 16px;
|
|
613
|
+
bottom: 52px;
|
|
614
|
+
width: 250px;
|
|
615
|
+
min-height: 48px;
|
|
616
|
+
z-index: 9999;
|
|
617
|
+
border-radius: 4px;
|
|
618
|
+
}
|
|
619
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
|
|
620
|
+
padding: 8px 0;
|
|
621
|
+
}
|
|
622
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
|
|
623
|
+
margin: 0;
|
|
624
|
+
text-align: left;
|
|
625
|
+
line-height: 22px;
|
|
626
|
+
padding: 5px 14px;
|
|
627
|
+
width: 250px;
|
|
628
|
+
font-size: 12px;
|
|
629
|
+
display: flex;
|
|
630
|
+
align-items: center;
|
|
631
|
+
justify-content: flex-start;
|
|
632
|
+
gap: 8px;
|
|
633
|
+
}
|
|
634
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
|
|
635
|
+
flex: 24px 0 0;
|
|
636
|
+
height: 24px;
|
|
637
|
+
}
|
|
638
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
|
|
639
|
+
visibility: hidden;
|
|
640
|
+
display: inline-block;
|
|
641
|
+
}
|
|
642
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
|
|
643
|
+
flex: 0 1 100%;
|
|
644
|
+
}
|
|
645
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
|
|
646
|
+
flex: 0 0 14px;
|
|
647
|
+
height: 24px;
|
|
648
|
+
}
|
|
649
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
|
|
650
|
+
flex: 1 0 auto;
|
|
651
|
+
}.dvr-controls[data-dvr] {
|
|
652
|
+
display: inline-block;
|
|
653
|
+
color: var(--player-dvr-color);
|
|
654
|
+
line-height: 32px;
|
|
655
|
+
font-size: 10px;
|
|
656
|
+
font-weight: bold;
|
|
657
|
+
margin-left: 6px;
|
|
658
|
+
height: 40px;
|
|
659
|
+
line-height: 40px;
|
|
660
|
+
margin-left: 0;
|
|
661
|
+
}
|
|
662
|
+
.dvr-controls[data-dvr] .live-info {
|
|
663
|
+
cursor: default;
|
|
664
|
+
text-transform: uppercase;
|
|
665
|
+
}
|
|
666
|
+
.dvr-controls[data-dvr] .live-info:before {
|
|
667
|
+
content: "";
|
|
668
|
+
display: inline-block;
|
|
669
|
+
position: relative;
|
|
670
|
+
width: 7px;
|
|
671
|
+
height: 7px;
|
|
672
|
+
border-radius: 3.5px;
|
|
673
|
+
margin-right: 3.5px;
|
|
674
|
+
background-color: var(--player-live-color);
|
|
675
|
+
}
|
|
676
|
+
.dvr-controls[data-dvr] .live-info.disabled {
|
|
677
|
+
opacity: 0.3;
|
|
678
|
+
}
|
|
679
|
+
.dvr-controls[data-dvr] .live-info.disabled:before {
|
|
680
|
+
background-color: var(--player-dvr-color);
|
|
681
|
+
}
|
|
682
|
+
.dvr-controls[data-dvr] .live-button {
|
|
683
|
+
cursor: pointer;
|
|
684
|
+
outline: none;
|
|
685
|
+
display: none;
|
|
686
|
+
border: 0;
|
|
687
|
+
color: var(--player-dvr-color);
|
|
688
|
+
background-color: transparent;
|
|
689
|
+
height: 32px;
|
|
690
|
+
padding: 0;
|
|
691
|
+
opacity: 0.7;
|
|
692
|
+
text-transform: uppercase;
|
|
693
|
+
transition: all 0.1s ease;
|
|
694
|
+
}
|
|
695
|
+
.dvr-controls[data-dvr] .live-button:before {
|
|
696
|
+
content: "";
|
|
697
|
+
display: inline-block;
|
|
698
|
+
position: relative;
|
|
699
|
+
width: 7px;
|
|
700
|
+
height: 7px;
|
|
701
|
+
border-radius: 3.5px;
|
|
702
|
+
margin-right: 3.5px;
|
|
703
|
+
background-color: var(--player-dvr-color);
|
|
704
|
+
}
|
|
705
|
+
.dvr-controls[data-dvr] .live-button:hover {
|
|
706
|
+
opacity: 1;
|
|
707
|
+
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
708
|
+
}
|
|
709
|
+
.dvr-controls[data-dvr] .live-info {
|
|
710
|
+
font-size: 14px;
|
|
711
|
+
letter-spacing: 0.8px;
|
|
712
|
+
font-weight: 500;
|
|
713
|
+
color: #fffffe;
|
|
714
|
+
margin-left: 21px;
|
|
715
|
+
}
|
|
716
|
+
.dvr-controls[data-dvr] .live-info::before {
|
|
717
|
+
width: 10px;
|
|
718
|
+
height: 10px;
|
|
719
|
+
border-radius: 50%;
|
|
720
|
+
margin-right: 8px;
|
|
721
|
+
background-color: #ed4f4a;
|
|
722
|
+
}
|
|
723
|
+
.dvr-controls[data-dvr] .live-button {
|
|
724
|
+
height: 40px;
|
|
725
|
+
opacity: 1;
|
|
726
|
+
font-size: 14px;
|
|
727
|
+
letter-spacing: 0.8px;
|
|
728
|
+
font-weight: 500;
|
|
729
|
+
margin-left: 20px;
|
|
730
|
+
}
|
|
731
|
+
.dvr-controls[data-dvr] .live-button::before {
|
|
732
|
+
width: 10px;
|
|
733
|
+
height: 10px;
|
|
734
|
+
border-radius: 50%;
|
|
735
|
+
margin-right: 8px;
|
|
736
|
+
background-color: #cacaca;
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
.dvr .dvr-controls[data-dvr] .live-info {
|
|
740
|
+
display: none;
|
|
741
|
+
}
|
|
742
|
+
.dvr .dvr-controls[data-dvr] .live-button {
|
|
743
|
+
display: block;
|
|
744
|
+
}.player-poster[data-poster] {
|
|
745
|
+
display: flex;
|
|
746
|
+
justify-content: center;
|
|
747
|
+
align-items: center;
|
|
748
|
+
position: absolute;
|
|
749
|
+
height: 100%;
|
|
750
|
+
width: 100%;
|
|
751
|
+
z-index: 998;
|
|
752
|
+
top: 0;
|
|
753
|
+
left: 0;
|
|
754
|
+
background-color: #000;
|
|
755
|
+
background-size: cover;
|
|
756
|
+
background-repeat: no-repeat;
|
|
757
|
+
background-position: 50% 50%;
|
|
758
|
+
}
|
|
759
|
+
.player-poster[data-poster].clickable {
|
|
760
|
+
cursor: pointer;
|
|
761
|
+
}
|
|
762
|
+
.player-poster[data-poster]:hover .play-wrapper[data-poster] {
|
|
763
|
+
opacity: 1;
|
|
764
|
+
}
|
|
765
|
+
.player-poster[data-poster] .play-wrapper[data-poster] {
|
|
766
|
+
width: 100%;
|
|
767
|
+
height: 25%;
|
|
768
|
+
margin: 0 auto;
|
|
769
|
+
opacity: 0.75;
|
|
770
|
+
transition: opacity 0.1s ease;
|
|
771
|
+
}
|
|
772
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg {
|
|
773
|
+
height: 100%;
|
|
774
|
+
display: inline;
|
|
775
|
+
}
|
|
776
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg path {
|
|
777
|
+
fill: #fff;
|
|
778
|
+
}[data-player] {
|
|
779
|
+
--bottom-panel: 40px;
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
.container .media-control-notransition {
|
|
783
|
+
transition: none !important;
|
|
784
|
+
}
|
|
785
|
+
.container .player-poster[data-poster] .play-wrapper[data-poster] {
|
|
786
|
+
opacity: 1;
|
|
787
|
+
}
|
|
788
|
+
.container.crop-video [data-html5-video] {
|
|
789
|
+
object-fit: cover;
|
|
790
|
+
}
|
|
791
|
+
.container .cc-line {
|
|
792
|
+
position: absolute;
|
|
793
|
+
bottom: calc(var(--bottom-panel) + 5px);
|
|
794
|
+
width: 100%;
|
|
795
|
+
}
|
|
796
|
+
.container .cc-line p {
|
|
797
|
+
width: auto;
|
|
798
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
799
|
+
color: white;
|
|
800
|
+
display: inline-block;
|
|
801
|
+
}
|
|
802
|
+
.container .circle-poster[data-poster] {
|
|
803
|
+
top: 50%;
|
|
953
804
|
margin-top: -60px;
|
|
954
805
|
left: 50%;
|
|
955
806
|
margin-left: -60px;
|
|
@@ -1561,40 +1412,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1561
1412
|
}
|
|
1562
1413
|
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
|
|
1563
1414
|
display: none !important;
|
|
1564
|
-
}.player-poster[data-poster] {
|
|
1565
|
-
display: flex;
|
|
1566
|
-
justify-content: center;
|
|
1567
|
-
align-items: center;
|
|
1568
|
-
position: absolute;
|
|
1569
|
-
height: 100%;
|
|
1570
|
-
width: 100%;
|
|
1571
|
-
z-index: 998;
|
|
1572
|
-
top: 0;
|
|
1573
|
-
left: 0;
|
|
1574
|
-
background-color: #000;
|
|
1575
|
-
background-size: cover;
|
|
1576
|
-
background-repeat: no-repeat;
|
|
1577
|
-
background-position: 50% 50%;
|
|
1578
|
-
}
|
|
1579
|
-
.player-poster[data-poster].clickable {
|
|
1580
|
-
cursor: pointer;
|
|
1581
|
-
}
|
|
1582
|
-
.player-poster[data-poster]:hover .play-wrapper[data-poster] {
|
|
1583
|
-
opacity: 1;
|
|
1584
|
-
}
|
|
1585
|
-
.player-poster[data-poster] .play-wrapper[data-poster] {
|
|
1586
|
-
width: 100%;
|
|
1587
|
-
height: 25%;
|
|
1588
|
-
margin: 0 auto;
|
|
1589
|
-
opacity: 0.75;
|
|
1590
|
-
transition: opacity 0.1s ease;
|
|
1591
|
-
}
|
|
1592
|
-
.player-poster[data-poster] .play-wrapper[data-poster] svg {
|
|
1593
|
-
height: 100%;
|
|
1594
|
-
display: inline;
|
|
1595
|
-
}
|
|
1596
|
-
.player-poster[data-poster] .play-wrapper[data-poster] svg path {
|
|
1597
|
-
fill: #fff;
|
|
1598
1415
|
}.seek-time[data-seek-time] {
|
|
1599
1416
|
position: absolute;
|
|
1600
1417
|
white-space: nowrap;
|
|
@@ -1628,89 +1445,330 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1628
1445
|
.seek-time[data-seek-time] [data-duration]::before {
|
|
1629
1446
|
content: "|";
|
|
1630
1447
|
margin-right: 7px;
|
|
1631
|
-
}
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1448
|
+
}*,
|
|
1449
|
+
:focus,
|
|
1450
|
+
:visited {
|
|
1451
|
+
outline: none !important;
|
|
1635
1452
|
}
|
|
1636
|
-
|
|
1637
|
-
|
|
1453
|
+
|
|
1454
|
+
.media-control-audiotracks {
|
|
1455
|
+
position: relative;
|
|
1638
1456
|
}
|
|
1639
|
-
.
|
|
1457
|
+
.media-control-audiotracks button {
|
|
1458
|
+
background-color: transparent;
|
|
1459
|
+
color: #fff;
|
|
1460
|
+
-webkit-font-smoothing: antialiased;
|
|
1461
|
+
border: none;
|
|
1640
1462
|
cursor: pointer;
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
border-radius: 4px;
|
|
1645
|
-
position: absolute;
|
|
1646
|
-
right: 10px;
|
|
1647
|
-
top: 10px;
|
|
1648
|
-
padding-top: 6px;
|
|
1649
|
-
transition: all 0.3s ease-out;
|
|
1463
|
+
display: flex;
|
|
1464
|
+
align-items: center;
|
|
1465
|
+
padding: 0;
|
|
1650
1466
|
}
|
|
1651
|
-
.
|
|
1467
|
+
.media-control-audiotracks button .audio-text {
|
|
1468
|
+
text-overflow: ellipsis;
|
|
1469
|
+
overflow: hidden;
|
|
1470
|
+
white-space: nowrap;
|
|
1471
|
+
max-width: 100px;
|
|
1652
1472
|
background-color: transparent;
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
padding: 0;
|
|
1473
|
+
-webkit-font-smoothing: antialiased;
|
|
1474
|
+
border: none;
|
|
1656
1475
|
cursor: pointer;
|
|
1657
|
-
display: inline-block;
|
|
1658
|
-
width: 19px;
|
|
1659
|
-
height: 20px;
|
|
1660
1476
|
}
|
|
1661
|
-
.
|
|
1662
|
-
|
|
1477
|
+
.media-control-audiotracks button:hover {
|
|
1478
|
+
color: white;
|
|
1479
|
+
}
|
|
1480
|
+
.media-control-audiotracks button.changing {
|
|
1481
|
+
animation: pulse 0.5s infinite alternate;
|
|
1482
|
+
}
|
|
1483
|
+
.media-control-audiotracks button span.audio-arrow {
|
|
1484
|
+
width: 9px;
|
|
1485
|
+
height: 6px;
|
|
1486
|
+
margin-left: 5px;
|
|
1487
|
+
}
|
|
1488
|
+
.media-control-audiotracks .menu {
|
|
1489
|
+
max-width: 114px;
|
|
1490
|
+
list-style-type: none;
|
|
1663
1491
|
position: absolute;
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
top: calc(50% - 20px);
|
|
1671
|
-
/* margin-top: -170px; */
|
|
1492
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
1493
|
+
border: none;
|
|
1494
|
+
min-width: 60px;
|
|
1495
|
+
border-radius: 4px;
|
|
1496
|
+
bottom: 40px;
|
|
1497
|
+
right: -2px;
|
|
1672
1498
|
}
|
|
1673
|
-
.
|
|
1674
|
-
|
|
1675
|
-
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
1499
|
+
.media-control-audiotracks .menu.hidden {
|
|
1500
|
+
display: none;
|
|
1676
1501
|
}
|
|
1677
|
-
.
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1502
|
+
.media-control-audiotracks li {
|
|
1503
|
+
font-size: var(--font-size-media-controls-dropdown);
|
|
1504
|
+
text-align: right;
|
|
1505
|
+
height: 30px;
|
|
1681
1506
|
}
|
|
1682
|
-
.
|
|
1683
|
-
|
|
1684
|
-
|
|
1507
|
+
.media-control-audiotracks li[data-title] {
|
|
1508
|
+
background-color: #c3c2c2;
|
|
1509
|
+
padding: 5px;
|
|
1510
|
+
}
|
|
1511
|
+
.media-control-audiotracks li a {
|
|
1512
|
+
display: block;
|
|
1513
|
+
text-decoration: none;
|
|
1514
|
+
text-overflow: ellipsis;
|
|
1515
|
+
overflow: hidden;
|
|
1516
|
+
white-space: nowrap;
|
|
1517
|
+
height: 30px;
|
|
1518
|
+
padding: 5px 10px;
|
|
1519
|
+
color: #fffffe;
|
|
1520
|
+
}
|
|
1521
|
+
.media-control-audiotracks li a:hover {
|
|
1522
|
+
text-decoration: none;
|
|
1523
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
1524
|
+
color: white;
|
|
1525
|
+
}
|
|
1526
|
+
.media-control-audiotracks li.current a {
|
|
1527
|
+
color: #f00;
|
|
1528
|
+
}
|
|
1529
|
+
.media-control-audiotracks li:first-child a {
|
|
1530
|
+
border-bottom-left-radius: 4px;
|
|
1531
|
+
border-bottom-right-radius: 4px;
|
|
1532
|
+
}
|
|
1533
|
+
.media-control-audiotracks li:last-child a {
|
|
1534
|
+
border-top-left-radius: 4px;
|
|
1535
|
+
border-top-right-radius: 4px;
|
|
1536
|
+
}
|
|
1537
|
+
|
|
1538
|
+
@keyframes pulse {
|
|
1539
|
+
0% {
|
|
1540
|
+
color: #fff;
|
|
1541
|
+
}
|
|
1542
|
+
50% {
|
|
1543
|
+
color: #ff0101;
|
|
1544
|
+
}
|
|
1545
|
+
100% {
|
|
1546
|
+
color: #B80000;
|
|
1547
|
+
}
|
|
1548
|
+
}.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
|
|
1549
|
+
height: 0;
|
|
1550
|
+
}
|
|
1551
|
+
|
|
1552
|
+
.skip_time_plugin[data-skip-time] {
|
|
1553
|
+
position: absolute;
|
|
1554
|
+
width: 100%;
|
|
1555
|
+
height: calc(100% - 50px);
|
|
1556
|
+
z-index: 9998;
|
|
1557
|
+
background-color: transparent;
|
|
1558
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1559
|
+
}
|
|
1560
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
|
|
1561
|
+
width: 100%;
|
|
1562
|
+
height: 100%;
|
|
1563
|
+
display: flex;
|
|
1564
|
+
justify-content: space-between;
|
|
1565
|
+
}
|
|
1566
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
|
|
1567
|
+
width: 33.3%;
|
|
1568
|
+
height: 100%;
|
|
1569
|
+
}*, :focus, :visited {
|
|
1570
|
+
outline: none !important;
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
.multicamera[data-multicamera] {
|
|
1685
1574
|
float: right;
|
|
1686
|
-
margin:
|
|
1575
|
+
margin-top: 4px;
|
|
1576
|
+
position: relative;
|
|
1577
|
+
margin-right: 20px;
|
|
1578
|
+
width: 20px;
|
|
1579
|
+
}
|
|
1580
|
+
.multicamera[data-multicamera] button {
|
|
1581
|
+
background-color: transparent;
|
|
1582
|
+
color: #fff;
|
|
1583
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1584
|
+
-webkit-font-smoothing: antialiased;
|
|
1585
|
+
border: none;
|
|
1586
|
+
font-size: 14px;
|
|
1587
|
+
padding: 0;
|
|
1588
|
+
}
|
|
1589
|
+
.multicamera[data-multicamera] button svg {
|
|
1590
|
+
height: 20px;
|
|
1591
|
+
position: relative;
|
|
1592
|
+
margin-top: 6px;
|
|
1593
|
+
}
|
|
1594
|
+
.multicamera[data-multicamera] button:hover {
|
|
1595
|
+
color: #c9c9c9;
|
|
1596
|
+
}
|
|
1597
|
+
.multicamera[data-multicamera] button.changing {
|
|
1598
|
+
animation: pulse 0.5s infinite alternate;
|
|
1599
|
+
}
|
|
1600
|
+
.multicamera[data-multicamera] button span.quality-arrow {
|
|
1601
|
+
width: 9px;
|
|
1602
|
+
height: 6px;
|
|
1603
|
+
margin-top: 11px;
|
|
1604
|
+
margin-left: 5px;
|
|
1605
|
+
}
|
|
1606
|
+
.multicamera[data-multicamera] > ul {
|
|
1607
|
+
padding: 6px 0;
|
|
1608
|
+
right: -24px;
|
|
1609
|
+
width: 245px;
|
|
1610
|
+
list-style-type: none;
|
|
1611
|
+
position: absolute;
|
|
1612
|
+
bottom: 48px;
|
|
1613
|
+
border-radius: 4px;
|
|
1614
|
+
display: none;
|
|
1615
|
+
background-color: rgba(74, 74, 74, 0.9);
|
|
1616
|
+
}
|
|
1617
|
+
.multicamera[data-multicamera] > ul::after {
|
|
1618
|
+
content: "";
|
|
1619
|
+
position: absolute;
|
|
1620
|
+
top: 100%;
|
|
1621
|
+
left: 85%;
|
|
1622
|
+
margin-left: -10px;
|
|
1623
|
+
width: 0;
|
|
1624
|
+
height: 0;
|
|
1625
|
+
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
1626
|
+
border-right: 10px solid transparent;
|
|
1627
|
+
border-left: 10px solid transparent;
|
|
1628
|
+
}
|
|
1629
|
+
.multicamera[data-multicamera] li {
|
|
1630
|
+
font-size: 10px;
|
|
1687
1631
|
cursor: pointer;
|
|
1688
1632
|
}
|
|
1689
|
-
.
|
|
1690
|
-
|
|
1633
|
+
.multicamera[data-multicamera] li .multicamera-item {
|
|
1634
|
+
display: flex;
|
|
1635
|
+
padding: 10px 0;
|
|
1636
|
+
justify-content: center;
|
|
1637
|
+
position: relative;
|
|
1691
1638
|
}
|
|
1692
|
-
.
|
|
1639
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
1640
|
+
pointer-events: none;
|
|
1641
|
+
}
|
|
1642
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
1643
|
+
opacity: 0.5;
|
|
1644
|
+
}
|
|
1645
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
1646
|
+
opacity: 0.5;
|
|
1647
|
+
}
|
|
1648
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
1649
|
+
background-color: rgba(0, 0, 0, 0);
|
|
1650
|
+
}
|
|
1651
|
+
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
1652
|
+
background-color: rgba(0, 0, 0, 0.3);
|
|
1653
|
+
}
|
|
1654
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
1655
|
+
width: 80px;
|
|
1656
|
+
height: 60px;
|
|
1657
|
+
}
|
|
1658
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
|
|
1659
|
+
width: 80px;
|
|
1660
|
+
height: 60px;
|
|
1661
|
+
}
|
|
1662
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
1663
|
+
width: 120px;
|
|
1693
1664
|
text-align: left;
|
|
1665
|
+
margin-left: 15px;
|
|
1666
|
+
}
|
|
1667
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1668
|
+
width: 120px;
|
|
1669
|
+
height: 20px;
|
|
1670
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1694
1671
|
font-size: 14px;
|
|
1672
|
+
font-weight: normal;
|
|
1673
|
+
font-style: normal;
|
|
1674
|
+
font-stretch: normal;
|
|
1675
|
+
line-height: 1.43;
|
|
1676
|
+
letter-spacing: normal;
|
|
1677
|
+
text-align: left;
|
|
1678
|
+
color: #fff;
|
|
1679
|
+
text-overflow: ellipsis;
|
|
1680
|
+
overflow: hidden;
|
|
1681
|
+
}
|
|
1682
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1683
|
+
opacity: 0.6;
|
|
1684
|
+
}
|
|
1685
|
+
.multicamera[data-multicamera] li[data-title] {
|
|
1686
|
+
background-color: #c3c2c2;
|
|
1695
1687
|
padding: 5px;
|
|
1696
1688
|
}
|
|
1697
|
-
.
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1689
|
+
.multicamera[data-multicamera] li a {
|
|
1690
|
+
color: #444;
|
|
1691
|
+
padding: 2px 10px;
|
|
1692
|
+
display: block;
|
|
1693
|
+
text-decoration: none;
|
|
1694
|
+
}
|
|
1695
|
+
.multicamera[data-multicamera] li a:hover {
|
|
1696
|
+
background-color: #555;
|
|
1697
|
+
color: white;
|
|
1698
|
+
}
|
|
1699
|
+
.multicamera[data-multicamera] li a:hover a {
|
|
1700
|
+
color: white;
|
|
1701
|
+
text-decoration: none;
|
|
1702
|
+
}
|
|
1703
|
+
.multicamera[data-multicamera] li.current a {
|
|
1704
|
+
color: #f00;
|
|
1705
|
+
}
|
|
1706
|
+
|
|
1707
|
+
@keyframes pulse {
|
|
1708
|
+
0% {
|
|
1709
|
+
color: #fff;
|
|
1710
|
+
}
|
|
1711
|
+
50% {
|
|
1712
|
+
color: #ff0101;
|
|
1713
|
+
}
|
|
1714
|
+
100% {
|
|
1715
|
+
color: #B80000;
|
|
1716
|
+
}
|
|
1717
|
+
}.big-mute-icon-wrapper[data-big-mute] {
|
|
1718
|
+
position: absolute;
|
|
1719
|
+
z-index: 9998;
|
|
1720
|
+
background-color: transparent;
|
|
1721
|
+
display: flex;
|
|
1722
|
+
justify-content: center;
|
|
1723
|
+
width: 100%;
|
|
1724
|
+
height: calc(100% - 50px);
|
|
1725
|
+
margin: 0 auto;
|
|
1726
|
+
opacity: 0.75;
|
|
1727
|
+
transition: opacity 0.1s ease;
|
|
1728
|
+
pointer-events: auto;
|
|
1729
|
+
}
|
|
1730
|
+
.big-mute-icon-wrapper[data-big-mute].hide {
|
|
1731
|
+
display: none;
|
|
1732
|
+
}
|
|
1733
|
+
.big-mute-icon-wrapper[data-big-mute]:hover {
|
|
1734
|
+
cursor: pointer;
|
|
1735
|
+
}
|
|
1736
|
+
|
|
1737
|
+
.big-mute-icon[data-big-mute-icon] {
|
|
1738
|
+
display: flex;
|
|
1739
|
+
align-items: center;
|
|
1740
|
+
justify-content: center;
|
|
1741
|
+
align-self: center;
|
|
1742
|
+
width: 120px;
|
|
1743
|
+
height: 120px;
|
|
1744
|
+
border: 2px solid white;
|
|
1745
|
+
border-radius: 50%;
|
|
1746
|
+
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
1747
|
+
filter: alpha(opacity=60);
|
|
1748
|
+
opacity: 1;
|
|
1749
|
+
box-shadow: 0 0 1px 0 white;
|
|
1750
|
+
background: rgba(240, 243, 247, 0.9411764706);
|
|
1751
|
+
z-index: 10000;
|
|
1752
|
+
}
|
|
1753
|
+
.big-mute-icon[data-big-mute-icon] svg {
|
|
1754
|
+
margin-left: 5px;
|
|
1755
|
+
width: 80px;
|
|
1756
|
+
height: 80px;
|
|
1757
|
+
}
|
|
1758
|
+
.big-mute-icon[data-big-mute-icon] svg path {
|
|
1759
|
+
fill: #1f1e1e !important;
|
|
1760
|
+
}
|
|
1761
|
+
.big-mute-icon[data-big-mute-icon]:hover {
|
|
1762
|
+
background: rgba(240, 243, 247, 0.8784313725);
|
|
1704
1763
|
}
|
|
1705
|
-
.
|
|
1706
|
-
|
|
1707
|
-
|
|
1764
|
+
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
1765
|
+
fill: #151515 !important;
|
|
1766
|
+
}.quality-levels li.disabled {
|
|
1767
|
+
opacity: 0.5;
|
|
1768
|
+
pointer-events: none;
|
|
1708
1769
|
}
|
|
1709
|
-
.
|
|
1710
|
-
|
|
1711
|
-
display: inline-block;
|
|
1712
|
-
margin-right: 5px;
|
|
1713
|
-
cursor: pointer;
|
|
1770
|
+
.quality-levels li.current {
|
|
1771
|
+
background-color: #000;
|
|
1714
1772
|
}*,
|
|
1715
1773
|
:focus,
|
|
1716
1774
|
:visited {
|
|
@@ -1785,6 +1843,15 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1785
1843
|
.ios-fullscreen::cue {
|
|
1786
1844
|
visibility: visible !important;
|
|
1787
1845
|
font-size: 1em !important;
|
|
1846
|
+
}.media-control-pip {
|
|
1847
|
+
order: 95;
|
|
1848
|
+
display: flex;
|
|
1849
|
+
}
|
|
1850
|
+
.media-control-pip button {
|
|
1851
|
+
height: 20px;
|
|
1852
|
+
}
|
|
1853
|
+
.media-control-pip button svg {
|
|
1854
|
+
height: 20px;
|
|
1788
1855
|
}.spinner-three-bounce[data-spinner] {
|
|
1789
1856
|
position: absolute;
|
|
1790
1857
|
width: 70px;
|
|
@@ -1884,182 +1951,96 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1884
1951
|
}
|
|
1885
1952
|
.scrub-thumbnails .backdrop .carousel img {
|
|
1886
1953
|
width: auto;
|
|
1887
|
-
}.
|
|
1888
|
-
|
|
1889
|
-
z-index:
|
|
1890
|
-
|
|
1891
|
-
height: 100%;
|
|
1954
|
+
}.share_plugin[data-share] {
|
|
1955
|
+
pointer-events: auto;
|
|
1956
|
+
z-index: 5;
|
|
1957
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
1892
1958
|
}
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
position: absolute;
|
|
1896
|
-
}*, :focus, :visited {
|
|
1897
|
-
outline: none !important;
|
|
1959
|
+
.share_plugin[data-share].share-hide .share-button-container {
|
|
1960
|
+
right: -50px;
|
|
1898
1961
|
}
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1962
|
+
.share_plugin[data-share] .share-button-container {
|
|
1963
|
+
cursor: pointer;
|
|
1964
|
+
width: 36px;
|
|
1965
|
+
height: 36px;
|
|
1966
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
1967
|
+
border-radius: 4px;
|
|
1968
|
+
position: absolute;
|
|
1969
|
+
right: 10px;
|
|
1970
|
+
top: 10px;
|
|
1971
|
+
padding-top: 6px;
|
|
1972
|
+
transition: all 0.3s ease-out;
|
|
1906
1973
|
}
|
|
1907
|
-
.
|
|
1974
|
+
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
1908
1975
|
background-color: transparent;
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
-webkit-font-smoothing: antialiased;
|
|
1912
|
-
border: none;
|
|
1913
|
-
font-size: 14px;
|
|
1976
|
+
border: 0;
|
|
1977
|
+
margin: 0 6px;
|
|
1914
1978
|
padding: 0;
|
|
1915
|
-
|
|
1916
|
-
|
|
1979
|
+
cursor: pointer;
|
|
1980
|
+
display: inline-block;
|
|
1981
|
+
width: 19px;
|
|
1917
1982
|
height: 20px;
|
|
1918
|
-
position: relative;
|
|
1919
|
-
margin-top: 6px;
|
|
1920
|
-
}
|
|
1921
|
-
.multicamera[data-multicamera] button:hover {
|
|
1922
|
-
color: #c9c9c9;
|
|
1923
|
-
}
|
|
1924
|
-
.multicamera[data-multicamera] button.changing {
|
|
1925
|
-
animation: pulse 0.5s infinite alternate;
|
|
1926
|
-
}
|
|
1927
|
-
.multicamera[data-multicamera] button span.quality-arrow {
|
|
1928
|
-
width: 9px;
|
|
1929
|
-
height: 6px;
|
|
1930
|
-
margin-top: 11px;
|
|
1931
|
-
margin-left: 5px;
|
|
1932
|
-
}
|
|
1933
|
-
.multicamera[data-multicamera] > ul {
|
|
1934
|
-
padding: 6px 0;
|
|
1935
|
-
right: -24px;
|
|
1936
|
-
width: 245px;
|
|
1937
|
-
list-style-type: none;
|
|
1938
|
-
position: absolute;
|
|
1939
|
-
bottom: 48px;
|
|
1940
|
-
border-radius: 4px;
|
|
1941
|
-
display: none;
|
|
1942
|
-
background-color: rgba(74, 74, 74, 0.9);
|
|
1943
1983
|
}
|
|
1944
|
-
.
|
|
1945
|
-
|
|
1984
|
+
.share_plugin[data-share] .share-container {
|
|
1985
|
+
pointer-events: auto;
|
|
1946
1986
|
position: absolute;
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
}
|
|
1956
|
-
.multicamera[data-multicamera] li {
|
|
1957
|
-
font-size: 10px;
|
|
1958
|
-
cursor: pointer;
|
|
1959
|
-
}
|
|
1960
|
-
.multicamera[data-multicamera] li .multicamera-item {
|
|
1961
|
-
display: flex;
|
|
1962
|
-
padding: 10px 0;
|
|
1963
|
-
justify-content: center;
|
|
1964
|
-
position: relative;
|
|
1965
|
-
}
|
|
1966
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
1967
|
-
pointer-events: none;
|
|
1968
|
-
}
|
|
1969
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
1970
|
-
opacity: 0.5;
|
|
1971
|
-
}
|
|
1972
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
1973
|
-
opacity: 0.5;
|
|
1987
|
+
width: 280px;
|
|
1988
|
+
background-color: white;
|
|
1989
|
+
transform: translate(0, 50%);
|
|
1990
|
+
transform: translate(-50%, -50%);
|
|
1991
|
+
left: 50%;
|
|
1992
|
+
/* margin-left: -140px; */
|
|
1993
|
+
top: calc(50% - 20px);
|
|
1994
|
+
/* margin-top: -170px; */
|
|
1974
1995
|
}
|
|
1975
|
-
.
|
|
1976
|
-
|
|
1996
|
+
.share_plugin[data-share] .share-container .share-container-header {
|
|
1997
|
+
text-align: left;
|
|
1998
|
+
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
1977
1999
|
}
|
|
1978
|
-
.
|
|
1979
|
-
|
|
2000
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
2001
|
+
display: inline-block;
|
|
2002
|
+
font-size: 16px;
|
|
2003
|
+
margin: 5px;
|
|
1980
2004
|
}
|
|
1981
|
-
.
|
|
1982
|
-
|
|
1983
|
-
|
|
2005
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
2006
|
+
display: inline-block;
|
|
2007
|
+
width: 24px;
|
|
2008
|
+
float: right;
|
|
2009
|
+
margin: 5px;
|
|
2010
|
+
cursor: pointer;
|
|
1984
2011
|
}
|
|
1985
|
-
.
|
|
1986
|
-
|
|
1987
|
-
height: 60px;
|
|
2012
|
+
.share_plugin[data-share] .share-container .share-container-main {
|
|
2013
|
+
margin-bottom: 8px;
|
|
1988
2014
|
}
|
|
1989
|
-
.
|
|
1990
|
-
width: 120px;
|
|
2015
|
+
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
1991
2016
|
text-align: left;
|
|
1992
|
-
margin-left: 15px;
|
|
1993
|
-
}
|
|
1994
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1995
|
-
width: 120px;
|
|
1996
|
-
height: 20px;
|
|
1997
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1998
2017
|
font-size: 14px;
|
|
1999
|
-
font-weight: normal;
|
|
2000
|
-
font-style: normal;
|
|
2001
|
-
font-stretch: normal;
|
|
2002
|
-
line-height: 1.43;
|
|
2003
|
-
letter-spacing: normal;
|
|
2004
|
-
text-align: left;
|
|
2005
|
-
color: #fff;
|
|
2006
|
-
text-overflow: ellipsis;
|
|
2007
|
-
overflow: hidden;
|
|
2008
|
-
}
|
|
2009
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
2010
|
-
opacity: 0.6;
|
|
2011
|
-
}
|
|
2012
|
-
.multicamera[data-multicamera] li[data-title] {
|
|
2013
|
-
background-color: #c3c2c2;
|
|
2014
2018
|
padding: 5px;
|
|
2015
2019
|
}
|
|
2016
|
-
.
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
background-color: #555;
|
|
2024
|
-
color: white;
|
|
2025
|
-
}
|
|
2026
|
-
.multicamera[data-multicamera] li a:hover a {
|
|
2027
|
-
color: white;
|
|
2028
|
-
text-decoration: none;
|
|
2029
|
-
}
|
|
2030
|
-
.multicamera[data-multicamera] li.current a {
|
|
2031
|
-
color: #f00;
|
|
2020
|
+
.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 {
|
|
2021
|
+
overflow: hidden;
|
|
2022
|
+
text-overflow: ellipsis;
|
|
2023
|
+
color: #818181;
|
|
2024
|
+
border: solid 1px #d3d3d3;
|
|
2025
|
+
width: calc(100% - 10px);
|
|
2026
|
+
padding: 5px;
|
|
2032
2027
|
}
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
color: #fff;
|
|
2037
|
-
}
|
|
2038
|
-
50% {
|
|
2039
|
-
color: #ff0101;
|
|
2040
|
-
}
|
|
2041
|
-
100% {
|
|
2042
|
-
color: #B80000;
|
|
2043
|
-
}
|
|
2044
|
-
}.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
|
|
2045
|
-
height: 0;
|
|
2028
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
2029
|
+
max-height: 90px;
|
|
2030
|
+
resize: none;
|
|
2046
2031
|
}
|
|
2047
|
-
|
|
2048
|
-
|
|
2032
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
2033
|
+
width: 32px;
|
|
2034
|
+
display: inline-block;
|
|
2035
|
+
margin-right: 5px;
|
|
2036
|
+
cursor: pointer;
|
|
2037
|
+
}.player-logo[data-logo] {
|
|
2049
2038
|
position: absolute;
|
|
2050
|
-
|
|
2051
|
-
height: calc(100% - 50px);
|
|
2052
|
-
z-index: 9998;
|
|
2053
|
-
background-color: transparent;
|
|
2054
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
2055
|
-
}
|
|
2056
|
-
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
|
|
2039
|
+
z-index: 2;
|
|
2057
2040
|
width: 100%;
|
|
2058
2041
|
height: 100%;
|
|
2059
|
-
display: flex;
|
|
2060
|
-
justify-content: space-between;
|
|
2061
2042
|
}
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2043
|
+
|
|
2044
|
+
.clappr-logo {
|
|
2045
|
+
position: absolute;
|
|
2065
2046
|
}
|