@gcorevideo/player 2.20.20 → 2.20.21
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 +1 -1
- package/dist/index.css +557 -557
- package/dist/index.js +19 -12
- package/dist/plugins/index.css +556 -556
- package/dist/plugins/index.js +19 -12
- package/lib/plugins/source-controller/SourceController.d.ts.map +1 -1
- package/lib/plugins/source-controller/SourceController.js +1 -0
- package/lib/plugins/spinner-three-bounce/SpinnerThreeBounce.d.ts +2 -0
- package/lib/plugins/spinner-three-bounce/SpinnerThreeBounce.d.ts.map +1 -1
- package/lib/plugins/spinner-three-bounce/SpinnerThreeBounce.js +17 -11
- package/package.json +1 -1
- package/src/plugins/source-controller/SourceController.ts +1 -0
- package/src/plugins/spinner-three-bounce/SpinnerThreeBounce.ts +19 -10
- package/tsconfig.tsbuildinfo +1 -1
package/dist/index.css
CHANGED
|
@@ -122,143 +122,6 @@
|
|
|
122
122
|
.gplayer-lite-btn::-moz-focus-inner {
|
|
123
123
|
border: 0;
|
|
124
124
|
padding: 0;
|
|
125
|
-
}*, :focus, :visited {
|
|
126
|
-
outline: none !important;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
.audio_selector[data-track-selector] {
|
|
130
|
-
float: right;
|
|
131
|
-
margin-top: 4px;
|
|
132
|
-
position: relative;
|
|
133
|
-
width: 50px;
|
|
134
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
135
|
-
}
|
|
136
|
-
.audio_selector[data-track-selector] button {
|
|
137
|
-
background-color: transparent;
|
|
138
|
-
color: #fff;
|
|
139
|
-
-webkit-font-smoothing: antialiased;
|
|
140
|
-
border: none;
|
|
141
|
-
font-size: 14px;
|
|
142
|
-
cursor: pointer;
|
|
143
|
-
}
|
|
144
|
-
.audio_selector[data-track-selector] button .audio-text {
|
|
145
|
-
text-overflow: ellipsis;
|
|
146
|
-
overflow: hidden;
|
|
147
|
-
white-space: nowrap;
|
|
148
|
-
max-width: 100px;
|
|
149
|
-
background-color: transparent;
|
|
150
|
-
-webkit-font-smoothing: antialiased;
|
|
151
|
-
border: none;
|
|
152
|
-
font-size: 14px;
|
|
153
|
-
cursor: pointer;
|
|
154
|
-
padding-top: 5px;
|
|
155
|
-
}
|
|
156
|
-
.audio_selector[data-track-selector] button:hover {
|
|
157
|
-
color: #c9c9c9;
|
|
158
|
-
}
|
|
159
|
-
.audio_selector[data-track-selector] button.changing {
|
|
160
|
-
animation: pulse 0.5s infinite alternate;
|
|
161
|
-
}
|
|
162
|
-
.audio_selector[data-track-selector] button span.audio-arrow {
|
|
163
|
-
width: 9px;
|
|
164
|
-
height: 6px;
|
|
165
|
-
margin-top: 11px;
|
|
166
|
-
margin-left: 5px;
|
|
167
|
-
}
|
|
168
|
-
.audio_selector[data-track-selector] > ul {
|
|
169
|
-
max-width: 114px;
|
|
170
|
-
list-style-type: none;
|
|
171
|
-
position: absolute;
|
|
172
|
-
bottom: 25px;
|
|
173
|
-
border: 1px solid black;
|
|
174
|
-
display: none;
|
|
175
|
-
background-color: #e6e6e6;
|
|
176
|
-
}
|
|
177
|
-
.audio_selector[data-track-selector] li {
|
|
178
|
-
font-size: 10px;
|
|
179
|
-
}
|
|
180
|
-
.audio_selector[data-track-selector] li[data-title] {
|
|
181
|
-
background-color: #c3c2c2;
|
|
182
|
-
padding: 5px;
|
|
183
|
-
}
|
|
184
|
-
.audio_selector[data-track-selector] li a {
|
|
185
|
-
color: #444;
|
|
186
|
-
padding: 2px 10px;
|
|
187
|
-
display: block;
|
|
188
|
-
text-decoration: none;
|
|
189
|
-
text-overflow: ellipsis;
|
|
190
|
-
overflow: hidden;
|
|
191
|
-
white-space: nowrap;
|
|
192
|
-
}
|
|
193
|
-
.audio_selector[data-track-selector] li a:hover {
|
|
194
|
-
background-color: #555;
|
|
195
|
-
color: white;
|
|
196
|
-
}
|
|
197
|
-
.audio_selector[data-track-selector] li a:hover a {
|
|
198
|
-
color: white;
|
|
199
|
-
text-decoration: none;
|
|
200
|
-
}
|
|
201
|
-
.audio_selector[data-track-selector] li.current a {
|
|
202
|
-
color: #f00;
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
.audio_selector[data-track-selector] {
|
|
206
|
-
width: auto;
|
|
207
|
-
margin-top: 7px;
|
|
208
|
-
margin-right: 20px;
|
|
209
|
-
}
|
|
210
|
-
.audio_selector[data-track-selector] button[data-level-selector-button],
|
|
211
|
-
.audio_selector[data-track-selector] button[data-track-selector-button] {
|
|
212
|
-
display: flex;
|
|
213
|
-
justify-content: center;
|
|
214
|
-
padding: 0;
|
|
215
|
-
}
|
|
216
|
-
.audio_selector[data-track-selector] button[data-level-selector-button]:hover,
|
|
217
|
-
.audio_selector[data-track-selector] button[data-track-selector-button]:hover {
|
|
218
|
-
color: white;
|
|
219
|
-
}
|
|
220
|
-
.audio_selector[data-track-selector] ul {
|
|
221
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
222
|
-
border: none;
|
|
223
|
-
min-width: 60px;
|
|
224
|
-
transform: rotate(180deg);
|
|
225
|
-
border-radius: 4px;
|
|
226
|
-
bottom: 40px;
|
|
227
|
-
right: -2px;
|
|
228
|
-
}
|
|
229
|
-
.audio_selector[data-track-selector] ul li {
|
|
230
|
-
transform: rotate(-180deg);
|
|
231
|
-
font-size: 16px;
|
|
232
|
-
text-align: right;
|
|
233
|
-
height: 30px;
|
|
234
|
-
}
|
|
235
|
-
.audio_selector[data-track-selector] ul li a {
|
|
236
|
-
height: 30px;
|
|
237
|
-
padding: 5px 10px;
|
|
238
|
-
color: #fffffe;
|
|
239
|
-
}
|
|
240
|
-
.audio_selector[data-track-selector] ul li a:hover {
|
|
241
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
242
|
-
}
|
|
243
|
-
.audio_selector[data-track-selector] ul li:first-child a {
|
|
244
|
-
border-bottom-left-radius: 4px;
|
|
245
|
-
border-bottom-right-radius: 4px;
|
|
246
|
-
}
|
|
247
|
-
.audio_selector[data-track-selector] ul li:last-child a {
|
|
248
|
-
border-top-left-radius: 4px;
|
|
249
|
-
border-top-right-radius: 4px;
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
@keyframes pulse {
|
|
253
|
-
0% {
|
|
254
|
-
color: #fff;
|
|
255
|
-
}
|
|
256
|
-
50% {
|
|
257
|
-
color: #ff0101;
|
|
258
|
-
}
|
|
259
|
-
100% {
|
|
260
|
-
color: #B80000;
|
|
261
|
-
}
|
|
262
125
|
}.big-mute-icon-wrapper[data-big-mute] {
|
|
263
126
|
position: absolute;
|
|
264
127
|
z-index: 9998;
|
|
@@ -308,8 +171,133 @@
|
|
|
308
171
|
}
|
|
309
172
|
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
310
173
|
fill: #151515 !important;
|
|
311
|
-
}.
|
|
312
|
-
|
|
174
|
+
}.dvr-controls[data-dvr-controls] {
|
|
175
|
+
display: inline-block;
|
|
176
|
+
float: left;
|
|
177
|
+
color: #fff;
|
|
178
|
+
line-height: 32px;
|
|
179
|
+
font-size: 10px;
|
|
180
|
+
font-weight: bold;
|
|
181
|
+
margin-left: 6px;
|
|
182
|
+
height: 40px;
|
|
183
|
+
line-height: 40px;
|
|
184
|
+
margin-left: 0;
|
|
185
|
+
}
|
|
186
|
+
.dvr-controls[data-dvr-controls] .live-info {
|
|
187
|
+
cursor: default;
|
|
188
|
+
font-family: "Roboto", "Open Sans", Arial, sans-serif;
|
|
189
|
+
text-transform: uppercase;
|
|
190
|
+
}
|
|
191
|
+
.dvr-controls[data-dvr-controls] .live-info:before {
|
|
192
|
+
content: "";
|
|
193
|
+
display: inline-block;
|
|
194
|
+
position: relative;
|
|
195
|
+
width: 7px;
|
|
196
|
+
height: 7px;
|
|
197
|
+
border-radius: 3.5px;
|
|
198
|
+
margin-right: 3.5px;
|
|
199
|
+
background-color: #ff0101;
|
|
200
|
+
}
|
|
201
|
+
.dvr-controls[data-dvr-controls] .live-info.disabled {
|
|
202
|
+
opacity: 0.3;
|
|
203
|
+
}
|
|
204
|
+
.dvr-controls[data-dvr-controls] .live-info.disabled:before {
|
|
205
|
+
background-color: #fff;
|
|
206
|
+
}
|
|
207
|
+
.dvr-controls[data-dvr-controls] .live-button {
|
|
208
|
+
cursor: pointer;
|
|
209
|
+
outline: none;
|
|
210
|
+
display: none;
|
|
211
|
+
border: 0;
|
|
212
|
+
color: #fff;
|
|
213
|
+
background-color: transparent;
|
|
214
|
+
height: 32px;
|
|
215
|
+
padding: 0;
|
|
216
|
+
opacity: 0.7;
|
|
217
|
+
font-family: "Roboto", "Open Sans", Arial, sans-serif;
|
|
218
|
+
text-transform: uppercase;
|
|
219
|
+
transition: all 0.1s ease;
|
|
220
|
+
}
|
|
221
|
+
.dvr-controls[data-dvr-controls] .live-button:before {
|
|
222
|
+
content: "";
|
|
223
|
+
display: inline-block;
|
|
224
|
+
position: relative;
|
|
225
|
+
width: 7px;
|
|
226
|
+
height: 7px;
|
|
227
|
+
border-radius: 3.5px;
|
|
228
|
+
margin-right: 3.5px;
|
|
229
|
+
background-color: #fff;
|
|
230
|
+
}
|
|
231
|
+
.dvr-controls[data-dvr-controls] .live-button:hover {
|
|
232
|
+
opacity: 1;
|
|
233
|
+
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
234
|
+
}
|
|
235
|
+
.dvr-controls[data-dvr-controls] .live-info {
|
|
236
|
+
font-size: 14px;
|
|
237
|
+
letter-spacing: 0.8px;
|
|
238
|
+
font-weight: 500;
|
|
239
|
+
color: #fffffe;
|
|
240
|
+
margin-left: 21px;
|
|
241
|
+
}
|
|
242
|
+
.dvr-controls[data-dvr-controls] .live-info::before {
|
|
243
|
+
width: 10px;
|
|
244
|
+
height: 10px;
|
|
245
|
+
border-radius: 50%;
|
|
246
|
+
margin-right: 8px;
|
|
247
|
+
background-color: #ed4f4a;
|
|
248
|
+
}
|
|
249
|
+
.dvr-controls[data-dvr-controls] .live-button {
|
|
250
|
+
height: 40px;
|
|
251
|
+
opacity: 1;
|
|
252
|
+
font-size: 14px;
|
|
253
|
+
letter-spacing: 0.8px;
|
|
254
|
+
font-weight: 500;
|
|
255
|
+
margin-left: 20px;
|
|
256
|
+
}
|
|
257
|
+
.dvr-controls[data-dvr-controls] .live-button::before {
|
|
258
|
+
width: 10px;
|
|
259
|
+
height: 10px;
|
|
260
|
+
border-radius: 50%;
|
|
261
|
+
margin-right: 8px;
|
|
262
|
+
background-color: #cacaca;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.dvr .dvr-controls[data-dvr-controls] .live-info {
|
|
266
|
+
display: none;
|
|
267
|
+
}
|
|
268
|
+
.dvr .dvr-controls[data-dvr-controls] .live-button {
|
|
269
|
+
display: block;
|
|
270
|
+
}
|
|
271
|
+
.dvr.media-control.live[data-media-control] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
|
|
272
|
+
background-color: #005aff;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.media-control.live[data-media-control] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
|
|
276
|
+
background-color: #ff0101;
|
|
277
|
+
}.context-menu {
|
|
278
|
+
z-index: 999;
|
|
279
|
+
position: absolute;
|
|
280
|
+
top: 0;
|
|
281
|
+
left: 0;
|
|
282
|
+
text-align: center;
|
|
283
|
+
}
|
|
284
|
+
.context-menu .context-menu-list {
|
|
285
|
+
font-family: "Proxima Nova", sans-serif;
|
|
286
|
+
font-size: 12px;
|
|
287
|
+
line-height: 12px;
|
|
288
|
+
list-style-type: none;
|
|
289
|
+
text-align: left;
|
|
290
|
+
padding: 5px;
|
|
291
|
+
margin-left: auto;
|
|
292
|
+
margin-right: auto;
|
|
293
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
294
|
+
border: 1px solid #666;
|
|
295
|
+
border-radius: 4px;
|
|
296
|
+
}
|
|
297
|
+
.context-menu .context-menu-list .context-menu-list-item {
|
|
298
|
+
color: white;
|
|
299
|
+
padding: 5px;
|
|
300
|
+
cursor: pointer;
|
|
313
301
|
}:root {
|
|
314
302
|
--primary-background-color: #000;
|
|
315
303
|
--secondary-background-color: #262626;
|
|
@@ -688,13 +676,91 @@
|
|
|
688
676
|
transform: translate(-50%, -50%);
|
|
689
677
|
}
|
|
690
678
|
}
|
|
691
|
-
@media only screen and (orientation: landscape) {
|
|
692
|
-
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
|
|
693
|
-
width: 25%;
|
|
694
|
-
}
|
|
695
|
-
}.
|
|
696
|
-
|
|
697
|
-
|
|
679
|
+
@media only screen and (orientation: landscape) {
|
|
680
|
+
.mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
|
|
681
|
+
width: 25%;
|
|
682
|
+
}
|
|
683
|
+
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
684
|
+
color: #CCCACA;
|
|
685
|
+
position: absolute;
|
|
686
|
+
top: 0;
|
|
687
|
+
height: 100%;
|
|
688
|
+
width: 100%;
|
|
689
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
690
|
+
z-index: 2000;
|
|
691
|
+
display: flex;
|
|
692
|
+
flex-direction: column;
|
|
693
|
+
justify-content: center;
|
|
694
|
+
}
|
|
695
|
+
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
696
|
+
font-size: 14px;
|
|
697
|
+
color: #CCCACA;
|
|
698
|
+
margin-top: 45px;
|
|
699
|
+
}
|
|
700
|
+
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
701
|
+
font-weight: bold;
|
|
702
|
+
line-height: 30px;
|
|
703
|
+
font-size: 18px;
|
|
704
|
+
}
|
|
705
|
+
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
706
|
+
width: 90%;
|
|
707
|
+
margin: 0 auto;
|
|
708
|
+
}
|
|
709
|
+
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
710
|
+
font-size: 13px;
|
|
711
|
+
margin-top: 15px;
|
|
712
|
+
}
|
|
713
|
+
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
714
|
+
cursor: pointer;
|
|
715
|
+
width: 30px;
|
|
716
|
+
margin: 15px auto 0;
|
|
717
|
+
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
718
|
+
float: right;
|
|
719
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
720
|
+
}
|
|
721
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .button-gear {
|
|
722
|
+
height: 40px;
|
|
723
|
+
width: 40px;
|
|
724
|
+
padding-right: 20px;
|
|
725
|
+
}
|
|
726
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .button-gear svg {
|
|
727
|
+
height: 20px;
|
|
728
|
+
}
|
|
729
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
|
|
730
|
+
position: absolute;
|
|
731
|
+
right: 16px;
|
|
732
|
+
bottom: 52px;
|
|
733
|
+
display: none;
|
|
734
|
+
width: 250px;
|
|
735
|
+
min-height: 48px;
|
|
736
|
+
z-index: 9999;
|
|
737
|
+
border-radius: 4px;
|
|
738
|
+
}
|
|
739
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
|
|
740
|
+
padding: 8px 0;
|
|
741
|
+
}
|
|
742
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list svg {
|
|
743
|
+
float: left;
|
|
744
|
+
margin-right: 10px;
|
|
745
|
+
}
|
|
746
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
|
|
747
|
+
margin: 0;
|
|
748
|
+
text-align: left;
|
|
749
|
+
line-height: 22px;
|
|
750
|
+
padding: 5px 14px;
|
|
751
|
+
width: 250px;
|
|
752
|
+
font-size: 12px;
|
|
753
|
+
}
|
|
754
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_arrow-right-icon {
|
|
755
|
+
float: right;
|
|
756
|
+
margin-right: -14px;
|
|
757
|
+
}
|
|
758
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_value {
|
|
759
|
+
float: right;
|
|
760
|
+
margin-right: 8px;
|
|
761
|
+
}
|
|
762
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option svg {
|
|
763
|
+
height: 20px;
|
|
698
764
|
}*, :focus, :visited {
|
|
699
765
|
outline: none !important;
|
|
700
766
|
}
|
|
@@ -760,232 +826,181 @@
|
|
|
760
826
|
}
|
|
761
827
|
.gear-wrapper svg {
|
|
762
828
|
height: 20px;
|
|
763
|
-
}.
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
.context-menu .context-menu-list {
|
|
771
|
-
font-family: "Proxima Nova", sans-serif;
|
|
772
|
-
font-size: 12px;
|
|
773
|
-
line-height: 12px;
|
|
774
|
-
list-style-type: none;
|
|
775
|
-
text-align: left;
|
|
776
|
-
padding: 5px;
|
|
777
|
-
margin-left: auto;
|
|
778
|
-
margin-right: auto;
|
|
779
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
780
|
-
border: 1px solid #666;
|
|
781
|
-
border-radius: 4px;
|
|
829
|
+
}.level-disabled {
|
|
830
|
+
opacity: 0.5;
|
|
831
|
+
pointer-events: none;
|
|
832
|
+
}.clips.bar-container[data-seekbar] {
|
|
833
|
+
clip-path: url("#myClip");
|
|
834
|
+
}*, :focus, :visited {
|
|
835
|
+
outline: none !important;
|
|
782
836
|
}
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
padding: 5px;
|
|
786
|
-
cursor: pointer;
|
|
787
|
-
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
837
|
+
|
|
838
|
+
.audio_selector[data-track-selector] {
|
|
788
839
|
float: right;
|
|
840
|
+
margin-top: 4px;
|
|
841
|
+
position: relative;
|
|
842
|
+
width: 50px;
|
|
789
843
|
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
790
844
|
}
|
|
791
|
-
.
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
}
|
|
799
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
|
|
800
|
-
position: absolute;
|
|
801
|
-
right: 16px;
|
|
802
|
-
bottom: 52px;
|
|
803
|
-
display: none;
|
|
804
|
-
width: 250px;
|
|
805
|
-
min-height: 48px;
|
|
806
|
-
z-index: 9999;
|
|
807
|
-
border-radius: 4px;
|
|
808
|
-
}
|
|
809
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
|
|
810
|
-
padding: 8px 0;
|
|
845
|
+
.audio_selector[data-track-selector] button {
|
|
846
|
+
background-color: transparent;
|
|
847
|
+
color: #fff;
|
|
848
|
+
-webkit-font-smoothing: antialiased;
|
|
849
|
+
border: none;
|
|
850
|
+
font-size: 14px;
|
|
851
|
+
cursor: pointer;
|
|
811
852
|
}
|
|
812
|
-
.
|
|
813
|
-
|
|
814
|
-
|
|
853
|
+
.audio_selector[data-track-selector] button .audio-text {
|
|
854
|
+
text-overflow: ellipsis;
|
|
855
|
+
overflow: hidden;
|
|
856
|
+
white-space: nowrap;
|
|
857
|
+
max-width: 100px;
|
|
858
|
+
background-color: transparent;
|
|
859
|
+
-webkit-font-smoothing: antialiased;
|
|
860
|
+
border: none;
|
|
861
|
+
font-size: 14px;
|
|
862
|
+
cursor: pointer;
|
|
863
|
+
padding-top: 5px;
|
|
815
864
|
}
|
|
816
|
-
.
|
|
817
|
-
|
|
818
|
-
text-align: left;
|
|
819
|
-
line-height: 22px;
|
|
820
|
-
padding: 5px 14px;
|
|
821
|
-
width: 250px;
|
|
822
|
-
font-size: 12px;
|
|
865
|
+
.audio_selector[data-track-selector] button:hover {
|
|
866
|
+
color: #c9c9c9;
|
|
823
867
|
}
|
|
824
|
-
.
|
|
825
|
-
|
|
826
|
-
margin-right: -14px;
|
|
868
|
+
.audio_selector[data-track-selector] button.changing {
|
|
869
|
+
animation: pulse 0.5s infinite alternate;
|
|
827
870
|
}
|
|
828
|
-
.
|
|
829
|
-
|
|
830
|
-
|
|
871
|
+
.audio_selector[data-track-selector] button span.audio-arrow {
|
|
872
|
+
width: 9px;
|
|
873
|
+
height: 6px;
|
|
874
|
+
margin-top: 11px;
|
|
875
|
+
margin-left: 5px;
|
|
831
876
|
}
|
|
832
|
-
.
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
color: #CCCACA;
|
|
877
|
+
.audio_selector[data-track-selector] > ul {
|
|
878
|
+
max-width: 114px;
|
|
879
|
+
list-style-type: none;
|
|
836
880
|
position: absolute;
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
background-color:
|
|
841
|
-
z-index: 2000;
|
|
842
|
-
display: flex;
|
|
843
|
-
flex-direction: column;
|
|
844
|
-
justify-content: center;
|
|
881
|
+
bottom: 25px;
|
|
882
|
+
border: 1px solid black;
|
|
883
|
+
display: none;
|
|
884
|
+
background-color: #e6e6e6;
|
|
845
885
|
}
|
|
846
|
-
|
|
847
|
-
font-size:
|
|
848
|
-
color: #CCCACA;
|
|
849
|
-
margin-top: 45px;
|
|
886
|
+
.audio_selector[data-track-selector] li {
|
|
887
|
+
font-size: 10px;
|
|
850
888
|
}
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
font-size: 18px;
|
|
889
|
+
.audio_selector[data-track-selector] li[data-title] {
|
|
890
|
+
background-color: #c3c2c2;
|
|
891
|
+
padding: 5px;
|
|
855
892
|
}
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
893
|
+
.audio_selector[data-track-selector] li a {
|
|
894
|
+
color: #444;
|
|
895
|
+
padding: 2px 10px;
|
|
896
|
+
display: block;
|
|
897
|
+
text-decoration: none;
|
|
898
|
+
text-overflow: ellipsis;
|
|
899
|
+
overflow: hidden;
|
|
900
|
+
white-space: nowrap;
|
|
859
901
|
}
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
902
|
+
.audio_selector[data-track-selector] li a:hover {
|
|
903
|
+
background-color: #555;
|
|
904
|
+
color: white;
|
|
863
905
|
}
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
margin: 15px auto 0;
|
|
868
|
-
}.share_plugin[data-share] {
|
|
869
|
-
pointer-events: auto;
|
|
870
|
-
z-index: 5;
|
|
871
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
906
|
+
.audio_selector[data-track-selector] li a:hover a {
|
|
907
|
+
color: white;
|
|
908
|
+
text-decoration: none;
|
|
872
909
|
}
|
|
873
|
-
.
|
|
874
|
-
|
|
910
|
+
.audio_selector[data-track-selector] li.current a {
|
|
911
|
+
color: #f00;
|
|
875
912
|
}
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
width:
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
border-radius: 4px;
|
|
882
|
-
position: absolute;
|
|
883
|
-
right: 10px;
|
|
884
|
-
top: 10px;
|
|
885
|
-
padding-top: 6px;
|
|
886
|
-
transition: all 0.3s ease-out;
|
|
913
|
+
|
|
914
|
+
.audio_selector[data-track-selector] {
|
|
915
|
+
width: auto;
|
|
916
|
+
margin-top: 7px;
|
|
917
|
+
margin-right: 20px;
|
|
887
918
|
}
|
|
888
|
-
.
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
919
|
+
.audio_selector[data-track-selector] button[data-level-selector-button],
|
|
920
|
+
.audio_selector[data-track-selector] button[data-track-selector-button] {
|
|
921
|
+
display: flex;
|
|
922
|
+
justify-content: center;
|
|
892
923
|
padding: 0;
|
|
893
|
-
cursor: pointer;
|
|
894
|
-
display: inline-block;
|
|
895
|
-
width: 19px;
|
|
896
|
-
height: 20px;
|
|
897
|
-
}
|
|
898
|
-
.share_plugin[data-share] .share-container {
|
|
899
|
-
pointer-events: auto;
|
|
900
|
-
position: absolute;
|
|
901
|
-
width: 280px;
|
|
902
|
-
background-color: white;
|
|
903
|
-
transform: translate(0, 50%);
|
|
904
|
-
transform: translate(-50%, -50%);
|
|
905
|
-
left: 50%;
|
|
906
|
-
/* margin-left: -140px; */
|
|
907
|
-
top: calc(50% - 20px);
|
|
908
|
-
/* margin-top: -170px; */
|
|
909
|
-
}
|
|
910
|
-
.share_plugin[data-share] .share-container .share-container-header {
|
|
911
|
-
text-align: left;
|
|
912
|
-
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
913
|
-
}
|
|
914
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
915
|
-
display: inline-block;
|
|
916
|
-
font-size: 16px;
|
|
917
|
-
margin: 5px;
|
|
918
924
|
}
|
|
919
|
-
.
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
float: right;
|
|
923
|
-
margin: 5px;
|
|
924
|
-
cursor: pointer;
|
|
925
|
-
}
|
|
926
|
-
.share_plugin[data-share] .share-container .share-container-main {
|
|
927
|
-
margin-bottom: 8px;
|
|
928
|
-
}
|
|
929
|
-
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
930
|
-
text-align: left;
|
|
931
|
-
font-size: 14px;
|
|
932
|
-
padding: 5px;
|
|
925
|
+
.audio_selector[data-track-selector] button[data-level-selector-button]:hover,
|
|
926
|
+
.audio_selector[data-track-selector] button[data-track-selector-button]:hover {
|
|
927
|
+
color: white;
|
|
933
928
|
}
|
|
934
|
-
.
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
929
|
+
.audio_selector[data-track-selector] ul {
|
|
930
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
931
|
+
border: none;
|
|
932
|
+
min-width: 60px;
|
|
933
|
+
transform: rotate(180deg);
|
|
934
|
+
border-radius: 4px;
|
|
935
|
+
bottom: 40px;
|
|
936
|
+
right: -2px;
|
|
941
937
|
}
|
|
942
|
-
.
|
|
943
|
-
|
|
944
|
-
|
|
938
|
+
.audio_selector[data-track-selector] ul li {
|
|
939
|
+
transform: rotate(-180deg);
|
|
940
|
+
font-size: 16px;
|
|
941
|
+
text-align: right;
|
|
942
|
+
height: 30px;
|
|
945
943
|
}
|
|
946
|
-
.
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
cursor: pointer;
|
|
951
|
-
}.spinner-three-bounce[data-spinner] {
|
|
952
|
-
position: absolute;
|
|
953
|
-
width: 70px;
|
|
954
|
-
text-align: center;
|
|
955
|
-
z-index: 999;
|
|
956
|
-
left: 0;
|
|
957
|
-
right: 0;
|
|
958
|
-
margin: 0 auto;
|
|
959
|
-
margin-left: auto;
|
|
960
|
-
margin-right: auto;
|
|
961
|
-
/* center vertically */
|
|
962
|
-
top: 50%;
|
|
963
|
-
transform: translateY(-50%);
|
|
944
|
+
.audio_selector[data-track-selector] ul li a {
|
|
945
|
+
height: 30px;
|
|
946
|
+
padding: 5px 10px;
|
|
947
|
+
color: #fffffe;
|
|
964
948
|
}
|
|
965
|
-
.
|
|
966
|
-
|
|
967
|
-
height: 18px;
|
|
968
|
-
background-color: #FFF;
|
|
969
|
-
border-radius: 100%;
|
|
970
|
-
display: inline-block;
|
|
971
|
-
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
972
|
-
/* Prevent first frame from flickering when animation starts */
|
|
973
|
-
animation-fill-mode: both;
|
|
949
|
+
.audio_selector[data-track-selector] ul li a:hover {
|
|
950
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
974
951
|
}
|
|
975
|
-
.
|
|
976
|
-
|
|
952
|
+
.audio_selector[data-track-selector] ul li:first-child a {
|
|
953
|
+
border-bottom-left-radius: 4px;
|
|
954
|
+
border-bottom-right-radius: 4px;
|
|
977
955
|
}
|
|
978
|
-
.
|
|
979
|
-
|
|
956
|
+
.audio_selector[data-track-selector] ul li:last-child a {
|
|
957
|
+
border-top-left-radius: 4px;
|
|
958
|
+
border-top-right-radius: 4px;
|
|
980
959
|
}
|
|
981
960
|
|
|
982
|
-
@keyframes
|
|
983
|
-
0
|
|
984
|
-
|
|
961
|
+
@keyframes pulse {
|
|
962
|
+
0% {
|
|
963
|
+
color: #fff;
|
|
985
964
|
}
|
|
986
|
-
|
|
987
|
-
|
|
965
|
+
50% {
|
|
966
|
+
color: #ff0101;
|
|
967
|
+
}
|
|
968
|
+
100% {
|
|
969
|
+
color: #B80000;
|
|
988
970
|
}
|
|
971
|
+
}.seek-time[data-seek-time] {
|
|
972
|
+
position: absolute;
|
|
973
|
+
white-space: nowrap;
|
|
974
|
+
height: 20px;
|
|
975
|
+
line-height: 20px;
|
|
976
|
+
font-size: 0;
|
|
977
|
+
left: -100%;
|
|
978
|
+
bottom: 55px;
|
|
979
|
+
background-color: rgba(2, 2, 2, 0.5);
|
|
980
|
+
z-index: 9999;
|
|
981
|
+
transition: opacity 0.1s ease;
|
|
982
|
+
}
|
|
983
|
+
.seek-time[data-seek-time].hidden[data-seek-time] {
|
|
984
|
+
opacity: 0;
|
|
985
|
+
}
|
|
986
|
+
.seek-time[data-seek-time] [data-seek-time] {
|
|
987
|
+
display: inline-block;
|
|
988
|
+
color: white;
|
|
989
|
+
font-size: 10px;
|
|
990
|
+
padding-left: 7px;
|
|
991
|
+
padding-right: 7px;
|
|
992
|
+
vertical-align: top;
|
|
993
|
+
}
|
|
994
|
+
.seek-time[data-seek-time] [data-duration] {
|
|
995
|
+
display: inline-block;
|
|
996
|
+
color: rgba(255, 255, 255, 0.5);
|
|
997
|
+
font-size: 10px;
|
|
998
|
+
padding-right: 7px;
|
|
999
|
+
vertical-align: top;
|
|
1000
|
+
}
|
|
1001
|
+
.seek-time[data-seek-time] [data-duration]::before {
|
|
1002
|
+
content: "|";
|
|
1003
|
+
margin-right: 7px;
|
|
989
1004
|
}*, :focus, :visited {
|
|
990
1005
|
outline: none !important;
|
|
991
1006
|
}
|
|
@@ -1168,179 +1183,134 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1168
1183
|
}
|
|
1169
1184
|
.player-poster[data-poster] .play-wrapper[data-poster] svg path {
|
|
1170
1185
|
fill: #fff;
|
|
1171
|
-
}.
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
line-height: 32px;
|
|
1176
|
-
font-size: 10px;
|
|
1177
|
-
font-weight: bold;
|
|
1178
|
-
margin-left: 6px;
|
|
1179
|
-
height: 40px;
|
|
1180
|
-
line-height: 40px;
|
|
1181
|
-
margin-left: 0;
|
|
1182
|
-
}
|
|
1183
|
-
.dvr-controls[data-dvr-controls] .live-info {
|
|
1184
|
-
cursor: default;
|
|
1185
|
-
font-family: "Roboto", "Open Sans", Arial, sans-serif;
|
|
1186
|
-
text-transform: uppercase;
|
|
1187
|
-
}
|
|
1188
|
-
.dvr-controls[data-dvr-controls] .live-info:before {
|
|
1189
|
-
content: "";
|
|
1190
|
-
display: inline-block;
|
|
1191
|
-
position: relative;
|
|
1192
|
-
width: 7px;
|
|
1193
|
-
height: 7px;
|
|
1194
|
-
border-radius: 3.5px;
|
|
1195
|
-
margin-right: 3.5px;
|
|
1196
|
-
background-color: #ff0101;
|
|
1197
|
-
}
|
|
1198
|
-
.dvr-controls[data-dvr-controls] .live-info.disabled {
|
|
1199
|
-
opacity: 0.3;
|
|
1186
|
+
}.share_plugin[data-share] {
|
|
1187
|
+
pointer-events: auto;
|
|
1188
|
+
z-index: 5;
|
|
1189
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
1200
1190
|
}
|
|
1201
|
-
.
|
|
1202
|
-
|
|
1191
|
+
.share_plugin[data-share].share-hide .share-button-container {
|
|
1192
|
+
right: -50px;
|
|
1203
1193
|
}
|
|
1204
|
-
.
|
|
1194
|
+
.share_plugin[data-share] .share-button-container {
|
|
1205
1195
|
cursor: pointer;
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1196
|
+
width: 36px;
|
|
1197
|
+
height: 36px;
|
|
1198
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
1199
|
+
border-radius: 4px;
|
|
1200
|
+
position: absolute;
|
|
1201
|
+
right: 10px;
|
|
1202
|
+
top: 10px;
|
|
1203
|
+
padding-top: 6px;
|
|
1204
|
+
transition: all 0.3s ease-out;
|
|
1205
|
+
}
|
|
1206
|
+
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
1210
1207
|
background-color: transparent;
|
|
1211
|
-
|
|
1208
|
+
border: 0;
|
|
1209
|
+
margin: 0 6px;
|
|
1212
1210
|
padding: 0;
|
|
1213
|
-
|
|
1214
|
-
font-family: "Roboto", "Open Sans", Arial, sans-serif;
|
|
1215
|
-
text-transform: uppercase;
|
|
1216
|
-
transition: all 0.1s ease;
|
|
1217
|
-
}
|
|
1218
|
-
.dvr-controls[data-dvr-controls] .live-button:before {
|
|
1219
|
-
content: "";
|
|
1211
|
+
cursor: pointer;
|
|
1220
1212
|
display: inline-block;
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
height: 7px;
|
|
1224
|
-
border-radius: 3.5px;
|
|
1225
|
-
margin-right: 3.5px;
|
|
1226
|
-
background-color: #fff;
|
|
1227
|
-
}
|
|
1228
|
-
.dvr-controls[data-dvr-controls] .live-button:hover {
|
|
1229
|
-
opacity: 1;
|
|
1230
|
-
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
1231
|
-
}
|
|
1232
|
-
.dvr-controls[data-dvr-controls] .live-info {
|
|
1233
|
-
font-size: 14px;
|
|
1234
|
-
letter-spacing: 0.8px;
|
|
1235
|
-
font-weight: 500;
|
|
1236
|
-
color: #fffffe;
|
|
1237
|
-
margin-left: 21px;
|
|
1238
|
-
}
|
|
1239
|
-
.dvr-controls[data-dvr-controls] .live-info::before {
|
|
1240
|
-
width: 10px;
|
|
1241
|
-
height: 10px;
|
|
1242
|
-
border-radius: 50%;
|
|
1243
|
-
margin-right: 8px;
|
|
1244
|
-
background-color: #ed4f4a;
|
|
1245
|
-
}
|
|
1246
|
-
.dvr-controls[data-dvr-controls] .live-button {
|
|
1247
|
-
height: 40px;
|
|
1248
|
-
opacity: 1;
|
|
1249
|
-
font-size: 14px;
|
|
1250
|
-
letter-spacing: 0.8px;
|
|
1251
|
-
font-weight: 500;
|
|
1252
|
-
margin-left: 20px;
|
|
1253
|
-
}
|
|
1254
|
-
.dvr-controls[data-dvr-controls] .live-button::before {
|
|
1255
|
-
width: 10px;
|
|
1256
|
-
height: 10px;
|
|
1257
|
-
border-radius: 50%;
|
|
1258
|
-
margin-right: 8px;
|
|
1259
|
-
background-color: #cacaca;
|
|
1260
|
-
}
|
|
1261
|
-
|
|
1262
|
-
.dvr .dvr-controls[data-dvr-controls] .live-info {
|
|
1263
|
-
display: none;
|
|
1264
|
-
}
|
|
1265
|
-
.dvr .dvr-controls[data-dvr-controls] .live-button {
|
|
1266
|
-
display: block;
|
|
1267
|
-
}
|
|
1268
|
-
.dvr.media-control.live[data-media-control] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
|
|
1269
|
-
background-color: #005aff;
|
|
1270
|
-
}
|
|
1271
|
-
|
|
1272
|
-
.media-control.live[data-media-control] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
|
|
1273
|
-
background-color: #ff0101;
|
|
1274
|
-
}.media-control-skin-1[data-media-control-skin-1] .media-control-quality,
|
|
1275
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-audio-tracks {
|
|
1276
|
-
display: block;
|
|
1277
|
-
}
|
|
1278
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] {
|
|
1279
|
-
width: 40px;
|
|
1280
|
-
margin-top: 0;
|
|
1281
|
-
}
|
|
1282
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] button[data-subtitles-button] {
|
|
1283
|
-
display: flex;
|
|
1284
|
-
justify-content: center;
|
|
1285
|
-
padding: 0;
|
|
1286
|
-
align-items: center;
|
|
1213
|
+
width: 19px;
|
|
1214
|
+
height: 20px;
|
|
1287
1215
|
}
|
|
1288
|
-
.
|
|
1289
|
-
|
|
1216
|
+
.share_plugin[data-share] .share-container {
|
|
1217
|
+
pointer-events: auto;
|
|
1218
|
+
position: absolute;
|
|
1219
|
+
width: 280px;
|
|
1220
|
+
background-color: white;
|
|
1221
|
+
transform: translate(0, 50%);
|
|
1222
|
+
transform: translate(-50%, -50%);
|
|
1223
|
+
left: 50%;
|
|
1224
|
+
/* margin-left: -140px; */
|
|
1225
|
+
top: calc(50% - 20px);
|
|
1226
|
+
/* margin-top: -170px; */
|
|
1290
1227
|
}
|
|
1291
|
-
.
|
|
1292
|
-
|
|
1293
|
-
border:
|
|
1294
|
-
width: auto;
|
|
1295
|
-
transform: rotate(180deg);
|
|
1296
|
-
border-radius: 4px;
|
|
1297
|
-
bottom: 52px;
|
|
1298
|
-
margin-left: -28px;
|
|
1228
|
+
.share_plugin[data-share] .share-container .share-container-header {
|
|
1229
|
+
text-align: left;
|
|
1230
|
+
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
1299
1231
|
}
|
|
1300
|
-
.
|
|
1301
|
-
|
|
1232
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
1233
|
+
display: inline-block;
|
|
1302
1234
|
font-size: 16px;
|
|
1303
|
-
|
|
1304
|
-
white-space: nowrap;
|
|
1305
|
-
height: 30px;
|
|
1235
|
+
margin: 5px;
|
|
1306
1236
|
}
|
|
1307
|
-
.
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1237
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
1238
|
+
display: inline-block;
|
|
1239
|
+
width: 24px;
|
|
1240
|
+
float: right;
|
|
1241
|
+
margin: 5px;
|
|
1242
|
+
cursor: pointer;
|
|
1311
1243
|
}
|
|
1312
|
-
.
|
|
1313
|
-
|
|
1244
|
+
.share_plugin[data-share] .share-container .share-container-main {
|
|
1245
|
+
margin-bottom: 8px;
|
|
1314
1246
|
}
|
|
1315
|
-
.
|
|
1316
|
-
|
|
1247
|
+
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
1248
|
+
text-align: left;
|
|
1249
|
+
font-size: 14px;
|
|
1250
|
+
padding: 5px;
|
|
1317
1251
|
}
|
|
1318
|
-
.
|
|
1319
|
-
|
|
1320
|
-
|
|
1252
|
+
.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 {
|
|
1253
|
+
overflow: hidden;
|
|
1254
|
+
text-overflow: ellipsis;
|
|
1255
|
+
color: #818181;
|
|
1256
|
+
border: solid 1px #d3d3d3;
|
|
1257
|
+
width: calc(100% - 10px);
|
|
1258
|
+
padding: 5px;
|
|
1321
1259
|
}
|
|
1322
|
-
.
|
|
1323
|
-
|
|
1324
|
-
|
|
1260
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
1261
|
+
max-height: 90px;
|
|
1262
|
+
resize: none;
|
|
1325
1263
|
}
|
|
1326
|
-
.
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1264
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
1265
|
+
width: 32px;
|
|
1266
|
+
display: inline-block;
|
|
1267
|
+
margin-right: 5px;
|
|
1268
|
+
cursor: pointer;
|
|
1269
|
+
}.media-control-pip button {
|
|
1270
|
+
float: right;
|
|
1271
|
+
height: 40px;
|
|
1272
|
+
margin-right: 20px;
|
|
1332
1273
|
}
|
|
1333
|
-
.media-control-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1274
|
+
.media-control-pip button svg {
|
|
1275
|
+
height: 20px;
|
|
1276
|
+
}.spinner-three-bounce[data-spinner] {
|
|
1277
|
+
position: absolute;
|
|
1278
|
+
width: 70px;
|
|
1279
|
+
text-align: center;
|
|
1280
|
+
z-index: 999;
|
|
1281
|
+
left: 0;
|
|
1282
|
+
right: 0;
|
|
1283
|
+
margin: 0 auto;
|
|
1284
|
+
margin-left: auto;
|
|
1285
|
+
margin-right: auto;
|
|
1286
|
+
/* center vertically */
|
|
1287
|
+
top: 50%;
|
|
1288
|
+
transform: translateY(-50%);
|
|
1337
1289
|
}
|
|
1338
|
-
.
|
|
1339
|
-
|
|
1340
|
-
|
|
1290
|
+
.spinner-three-bounce[data-spinner] > div {
|
|
1291
|
+
width: 18px;
|
|
1292
|
+
height: 18px;
|
|
1293
|
+
background-color: #FFF;
|
|
1294
|
+
border-radius: 100%;
|
|
1295
|
+
display: inline-block;
|
|
1296
|
+
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
1297
|
+
/* Prevent first frame from flickering when animation starts */
|
|
1298
|
+
animation-fill-mode: both;
|
|
1341
1299
|
}
|
|
1342
|
-
.
|
|
1343
|
-
|
|
1300
|
+
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
1301
|
+
animation-delay: -0.32s;
|
|
1302
|
+
}
|
|
1303
|
+
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
1304
|
+
animation-delay: -0.16s;
|
|
1305
|
+
}
|
|
1306
|
+
|
|
1307
|
+
@keyframes bouncedelay {
|
|
1308
|
+
0%, 80%, 100% {
|
|
1309
|
+
transform: scale(0);
|
|
1310
|
+
}
|
|
1311
|
+
40% {
|
|
1312
|
+
transform: scale(1);
|
|
1313
|
+
}
|
|
1344
1314
|
}[data-player] {
|
|
1345
1315
|
--bottom-panel: 40px;
|
|
1346
1316
|
}
|
|
@@ -1946,60 +1916,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1946
1916
|
}
|
|
1947
1917
|
.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 {
|
|
1948
1918
|
transform: scaleY(1.5);
|
|
1949
|
-
}.seek-time[data-seek-time] {
|
|
1950
|
-
position: absolute;
|
|
1951
|
-
white-space: nowrap;
|
|
1952
|
-
height: 20px;
|
|
1953
|
-
line-height: 20px;
|
|
1954
|
-
font-size: 0;
|
|
1955
|
-
left: -100%;
|
|
1956
|
-
bottom: 55px;
|
|
1957
|
-
background-color: rgba(2, 2, 2, 0.5);
|
|
1958
|
-
z-index: 9999;
|
|
1959
|
-
transition: opacity 0.1s ease;
|
|
1960
|
-
}
|
|
1961
|
-
.seek-time[data-seek-time].hidden[data-seek-time] {
|
|
1962
|
-
opacity: 0;
|
|
1963
|
-
}
|
|
1964
|
-
.seek-time[data-seek-time] [data-seek-time] {
|
|
1965
|
-
display: inline-block;
|
|
1966
|
-
color: white;
|
|
1967
|
-
font-size: 10px;
|
|
1968
|
-
padding-left: 7px;
|
|
1969
|
-
padding-right: 7px;
|
|
1970
|
-
vertical-align: top;
|
|
1971
|
-
}
|
|
1972
|
-
.seek-time[data-seek-time] [data-duration] {
|
|
1973
|
-
display: inline-block;
|
|
1974
|
-
color: rgba(255, 255, 255, 0.5);
|
|
1975
|
-
font-size: 10px;
|
|
1976
|
-
padding-right: 7px;
|
|
1977
|
-
vertical-align: top;
|
|
1978
|
-
}
|
|
1979
|
-
.seek-time[data-seek-time] [data-duration]::before {
|
|
1980
|
-
content: "|";
|
|
1981
|
-
margin-right: 7px;
|
|
1982
|
-
}.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
|
|
1983
|
-
height: 0;
|
|
1984
|
-
}
|
|
1985
|
-
|
|
1986
|
-
.skip_time_plugin[data-skip-time] {
|
|
1987
|
-
position: absolute;
|
|
1988
|
-
width: 100%;
|
|
1989
|
-
height: calc(100% - 50px);
|
|
1990
|
-
z-index: 9998;
|
|
1991
|
-
background-color: transparent;
|
|
1992
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1993
|
-
}
|
|
1994
|
-
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
|
|
1995
|
-
width: 100%;
|
|
1996
|
-
height: 100%;
|
|
1997
|
-
display: flex;
|
|
1998
|
-
justify-content: space-between;
|
|
1999
|
-
}
|
|
2000
|
-
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
|
|
2001
|
-
width: 33.3%;
|
|
2002
|
-
height: 100%;
|
|
2003
1919
|
}*, :focus, :visited {
|
|
2004
1920
|
outline: none !important;
|
|
2005
1921
|
}
|
|
@@ -2081,6 +1997,27 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
2081
1997
|
.ios-fullscreen::cue {
|
|
2082
1998
|
visibility: visible !important;
|
|
2083
1999
|
font-size: 1em !important;
|
|
2000
|
+
}.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
|
|
2001
|
+
height: 0;
|
|
2002
|
+
}
|
|
2003
|
+
|
|
2004
|
+
.skip_time_plugin[data-skip-time] {
|
|
2005
|
+
position: absolute;
|
|
2006
|
+
width: 100%;
|
|
2007
|
+
height: calc(100% - 50px);
|
|
2008
|
+
z-index: 9998;
|
|
2009
|
+
background-color: transparent;
|
|
2010
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
2011
|
+
}
|
|
2012
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
|
|
2013
|
+
width: 100%;
|
|
2014
|
+
height: 100%;
|
|
2015
|
+
display: flex;
|
|
2016
|
+
justify-content: space-between;
|
|
2017
|
+
}
|
|
2018
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
|
|
2019
|
+
width: 33.3%;
|
|
2020
|
+
height: 100%;
|
|
2084
2021
|
}.player-logo[data-logo] {
|
|
2085
2022
|
position: absolute;
|
|
2086
2023
|
z-index: 2;
|
|
@@ -2090,13 +2027,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
2090
2027
|
|
|
2091
2028
|
.clappr-logo {
|
|
2092
2029
|
position: absolute;
|
|
2093
|
-
}.media-control-pip button {
|
|
2094
|
-
float: right;
|
|
2095
|
-
height: 40px;
|
|
2096
|
-
margin-right: 20px;
|
|
2097
|
-
}
|
|
2098
|
-
.media-control-pip button svg {
|
|
2099
|
-
height: 20px;
|
|
2100
2030
|
}.scrub-thumbnails {
|
|
2101
2031
|
position: absolute;
|
|
2102
2032
|
bottom: 52px;
|
|
@@ -2158,4 +2088,74 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
2158
2088
|
}
|
|
2159
2089
|
.scrub-thumbnails .backdrop .carousel img {
|
|
2160
2090
|
width: auto;
|
|
2091
|
+
}.media-control-skin-1[data-media-control-skin-1] .media-control-quality,
|
|
2092
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-audio-tracks {
|
|
2093
|
+
display: block;
|
|
2094
|
+
}
|
|
2095
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] {
|
|
2096
|
+
width: 40px;
|
|
2097
|
+
margin-top: 0;
|
|
2098
|
+
}
|
|
2099
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] button[data-subtitles-button] {
|
|
2100
|
+
display: flex;
|
|
2101
|
+
justify-content: center;
|
|
2102
|
+
padding: 0;
|
|
2103
|
+
align-items: center;
|
|
2104
|
+
}
|
|
2105
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] button[data-subtitles-button]:hover {
|
|
2106
|
+
color: white;
|
|
2107
|
+
}
|
|
2108
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul {
|
|
2109
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
2110
|
+
border: none;
|
|
2111
|
+
width: auto;
|
|
2112
|
+
transform: rotate(180deg);
|
|
2113
|
+
border-radius: 4px;
|
|
2114
|
+
bottom: 52px;
|
|
2115
|
+
margin-left: -28px;
|
|
2116
|
+
}
|
|
2117
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li {
|
|
2118
|
+
transform: rotate(-180deg);
|
|
2119
|
+
font-size: 16px;
|
|
2120
|
+
text-align: center;
|
|
2121
|
+
white-space: nowrap;
|
|
2122
|
+
height: 30px;
|
|
2123
|
+
}
|
|
2124
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li a {
|
|
2125
|
+
height: 30px;
|
|
2126
|
+
padding: 5px 10px;
|
|
2127
|
+
color: #fffffe;
|
|
2128
|
+
}
|
|
2129
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li a:hover {
|
|
2130
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
2131
|
+
}
|
|
2132
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li.current a {
|
|
2133
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
2134
|
+
}
|
|
2135
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li:first-child a {
|
|
2136
|
+
border-bottom-left-radius: 4px;
|
|
2137
|
+
border-bottom-right-radius: 4px;
|
|
2138
|
+
}
|
|
2139
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li:last-child a {
|
|
2140
|
+
border-top-left-radius: 4px;
|
|
2141
|
+
border-top-right-radius: 4px;
|
|
2142
|
+
}
|
|
2143
|
+
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] {
|
|
2144
|
+
height: 26px;
|
|
2145
|
+
line-height: 26px;
|
|
2146
|
+
bottom: 52px;
|
|
2147
|
+
border-radius: 3px;
|
|
2148
|
+
background-color: rgba(74, 74, 74, 0.7);
|
|
2149
|
+
}
|
|
2150
|
+
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span {
|
|
2151
|
+
letter-spacing: 0.8px;
|
|
2152
|
+
font-size: 14px;
|
|
2153
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
2154
|
+
}
|
|
2155
|
+
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-seek-time] {
|
|
2156
|
+
padding-left: 8px;
|
|
2157
|
+
padding-right: 8px;
|
|
2158
|
+
}
|
|
2159
|
+
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
|
|
2160
|
+
display: none !important;
|
|
2161
2161
|
}
|