@gcorevideo/player 2.20.16 → 2.20.18
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/dist/core.js +47 -2
- package/dist/index.css +1105 -1105
- package/dist/index.js +47 -2
- package/dist/plugins/index.css +503 -503
- package/dist/plugins/index.js +1 -1
- package/lib/playback/HTML5Video.d.ts +6 -0
- package/lib/playback/HTML5Video.d.ts.map +1 -1
- package/lib/playback/HTML5Video.js +46 -1
- package/package.json +1 -1
- package/src/playback/HTML5Video.ts +53 -1
- package/tsconfig.tsbuildinfo +1 -1
package/dist/plugins/index.css
CHANGED
|
@@ -122,64 +122,6 @@
|
|
|
122
122
|
.gplayer-lite-btn::-moz-focus-inner {
|
|
123
123
|
border: 0;
|
|
124
124
|
padding: 0;
|
|
125
|
-
}.context-menu {
|
|
126
|
-
z-index: 999;
|
|
127
|
-
position: absolute;
|
|
128
|
-
top: 0;
|
|
129
|
-
left: 0;
|
|
130
|
-
text-align: center;
|
|
131
|
-
}
|
|
132
|
-
.context-menu .context-menu-list {
|
|
133
|
-
font-family: "Proxima Nova", sans-serif;
|
|
134
|
-
font-size: 12px;
|
|
135
|
-
line-height: 12px;
|
|
136
|
-
list-style-type: none;
|
|
137
|
-
text-align: left;
|
|
138
|
-
padding: 5px;
|
|
139
|
-
margin-left: auto;
|
|
140
|
-
margin-right: auto;
|
|
141
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
142
|
-
border: 1px solid #666;
|
|
143
|
-
border-radius: 4px;
|
|
144
|
-
}
|
|
145
|
-
.context-menu .context-menu-list .context-menu-list-item {
|
|
146
|
-
color: white;
|
|
147
|
-
padding: 5px;
|
|
148
|
-
cursor: pointer;
|
|
149
|
-
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
150
|
-
color: #CCCACA;
|
|
151
|
-
position: absolute;
|
|
152
|
-
top: 0;
|
|
153
|
-
height: 100%;
|
|
154
|
-
width: 100%;
|
|
155
|
-
background-color: rgba(0, 0, 0, 0.7);
|
|
156
|
-
z-index: 2000;
|
|
157
|
-
display: flex;
|
|
158
|
-
flex-direction: column;
|
|
159
|
-
justify-content: center;
|
|
160
|
-
}
|
|
161
|
-
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
162
|
-
font-size: 14px;
|
|
163
|
-
color: #CCCACA;
|
|
164
|
-
margin-top: 45px;
|
|
165
|
-
}
|
|
166
|
-
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
167
|
-
font-weight: bold;
|
|
168
|
-
line-height: 30px;
|
|
169
|
-
font-size: 18px;
|
|
170
|
-
}
|
|
171
|
-
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
172
|
-
width: 90%;
|
|
173
|
-
margin: 0 auto;
|
|
174
|
-
}
|
|
175
|
-
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
176
|
-
font-size: 13px;
|
|
177
|
-
margin-top: 15px;
|
|
178
|
-
}
|
|
179
|
-
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
180
|
-
cursor: pointer;
|
|
181
|
-
width: 30px;
|
|
182
|
-
margin: 15px auto 0;
|
|
183
125
|
}.big-mute-icon-wrapper[data-big-mute] {
|
|
184
126
|
position: absolute;
|
|
185
127
|
z-index: 9998;
|
|
@@ -229,6 +171,177 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
229
171
|
}
|
|
230
172
|
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
231
173
|
fill: #151515 !important;
|
|
174
|
+
}*, :focus, :visited {
|
|
175
|
+
outline: none !important;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.audio_selector[data-track-selector] {
|
|
179
|
+
float: right;
|
|
180
|
+
margin-top: 4px;
|
|
181
|
+
position: relative;
|
|
182
|
+
width: 50px;
|
|
183
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
184
|
+
}
|
|
185
|
+
.audio_selector[data-track-selector] button {
|
|
186
|
+
background-color: transparent;
|
|
187
|
+
color: #fff;
|
|
188
|
+
-webkit-font-smoothing: antialiased;
|
|
189
|
+
border: none;
|
|
190
|
+
font-size: 14px;
|
|
191
|
+
cursor: pointer;
|
|
192
|
+
}
|
|
193
|
+
.audio_selector[data-track-selector] button .audio-text {
|
|
194
|
+
text-overflow: ellipsis;
|
|
195
|
+
overflow: hidden;
|
|
196
|
+
white-space: nowrap;
|
|
197
|
+
max-width: 100px;
|
|
198
|
+
background-color: transparent;
|
|
199
|
+
-webkit-font-smoothing: antialiased;
|
|
200
|
+
border: none;
|
|
201
|
+
font-size: 14px;
|
|
202
|
+
cursor: pointer;
|
|
203
|
+
padding-top: 5px;
|
|
204
|
+
}
|
|
205
|
+
.audio_selector[data-track-selector] button:hover {
|
|
206
|
+
color: #c9c9c9;
|
|
207
|
+
}
|
|
208
|
+
.audio_selector[data-track-selector] button.changing {
|
|
209
|
+
animation: pulse 0.5s infinite alternate;
|
|
210
|
+
}
|
|
211
|
+
.audio_selector[data-track-selector] button span.audio-arrow {
|
|
212
|
+
width: 9px;
|
|
213
|
+
height: 6px;
|
|
214
|
+
margin-top: 11px;
|
|
215
|
+
margin-left: 5px;
|
|
216
|
+
}
|
|
217
|
+
.audio_selector[data-track-selector] > ul {
|
|
218
|
+
max-width: 114px;
|
|
219
|
+
list-style-type: none;
|
|
220
|
+
position: absolute;
|
|
221
|
+
bottom: 25px;
|
|
222
|
+
border: 1px solid black;
|
|
223
|
+
display: none;
|
|
224
|
+
background-color: #e6e6e6;
|
|
225
|
+
}
|
|
226
|
+
.audio_selector[data-track-selector] li {
|
|
227
|
+
font-size: 10px;
|
|
228
|
+
}
|
|
229
|
+
.audio_selector[data-track-selector] li[data-title] {
|
|
230
|
+
background-color: #c3c2c2;
|
|
231
|
+
padding: 5px;
|
|
232
|
+
}
|
|
233
|
+
.audio_selector[data-track-selector] li a {
|
|
234
|
+
color: #444;
|
|
235
|
+
padding: 2px 10px;
|
|
236
|
+
display: block;
|
|
237
|
+
text-decoration: none;
|
|
238
|
+
text-overflow: ellipsis;
|
|
239
|
+
overflow: hidden;
|
|
240
|
+
white-space: nowrap;
|
|
241
|
+
}
|
|
242
|
+
.audio_selector[data-track-selector] li a:hover {
|
|
243
|
+
background-color: #555;
|
|
244
|
+
color: white;
|
|
245
|
+
}
|
|
246
|
+
.audio_selector[data-track-selector] li a:hover a {
|
|
247
|
+
color: white;
|
|
248
|
+
text-decoration: none;
|
|
249
|
+
}
|
|
250
|
+
.audio_selector[data-track-selector] li.current a {
|
|
251
|
+
color: #f00;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.audio_selector[data-track-selector] {
|
|
255
|
+
width: auto;
|
|
256
|
+
margin-top: 7px;
|
|
257
|
+
margin-right: 20px;
|
|
258
|
+
}
|
|
259
|
+
.audio_selector[data-track-selector] button[data-level-selector-button],
|
|
260
|
+
.audio_selector[data-track-selector] button[data-track-selector-button] {
|
|
261
|
+
display: flex;
|
|
262
|
+
justify-content: center;
|
|
263
|
+
padding: 0;
|
|
264
|
+
}
|
|
265
|
+
.audio_selector[data-track-selector] button[data-level-selector-button]:hover,
|
|
266
|
+
.audio_selector[data-track-selector] button[data-track-selector-button]:hover {
|
|
267
|
+
color: white;
|
|
268
|
+
}
|
|
269
|
+
.audio_selector[data-track-selector] ul {
|
|
270
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
271
|
+
border: none;
|
|
272
|
+
min-width: 60px;
|
|
273
|
+
transform: rotate(180deg);
|
|
274
|
+
border-radius: 4px;
|
|
275
|
+
bottom: 40px;
|
|
276
|
+
right: -2px;
|
|
277
|
+
}
|
|
278
|
+
.audio_selector[data-track-selector] ul li {
|
|
279
|
+
transform: rotate(-180deg);
|
|
280
|
+
font-size: 16px;
|
|
281
|
+
text-align: right;
|
|
282
|
+
height: 30px;
|
|
283
|
+
}
|
|
284
|
+
.audio_selector[data-track-selector] ul li a {
|
|
285
|
+
height: 30px;
|
|
286
|
+
padding: 5px 10px;
|
|
287
|
+
color: #fffffe;
|
|
288
|
+
}
|
|
289
|
+
.audio_selector[data-track-selector] ul li a:hover {
|
|
290
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
291
|
+
}
|
|
292
|
+
.audio_selector[data-track-selector] ul li:first-child a {
|
|
293
|
+
border-bottom-left-radius: 4px;
|
|
294
|
+
border-bottom-right-radius: 4px;
|
|
295
|
+
}
|
|
296
|
+
.audio_selector[data-track-selector] ul li:last-child a {
|
|
297
|
+
border-top-left-radius: 4px;
|
|
298
|
+
border-top-right-radius: 4px;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
@keyframes pulse {
|
|
302
|
+
0% {
|
|
303
|
+
color: #fff;
|
|
304
|
+
}
|
|
305
|
+
50% {
|
|
306
|
+
color: #ff0101;
|
|
307
|
+
}
|
|
308
|
+
100% {
|
|
309
|
+
color: #B80000;
|
|
310
|
+
}
|
|
311
|
+
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
312
|
+
color: #CCCACA;
|
|
313
|
+
position: absolute;
|
|
314
|
+
top: 0;
|
|
315
|
+
height: 100%;
|
|
316
|
+
width: 100%;
|
|
317
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
318
|
+
z-index: 2000;
|
|
319
|
+
display: flex;
|
|
320
|
+
flex-direction: column;
|
|
321
|
+
justify-content: center;
|
|
322
|
+
}
|
|
323
|
+
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
324
|
+
font-size: 14px;
|
|
325
|
+
color: #CCCACA;
|
|
326
|
+
margin-top: 45px;
|
|
327
|
+
}
|
|
328
|
+
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
329
|
+
font-weight: bold;
|
|
330
|
+
line-height: 30px;
|
|
331
|
+
font-size: 18px;
|
|
332
|
+
}
|
|
333
|
+
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
334
|
+
width: 90%;
|
|
335
|
+
margin: 0 auto;
|
|
336
|
+
}
|
|
337
|
+
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
338
|
+
font-size: 13px;
|
|
339
|
+
margin-top: 15px;
|
|
340
|
+
}
|
|
341
|
+
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
342
|
+
cursor: pointer;
|
|
343
|
+
width: 30px;
|
|
344
|
+
margin: 15px auto 0;
|
|
232
345
|
}.dvr-controls[data-dvr-controls] {
|
|
233
346
|
display: inline-block;
|
|
234
347
|
float: left;
|
|
@@ -332,6 +445,8 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
332
445
|
|
|
333
446
|
.media-control.live[data-media-control] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
|
|
334
447
|
background-color: #ff0101;
|
|
448
|
+
}.clips.bar-container[data-seekbar] {
|
|
449
|
+
clip-path: url("#myClip");
|
|
335
450
|
}:root {
|
|
336
451
|
--primary-background-color: #000;
|
|
337
452
|
--secondary-background-color: #262626;
|
|
@@ -714,133 +829,242 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
714
829
|
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
|
|
715
830
|
width: 25%;
|
|
716
831
|
}
|
|
717
|
-
}
|
|
718
|
-
|
|
832
|
+
}.player-poster[data-poster] {
|
|
833
|
+
display: flex;
|
|
834
|
+
justify-content: center;
|
|
835
|
+
align-items: center;
|
|
836
|
+
position: absolute;
|
|
837
|
+
height: 100%;
|
|
838
|
+
width: 100%;
|
|
839
|
+
z-index: 998;
|
|
840
|
+
top: 0;
|
|
841
|
+
left: 0;
|
|
842
|
+
background-color: #000;
|
|
843
|
+
background-size: cover;
|
|
844
|
+
background-repeat: no-repeat;
|
|
845
|
+
background-position: 50% 50%;
|
|
719
846
|
}
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
float: right;
|
|
723
|
-
margin-top: 4px;
|
|
724
|
-
position: relative;
|
|
725
|
-
width: 50px;
|
|
726
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
847
|
+
.player-poster[data-poster].clickable {
|
|
848
|
+
cursor: pointer;
|
|
727
849
|
}
|
|
728
|
-
.
|
|
729
|
-
|
|
730
|
-
color: #fff;
|
|
731
|
-
-webkit-font-smoothing: antialiased;
|
|
732
|
-
border: none;
|
|
733
|
-
font-size: 14px;
|
|
734
|
-
cursor: pointer;
|
|
850
|
+
.player-poster[data-poster]:hover .play-wrapper[data-poster] {
|
|
851
|
+
opacity: 1;
|
|
735
852
|
}
|
|
736
|
-
.
|
|
737
|
-
|
|
738
|
-
|
|
853
|
+
.player-poster[data-poster] .play-wrapper[data-poster] {
|
|
854
|
+
width: 100%;
|
|
855
|
+
height: 25%;
|
|
856
|
+
margin: 0 auto;
|
|
857
|
+
opacity: 0.75;
|
|
858
|
+
transition: opacity 0.1s ease;
|
|
859
|
+
}
|
|
860
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg {
|
|
861
|
+
height: 100%;
|
|
862
|
+
display: inline;
|
|
863
|
+
}
|
|
864
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg path {
|
|
865
|
+
fill: #fff;
|
|
866
|
+
}.seek-time[data-seek-time] {
|
|
867
|
+
position: absolute;
|
|
739
868
|
white-space: nowrap;
|
|
740
|
-
|
|
869
|
+
height: 20px;
|
|
870
|
+
line-height: 20px;
|
|
871
|
+
font-size: 0;
|
|
872
|
+
left: -100%;
|
|
873
|
+
bottom: 55px;
|
|
874
|
+
background-color: rgba(2, 2, 2, 0.5);
|
|
875
|
+
z-index: 9999;
|
|
876
|
+
transition: opacity 0.1s ease;
|
|
877
|
+
}
|
|
878
|
+
.seek-time[data-seek-time].hidden[data-seek-time] {
|
|
879
|
+
opacity: 0;
|
|
880
|
+
}
|
|
881
|
+
.seek-time[data-seek-time] [data-seek-time] {
|
|
882
|
+
display: inline-block;
|
|
883
|
+
color: white;
|
|
884
|
+
font-size: 10px;
|
|
885
|
+
padding-left: 7px;
|
|
886
|
+
padding-right: 7px;
|
|
887
|
+
vertical-align: top;
|
|
888
|
+
}
|
|
889
|
+
.seek-time[data-seek-time] [data-duration] {
|
|
890
|
+
display: inline-block;
|
|
891
|
+
color: rgba(255, 255, 255, 0.5);
|
|
892
|
+
font-size: 10px;
|
|
893
|
+
padding-right: 7px;
|
|
894
|
+
vertical-align: top;
|
|
895
|
+
}
|
|
896
|
+
.seek-time[data-seek-time] [data-duration]::before {
|
|
897
|
+
content: "|";
|
|
898
|
+
margin-right: 7px;
|
|
899
|
+
}.context-menu {
|
|
900
|
+
z-index: 999;
|
|
901
|
+
position: absolute;
|
|
902
|
+
top: 0;
|
|
903
|
+
left: 0;
|
|
904
|
+
text-align: center;
|
|
905
|
+
}
|
|
906
|
+
.context-menu .context-menu-list {
|
|
907
|
+
font-family: "Proxima Nova", sans-serif;
|
|
908
|
+
font-size: 12px;
|
|
909
|
+
line-height: 12px;
|
|
910
|
+
list-style-type: none;
|
|
911
|
+
text-align: left;
|
|
912
|
+
padding: 5px;
|
|
913
|
+
margin-left: auto;
|
|
914
|
+
margin-right: auto;
|
|
915
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
916
|
+
border: 1px solid #666;
|
|
917
|
+
border-radius: 4px;
|
|
918
|
+
}
|
|
919
|
+
.context-menu .context-menu-list .context-menu-list-item {
|
|
920
|
+
color: white;
|
|
921
|
+
padding: 5px;
|
|
922
|
+
cursor: pointer;
|
|
923
|
+
}.media-control-pip button {
|
|
924
|
+
float: right;
|
|
925
|
+
height: 40px;
|
|
926
|
+
margin-right: 20px;
|
|
927
|
+
}
|
|
928
|
+
.media-control-pip button svg {
|
|
929
|
+
height: 20px;
|
|
930
|
+
}*, :focus, :visited {
|
|
931
|
+
outline: none !important;
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
.multicamera[data-multicamera] {
|
|
935
|
+
float: right;
|
|
936
|
+
margin-top: 4px;
|
|
937
|
+
position: relative;
|
|
938
|
+
margin-right: 20px;
|
|
939
|
+
width: 20px;
|
|
940
|
+
}
|
|
941
|
+
.multicamera[data-multicamera] button {
|
|
741
942
|
background-color: transparent;
|
|
943
|
+
color: #fff;
|
|
944
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
742
945
|
-webkit-font-smoothing: antialiased;
|
|
743
946
|
border: none;
|
|
744
947
|
font-size: 14px;
|
|
745
|
-
|
|
746
|
-
padding-top: 5px;
|
|
948
|
+
padding: 0;
|
|
747
949
|
}
|
|
748
|
-
.
|
|
950
|
+
.multicamera[data-multicamera] button svg {
|
|
951
|
+
height: 20px;
|
|
952
|
+
position: relative;
|
|
953
|
+
margin-top: 6px;
|
|
954
|
+
}
|
|
955
|
+
.multicamera[data-multicamera] button:hover {
|
|
749
956
|
color: #c9c9c9;
|
|
750
957
|
}
|
|
751
|
-
.
|
|
958
|
+
.multicamera[data-multicamera] button.changing {
|
|
752
959
|
animation: pulse 0.5s infinite alternate;
|
|
753
960
|
}
|
|
754
|
-
.
|
|
961
|
+
.multicamera[data-multicamera] button span.quality-arrow {
|
|
755
962
|
width: 9px;
|
|
756
963
|
height: 6px;
|
|
757
964
|
margin-top: 11px;
|
|
758
965
|
margin-left: 5px;
|
|
759
966
|
}
|
|
760
|
-
.
|
|
761
|
-
|
|
967
|
+
.multicamera[data-multicamera] > ul {
|
|
968
|
+
padding: 6px 0;
|
|
969
|
+
right: -24px;
|
|
970
|
+
width: 245px;
|
|
762
971
|
list-style-type: none;
|
|
763
972
|
position: absolute;
|
|
764
|
-
bottom:
|
|
765
|
-
border:
|
|
973
|
+
bottom: 48px;
|
|
974
|
+
border-radius: 4px;
|
|
766
975
|
display: none;
|
|
767
|
-
background-color:
|
|
976
|
+
background-color: rgba(74, 74, 74, 0.9);
|
|
768
977
|
}
|
|
769
|
-
.
|
|
978
|
+
.multicamera[data-multicamera] > ul::after {
|
|
979
|
+
content: "";
|
|
980
|
+
position: absolute;
|
|
981
|
+
top: 100%;
|
|
982
|
+
left: 85%;
|
|
983
|
+
margin-left: -10px;
|
|
984
|
+
width: 0;
|
|
985
|
+
height: 0;
|
|
986
|
+
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
987
|
+
border-right: 10px solid transparent;
|
|
988
|
+
border-left: 10px solid transparent;
|
|
989
|
+
}
|
|
990
|
+
.multicamera[data-multicamera] li {
|
|
770
991
|
font-size: 10px;
|
|
992
|
+
cursor: pointer;
|
|
771
993
|
}
|
|
772
|
-
.
|
|
994
|
+
.multicamera[data-multicamera] li .multicamera-item {
|
|
995
|
+
display: flex;
|
|
996
|
+
padding: 10px 0;
|
|
997
|
+
justify-content: center;
|
|
998
|
+
position: relative;
|
|
999
|
+
}
|
|
1000
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
1001
|
+
pointer-events: none;
|
|
1002
|
+
}
|
|
1003
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
1004
|
+
opacity: 0.5;
|
|
1005
|
+
}
|
|
1006
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
1007
|
+
opacity: 0.5;
|
|
1008
|
+
}
|
|
1009
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
1010
|
+
background-color: rgba(0, 0, 0, 0);
|
|
1011
|
+
}
|
|
1012
|
+
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
1013
|
+
background-color: rgba(0, 0, 0, 0.3);
|
|
1014
|
+
}
|
|
1015
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
1016
|
+
width: 80px;
|
|
1017
|
+
height: 60px;
|
|
1018
|
+
}
|
|
1019
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
|
|
1020
|
+
width: 80px;
|
|
1021
|
+
height: 60px;
|
|
1022
|
+
}
|
|
1023
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
1024
|
+
width: 120px;
|
|
1025
|
+
text-align: left;
|
|
1026
|
+
margin-left: 15px;
|
|
1027
|
+
}
|
|
1028
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1029
|
+
width: 120px;
|
|
1030
|
+
height: 20px;
|
|
1031
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1032
|
+
font-size: 14px;
|
|
1033
|
+
font-weight: normal;
|
|
1034
|
+
font-style: normal;
|
|
1035
|
+
font-stretch: normal;
|
|
1036
|
+
line-height: 1.43;
|
|
1037
|
+
letter-spacing: normal;
|
|
1038
|
+
text-align: left;
|
|
1039
|
+
color: #fff;
|
|
1040
|
+
text-overflow: ellipsis;
|
|
1041
|
+
overflow: hidden;
|
|
1042
|
+
}
|
|
1043
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1044
|
+
opacity: 0.6;
|
|
1045
|
+
}
|
|
1046
|
+
.multicamera[data-multicamera] li[data-title] {
|
|
773
1047
|
background-color: #c3c2c2;
|
|
774
1048
|
padding: 5px;
|
|
775
1049
|
}
|
|
776
|
-
.
|
|
1050
|
+
.multicamera[data-multicamera] li a {
|
|
777
1051
|
color: #444;
|
|
778
1052
|
padding: 2px 10px;
|
|
779
1053
|
display: block;
|
|
780
1054
|
text-decoration: none;
|
|
781
|
-
text-overflow: ellipsis;
|
|
782
|
-
overflow: hidden;
|
|
783
|
-
white-space: nowrap;
|
|
784
1055
|
}
|
|
785
|
-
.
|
|
1056
|
+
.multicamera[data-multicamera] li a:hover {
|
|
786
1057
|
background-color: #555;
|
|
787
1058
|
color: white;
|
|
788
1059
|
}
|
|
789
|
-
.
|
|
1060
|
+
.multicamera[data-multicamera] li a:hover a {
|
|
790
1061
|
color: white;
|
|
791
1062
|
text-decoration: none;
|
|
792
1063
|
}
|
|
793
|
-
.
|
|
1064
|
+
.multicamera[data-multicamera] li.current a {
|
|
794
1065
|
color: #f00;
|
|
795
1066
|
}
|
|
796
1067
|
|
|
797
|
-
.audio_selector[data-track-selector] {
|
|
798
|
-
width: auto;
|
|
799
|
-
margin-top: 7px;
|
|
800
|
-
margin-right: 20px;
|
|
801
|
-
}
|
|
802
|
-
.audio_selector[data-track-selector] button[data-level-selector-button],
|
|
803
|
-
.audio_selector[data-track-selector] button[data-track-selector-button] {
|
|
804
|
-
display: flex;
|
|
805
|
-
justify-content: center;
|
|
806
|
-
padding: 0;
|
|
807
|
-
}
|
|
808
|
-
.audio_selector[data-track-selector] button[data-level-selector-button]:hover,
|
|
809
|
-
.audio_selector[data-track-selector] button[data-track-selector-button]:hover {
|
|
810
|
-
color: white;
|
|
811
|
-
}
|
|
812
|
-
.audio_selector[data-track-selector] ul {
|
|
813
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
814
|
-
border: none;
|
|
815
|
-
min-width: 60px;
|
|
816
|
-
transform: rotate(180deg);
|
|
817
|
-
border-radius: 4px;
|
|
818
|
-
bottom: 40px;
|
|
819
|
-
right: -2px;
|
|
820
|
-
}
|
|
821
|
-
.audio_selector[data-track-selector] ul li {
|
|
822
|
-
transform: rotate(-180deg);
|
|
823
|
-
font-size: 16px;
|
|
824
|
-
text-align: right;
|
|
825
|
-
height: 30px;
|
|
826
|
-
}
|
|
827
|
-
.audio_selector[data-track-selector] ul li a {
|
|
828
|
-
height: 30px;
|
|
829
|
-
padding: 5px 10px;
|
|
830
|
-
color: #fffffe;
|
|
831
|
-
}
|
|
832
|
-
.audio_selector[data-track-selector] ul li a:hover {
|
|
833
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
834
|
-
}
|
|
835
|
-
.audio_selector[data-track-selector] ul li:first-child a {
|
|
836
|
-
border-bottom-left-radius: 4px;
|
|
837
|
-
border-bottom-right-radius: 4px;
|
|
838
|
-
}
|
|
839
|
-
.audio_selector[data-track-selector] ul li:last-child a {
|
|
840
|
-
border-top-left-radius: 4px;
|
|
841
|
-
border-top-right-radius: 4px;
|
|
842
|
-
}
|
|
843
|
-
|
|
844
1068
|
@keyframes pulse {
|
|
845
1069
|
0% {
|
|
846
1070
|
color: #fff;
|
|
@@ -851,6 +1075,27 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
851
1075
|
100% {
|
|
852
1076
|
color: #B80000;
|
|
853
1077
|
}
|
|
1078
|
+
}.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
|
|
1079
|
+
height: 0;
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
.skip_time_plugin[data-skip-time] {
|
|
1083
|
+
position: absolute;
|
|
1084
|
+
width: 100%;
|
|
1085
|
+
height: calc(100% - 50px);
|
|
1086
|
+
z-index: 9998;
|
|
1087
|
+
background-color: transparent;
|
|
1088
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1089
|
+
}
|
|
1090
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
|
|
1091
|
+
width: 100%;
|
|
1092
|
+
height: 100%;
|
|
1093
|
+
display: flex;
|
|
1094
|
+
justify-content: space-between;
|
|
1095
|
+
}
|
|
1096
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
|
|
1097
|
+
width: 33.3%;
|
|
1098
|
+
height: 100%;
|
|
854
1099
|
}*, :focus, :visited {
|
|
855
1100
|
outline: none !important;
|
|
856
1101
|
}
|
|
@@ -963,8 +1208,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
963
1208
|
}
|
|
964
1209
|
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option svg {
|
|
965
1210
|
height: 20px;
|
|
966
|
-
}.clips.bar-container[data-seekbar] {
|
|
967
|
-
clip-path: url("#myClip");
|
|
968
1211
|
}.level-disabled {
|
|
969
1212
|
opacity: 0.5;
|
|
970
1213
|
pointer-events: none;
|
|
@@ -1002,277 +1245,55 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1002
1245
|
pointer-events: auto;
|
|
1003
1246
|
position: absolute;
|
|
1004
1247
|
width: 280px;
|
|
1005
|
-
background-color: white;
|
|
1006
|
-
transform: translate(0, 50%);
|
|
1007
|
-
transform: translate(-50%, -50%);
|
|
1008
|
-
left: 50%;
|
|
1009
|
-
/* margin-left: -140px; */
|
|
1010
|
-
top: calc(50% - 20px);
|
|
1011
|
-
/* margin-top: -170px; */
|
|
1012
|
-
}
|
|
1013
|
-
.share_plugin[data-share] .share-container .share-container-header {
|
|
1014
|
-
text-align: left;
|
|
1015
|
-
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
1016
|
-
}
|
|
1017
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
1018
|
-
display: inline-block;
|
|
1019
|
-
font-size: 16px;
|
|
1020
|
-
margin: 5px;
|
|
1021
|
-
}
|
|
1022
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
1023
|
-
display: inline-block;
|
|
1024
|
-
width: 24px;
|
|
1025
|
-
float: right;
|
|
1026
|
-
margin: 5px;
|
|
1027
|
-
cursor: pointer;
|
|
1028
|
-
}
|
|
1029
|
-
.share_plugin[data-share] .share-container .share-container-main {
|
|
1030
|
-
margin-bottom: 8px;
|
|
1031
|
-
}
|
|
1032
|
-
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
1033
|
-
text-align: left;
|
|
1034
|
-
font-size: 14px;
|
|
1035
|
-
padding: 5px;
|
|
1036
|
-
}
|
|
1037
|
-
.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 {
|
|
1038
|
-
overflow: hidden;
|
|
1039
|
-
text-overflow: ellipsis;
|
|
1040
|
-
color: #818181;
|
|
1041
|
-
border: solid 1px #d3d3d3;
|
|
1042
|
-
width: calc(100% - 10px);
|
|
1043
|
-
padding: 5px;
|
|
1044
|
-
}
|
|
1045
|
-
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
1046
|
-
max-height: 90px;
|
|
1047
|
-
resize: none;
|
|
1048
|
-
}
|
|
1049
|
-
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
1050
|
-
width: 32px;
|
|
1051
|
-
display: inline-block;
|
|
1052
|
-
margin-right: 5px;
|
|
1053
|
-
cursor: pointer;
|
|
1054
|
-
}.media-control-pip button {
|
|
1055
|
-
float: right;
|
|
1056
|
-
height: 40px;
|
|
1057
|
-
margin-right: 20px;
|
|
1058
|
-
}
|
|
1059
|
-
.media-control-pip button svg {
|
|
1060
|
-
height: 20px;
|
|
1061
|
-
}*, :focus, :visited {
|
|
1062
|
-
outline: none !important;
|
|
1063
|
-
}
|
|
1064
|
-
|
|
1065
|
-
.multicamera[data-multicamera] {
|
|
1066
|
-
float: right;
|
|
1067
|
-
margin-top: 4px;
|
|
1068
|
-
position: relative;
|
|
1069
|
-
margin-right: 20px;
|
|
1070
|
-
width: 20px;
|
|
1071
|
-
}
|
|
1072
|
-
.multicamera[data-multicamera] button {
|
|
1073
|
-
background-color: transparent;
|
|
1074
|
-
color: #fff;
|
|
1075
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1076
|
-
-webkit-font-smoothing: antialiased;
|
|
1077
|
-
border: none;
|
|
1078
|
-
font-size: 14px;
|
|
1079
|
-
padding: 0;
|
|
1080
|
-
}
|
|
1081
|
-
.multicamera[data-multicamera] button svg {
|
|
1082
|
-
height: 20px;
|
|
1083
|
-
position: relative;
|
|
1084
|
-
margin-top: 6px;
|
|
1085
|
-
}
|
|
1086
|
-
.multicamera[data-multicamera] button:hover {
|
|
1087
|
-
color: #c9c9c9;
|
|
1088
|
-
}
|
|
1089
|
-
.multicamera[data-multicamera] button.changing {
|
|
1090
|
-
animation: pulse 0.5s infinite alternate;
|
|
1091
|
-
}
|
|
1092
|
-
.multicamera[data-multicamera] button span.quality-arrow {
|
|
1093
|
-
width: 9px;
|
|
1094
|
-
height: 6px;
|
|
1095
|
-
margin-top: 11px;
|
|
1096
|
-
margin-left: 5px;
|
|
1097
|
-
}
|
|
1098
|
-
.multicamera[data-multicamera] > ul {
|
|
1099
|
-
padding: 6px 0;
|
|
1100
|
-
right: -24px;
|
|
1101
|
-
width: 245px;
|
|
1102
|
-
list-style-type: none;
|
|
1103
|
-
position: absolute;
|
|
1104
|
-
bottom: 48px;
|
|
1105
|
-
border-radius: 4px;
|
|
1106
|
-
display: none;
|
|
1107
|
-
background-color: rgba(74, 74, 74, 0.9);
|
|
1108
|
-
}
|
|
1109
|
-
.multicamera[data-multicamera] > ul::after {
|
|
1110
|
-
content: "";
|
|
1111
|
-
position: absolute;
|
|
1112
|
-
top: 100%;
|
|
1113
|
-
left: 85%;
|
|
1114
|
-
margin-left: -10px;
|
|
1115
|
-
width: 0;
|
|
1116
|
-
height: 0;
|
|
1117
|
-
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
1118
|
-
border-right: 10px solid transparent;
|
|
1119
|
-
border-left: 10px solid transparent;
|
|
1120
|
-
}
|
|
1121
|
-
.multicamera[data-multicamera] li {
|
|
1122
|
-
font-size: 10px;
|
|
1123
|
-
cursor: pointer;
|
|
1124
|
-
}
|
|
1125
|
-
.multicamera[data-multicamera] li .multicamera-item {
|
|
1126
|
-
display: flex;
|
|
1127
|
-
padding: 10px 0;
|
|
1128
|
-
justify-content: center;
|
|
1129
|
-
position: relative;
|
|
1130
|
-
}
|
|
1131
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
1132
|
-
pointer-events: none;
|
|
1133
|
-
}
|
|
1134
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
1135
|
-
opacity: 0.5;
|
|
1136
|
-
}
|
|
1137
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
1138
|
-
opacity: 0.5;
|
|
1139
|
-
}
|
|
1140
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
1141
|
-
background-color: rgba(0, 0, 0, 0);
|
|
1142
|
-
}
|
|
1143
|
-
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
1144
|
-
background-color: rgba(0, 0, 0, 0.3);
|
|
1145
|
-
}
|
|
1146
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
1147
|
-
width: 80px;
|
|
1148
|
-
height: 60px;
|
|
1149
|
-
}
|
|
1150
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
|
|
1151
|
-
width: 80px;
|
|
1152
|
-
height: 60px;
|
|
1153
|
-
}
|
|
1154
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
1155
|
-
width: 120px;
|
|
1156
|
-
text-align: left;
|
|
1157
|
-
margin-left: 15px;
|
|
1158
|
-
}
|
|
1159
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1160
|
-
width: 120px;
|
|
1161
|
-
height: 20px;
|
|
1162
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1163
|
-
font-size: 14px;
|
|
1164
|
-
font-weight: normal;
|
|
1165
|
-
font-style: normal;
|
|
1166
|
-
font-stretch: normal;
|
|
1167
|
-
line-height: 1.43;
|
|
1168
|
-
letter-spacing: normal;
|
|
1169
|
-
text-align: left;
|
|
1170
|
-
color: #fff;
|
|
1171
|
-
text-overflow: ellipsis;
|
|
1172
|
-
overflow: hidden;
|
|
1173
|
-
}
|
|
1174
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1175
|
-
opacity: 0.6;
|
|
1176
|
-
}
|
|
1177
|
-
.multicamera[data-multicamera] li[data-title] {
|
|
1178
|
-
background-color: #c3c2c2;
|
|
1179
|
-
padding: 5px;
|
|
1180
|
-
}
|
|
1181
|
-
.multicamera[data-multicamera] li a {
|
|
1182
|
-
color: #444;
|
|
1183
|
-
padding: 2px 10px;
|
|
1184
|
-
display: block;
|
|
1185
|
-
text-decoration: none;
|
|
1186
|
-
}
|
|
1187
|
-
.multicamera[data-multicamera] li a:hover {
|
|
1188
|
-
background-color: #555;
|
|
1189
|
-
color: white;
|
|
1190
|
-
}
|
|
1191
|
-
.multicamera[data-multicamera] li a:hover a {
|
|
1192
|
-
color: white;
|
|
1193
|
-
text-decoration: none;
|
|
1194
|
-
}
|
|
1195
|
-
.multicamera[data-multicamera] li.current a {
|
|
1196
|
-
color: #f00;
|
|
1197
|
-
}
|
|
1198
|
-
|
|
1199
|
-
@keyframes pulse {
|
|
1200
|
-
0% {
|
|
1201
|
-
color: #fff;
|
|
1202
|
-
}
|
|
1203
|
-
50% {
|
|
1204
|
-
color: #ff0101;
|
|
1205
|
-
}
|
|
1206
|
-
100% {
|
|
1207
|
-
color: #B80000;
|
|
1208
|
-
}
|
|
1209
|
-
}.seek-time[data-seek-time] {
|
|
1210
|
-
position: absolute;
|
|
1211
|
-
white-space: nowrap;
|
|
1212
|
-
height: 20px;
|
|
1213
|
-
line-height: 20px;
|
|
1214
|
-
font-size: 0;
|
|
1215
|
-
left: -100%;
|
|
1216
|
-
bottom: 55px;
|
|
1217
|
-
background-color: rgba(2, 2, 2, 0.5);
|
|
1218
|
-
z-index: 9999;
|
|
1219
|
-
transition: opacity 0.1s ease;
|
|
1248
|
+
background-color: white;
|
|
1249
|
+
transform: translate(0, 50%);
|
|
1250
|
+
transform: translate(-50%, -50%);
|
|
1251
|
+
left: 50%;
|
|
1252
|
+
/* margin-left: -140px; */
|
|
1253
|
+
top: calc(50% - 20px);
|
|
1254
|
+
/* margin-top: -170px; */
|
|
1220
1255
|
}
|
|
1221
|
-
.
|
|
1222
|
-
|
|
1256
|
+
.share_plugin[data-share] .share-container .share-container-header {
|
|
1257
|
+
text-align: left;
|
|
1258
|
+
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
1223
1259
|
}
|
|
1224
|
-
.
|
|
1260
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
1225
1261
|
display: inline-block;
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
padding-left: 7px;
|
|
1229
|
-
padding-right: 7px;
|
|
1230
|
-
vertical-align: top;
|
|
1262
|
+
font-size: 16px;
|
|
1263
|
+
margin: 5px;
|
|
1231
1264
|
}
|
|
1232
|
-
.
|
|
1265
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
1233
1266
|
display: inline-block;
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
vertical-align: top;
|
|
1238
|
-
}
|
|
1239
|
-
.seek-time[data-seek-time] [data-duration]::before {
|
|
1240
|
-
content: "|";
|
|
1241
|
-
margin-right: 7px;
|
|
1242
|
-
}.player-poster[data-poster] {
|
|
1243
|
-
display: flex;
|
|
1244
|
-
justify-content: center;
|
|
1245
|
-
align-items: center;
|
|
1246
|
-
position: absolute;
|
|
1247
|
-
height: 100%;
|
|
1248
|
-
width: 100%;
|
|
1249
|
-
z-index: 998;
|
|
1250
|
-
top: 0;
|
|
1251
|
-
left: 0;
|
|
1252
|
-
background-color: #000;
|
|
1253
|
-
background-size: cover;
|
|
1254
|
-
background-repeat: no-repeat;
|
|
1255
|
-
background-position: 50% 50%;
|
|
1256
|
-
}
|
|
1257
|
-
.player-poster[data-poster].clickable {
|
|
1267
|
+
width: 24px;
|
|
1268
|
+
float: right;
|
|
1269
|
+
margin: 5px;
|
|
1258
1270
|
cursor: pointer;
|
|
1259
1271
|
}
|
|
1260
|
-
.
|
|
1261
|
-
|
|
1272
|
+
.share_plugin[data-share] .share-container .share-container-main {
|
|
1273
|
+
margin-bottom: 8px;
|
|
1262
1274
|
}
|
|
1263
|
-
.
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
opacity: 0.75;
|
|
1268
|
-
transition: opacity 0.1s ease;
|
|
1275
|
+
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
1276
|
+
text-align: left;
|
|
1277
|
+
font-size: 14px;
|
|
1278
|
+
padding: 5px;
|
|
1269
1279
|
}
|
|
1270
|
-
.
|
|
1271
|
-
|
|
1272
|
-
|
|
1280
|
+
.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 {
|
|
1281
|
+
overflow: hidden;
|
|
1282
|
+
text-overflow: ellipsis;
|
|
1283
|
+
color: #818181;
|
|
1284
|
+
border: solid 1px #d3d3d3;
|
|
1285
|
+
width: calc(100% - 10px);
|
|
1286
|
+
padding: 5px;
|
|
1273
1287
|
}
|
|
1274
|
-
.
|
|
1275
|
-
|
|
1288
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
1289
|
+
max-height: 90px;
|
|
1290
|
+
resize: none;
|
|
1291
|
+
}
|
|
1292
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
1293
|
+
width: 32px;
|
|
1294
|
+
display: inline-block;
|
|
1295
|
+
margin-right: 5px;
|
|
1296
|
+
cursor: pointer;
|
|
1276
1297
|
}.spinner-three-bounce[data-spinner] {
|
|
1277
1298
|
position: absolute;
|
|
1278
1299
|
width: 70px;
|
|
@@ -1311,87 +1332,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1311
1332
|
40% {
|
|
1312
1333
|
transform: scale(1);
|
|
1313
1334
|
}
|
|
1314
|
-
}*, :focus, :visited {
|
|
1315
|
-
outline: none !important;
|
|
1316
|
-
}
|
|
1317
|
-
|
|
1318
|
-
.subtitles[data-subtitles] {
|
|
1319
|
-
float: right;
|
|
1320
|
-
position: relative;
|
|
1321
|
-
width: 50px;
|
|
1322
|
-
}
|
|
1323
|
-
.subtitles[data-subtitles] button {
|
|
1324
|
-
background-color: transparent;
|
|
1325
|
-
color: #fff;
|
|
1326
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1327
|
-
-webkit-font-smoothing: antialiased;
|
|
1328
|
-
border: none;
|
|
1329
|
-
font-size: 14px;
|
|
1330
|
-
cursor: pointer;
|
|
1331
|
-
}
|
|
1332
|
-
.subtitles[data-subtitles] button .subtitle-text svg {
|
|
1333
|
-
fill: white;
|
|
1334
|
-
}
|
|
1335
|
-
.subtitles[data-subtitles] button:hover {
|
|
1336
|
-
color: #c9c9c9;
|
|
1337
|
-
}
|
|
1338
|
-
.subtitles[data-subtitles] button.changing {
|
|
1339
|
-
animation: pulse 0.5s infinite alternate;
|
|
1340
|
-
}
|
|
1341
|
-
.subtitles[data-subtitles] > ul {
|
|
1342
|
-
width: 80px;
|
|
1343
|
-
list-style-type: none;
|
|
1344
|
-
position: absolute;
|
|
1345
|
-
bottom: 25px;
|
|
1346
|
-
border: 1px solid black;
|
|
1347
|
-
display: none;
|
|
1348
|
-
background-color: #e6e6e6;
|
|
1349
|
-
}
|
|
1350
|
-
.subtitles[data-subtitles] li {
|
|
1351
|
-
font-size: 10px;
|
|
1352
|
-
}
|
|
1353
|
-
.subtitles[data-subtitles] li[data-title] {
|
|
1354
|
-
background-color: #c3c2c2;
|
|
1355
|
-
padding: 5px;
|
|
1356
|
-
}
|
|
1357
|
-
.subtitles[data-subtitles] li a {
|
|
1358
|
-
color: #444;
|
|
1359
|
-
padding: 2px 10px;
|
|
1360
|
-
display: block;
|
|
1361
|
-
text-decoration: none;
|
|
1362
|
-
}
|
|
1363
|
-
.subtitles[data-subtitles] li a:hover {
|
|
1364
|
-
background-color: #555;
|
|
1365
|
-
color: white;
|
|
1366
|
-
}
|
|
1367
|
-
.subtitles[data-subtitles] li a:hover a {
|
|
1368
|
-
color: white;
|
|
1369
|
-
text-decoration: none;
|
|
1370
|
-
}
|
|
1371
|
-
.subtitles[data-subtitles] li.current a {
|
|
1372
|
-
color: #f00;
|
|
1373
|
-
background-color: #555;
|
|
1374
|
-
}
|
|
1375
|
-
|
|
1376
|
-
@keyframes pulse {
|
|
1377
|
-
0% {
|
|
1378
|
-
color: #fff;
|
|
1379
|
-
}
|
|
1380
|
-
50% {
|
|
1381
|
-
color: #ff0101;
|
|
1382
|
-
}
|
|
1383
|
-
100% {
|
|
1384
|
-
color: #B80000;
|
|
1385
|
-
}
|
|
1386
|
-
}
|
|
1387
|
-
::cue {
|
|
1388
|
-
visibility: hidden !important;
|
|
1389
|
-
font-size: 0 !important;
|
|
1390
|
-
}
|
|
1391
|
-
|
|
1392
|
-
.ios-fullscreen::cue {
|
|
1393
|
-
visibility: visible !important;
|
|
1394
|
-
font-size: 1em !important;
|
|
1395
1335
|
}.media-control-skin-1[data-media-control-skin-1] .media-control-quality,
|
|
1396
1336
|
.media-control-skin-1[data-media-control-skin-1] .media-control-audio-tracks {
|
|
1397
1337
|
display: block;
|
|
@@ -2067,27 +2007,87 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
2067
2007
|
}
|
|
2068
2008
|
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume]:hover {
|
|
2069
2009
|
transform: scaleY(1.5);
|
|
2070
|
-
}
|
|
2071
|
-
|
|
2010
|
+
}*, :focus, :visited {
|
|
2011
|
+
outline: none !important;
|
|
2072
2012
|
}
|
|
2073
2013
|
|
|
2074
|
-
.
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2014
|
+
.subtitles[data-subtitles] {
|
|
2015
|
+
float: right;
|
|
2016
|
+
position: relative;
|
|
2017
|
+
width: 50px;
|
|
2018
|
+
}
|
|
2019
|
+
.subtitles[data-subtitles] button {
|
|
2079
2020
|
background-color: transparent;
|
|
2021
|
+
color: #fff;
|
|
2080
2022
|
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
2023
|
+
-webkit-font-smoothing: antialiased;
|
|
2024
|
+
border: none;
|
|
2025
|
+
font-size: 14px;
|
|
2026
|
+
cursor: pointer;
|
|
2081
2027
|
}
|
|
2082
|
-
.
|
|
2083
|
-
|
|
2084
|
-
height: 100%;
|
|
2085
|
-
display: flex;
|
|
2086
|
-
justify-content: space-between;
|
|
2028
|
+
.subtitles[data-subtitles] button .subtitle-text svg {
|
|
2029
|
+
fill: white;
|
|
2087
2030
|
}
|
|
2088
|
-
.
|
|
2089
|
-
|
|
2090
|
-
|
|
2031
|
+
.subtitles[data-subtitles] button:hover {
|
|
2032
|
+
color: #c9c9c9;
|
|
2033
|
+
}
|
|
2034
|
+
.subtitles[data-subtitles] button.changing {
|
|
2035
|
+
animation: pulse 0.5s infinite alternate;
|
|
2036
|
+
}
|
|
2037
|
+
.subtitles[data-subtitles] > ul {
|
|
2038
|
+
width: 80px;
|
|
2039
|
+
list-style-type: none;
|
|
2040
|
+
position: absolute;
|
|
2041
|
+
bottom: 25px;
|
|
2042
|
+
border: 1px solid black;
|
|
2043
|
+
display: none;
|
|
2044
|
+
background-color: #e6e6e6;
|
|
2045
|
+
}
|
|
2046
|
+
.subtitles[data-subtitles] li {
|
|
2047
|
+
font-size: 10px;
|
|
2048
|
+
}
|
|
2049
|
+
.subtitles[data-subtitles] li[data-title] {
|
|
2050
|
+
background-color: #c3c2c2;
|
|
2051
|
+
padding: 5px;
|
|
2052
|
+
}
|
|
2053
|
+
.subtitles[data-subtitles] li a {
|
|
2054
|
+
color: #444;
|
|
2055
|
+
padding: 2px 10px;
|
|
2056
|
+
display: block;
|
|
2057
|
+
text-decoration: none;
|
|
2058
|
+
}
|
|
2059
|
+
.subtitles[data-subtitles] li a:hover {
|
|
2060
|
+
background-color: #555;
|
|
2061
|
+
color: white;
|
|
2062
|
+
}
|
|
2063
|
+
.subtitles[data-subtitles] li a:hover a {
|
|
2064
|
+
color: white;
|
|
2065
|
+
text-decoration: none;
|
|
2066
|
+
}
|
|
2067
|
+
.subtitles[data-subtitles] li.current a {
|
|
2068
|
+
color: #f00;
|
|
2069
|
+
background-color: #555;
|
|
2070
|
+
}
|
|
2071
|
+
|
|
2072
|
+
@keyframes pulse {
|
|
2073
|
+
0% {
|
|
2074
|
+
color: #fff;
|
|
2075
|
+
}
|
|
2076
|
+
50% {
|
|
2077
|
+
color: #ff0101;
|
|
2078
|
+
}
|
|
2079
|
+
100% {
|
|
2080
|
+
color: #B80000;
|
|
2081
|
+
}
|
|
2082
|
+
}
|
|
2083
|
+
::cue {
|
|
2084
|
+
visibility: hidden !important;
|
|
2085
|
+
font-size: 0 !important;
|
|
2086
|
+
}
|
|
2087
|
+
|
|
2088
|
+
.ios-fullscreen::cue {
|
|
2089
|
+
visibility: visible !important;
|
|
2090
|
+
font-size: 1em !important;
|
|
2091
2091
|
}.scrub-thumbnails {
|
|
2092
2092
|
position: absolute;
|
|
2093
2093
|
bottom: 52px;
|