@gcorevideo/player 2.23.0 → 2.23.2
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/bottomgear.ejs +5 -2
- package/dist/core.js +1 -1
- package/dist/index.css +550 -550
- package/dist/index.js +45 -22
- package/dist/player.d.ts +67 -53
- package/docs/api/{player.mediacontrol.putelement.md → player.clips.gettext.md} +10 -23
- package/docs/api/player.clips.md +14 -0
- package/docs/api/player.md +9 -0
- package/docs/api/player.mediacontrol.md +0 -14
- package/docs/api/player.poster.md +2 -10
- package/docs/api/player.posterpluginsettings.md +16 -0
- package/docs/api/player.thumbnails._constructor_.md +50 -0
- package/docs/api/player.thumbnails.md +73 -0
- package/docs/api/player.thumbnails.render.md +18 -0
- package/docs/api/player.thumbnailspluginsettings.md +4 -4
- package/lib/plugins/bottom-gear/BottomGear.d.ts +5 -2
- package/lib/plugins/bottom-gear/BottomGear.d.ts.map +1 -1
- package/lib/plugins/bottom-gear/BottomGear.js +33 -9
- package/lib/plugins/thumbnails/Thumbnails.d.ts.map +1 -1
- package/lib/plugins/thumbnails/Thumbnails.js +10 -11
- package/lib/testUtils.d.ts.map +1 -1
- package/lib/testUtils.js +1 -0
- package/package.json +5 -2
- package/src/plugins/bottom-gear/BottomGear.ts +35 -10
- package/src/plugins/bottom-gear/__tests__/BottomGear.test.ts +92 -55
- package/src/plugins/bottom-gear/__tests__/__snapshots__/BottomGear.test.ts.snap +4 -4
- package/src/plugins/thumbnails/Thumbnails.ts +18 -11
- package/src/plugins/thumbnails/__tests__/Thumbnails.test.ts +3 -3
- package/src/testUtils.ts +1 -0
- package/temp/player.api.json +144 -70
- package/tsconfig.tsbuildinfo +1 -1
package/dist/index.css
CHANGED
|
@@ -122,217 +122,106 @@
|
|
|
122
122
|
.gplayer-lite-btn::-moz-focus-inner {
|
|
123
123
|
border: 0;
|
|
124
124
|
padding: 0;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
display: flex;
|
|
130
|
-
justify-content: center;
|
|
131
|
-
width: 100%;
|
|
132
|
-
height: calc(100% - 50px);
|
|
133
|
-
margin: 0 auto;
|
|
134
|
-
opacity: 0.75;
|
|
135
|
-
transition: opacity 0.1s ease;
|
|
136
|
-
pointer-events: auto;
|
|
125
|
+
}*,
|
|
126
|
+
:focus,
|
|
127
|
+
:visited {
|
|
128
|
+
outline: none !important;
|
|
137
129
|
}
|
|
138
|
-
|
|
139
|
-
|
|
130
|
+
|
|
131
|
+
.media-control-audiotracks {
|
|
132
|
+
position: relative;
|
|
140
133
|
}
|
|
141
|
-
.
|
|
134
|
+
.media-control-audiotracks button {
|
|
135
|
+
background-color: transparent;
|
|
136
|
+
color: #fff;
|
|
137
|
+
-webkit-font-smoothing: antialiased;
|
|
138
|
+
border: none;
|
|
142
139
|
cursor: pointer;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
.big-mute-icon[data-big-mute-icon] {
|
|
146
140
|
display: flex;
|
|
147
141
|
align-items: center;
|
|
148
|
-
|
|
149
|
-
align-self: center;
|
|
150
|
-
width: 120px;
|
|
151
|
-
height: 120px;
|
|
152
|
-
border: 2px solid white;
|
|
153
|
-
border-radius: 50%;
|
|
154
|
-
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
155
|
-
filter: alpha(opacity=60);
|
|
156
|
-
opacity: 1;
|
|
157
|
-
box-shadow: 0 0 1px 0 white;
|
|
158
|
-
background: rgba(240, 243, 247, 0.9411764706);
|
|
159
|
-
z-index: 10000;
|
|
142
|
+
padding: 0;
|
|
160
143
|
}
|
|
161
|
-
.
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
144
|
+
.media-control-audiotracks button .audio-text {
|
|
145
|
+
text-overflow: ellipsis;
|
|
146
|
+
overflow: hidden;
|
|
147
|
+
white-space: nowrap;
|
|
148
|
+
max-width: 100px;
|
|
149
|
+
background-color: transparent;
|
|
150
|
+
-webkit-font-smoothing: antialiased;
|
|
151
|
+
border: none;
|
|
152
|
+
cursor: pointer;
|
|
165
153
|
}
|
|
166
|
-
.
|
|
167
|
-
|
|
154
|
+
.media-control-audiotracks button:hover {
|
|
155
|
+
color: white;
|
|
168
156
|
}
|
|
169
|
-
.
|
|
170
|
-
|
|
157
|
+
.media-control-audiotracks button.changing {
|
|
158
|
+
animation: pulse 0.5s infinite alternate;
|
|
171
159
|
}
|
|
172
|
-
.
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
height: 20px;
|
|
160
|
+
.media-control-audiotracks button span.audio-arrow {
|
|
161
|
+
width: 9px;
|
|
162
|
+
height: 6px;
|
|
163
|
+
margin-left: 5px;
|
|
177
164
|
}
|
|
178
|
-
.media-control-
|
|
165
|
+
.media-control-audiotracks .menu {
|
|
166
|
+
max-width: 114px;
|
|
167
|
+
list-style-type: none;
|
|
179
168
|
position: absolute;
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
width:
|
|
183
|
-
min-height: 48px;
|
|
184
|
-
z-index: 9999;
|
|
169
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
170
|
+
border: none;
|
|
171
|
+
min-width: 60px;
|
|
185
172
|
border-radius: 4px;
|
|
173
|
+
bottom: 40px;
|
|
174
|
+
right: -2px;
|
|
186
175
|
}
|
|
187
|
-
.media-control-
|
|
188
|
-
|
|
189
|
-
}
|
|
190
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
|
|
191
|
-
margin: 0;
|
|
192
|
-
text-align: left;
|
|
193
|
-
line-height: 22px;
|
|
194
|
-
padding: 5px 14px;
|
|
195
|
-
width: 250px;
|
|
196
|
-
font-size: 12px;
|
|
197
|
-
display: flex;
|
|
198
|
-
align-items: center;
|
|
199
|
-
justify-content: flex-start;
|
|
200
|
-
gap: 8px;
|
|
201
|
-
}
|
|
202
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
|
|
203
|
-
flex: 24px 0 0;
|
|
204
|
-
height: 24px;
|
|
205
|
-
}
|
|
206
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
|
|
207
|
-
visibility: hidden;
|
|
208
|
-
display: inline-block;
|
|
209
|
-
}
|
|
210
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
|
|
211
|
-
flex: 0 1 100%;
|
|
212
|
-
}
|
|
213
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
|
|
214
|
-
flex: 0 0 14px;
|
|
215
|
-
height: 24px;
|
|
216
|
-
}
|
|
217
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
|
|
218
|
-
flex: 1 0 auto;
|
|
219
|
-
}*, :focus, :visited {
|
|
220
|
-
outline: none !important;
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
.gear-wrapper .go-back {
|
|
224
|
-
font-weight: 600;
|
|
225
|
-
font-size: 14px;
|
|
226
|
-
line-height: 20px;
|
|
227
|
-
width: 100%;
|
|
228
|
-
text-align: left;
|
|
229
|
-
padding: 12px;
|
|
230
|
-
}
|
|
231
|
-
.gear-wrapper .go-back .arrow-left-icon {
|
|
232
|
-
float: left;
|
|
233
|
-
padding-top: 2px;
|
|
234
|
-
padding-right: 2px;
|
|
235
|
-
}
|
|
236
|
-
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
237
|
-
height: 16px;
|
|
238
|
-
}
|
|
239
|
-
.gear-wrapper ul.gear-sub-menu {
|
|
240
|
-
width: 100%;
|
|
241
|
-
list-style-type: none;
|
|
242
|
-
min-width: 60px;
|
|
243
|
-
border-top: 2px solid rgb(36, 36, 36);
|
|
176
|
+
.media-control-audiotracks .menu.hidden {
|
|
177
|
+
display: none;
|
|
244
178
|
}
|
|
245
|
-
.
|
|
246
|
-
font-size:
|
|
247
|
-
text-align:
|
|
179
|
+
.media-control-audiotracks li {
|
|
180
|
+
font-size: var(--font-size-media-controls-dropdown);
|
|
181
|
+
text-align: right;
|
|
182
|
+
height: 30px;
|
|
248
183
|
}
|
|
249
|
-
.
|
|
184
|
+
.media-control-audiotracks li[data-title] {
|
|
250
185
|
background-color: #c3c2c2;
|
|
251
186
|
padding: 5px;
|
|
252
187
|
}
|
|
253
|
-
.
|
|
188
|
+
.media-control-audiotracks li a {
|
|
254
189
|
display: block;
|
|
255
190
|
text-decoration: none;
|
|
256
|
-
|
|
191
|
+
text-overflow: ellipsis;
|
|
192
|
+
overflow: hidden;
|
|
193
|
+
white-space: nowrap;
|
|
194
|
+
height: 30px;
|
|
257
195
|
padding: 5px 10px;
|
|
258
|
-
line-height: 22px;
|
|
259
196
|
color: #fffffe;
|
|
260
197
|
}
|
|
261
|
-
.
|
|
262
|
-
|
|
198
|
+
.media-control-audiotracks li a:hover {
|
|
199
|
+
text-decoration: none;
|
|
263
200
|
background-color: rgba(0, 0, 0, 0.4);
|
|
264
|
-
}
|
|
265
|
-
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
266
201
|
color: white;
|
|
267
|
-
text-decoration: none;
|
|
268
|
-
}
|
|
269
|
-
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
270
|
-
width: 30px;
|
|
271
|
-
height: 20px;
|
|
272
|
-
float: left;
|
|
273
|
-
display: block;
|
|
274
|
-
}
|
|
275
|
-
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
276
|
-
display: none;
|
|
277
|
-
}
|
|
278
|
-
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
279
|
-
display: inline;
|
|
280
|
-
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
281
|
-
color: #CCCACA;
|
|
282
|
-
position: absolute;
|
|
283
|
-
top: 0;
|
|
284
|
-
height: 100%;
|
|
285
|
-
width: 100%;
|
|
286
|
-
background-color: rgba(0, 0, 0, 0.7);
|
|
287
|
-
z-index: 2000;
|
|
288
|
-
display: flex;
|
|
289
|
-
flex-direction: column;
|
|
290
|
-
justify-content: center;
|
|
291
|
-
}
|
|
292
|
-
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
293
|
-
font-size: 14px;
|
|
294
|
-
color: #CCCACA;
|
|
295
|
-
margin-top: 45px;
|
|
296
|
-
}
|
|
297
|
-
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
298
|
-
font-weight: bold;
|
|
299
|
-
line-height: 30px;
|
|
300
|
-
font-size: 18px;
|
|
301
|
-
}
|
|
302
|
-
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
303
|
-
width: 90%;
|
|
304
|
-
margin: 0 auto;
|
|
305
|
-
}
|
|
306
|
-
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
307
|
-
font-size: 13px;
|
|
308
|
-
margin-top: 15px;
|
|
309
202
|
}
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
width: 30px;
|
|
313
|
-
margin: 15px auto 0;
|
|
314
|
-
}@charset "UTF-8";
|
|
315
|
-
.media-control-clips {
|
|
316
|
-
display: flex;
|
|
317
|
-
gap: 6px;
|
|
203
|
+
.media-control-audiotracks li.current a {
|
|
204
|
+
color: #f00;
|
|
318
205
|
}
|
|
319
|
-
.media-control-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
overflow: hidden;
|
|
323
|
-
display: inline-block;
|
|
324
|
-
text-overflow: ellipsis;
|
|
325
|
-
color: white;
|
|
326
|
-
cursor: default;
|
|
327
|
-
line-height: var(--bottom-panel);
|
|
328
|
-
position: relative;
|
|
206
|
+
.media-control-audiotracks li:first-child a {
|
|
207
|
+
border-bottom-left-radius: 4px;
|
|
208
|
+
border-bottom-right-radius: 4px;
|
|
329
209
|
}
|
|
330
|
-
.media-control-
|
|
331
|
-
|
|
332
|
-
|
|
210
|
+
.media-control-audiotracks li:last-child a {
|
|
211
|
+
border-top-left-radius: 4px;
|
|
212
|
+
border-top-right-radius: 4px;
|
|
333
213
|
}
|
|
334
|
-
|
|
335
|
-
|
|
214
|
+
|
|
215
|
+
@keyframes pulse {
|
|
216
|
+
0% {
|
|
217
|
+
color: #fff;
|
|
218
|
+
}
|
|
219
|
+
50% {
|
|
220
|
+
color: #ff0101;
|
|
221
|
+
}
|
|
222
|
+
100% {
|
|
223
|
+
color: #B80000;
|
|
224
|
+
}
|
|
336
225
|
}:root {
|
|
337
226
|
--primary-background-color: #000;
|
|
338
227
|
--secondary-background-color: #262626;
|
|
@@ -697,106 +586,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
697
586
|
.fullscreen .clappr-nerd-stats .stats-box {
|
|
698
587
|
top: unset;
|
|
699
588
|
}
|
|
700
|
-
}*,
|
|
701
|
-
:focus,
|
|
702
|
-
:visited {
|
|
703
|
-
outline: none !important;
|
|
704
|
-
}
|
|
705
|
-
|
|
706
|
-
.media-control-audiotracks {
|
|
707
|
-
position: relative;
|
|
708
|
-
}
|
|
709
|
-
.media-control-audiotracks button {
|
|
710
|
-
background-color: transparent;
|
|
711
|
-
color: #fff;
|
|
712
|
-
-webkit-font-smoothing: antialiased;
|
|
713
|
-
border: none;
|
|
714
|
-
cursor: pointer;
|
|
715
|
-
display: flex;
|
|
716
|
-
align-items: center;
|
|
717
|
-
padding: 0;
|
|
718
|
-
}
|
|
719
|
-
.media-control-audiotracks button .audio-text {
|
|
720
|
-
text-overflow: ellipsis;
|
|
721
|
-
overflow: hidden;
|
|
722
|
-
white-space: nowrap;
|
|
723
|
-
max-width: 100px;
|
|
724
|
-
background-color: transparent;
|
|
725
|
-
-webkit-font-smoothing: antialiased;
|
|
726
|
-
border: none;
|
|
727
|
-
cursor: pointer;
|
|
728
|
-
}
|
|
729
|
-
.media-control-audiotracks button:hover {
|
|
730
|
-
color: white;
|
|
731
|
-
}
|
|
732
|
-
.media-control-audiotracks button.changing {
|
|
733
|
-
animation: pulse 0.5s infinite alternate;
|
|
734
|
-
}
|
|
735
|
-
.media-control-audiotracks button span.audio-arrow {
|
|
736
|
-
width: 9px;
|
|
737
|
-
height: 6px;
|
|
738
|
-
margin-left: 5px;
|
|
739
|
-
}
|
|
740
|
-
.media-control-audiotracks .menu {
|
|
741
|
-
max-width: 114px;
|
|
742
|
-
list-style-type: none;
|
|
743
|
-
position: absolute;
|
|
744
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
745
|
-
border: none;
|
|
746
|
-
min-width: 60px;
|
|
747
|
-
border-radius: 4px;
|
|
748
|
-
bottom: 40px;
|
|
749
|
-
right: -2px;
|
|
750
|
-
}
|
|
751
|
-
.media-control-audiotracks .menu.hidden {
|
|
752
|
-
display: none;
|
|
753
|
-
}
|
|
754
|
-
.media-control-audiotracks li {
|
|
755
|
-
font-size: var(--font-size-media-controls-dropdown);
|
|
756
|
-
text-align: right;
|
|
757
|
-
height: 30px;
|
|
758
|
-
}
|
|
759
|
-
.media-control-audiotracks li[data-title] {
|
|
760
|
-
background-color: #c3c2c2;
|
|
761
|
-
padding: 5px;
|
|
762
|
-
}
|
|
763
|
-
.media-control-audiotracks li a {
|
|
764
|
-
display: block;
|
|
765
|
-
text-decoration: none;
|
|
766
|
-
text-overflow: ellipsis;
|
|
767
|
-
overflow: hidden;
|
|
768
|
-
white-space: nowrap;
|
|
769
|
-
height: 30px;
|
|
770
|
-
padding: 5px 10px;
|
|
771
|
-
color: #fffffe;
|
|
772
|
-
}
|
|
773
|
-
.media-control-audiotracks li a:hover {
|
|
774
|
-
text-decoration: none;
|
|
775
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
776
|
-
color: white;
|
|
777
|
-
}
|
|
778
|
-
.media-control-audiotracks li.current a {
|
|
779
|
-
color: #f00;
|
|
780
|
-
}
|
|
781
|
-
.media-control-audiotracks li:first-child a {
|
|
782
|
-
border-bottom-left-radius: 4px;
|
|
783
|
-
border-bottom-right-radius: 4px;
|
|
784
|
-
}
|
|
785
|
-
.media-control-audiotracks li:last-child a {
|
|
786
|
-
border-top-left-radius: 4px;
|
|
787
|
-
border-top-right-radius: 4px;
|
|
788
|
-
}
|
|
789
|
-
|
|
790
|
-
@keyframes pulse {
|
|
791
|
-
0% {
|
|
792
|
-
color: #fff;
|
|
793
|
-
}
|
|
794
|
-
50% {
|
|
795
|
-
color: #ff0101;
|
|
796
|
-
}
|
|
797
|
-
100% {
|
|
798
|
-
color: #B80000;
|
|
799
|
-
}
|
|
800
589
|
}.context-menu {
|
|
801
590
|
z-index: 999;
|
|
802
591
|
position: absolute;
|
|
@@ -833,6 +622,40 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
833
622
|
.context-menu .context-menu-list-item_icon {
|
|
834
623
|
width: 20px;
|
|
835
624
|
height: 20px;
|
|
625
|
+
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
626
|
+
color: #CCCACA;
|
|
627
|
+
position: absolute;
|
|
628
|
+
top: 0;
|
|
629
|
+
height: 100%;
|
|
630
|
+
width: 100%;
|
|
631
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
632
|
+
z-index: 2000;
|
|
633
|
+
display: flex;
|
|
634
|
+
flex-direction: column;
|
|
635
|
+
justify-content: center;
|
|
636
|
+
}
|
|
637
|
+
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
638
|
+
font-size: 14px;
|
|
639
|
+
color: #CCCACA;
|
|
640
|
+
margin-top: 45px;
|
|
641
|
+
}
|
|
642
|
+
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
643
|
+
font-weight: bold;
|
|
644
|
+
line-height: 30px;
|
|
645
|
+
font-size: 18px;
|
|
646
|
+
}
|
|
647
|
+
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
648
|
+
width: 90%;
|
|
649
|
+
margin: 0 auto;
|
|
650
|
+
}
|
|
651
|
+
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
652
|
+
font-size: 13px;
|
|
653
|
+
margin-top: 15px;
|
|
654
|
+
}
|
|
655
|
+
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
656
|
+
cursor: pointer;
|
|
657
|
+
width: 30px;
|
|
658
|
+
margin: 15px auto 0;
|
|
836
659
|
}.dvr-controls[data-dvr] {
|
|
837
660
|
display: inline-block;
|
|
838
661
|
color: var(--player-dvr-color);
|
|
@@ -919,142 +742,58 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
919
742
|
border-radius: 50%;
|
|
920
743
|
margin-right: 8px;
|
|
921
744
|
background-color: #cacaca;
|
|
922
|
-
}*,
|
|
745
|
+
}*,
|
|
746
|
+
:focus,
|
|
747
|
+
:visited {
|
|
923
748
|
outline: none !important;
|
|
924
749
|
}
|
|
925
750
|
|
|
926
|
-
.
|
|
927
|
-
float: right;
|
|
928
|
-
margin-top: 4px;
|
|
751
|
+
.media-control-cc[data-cc] {
|
|
929
752
|
position: relative;
|
|
930
|
-
|
|
931
|
-
width: 20px;
|
|
753
|
+
order: 85;
|
|
932
754
|
}
|
|
933
|
-
.
|
|
755
|
+
.media-control-cc[data-cc] button {
|
|
934
756
|
background-color: transparent;
|
|
935
757
|
color: #fff;
|
|
936
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
937
758
|
-webkit-font-smoothing: antialiased;
|
|
938
759
|
border: none;
|
|
939
|
-
|
|
940
|
-
padding: 0;
|
|
760
|
+
cursor: pointer;
|
|
941
761
|
}
|
|
942
|
-
.
|
|
943
|
-
|
|
944
|
-
position: relative;
|
|
945
|
-
margin-top: 6px;
|
|
762
|
+
.media-control-cc[data-cc] button .cc-text svg {
|
|
763
|
+
fill: white;
|
|
946
764
|
}
|
|
947
|
-
.
|
|
765
|
+
.media-control-cc[data-cc] button:hover {
|
|
948
766
|
color: #c9c9c9;
|
|
949
767
|
}
|
|
950
|
-
.
|
|
768
|
+
.media-control-cc[data-cc] button.changing {
|
|
951
769
|
animation: pulse 0.5s infinite alternate;
|
|
952
770
|
}
|
|
953
|
-
.
|
|
954
|
-
width:
|
|
955
|
-
height: 6px;
|
|
956
|
-
margin-top: 11px;
|
|
957
|
-
margin-left: 5px;
|
|
958
|
-
}
|
|
959
|
-
.multicamera[data-multicamera] > ul {
|
|
960
|
-
padding: 6px 0;
|
|
961
|
-
right: -24px;
|
|
962
|
-
width: 245px;
|
|
771
|
+
.media-control-cc[data-cc] ul {
|
|
772
|
+
width: 80px;
|
|
963
773
|
list-style-type: none;
|
|
964
774
|
position: absolute;
|
|
965
|
-
bottom:
|
|
966
|
-
border
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
}
|
|
970
|
-
.multicamera[data-multicamera] > ul::after {
|
|
971
|
-
content: "";
|
|
972
|
-
position: absolute;
|
|
973
|
-
top: 100%;
|
|
974
|
-
left: 85%;
|
|
975
|
-
margin-left: -10px;
|
|
976
|
-
width: 0;
|
|
977
|
-
height: 0;
|
|
978
|
-
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
979
|
-
border-right: 10px solid transparent;
|
|
980
|
-
border-left: 10px solid transparent;
|
|
981
|
-
}
|
|
982
|
-
.multicamera[data-multicamera] li {
|
|
983
|
-
font-size: 10px;
|
|
984
|
-
cursor: pointer;
|
|
985
|
-
}
|
|
986
|
-
.multicamera[data-multicamera] li .multicamera-item {
|
|
987
|
-
display: flex;
|
|
988
|
-
padding: 10px 0;
|
|
989
|
-
justify-content: center;
|
|
990
|
-
position: relative;
|
|
991
|
-
}
|
|
992
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
993
|
-
pointer-events: none;
|
|
994
|
-
}
|
|
995
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
996
|
-
opacity: 0.5;
|
|
997
|
-
}
|
|
998
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
999
|
-
opacity: 0.5;
|
|
1000
|
-
}
|
|
1001
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
1002
|
-
background-color: rgba(0, 0, 0, 0);
|
|
1003
|
-
}
|
|
1004
|
-
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
1005
|
-
background-color: rgba(0, 0, 0, 0.3);
|
|
1006
|
-
}
|
|
1007
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
1008
|
-
width: 80px;
|
|
1009
|
-
height: 60px;
|
|
1010
|
-
}
|
|
1011
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
|
|
1012
|
-
width: 80px;
|
|
1013
|
-
height: 60px;
|
|
1014
|
-
}
|
|
1015
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
1016
|
-
width: 120px;
|
|
1017
|
-
text-align: left;
|
|
1018
|
-
margin-left: 15px;
|
|
1019
|
-
}
|
|
1020
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1021
|
-
width: 120px;
|
|
1022
|
-
height: 20px;
|
|
1023
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1024
|
-
font-size: 14px;
|
|
1025
|
-
font-weight: normal;
|
|
1026
|
-
font-style: normal;
|
|
1027
|
-
font-stretch: normal;
|
|
1028
|
-
line-height: 1.43;
|
|
1029
|
-
letter-spacing: normal;
|
|
1030
|
-
text-align: left;
|
|
1031
|
-
color: #fff;
|
|
1032
|
-
text-overflow: ellipsis;
|
|
1033
|
-
overflow: hidden;
|
|
1034
|
-
}
|
|
1035
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1036
|
-
opacity: 0.6;
|
|
1037
|
-
}
|
|
1038
|
-
.multicamera[data-multicamera] li[data-title] {
|
|
1039
|
-
background-color: #c3c2c2;
|
|
1040
|
-
padding: 5px;
|
|
775
|
+
bottom: 25px;
|
|
776
|
+
border: 1px solid black;
|
|
777
|
+
background-color: #e6e6e6;
|
|
778
|
+
padding: 8px 0;
|
|
1041
779
|
}
|
|
1042
|
-
.
|
|
780
|
+
.media-control-cc[data-cc] li a {
|
|
1043
781
|
color: #444;
|
|
1044
782
|
padding: 2px 10px;
|
|
1045
783
|
display: block;
|
|
1046
784
|
text-decoration: none;
|
|
1047
785
|
}
|
|
1048
|
-
.
|
|
786
|
+
.media-control-cc[data-cc] li a:hover {
|
|
1049
787
|
background-color: #555;
|
|
1050
788
|
color: white;
|
|
1051
789
|
}
|
|
1052
|
-
.
|
|
790
|
+
.media-control-cc[data-cc] li a:hover a {
|
|
1053
791
|
color: white;
|
|
1054
792
|
text-decoration: none;
|
|
1055
793
|
}
|
|
1056
|
-
.
|
|
794
|
+
.media-control-cc[data-cc] li.current a {
|
|
1057
795
|
color: #f00;
|
|
796
|
+
background-color: #555;
|
|
1058
797
|
}
|
|
1059
798
|
|
|
1060
799
|
@keyframes pulse {
|
|
@@ -1067,6 +806,15 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1067
806
|
100% {
|
|
1068
807
|
color: #B80000;
|
|
1069
808
|
}
|
|
809
|
+
}
|
|
810
|
+
::cue {
|
|
811
|
+
visibility: hidden !important;
|
|
812
|
+
font-size: 0 !important;
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
.ios-fullscreen::cue {
|
|
816
|
+
visibility: visible !important;
|
|
817
|
+
font-size: 1em !important;
|
|
1070
818
|
}[data-player] {
|
|
1071
819
|
--bottom-panel: 40px;
|
|
1072
820
|
}
|
|
@@ -1680,73 +1428,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1680
1428
|
.media-control-skin-1[data-media-control-skin-1] .seek-time .seek-time__pos {
|
|
1681
1429
|
padding-left: 8px;
|
|
1682
1430
|
padding-right: 8px;
|
|
1683
|
-
}.player-poster {
|
|
1684
|
-
display: flex;
|
|
1685
|
-
justify-content: center;
|
|
1686
|
-
align-items: center;
|
|
1687
|
-
position: absolute;
|
|
1688
|
-
height: 100%;
|
|
1689
|
-
width: 100%;
|
|
1690
|
-
z-index: 998;
|
|
1691
|
-
top: 0;
|
|
1692
|
-
left: 0;
|
|
1693
|
-
background-color: #000;
|
|
1694
|
-
background-size: cover;
|
|
1695
|
-
background-repeat: no-repeat;
|
|
1696
|
-
background-position: 50% 50%;
|
|
1697
|
-
}
|
|
1698
|
-
.player-poster.clickable {
|
|
1699
|
-
cursor: pointer;
|
|
1700
|
-
}
|
|
1701
|
-
.player-poster:hover .play-wrapper {
|
|
1702
|
-
opacity: 1;
|
|
1703
|
-
}
|
|
1704
|
-
.player-poster .play-wrapper {
|
|
1705
|
-
width: 100%;
|
|
1706
|
-
height: 25%;
|
|
1707
|
-
margin: 0 auto;
|
|
1708
|
-
opacity: 0.75;
|
|
1709
|
-
transition: opacity 0.1s ease;
|
|
1710
|
-
}
|
|
1711
|
-
.player-poster .play-wrapper svg {
|
|
1712
|
-
height: 100%;
|
|
1713
|
-
display: inline;
|
|
1714
|
-
}
|
|
1715
|
-
.player-poster .play-wrapper svg path {
|
|
1716
|
-
fill: #fff;
|
|
1717
|
-
}.seek-time {
|
|
1718
|
-
position: absolute;
|
|
1719
|
-
white-space: nowrap;
|
|
1720
|
-
height: 20px;
|
|
1721
|
-
line-height: 20px;
|
|
1722
|
-
font-size: 0;
|
|
1723
|
-
left: -100%;
|
|
1724
|
-
bottom: 55px;
|
|
1725
|
-
background-color: rgba(2, 2, 2, 0.5);
|
|
1726
|
-
z-index: 9999;
|
|
1727
|
-
transition: opacity 0.1s ease;
|
|
1728
|
-
}
|
|
1729
|
-
.seek-time.hidden {
|
|
1730
|
-
opacity: 0;
|
|
1731
|
-
}
|
|
1732
|
-
.seek-time .seek-time__pos {
|
|
1733
|
-
display: inline-block;
|
|
1734
|
-
color: white;
|
|
1735
|
-
font-size: 10px;
|
|
1736
|
-
padding-left: 7px;
|
|
1737
|
-
padding-right: 7px;
|
|
1738
|
-
vertical-align: top;
|
|
1739
|
-
}
|
|
1740
|
-
.seek-time .seek-time__duration {
|
|
1741
|
-
display: inline-block;
|
|
1742
|
-
color: rgba(255, 255, 255, 0.5);
|
|
1743
|
-
font-size: 10px;
|
|
1744
|
-
padding-right: 7px;
|
|
1745
|
-
vertical-align: top;
|
|
1746
|
-
}
|
|
1747
|
-
.seek-time .seek-time__duration::before {
|
|
1748
|
-
content: "|";
|
|
1749
|
-
margin-right: 7px;
|
|
1750
1431
|
}.share_plugin[data-share] {
|
|
1751
1432
|
pointer-events: auto;
|
|
1752
1433
|
z-index: 5;
|
|
@@ -1830,12 +1511,145 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1830
1511
|
display: inline-block;
|
|
1831
1512
|
margin-right: 5px;
|
|
1832
1513
|
cursor: pointer;
|
|
1833
|
-
}.
|
|
1834
|
-
|
|
1835
|
-
|
|
1514
|
+
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
1515
|
+
order: 99;
|
|
1516
|
+
height: 20px;
|
|
1836
1517
|
}
|
|
1837
|
-
.
|
|
1838
|
-
|
|
1518
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
|
|
1519
|
+
position: absolute;
|
|
1520
|
+
right: 16px;
|
|
1521
|
+
bottom: 52px;
|
|
1522
|
+
width: 250px;
|
|
1523
|
+
min-height: 48px;
|
|
1524
|
+
z-index: 9999;
|
|
1525
|
+
border-radius: 4px;
|
|
1526
|
+
}
|
|
1527
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
|
|
1528
|
+
padding: 8px 0;
|
|
1529
|
+
}
|
|
1530
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
|
|
1531
|
+
margin: 0;
|
|
1532
|
+
text-align: left;
|
|
1533
|
+
line-height: 22px;
|
|
1534
|
+
padding: 5px 14px;
|
|
1535
|
+
width: 250px;
|
|
1536
|
+
font-size: 12px;
|
|
1537
|
+
display: flex;
|
|
1538
|
+
align-items: center;
|
|
1539
|
+
justify-content: flex-start;
|
|
1540
|
+
gap: 8px;
|
|
1541
|
+
}
|
|
1542
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
|
|
1543
|
+
flex: 24px 0 0;
|
|
1544
|
+
height: 24px;
|
|
1545
|
+
}
|
|
1546
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
|
|
1547
|
+
visibility: hidden;
|
|
1548
|
+
display: inline-block;
|
|
1549
|
+
}
|
|
1550
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
|
|
1551
|
+
flex: 0 1 100%;
|
|
1552
|
+
}
|
|
1553
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
|
|
1554
|
+
flex: 0 0 14px;
|
|
1555
|
+
height: 24px;
|
|
1556
|
+
}
|
|
1557
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
|
|
1558
|
+
flex: 1 0 auto;
|
|
1559
|
+
}*, :focus, :visited {
|
|
1560
|
+
outline: none !important;
|
|
1561
|
+
}
|
|
1562
|
+
|
|
1563
|
+
.gear-wrapper .go-back {
|
|
1564
|
+
font-weight: 600;
|
|
1565
|
+
font-size: 14px;
|
|
1566
|
+
line-height: 20px;
|
|
1567
|
+
width: 100%;
|
|
1568
|
+
text-align: left;
|
|
1569
|
+
padding: 12px;
|
|
1570
|
+
}
|
|
1571
|
+
.gear-wrapper .go-back .arrow-left-icon {
|
|
1572
|
+
float: left;
|
|
1573
|
+
padding-top: 2px;
|
|
1574
|
+
padding-right: 2px;
|
|
1575
|
+
}
|
|
1576
|
+
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
1577
|
+
height: 16px;
|
|
1578
|
+
}
|
|
1579
|
+
.gear-wrapper ul.gear-sub-menu {
|
|
1580
|
+
width: 100%;
|
|
1581
|
+
list-style-type: none;
|
|
1582
|
+
min-width: 60px;
|
|
1583
|
+
border-top: 2px solid rgb(36, 36, 36);
|
|
1584
|
+
}
|
|
1585
|
+
.gear-wrapper ul.gear-sub-menu li {
|
|
1586
|
+
font-size: 12px;
|
|
1587
|
+
text-align: left;
|
|
1588
|
+
}
|
|
1589
|
+
.gear-wrapper ul.gear-sub-menu li[data-title] {
|
|
1590
|
+
background-color: #c3c2c2;
|
|
1591
|
+
padding: 5px;
|
|
1592
|
+
}
|
|
1593
|
+
.gear-wrapper ul.gear-sub-menu li a {
|
|
1594
|
+
display: block;
|
|
1595
|
+
text-decoration: none;
|
|
1596
|
+
height: 32px;
|
|
1597
|
+
padding: 5px 10px;
|
|
1598
|
+
line-height: 22px;
|
|
1599
|
+
color: #fffffe;
|
|
1600
|
+
}
|
|
1601
|
+
.gear-wrapper ul.gear-sub-menu li a:hover {
|
|
1602
|
+
color: white;
|
|
1603
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
1604
|
+
}
|
|
1605
|
+
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
1606
|
+
color: white;
|
|
1607
|
+
text-decoration: none;
|
|
1608
|
+
}
|
|
1609
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
1610
|
+
width: 30px;
|
|
1611
|
+
height: 20px;
|
|
1612
|
+
float: left;
|
|
1613
|
+
display: block;
|
|
1614
|
+
}
|
|
1615
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
1616
|
+
display: none;
|
|
1617
|
+
}
|
|
1618
|
+
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
1619
|
+
display: inline;
|
|
1620
|
+
}.seek-time {
|
|
1621
|
+
position: absolute;
|
|
1622
|
+
white-space: nowrap;
|
|
1623
|
+
height: 20px;
|
|
1624
|
+
line-height: 20px;
|
|
1625
|
+
font-size: 0;
|
|
1626
|
+
left: -100%;
|
|
1627
|
+
bottom: 55px;
|
|
1628
|
+
background-color: rgba(2, 2, 2, 0.5);
|
|
1629
|
+
z-index: 9999;
|
|
1630
|
+
transition: opacity 0.1s ease;
|
|
1631
|
+
}
|
|
1632
|
+
.seek-time.hidden {
|
|
1633
|
+
opacity: 0;
|
|
1634
|
+
}
|
|
1635
|
+
.seek-time .seek-time__pos {
|
|
1636
|
+
display: inline-block;
|
|
1637
|
+
color: white;
|
|
1638
|
+
font-size: 10px;
|
|
1639
|
+
padding-left: 7px;
|
|
1640
|
+
padding-right: 7px;
|
|
1641
|
+
vertical-align: top;
|
|
1642
|
+
}
|
|
1643
|
+
.seek-time .seek-time__duration {
|
|
1644
|
+
display: inline-block;
|
|
1645
|
+
color: rgba(255, 255, 255, 0.5);
|
|
1646
|
+
font-size: 10px;
|
|
1647
|
+
padding-right: 7px;
|
|
1648
|
+
vertical-align: top;
|
|
1649
|
+
}
|
|
1650
|
+
.seek-time .seek-time__duration::before {
|
|
1651
|
+
content: "|";
|
|
1652
|
+
margin-right: 7px;
|
|
1839
1653
|
}.container-with-poster-clickable .mc-skip-time {
|
|
1840
1654
|
height: 0;
|
|
1841
1655
|
}
|
|
@@ -1857,28 +1671,176 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1857
1671
|
.mc-skip-time .skip-container .skip-item {
|
|
1858
1672
|
flex: 1 0 0px;
|
|
1859
1673
|
height: 100%;
|
|
1860
|
-
}
|
|
1861
|
-
|
|
1862
|
-
bottom: 52px;
|
|
1863
|
-
width: 100%;
|
|
1864
|
-
transition: opacity 0.3s ease;
|
|
1865
|
-
}
|
|
1866
|
-
.scrub-thumbnails.hidden {
|
|
1867
|
-
opacity: 0;
|
|
1674
|
+
}*, :focus, :visited {
|
|
1675
|
+
outline: none !important;
|
|
1868
1676
|
}
|
|
1869
|
-
|
|
1870
|
-
|
|
1677
|
+
|
|
1678
|
+
.multicamera[data-multicamera] {
|
|
1679
|
+
float: right;
|
|
1680
|
+
margin-top: 4px;
|
|
1871
1681
|
position: relative;
|
|
1872
|
-
|
|
1873
|
-
|
|
1682
|
+
margin-right: 20px;
|
|
1683
|
+
width: 20px;
|
|
1874
1684
|
}
|
|
1875
|
-
.
|
|
1876
|
-
|
|
1877
|
-
|
|
1685
|
+
.multicamera[data-multicamera] button {
|
|
1686
|
+
background-color: transparent;
|
|
1687
|
+
color: #fff;
|
|
1688
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1689
|
+
-webkit-font-smoothing: antialiased;
|
|
1690
|
+
border: none;
|
|
1691
|
+
font-size: 14px;
|
|
1692
|
+
padding: 0;
|
|
1878
1693
|
}
|
|
1879
|
-
.
|
|
1880
|
-
|
|
1881
|
-
|
|
1694
|
+
.multicamera[data-multicamera] button svg {
|
|
1695
|
+
height: 20px;
|
|
1696
|
+
position: relative;
|
|
1697
|
+
margin-top: 6px;
|
|
1698
|
+
}
|
|
1699
|
+
.multicamera[data-multicamera] button:hover {
|
|
1700
|
+
color: #c9c9c9;
|
|
1701
|
+
}
|
|
1702
|
+
.multicamera[data-multicamera] button.changing {
|
|
1703
|
+
animation: pulse 0.5s infinite alternate;
|
|
1704
|
+
}
|
|
1705
|
+
.multicamera[data-multicamera] button span.quality-arrow {
|
|
1706
|
+
width: 9px;
|
|
1707
|
+
height: 6px;
|
|
1708
|
+
margin-top: 11px;
|
|
1709
|
+
margin-left: 5px;
|
|
1710
|
+
}
|
|
1711
|
+
.multicamera[data-multicamera] > ul {
|
|
1712
|
+
padding: 6px 0;
|
|
1713
|
+
right: -24px;
|
|
1714
|
+
width: 245px;
|
|
1715
|
+
list-style-type: none;
|
|
1716
|
+
position: absolute;
|
|
1717
|
+
bottom: 48px;
|
|
1718
|
+
border-radius: 4px;
|
|
1719
|
+
display: none;
|
|
1720
|
+
background-color: rgba(74, 74, 74, 0.9);
|
|
1721
|
+
}
|
|
1722
|
+
.multicamera[data-multicamera] > ul::after {
|
|
1723
|
+
content: "";
|
|
1724
|
+
position: absolute;
|
|
1725
|
+
top: 100%;
|
|
1726
|
+
left: 85%;
|
|
1727
|
+
margin-left: -10px;
|
|
1728
|
+
width: 0;
|
|
1729
|
+
height: 0;
|
|
1730
|
+
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
1731
|
+
border-right: 10px solid transparent;
|
|
1732
|
+
border-left: 10px solid transparent;
|
|
1733
|
+
}
|
|
1734
|
+
.multicamera[data-multicamera] li {
|
|
1735
|
+
font-size: 10px;
|
|
1736
|
+
cursor: pointer;
|
|
1737
|
+
}
|
|
1738
|
+
.multicamera[data-multicamera] li .multicamera-item {
|
|
1739
|
+
display: flex;
|
|
1740
|
+
padding: 10px 0;
|
|
1741
|
+
justify-content: center;
|
|
1742
|
+
position: relative;
|
|
1743
|
+
}
|
|
1744
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
1745
|
+
pointer-events: none;
|
|
1746
|
+
}
|
|
1747
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
1748
|
+
opacity: 0.5;
|
|
1749
|
+
}
|
|
1750
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
1751
|
+
opacity: 0.5;
|
|
1752
|
+
}
|
|
1753
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
1754
|
+
background-color: rgba(0, 0, 0, 0);
|
|
1755
|
+
}
|
|
1756
|
+
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
1757
|
+
background-color: rgba(0, 0, 0, 0.3);
|
|
1758
|
+
}
|
|
1759
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
1760
|
+
width: 80px;
|
|
1761
|
+
height: 60px;
|
|
1762
|
+
}
|
|
1763
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
|
|
1764
|
+
width: 80px;
|
|
1765
|
+
height: 60px;
|
|
1766
|
+
}
|
|
1767
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
1768
|
+
width: 120px;
|
|
1769
|
+
text-align: left;
|
|
1770
|
+
margin-left: 15px;
|
|
1771
|
+
}
|
|
1772
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1773
|
+
width: 120px;
|
|
1774
|
+
height: 20px;
|
|
1775
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1776
|
+
font-size: 14px;
|
|
1777
|
+
font-weight: normal;
|
|
1778
|
+
font-style: normal;
|
|
1779
|
+
font-stretch: normal;
|
|
1780
|
+
line-height: 1.43;
|
|
1781
|
+
letter-spacing: normal;
|
|
1782
|
+
text-align: left;
|
|
1783
|
+
color: #fff;
|
|
1784
|
+
text-overflow: ellipsis;
|
|
1785
|
+
overflow: hidden;
|
|
1786
|
+
}
|
|
1787
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1788
|
+
opacity: 0.6;
|
|
1789
|
+
}
|
|
1790
|
+
.multicamera[data-multicamera] li[data-title] {
|
|
1791
|
+
background-color: #c3c2c2;
|
|
1792
|
+
padding: 5px;
|
|
1793
|
+
}
|
|
1794
|
+
.multicamera[data-multicamera] li a {
|
|
1795
|
+
color: #444;
|
|
1796
|
+
padding: 2px 10px;
|
|
1797
|
+
display: block;
|
|
1798
|
+
text-decoration: none;
|
|
1799
|
+
}
|
|
1800
|
+
.multicamera[data-multicamera] li a:hover {
|
|
1801
|
+
background-color: #555;
|
|
1802
|
+
color: white;
|
|
1803
|
+
}
|
|
1804
|
+
.multicamera[data-multicamera] li a:hover a {
|
|
1805
|
+
color: white;
|
|
1806
|
+
text-decoration: none;
|
|
1807
|
+
}
|
|
1808
|
+
.multicamera[data-multicamera] li.current a {
|
|
1809
|
+
color: #f00;
|
|
1810
|
+
}
|
|
1811
|
+
|
|
1812
|
+
@keyframes pulse {
|
|
1813
|
+
0% {
|
|
1814
|
+
color: #fff;
|
|
1815
|
+
}
|
|
1816
|
+
50% {
|
|
1817
|
+
color: #ff0101;
|
|
1818
|
+
}
|
|
1819
|
+
100% {
|
|
1820
|
+
color: #B80000;
|
|
1821
|
+
}
|
|
1822
|
+
}.scrub-thumbnails {
|
|
1823
|
+
position: absolute;
|
|
1824
|
+
bottom: 52px;
|
|
1825
|
+
width: 100%;
|
|
1826
|
+
transition: opacity 0.3s ease;
|
|
1827
|
+
}
|
|
1828
|
+
.scrub-thumbnails.hidden {
|
|
1829
|
+
opacity: 0;
|
|
1830
|
+
}
|
|
1831
|
+
.scrub-thumbnails .thumbnail-container {
|
|
1832
|
+
display: inline-block;
|
|
1833
|
+
position: relative;
|
|
1834
|
+
overflow: hidden;
|
|
1835
|
+
background-color: #000;
|
|
1836
|
+
}
|
|
1837
|
+
.scrub-thumbnails .thumbnail-container .thumbnail-img {
|
|
1838
|
+
position: absolute;
|
|
1839
|
+
width: auto;
|
|
1840
|
+
}
|
|
1841
|
+
.scrub-thumbnails .thumbnails-text {
|
|
1842
|
+
background-color: rgba(74, 74, 74, 0.7);
|
|
1843
|
+
border-radius: 3px;
|
|
1882
1844
|
white-space: nowrap;
|
|
1883
1845
|
overflow: hidden;
|
|
1884
1846
|
text-overflow: ellipsis;
|
|
@@ -1920,88 +1882,61 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1920
1882
|
}
|
|
1921
1883
|
.scrub-thumbnails .backdrop .carousel img {
|
|
1922
1884
|
width: auto;
|
|
1923
|
-
}
|
|
1924
|
-
:
|
|
1925
|
-
:
|
|
1926
|
-
outline: none !important;
|
|
1927
|
-
}
|
|
1928
|
-
|
|
1929
|
-
.media-control-cc[data-cc] {
|
|
1930
|
-
position: relative;
|
|
1931
|
-
order: 85;
|
|
1932
|
-
}
|
|
1933
|
-
.media-control-cc[data-cc] button {
|
|
1934
|
-
background-color: transparent;
|
|
1935
|
-
color: #fff;
|
|
1936
|
-
-webkit-font-smoothing: antialiased;
|
|
1937
|
-
border: none;
|
|
1938
|
-
cursor: pointer;
|
|
1939
|
-
}
|
|
1940
|
-
.media-control-cc[data-cc] button .cc-text svg {
|
|
1941
|
-
fill: white;
|
|
1942
|
-
}
|
|
1943
|
-
.media-control-cc[data-cc] button:hover {
|
|
1944
|
-
color: #c9c9c9;
|
|
1945
|
-
}
|
|
1946
|
-
.media-control-cc[data-cc] button.changing {
|
|
1947
|
-
animation: pulse 0.5s infinite alternate;
|
|
1885
|
+
}.quality-levels li.disabled {
|
|
1886
|
+
opacity: 0.5;
|
|
1887
|
+
pointer-events: none;
|
|
1948
1888
|
}
|
|
1949
|
-
.
|
|
1950
|
-
|
|
1951
|
-
|
|
1889
|
+
.quality-levels li.current {
|
|
1890
|
+
background-color: #000;
|
|
1891
|
+
}.big-mute-icon-wrapper[data-big-mute] {
|
|
1952
1892
|
position: absolute;
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
}
|
|
1964
|
-
.media-control-cc[data-cc] li a:hover {
|
|
1965
|
-
background-color: #555;
|
|
1966
|
-
color: white;
|
|
1893
|
+
z-index: 9998;
|
|
1894
|
+
background-color: transparent;
|
|
1895
|
+
display: flex;
|
|
1896
|
+
justify-content: center;
|
|
1897
|
+
width: 100%;
|
|
1898
|
+
height: calc(100% - 50px);
|
|
1899
|
+
margin: 0 auto;
|
|
1900
|
+
opacity: 0.75;
|
|
1901
|
+
transition: opacity 0.1s ease;
|
|
1902
|
+
pointer-events: auto;
|
|
1967
1903
|
}
|
|
1968
|
-
.
|
|
1969
|
-
|
|
1970
|
-
text-decoration: none;
|
|
1904
|
+
.big-mute-icon-wrapper[data-big-mute].hide {
|
|
1905
|
+
display: none;
|
|
1971
1906
|
}
|
|
1972
|
-
.
|
|
1973
|
-
|
|
1974
|
-
background-color: #555;
|
|
1907
|
+
.big-mute-icon-wrapper[data-big-mute]:hover {
|
|
1908
|
+
cursor: pointer;
|
|
1975
1909
|
}
|
|
1976
1910
|
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1911
|
+
.big-mute-icon[data-big-mute-icon] {
|
|
1912
|
+
display: flex;
|
|
1913
|
+
align-items: center;
|
|
1914
|
+
justify-content: center;
|
|
1915
|
+
align-self: center;
|
|
1916
|
+
width: 120px;
|
|
1917
|
+
height: 120px;
|
|
1918
|
+
border: 2px solid white;
|
|
1919
|
+
border-radius: 50%;
|
|
1920
|
+
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
1921
|
+
filter: alpha(opacity=60);
|
|
1922
|
+
opacity: 1;
|
|
1923
|
+
box-shadow: 0 0 1px 0 white;
|
|
1924
|
+
background: rgba(240, 243, 247, 0.9411764706);
|
|
1925
|
+
z-index: 10000;
|
|
1987
1926
|
}
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1927
|
+
.big-mute-icon[data-big-mute-icon] svg {
|
|
1928
|
+
margin-left: 5px;
|
|
1929
|
+
width: 80px;
|
|
1930
|
+
height: 80px;
|
|
1991
1931
|
}
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
visibility: visible !important;
|
|
1995
|
-
font-size: 1em !important;
|
|
1996
|
-
}.media-control-pip {
|
|
1997
|
-
order: 95;
|
|
1998
|
-
display: flex;
|
|
1932
|
+
.big-mute-icon[data-big-mute-icon] svg path {
|
|
1933
|
+
fill: #1f1e1e !important;
|
|
1999
1934
|
}
|
|
2000
|
-
.
|
|
2001
|
-
|
|
1935
|
+
.big-mute-icon[data-big-mute-icon]:hover {
|
|
1936
|
+
background: rgba(240, 243, 247, 0.8784313725);
|
|
2002
1937
|
}
|
|
2003
|
-
.
|
|
2004
|
-
|
|
1938
|
+
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
1939
|
+
fill: #151515 !important;
|
|
2005
1940
|
}.spinner-three-bounce[data-spinner] {
|
|
2006
1941
|
position: absolute;
|
|
2007
1942
|
width: 70px;
|
|
@@ -2040,6 +1975,37 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
2040
1975
|
40% {
|
|
2041
1976
|
transform: scale(1);
|
|
2042
1977
|
}
|
|
1978
|
+
}.media-control-pip {
|
|
1979
|
+
order: 95;
|
|
1980
|
+
display: flex;
|
|
1981
|
+
}
|
|
1982
|
+
.media-control-pip button {
|
|
1983
|
+
height: 20px;
|
|
1984
|
+
}
|
|
1985
|
+
.media-control-pip button svg {
|
|
1986
|
+
height: 20px;
|
|
1987
|
+
}@charset "UTF-8";
|
|
1988
|
+
.media-control-clips {
|
|
1989
|
+
display: flex;
|
|
1990
|
+
gap: 6px;
|
|
1991
|
+
}
|
|
1992
|
+
.media-control-clips .media-clip-text {
|
|
1993
|
+
text-overflow: ellipsis;
|
|
1994
|
+
white-space: nowrap;
|
|
1995
|
+
overflow: hidden;
|
|
1996
|
+
display: inline-block;
|
|
1997
|
+
text-overflow: ellipsis;
|
|
1998
|
+
color: white;
|
|
1999
|
+
cursor: default;
|
|
2000
|
+
line-height: var(--bottom-panel);
|
|
2001
|
+
position: relative;
|
|
2002
|
+
}
|
|
2003
|
+
.media-control-clips .media-clip-text::before {
|
|
2004
|
+
content: "•";
|
|
2005
|
+
padding-right: 6px;
|
|
2006
|
+
}
|
|
2007
|
+
.media-control-clips .media-clip-text {
|
|
2008
|
+
max-width: 100px;
|
|
2043
2009
|
}.player-logo[data-logo] {
|
|
2044
2010
|
position: absolute;
|
|
2045
2011
|
z-index: 2;
|
|
@@ -2049,4 +2015,38 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
2049
2015
|
|
|
2050
2016
|
.clappr-logo {
|
|
2051
2017
|
position: absolute;
|
|
2018
|
+
}.player-poster {
|
|
2019
|
+
display: flex;
|
|
2020
|
+
justify-content: center;
|
|
2021
|
+
align-items: center;
|
|
2022
|
+
position: absolute;
|
|
2023
|
+
height: 100%;
|
|
2024
|
+
width: 100%;
|
|
2025
|
+
z-index: 998;
|
|
2026
|
+
top: 0;
|
|
2027
|
+
left: 0;
|
|
2028
|
+
background-color: #000;
|
|
2029
|
+
background-size: cover;
|
|
2030
|
+
background-repeat: no-repeat;
|
|
2031
|
+
background-position: 50% 50%;
|
|
2032
|
+
}
|
|
2033
|
+
.player-poster.clickable {
|
|
2034
|
+
cursor: pointer;
|
|
2035
|
+
}
|
|
2036
|
+
.player-poster:hover .play-wrapper {
|
|
2037
|
+
opacity: 1;
|
|
2038
|
+
}
|
|
2039
|
+
.player-poster .play-wrapper {
|
|
2040
|
+
width: 100%;
|
|
2041
|
+
height: 25%;
|
|
2042
|
+
margin: 0 auto;
|
|
2043
|
+
opacity: 0.75;
|
|
2044
|
+
transition: opacity 0.1s ease;
|
|
2045
|
+
}
|
|
2046
|
+
.player-poster .play-wrapper svg {
|
|
2047
|
+
height: 100%;
|
|
2048
|
+
display: inline;
|
|
2049
|
+
}
|
|
2050
|
+
.player-poster .play-wrapper svg path {
|
|
2051
|
+
fill: #fff;
|
|
2052
2052
|
}
|