@gcorevideo/player 2.20.20 → 2.20.22
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 +4 -2
- package/dist/index.css +539 -539
- package/dist/index.js +22 -13
- package/dist/plugins/index.css +569 -569
- package/dist/plugins/index.js +19 -12
- package/lib/playback/HTML5Video.d.ts.map +1 -1
- package/lib/playback/HTML5Video.js +4 -2
- 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/playback/HTML5Video.ts +4 -2
- 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/plugins/index.css
CHANGED
|
@@ -122,55 +122,118 @@
|
|
|
122
122
|
.gplayer-lite-btn::-moz-focus-inner {
|
|
123
123
|
border: 0;
|
|
124
124
|
padding: 0;
|
|
125
|
-
}.
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
background-color: transparent;
|
|
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
|
+
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
126
|
+
float: right;
|
|
127
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
137
128
|
}
|
|
138
|
-
.
|
|
129
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .button-gear {
|
|
130
|
+
height: 40px;
|
|
131
|
+
width: 40px;
|
|
132
|
+
padding-right: 20px;
|
|
133
|
+
}
|
|
134
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .button-gear svg {
|
|
135
|
+
height: 20px;
|
|
136
|
+
}
|
|
137
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
|
|
138
|
+
position: absolute;
|
|
139
|
+
right: 16px;
|
|
140
|
+
bottom: 52px;
|
|
139
141
|
display: none;
|
|
142
|
+
width: 250px;
|
|
143
|
+
min-height: 48px;
|
|
144
|
+
z-index: 9999;
|
|
145
|
+
border-radius: 4px;
|
|
140
146
|
}
|
|
141
|
-
.
|
|
142
|
-
|
|
147
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
|
|
148
|
+
padding: 8px 0;
|
|
149
|
+
}
|
|
150
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list svg {
|
|
151
|
+
float: left;
|
|
152
|
+
margin-right: 10px;
|
|
153
|
+
}
|
|
154
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
|
|
155
|
+
margin: 0;
|
|
156
|
+
text-align: left;
|
|
157
|
+
line-height: 22px;
|
|
158
|
+
padding: 5px 14px;
|
|
159
|
+
width: 250px;
|
|
160
|
+
font-size: 12px;
|
|
161
|
+
}
|
|
162
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_arrow-right-icon {
|
|
163
|
+
float: right;
|
|
164
|
+
margin-right: -14px;
|
|
165
|
+
}
|
|
166
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_value {
|
|
167
|
+
float: right;
|
|
168
|
+
margin-right: 8px;
|
|
169
|
+
}
|
|
170
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option svg {
|
|
171
|
+
height: 20px;
|
|
172
|
+
}*, :focus, :visited {
|
|
173
|
+
outline: none !important;
|
|
143
174
|
}
|
|
144
175
|
|
|
145
|
-
.
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
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;
|
|
176
|
+
.gear-wrapper .go-back {
|
|
177
|
+
font-weight: 600;
|
|
178
|
+
font-size: 14px;
|
|
179
|
+
line-height: 20px;
|
|
180
|
+
width: 100%;
|
|
181
|
+
text-align: left;
|
|
182
|
+
padding: 12px;
|
|
160
183
|
}
|
|
161
|
-
.
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
184
|
+
.gear-wrapper .go-back .arrow-left-icon {
|
|
185
|
+
float: left;
|
|
186
|
+
padding-top: 2px;
|
|
187
|
+
padding-right: 2px;
|
|
165
188
|
}
|
|
166
|
-
.
|
|
167
|
-
|
|
189
|
+
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
190
|
+
height: 16px;
|
|
168
191
|
}
|
|
169
|
-
.
|
|
170
|
-
|
|
192
|
+
.gear-wrapper ul.gear-sub-menu {
|
|
193
|
+
width: 100%;
|
|
194
|
+
list-style-type: none;
|
|
195
|
+
background-color: transparent;
|
|
196
|
+
min-width: 60px;
|
|
197
|
+
border-top: 2px solid rgb(36, 36, 36);
|
|
171
198
|
}
|
|
172
|
-
.
|
|
173
|
-
|
|
199
|
+
.gear-wrapper ul.gear-sub-menu li {
|
|
200
|
+
font-size: 12px;
|
|
201
|
+
text-align: left;
|
|
202
|
+
}
|
|
203
|
+
.gear-wrapper ul.gear-sub-menu li[data-title] {
|
|
204
|
+
background-color: #c3c2c2;
|
|
205
|
+
padding: 5px;
|
|
206
|
+
}
|
|
207
|
+
.gear-wrapper ul.gear-sub-menu li a {
|
|
208
|
+
display: block;
|
|
209
|
+
text-decoration: none;
|
|
210
|
+
height: 32px;
|
|
211
|
+
padding: 5px 10px;
|
|
212
|
+
line-height: 22px;
|
|
213
|
+
color: #fffffe;
|
|
214
|
+
}
|
|
215
|
+
.gear-wrapper ul.gear-sub-menu li a:hover {
|
|
216
|
+
color: white;
|
|
217
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
218
|
+
}
|
|
219
|
+
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
220
|
+
color: white;
|
|
221
|
+
text-decoration: none;
|
|
222
|
+
}
|
|
223
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
224
|
+
width: 30px;
|
|
225
|
+
height: 20px;
|
|
226
|
+
float: left;
|
|
227
|
+
display: block;
|
|
228
|
+
}
|
|
229
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
230
|
+
display: none;
|
|
231
|
+
}
|
|
232
|
+
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
233
|
+
display: inline;
|
|
234
|
+
}
|
|
235
|
+
.gear-wrapper svg {
|
|
236
|
+
height: 20px;
|
|
174
237
|
}*, :focus, :visited {
|
|
175
238
|
outline: none !important;
|
|
176
239
|
}
|
|
@@ -308,40 +371,6 @@
|
|
|
308
371
|
100% {
|
|
309
372
|
color: #B80000;
|
|
310
373
|
}
|
|
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;
|
|
345
374
|
}:root {
|
|
346
375
|
--primary-background-color: #000;
|
|
347
376
|
--secondary-background-color: #262626;
|
|
@@ -726,327 +755,67 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
726
755
|
}
|
|
727
756
|
}.clips.bar-container[data-seekbar] {
|
|
728
757
|
clip-path: url("#myClip");
|
|
729
|
-
}.
|
|
730
|
-
|
|
731
|
-
|
|
758
|
+
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
759
|
+
color: #CCCACA;
|
|
760
|
+
position: absolute;
|
|
761
|
+
top: 0;
|
|
762
|
+
height: 100%;
|
|
763
|
+
width: 100%;
|
|
764
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
765
|
+
z-index: 2000;
|
|
766
|
+
display: flex;
|
|
767
|
+
flex-direction: column;
|
|
768
|
+
justify-content: center;
|
|
732
769
|
}
|
|
733
|
-
.
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
770
|
+
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
771
|
+
font-size: 14px;
|
|
772
|
+
color: #CCCACA;
|
|
773
|
+
margin-top: 45px;
|
|
737
774
|
}
|
|
738
|
-
.
|
|
739
|
-
|
|
775
|
+
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
776
|
+
font-weight: bold;
|
|
777
|
+
line-height: 30px;
|
|
778
|
+
font-size: 18px;
|
|
740
779
|
}
|
|
741
|
-
.
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
bottom: 52px;
|
|
745
|
-
display: none;
|
|
746
|
-
width: 250px;
|
|
747
|
-
min-height: 48px;
|
|
748
|
-
z-index: 9999;
|
|
749
|
-
border-radius: 4px;
|
|
780
|
+
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
781
|
+
width: 90%;
|
|
782
|
+
margin: 0 auto;
|
|
750
783
|
}
|
|
751
|
-
.
|
|
752
|
-
|
|
784
|
+
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
785
|
+
font-size: 13px;
|
|
786
|
+
margin-top: 15px;
|
|
753
787
|
}
|
|
754
|
-
.
|
|
755
|
-
|
|
756
|
-
|
|
788
|
+
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
789
|
+
cursor: pointer;
|
|
790
|
+
width: 30px;
|
|
791
|
+
margin: 15px auto 0;
|
|
792
|
+
}.level-disabled {
|
|
793
|
+
opacity: 0.5;
|
|
794
|
+
pointer-events: none;
|
|
795
|
+
}.context-menu {
|
|
796
|
+
z-index: 999;
|
|
797
|
+
position: absolute;
|
|
798
|
+
top: 0;
|
|
799
|
+
left: 0;
|
|
800
|
+
text-align: center;
|
|
757
801
|
}
|
|
758
|
-
.
|
|
759
|
-
|
|
760
|
-
text-align: left;
|
|
761
|
-
line-height: 22px;
|
|
762
|
-
padding: 5px 14px;
|
|
763
|
-
width: 250px;
|
|
802
|
+
.context-menu .context-menu-list {
|
|
803
|
+
font-family: "Proxima Nova", sans-serif;
|
|
764
804
|
font-size: 12px;
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option svg {
|
|
775
|
-
height: 20px;
|
|
776
|
-
}*, :focus, :visited {
|
|
777
|
-
outline: none !important;
|
|
778
|
-
}
|
|
779
|
-
|
|
780
|
-
.gear-wrapper .go-back {
|
|
781
|
-
font-weight: 600;
|
|
782
|
-
font-size: 14px;
|
|
783
|
-
line-height: 20px;
|
|
784
|
-
width: 100%;
|
|
785
|
-
text-align: left;
|
|
786
|
-
padding: 12px;
|
|
787
|
-
}
|
|
788
|
-
.gear-wrapper .go-back .arrow-left-icon {
|
|
789
|
-
float: left;
|
|
790
|
-
padding-top: 2px;
|
|
791
|
-
padding-right: 2px;
|
|
792
|
-
}
|
|
793
|
-
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
794
|
-
height: 16px;
|
|
795
|
-
}
|
|
796
|
-
.gear-wrapper ul.gear-sub-menu {
|
|
797
|
-
width: 100%;
|
|
798
|
-
list-style-type: none;
|
|
799
|
-
background-color: transparent;
|
|
800
|
-
min-width: 60px;
|
|
801
|
-
border-top: 2px solid rgb(36, 36, 36);
|
|
802
|
-
}
|
|
803
|
-
.gear-wrapper ul.gear-sub-menu li {
|
|
804
|
-
font-size: 12px;
|
|
805
|
-
text-align: left;
|
|
806
|
-
}
|
|
807
|
-
.gear-wrapper ul.gear-sub-menu li[data-title] {
|
|
808
|
-
background-color: #c3c2c2;
|
|
809
|
-
padding: 5px;
|
|
810
|
-
}
|
|
811
|
-
.gear-wrapper ul.gear-sub-menu li a {
|
|
812
|
-
display: block;
|
|
813
|
-
text-decoration: none;
|
|
814
|
-
height: 32px;
|
|
815
|
-
padding: 5px 10px;
|
|
816
|
-
line-height: 22px;
|
|
817
|
-
color: #fffffe;
|
|
818
|
-
}
|
|
819
|
-
.gear-wrapper ul.gear-sub-menu li a:hover {
|
|
820
|
-
color: white;
|
|
821
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
822
|
-
}
|
|
823
|
-
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
824
|
-
color: white;
|
|
825
|
-
text-decoration: none;
|
|
826
|
-
}
|
|
827
|
-
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
828
|
-
width: 30px;
|
|
829
|
-
height: 20px;
|
|
830
|
-
float: left;
|
|
831
|
-
display: block;
|
|
832
|
-
}
|
|
833
|
-
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
834
|
-
display: none;
|
|
835
|
-
}
|
|
836
|
-
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
837
|
-
display: inline;
|
|
838
|
-
}
|
|
839
|
-
.gear-wrapper svg {
|
|
840
|
-
height: 20px;
|
|
841
|
-
}*, :focus, :visited {
|
|
842
|
-
outline: none !important;
|
|
843
|
-
}
|
|
844
|
-
|
|
845
|
-
.multicamera[data-multicamera] {
|
|
846
|
-
float: right;
|
|
847
|
-
margin-top: 4px;
|
|
848
|
-
position: relative;
|
|
849
|
-
margin-right: 20px;
|
|
850
|
-
width: 20px;
|
|
851
|
-
}
|
|
852
|
-
.multicamera[data-multicamera] button {
|
|
853
|
-
background-color: transparent;
|
|
854
|
-
color: #fff;
|
|
855
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
856
|
-
-webkit-font-smoothing: antialiased;
|
|
857
|
-
border: none;
|
|
858
|
-
font-size: 14px;
|
|
859
|
-
padding: 0;
|
|
860
|
-
}
|
|
861
|
-
.multicamera[data-multicamera] button svg {
|
|
862
|
-
height: 20px;
|
|
863
|
-
position: relative;
|
|
864
|
-
margin-top: 6px;
|
|
865
|
-
}
|
|
866
|
-
.multicamera[data-multicamera] button:hover {
|
|
867
|
-
color: #c9c9c9;
|
|
868
|
-
}
|
|
869
|
-
.multicamera[data-multicamera] button.changing {
|
|
870
|
-
animation: pulse 0.5s infinite alternate;
|
|
871
|
-
}
|
|
872
|
-
.multicamera[data-multicamera] button span.quality-arrow {
|
|
873
|
-
width: 9px;
|
|
874
|
-
height: 6px;
|
|
875
|
-
margin-top: 11px;
|
|
876
|
-
margin-left: 5px;
|
|
877
|
-
}
|
|
878
|
-
.multicamera[data-multicamera] > ul {
|
|
879
|
-
padding: 6px 0;
|
|
880
|
-
right: -24px;
|
|
881
|
-
width: 245px;
|
|
882
|
-
list-style-type: none;
|
|
883
|
-
position: absolute;
|
|
884
|
-
bottom: 48px;
|
|
885
|
-
border-radius: 4px;
|
|
886
|
-
display: none;
|
|
887
|
-
background-color: rgba(74, 74, 74, 0.9);
|
|
888
|
-
}
|
|
889
|
-
.multicamera[data-multicamera] > ul::after {
|
|
890
|
-
content: "";
|
|
891
|
-
position: absolute;
|
|
892
|
-
top: 100%;
|
|
893
|
-
left: 85%;
|
|
894
|
-
margin-left: -10px;
|
|
895
|
-
width: 0;
|
|
896
|
-
height: 0;
|
|
897
|
-
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
898
|
-
border-right: 10px solid transparent;
|
|
899
|
-
border-left: 10px solid transparent;
|
|
900
|
-
}
|
|
901
|
-
.multicamera[data-multicamera] li {
|
|
902
|
-
font-size: 10px;
|
|
903
|
-
cursor: pointer;
|
|
904
|
-
}
|
|
905
|
-
.multicamera[data-multicamera] li .multicamera-item {
|
|
906
|
-
display: flex;
|
|
907
|
-
padding: 10px 0;
|
|
908
|
-
justify-content: center;
|
|
909
|
-
position: relative;
|
|
910
|
-
}
|
|
911
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
912
|
-
pointer-events: none;
|
|
913
|
-
}
|
|
914
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
915
|
-
opacity: 0.5;
|
|
916
|
-
}
|
|
917
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
918
|
-
opacity: 0.5;
|
|
919
|
-
}
|
|
920
|
-
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
921
|
-
background-color: rgba(0, 0, 0, 0);
|
|
922
|
-
}
|
|
923
|
-
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
924
|
-
background-color: rgba(0, 0, 0, 0.3);
|
|
925
|
-
}
|
|
926
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
927
|
-
width: 80px;
|
|
928
|
-
height: 60px;
|
|
929
|
-
}
|
|
930
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
|
|
931
|
-
width: 80px;
|
|
932
|
-
height: 60px;
|
|
933
|
-
}
|
|
934
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
935
|
-
width: 120px;
|
|
936
|
-
text-align: left;
|
|
937
|
-
margin-left: 15px;
|
|
938
|
-
}
|
|
939
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
940
|
-
width: 120px;
|
|
941
|
-
height: 20px;
|
|
942
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
943
|
-
font-size: 14px;
|
|
944
|
-
font-weight: normal;
|
|
945
|
-
font-style: normal;
|
|
946
|
-
font-stretch: normal;
|
|
947
|
-
line-height: 1.43;
|
|
948
|
-
letter-spacing: normal;
|
|
949
|
-
text-align: left;
|
|
950
|
-
color: #fff;
|
|
951
|
-
text-overflow: ellipsis;
|
|
952
|
-
overflow: hidden;
|
|
953
|
-
}
|
|
954
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
955
|
-
opacity: 0.6;
|
|
956
|
-
}
|
|
957
|
-
.multicamera[data-multicamera] li[data-title] {
|
|
958
|
-
background-color: #c3c2c2;
|
|
959
|
-
padding: 5px;
|
|
960
|
-
}
|
|
961
|
-
.multicamera[data-multicamera] li a {
|
|
962
|
-
color: #444;
|
|
963
|
-
padding: 2px 10px;
|
|
964
|
-
display: block;
|
|
965
|
-
text-decoration: none;
|
|
966
|
-
}
|
|
967
|
-
.multicamera[data-multicamera] li a:hover {
|
|
968
|
-
background-color: #555;
|
|
969
|
-
color: white;
|
|
970
|
-
}
|
|
971
|
-
.multicamera[data-multicamera] li a:hover a {
|
|
972
|
-
color: white;
|
|
973
|
-
text-decoration: none;
|
|
974
|
-
}
|
|
975
|
-
.multicamera[data-multicamera] li.current a {
|
|
976
|
-
color: #f00;
|
|
977
|
-
}
|
|
978
|
-
|
|
979
|
-
@keyframes pulse {
|
|
980
|
-
0% {
|
|
981
|
-
color: #fff;
|
|
982
|
-
}
|
|
983
|
-
50% {
|
|
984
|
-
color: #ff0101;
|
|
985
|
-
}
|
|
986
|
-
100% {
|
|
987
|
-
color: #B80000;
|
|
988
|
-
}
|
|
989
|
-
}.context-menu {
|
|
990
|
-
z-index: 999;
|
|
991
|
-
position: absolute;
|
|
992
|
-
top: 0;
|
|
993
|
-
left: 0;
|
|
994
|
-
text-align: center;
|
|
995
|
-
}
|
|
996
|
-
.context-menu .context-menu-list {
|
|
997
|
-
font-family: "Proxima Nova", sans-serif;
|
|
998
|
-
font-size: 12px;
|
|
999
|
-
line-height: 12px;
|
|
1000
|
-
list-style-type: none;
|
|
1001
|
-
text-align: left;
|
|
1002
|
-
padding: 5px;
|
|
1003
|
-
margin-left: auto;
|
|
1004
|
-
margin-right: auto;
|
|
1005
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
1006
|
-
border: 1px solid #666;
|
|
1007
|
-
border-radius: 4px;
|
|
805
|
+
line-height: 12px;
|
|
806
|
+
list-style-type: none;
|
|
807
|
+
text-align: left;
|
|
808
|
+
padding: 5px;
|
|
809
|
+
margin-left: auto;
|
|
810
|
+
margin-right: auto;
|
|
811
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
812
|
+
border: 1px solid #666;
|
|
813
|
+
border-radius: 4px;
|
|
1008
814
|
}
|
|
1009
815
|
.context-menu .context-menu-list .context-menu-list-item {
|
|
1010
816
|
color: white;
|
|
1011
817
|
padding: 5px;
|
|
1012
818
|
cursor: pointer;
|
|
1013
|
-
}.level-disabled {
|
|
1014
|
-
opacity: 0.5;
|
|
1015
|
-
pointer-events: none;
|
|
1016
|
-
}.player-poster[data-poster] {
|
|
1017
|
-
display: flex;
|
|
1018
|
-
justify-content: center;
|
|
1019
|
-
align-items: center;
|
|
1020
|
-
position: absolute;
|
|
1021
|
-
height: 100%;
|
|
1022
|
-
width: 100%;
|
|
1023
|
-
z-index: 998;
|
|
1024
|
-
top: 0;
|
|
1025
|
-
left: 0;
|
|
1026
|
-
background-color: #000;
|
|
1027
|
-
background-size: cover;
|
|
1028
|
-
background-repeat: no-repeat;
|
|
1029
|
-
background-position: 50% 50%;
|
|
1030
|
-
}
|
|
1031
|
-
.player-poster[data-poster].clickable {
|
|
1032
|
-
cursor: pointer;
|
|
1033
|
-
}
|
|
1034
|
-
.player-poster[data-poster]:hover .play-wrapper[data-poster] {
|
|
1035
|
-
opacity: 1;
|
|
1036
|
-
}
|
|
1037
|
-
.player-poster[data-poster] .play-wrapper[data-poster] {
|
|
1038
|
-
width: 100%;
|
|
1039
|
-
height: 25%;
|
|
1040
|
-
margin: 0 auto;
|
|
1041
|
-
opacity: 0.75;
|
|
1042
|
-
transition: opacity 0.1s ease;
|
|
1043
|
-
}
|
|
1044
|
-
.player-poster[data-poster] .play-wrapper[data-poster] svg {
|
|
1045
|
-
height: 100%;
|
|
1046
|
-
display: inline;
|
|
1047
|
-
}
|
|
1048
|
-
.player-poster[data-poster] .play-wrapper[data-poster] svg path {
|
|
1049
|
-
fill: #fff;
|
|
1050
819
|
}.dvr-controls[data-dvr-controls] {
|
|
1051
820
|
display: inline-block;
|
|
1052
821
|
float: left;
|
|
@@ -1150,109 +919,89 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1150
919
|
|
|
1151
920
|
.media-control.live[data-media-control] .media-control-layer[data-controls] .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
|
|
1152
921
|
background-color: #ff0101;
|
|
1153
|
-
}.
|
|
922
|
+
}.big-mute-icon-wrapper[data-big-mute] {
|
|
1154
923
|
position: absolute;
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
924
|
+
z-index: 9998;
|
|
925
|
+
background-color: transparent;
|
|
926
|
+
display: flex;
|
|
927
|
+
justify-content: center;
|
|
928
|
+
width: 100%;
|
|
929
|
+
height: calc(100% - 50px);
|
|
930
|
+
margin: 0 auto;
|
|
931
|
+
opacity: 0.75;
|
|
1163
932
|
transition: opacity 0.1s ease;
|
|
933
|
+
pointer-events: auto;
|
|
1164
934
|
}
|
|
1165
|
-
.
|
|
1166
|
-
|
|
1167
|
-
}
|
|
1168
|
-
.seek-time[data-seek-time] [data-seek-time] {
|
|
1169
|
-
display: inline-block;
|
|
1170
|
-
color: white;
|
|
1171
|
-
font-size: 10px;
|
|
1172
|
-
padding-left: 7px;
|
|
1173
|
-
padding-right: 7px;
|
|
1174
|
-
vertical-align: top;
|
|
1175
|
-
}
|
|
1176
|
-
.seek-time[data-seek-time] [data-duration] {
|
|
1177
|
-
display: inline-block;
|
|
1178
|
-
color: rgba(255, 255, 255, 0.5);
|
|
1179
|
-
font-size: 10px;
|
|
1180
|
-
padding-right: 7px;
|
|
1181
|
-
vertical-align: top;
|
|
1182
|
-
}
|
|
1183
|
-
.seek-time[data-seek-time] [data-duration]::before {
|
|
1184
|
-
content: "|";
|
|
1185
|
-
margin-right: 7px;
|
|
1186
|
-
}.media-control-skin-1[data-media-control-skin-1] .media-control-quality,
|
|
1187
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-audio-tracks {
|
|
1188
|
-
display: block;
|
|
935
|
+
.big-mute-icon-wrapper[data-big-mute].hide {
|
|
936
|
+
display: none;
|
|
1189
937
|
}
|
|
1190
|
-
.
|
|
1191
|
-
|
|
1192
|
-
margin-top: 0;
|
|
938
|
+
.big-mute-icon-wrapper[data-big-mute]:hover {
|
|
939
|
+
cursor: pointer;
|
|
1193
940
|
}
|
|
1194
|
-
|
|
941
|
+
|
|
942
|
+
.big-mute-icon[data-big-mute-icon] {
|
|
1195
943
|
display: flex;
|
|
1196
|
-
justify-content: center;
|
|
1197
|
-
padding: 0;
|
|
1198
944
|
align-items: center;
|
|
945
|
+
justify-content: center;
|
|
946
|
+
align-self: center;
|
|
947
|
+
width: 120px;
|
|
948
|
+
height: 120px;
|
|
949
|
+
border: 2px solid white;
|
|
950
|
+
border-radius: 50%;
|
|
951
|
+
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
952
|
+
filter: alpha(opacity=60);
|
|
953
|
+
opacity: 1;
|
|
954
|
+
box-shadow: 0 0 1px 0 white;
|
|
955
|
+
background: rgba(240, 243, 247, 0.9411764706);
|
|
956
|
+
z-index: 10000;
|
|
1199
957
|
}
|
|
1200
|
-
.
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
1205
|
-
border: none;
|
|
1206
|
-
width: auto;
|
|
1207
|
-
transform: rotate(180deg);
|
|
1208
|
-
border-radius: 4px;
|
|
1209
|
-
bottom: 52px;
|
|
1210
|
-
margin-left: -28px;
|
|
1211
|
-
}
|
|
1212
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li {
|
|
1213
|
-
transform: rotate(-180deg);
|
|
1214
|
-
font-size: 16px;
|
|
1215
|
-
text-align: center;
|
|
1216
|
-
white-space: nowrap;
|
|
1217
|
-
height: 30px;
|
|
1218
|
-
}
|
|
1219
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li a {
|
|
1220
|
-
height: 30px;
|
|
1221
|
-
padding: 5px 10px;
|
|
1222
|
-
color: #fffffe;
|
|
1223
|
-
}
|
|
1224
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li a:hover {
|
|
1225
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
958
|
+
.big-mute-icon[data-big-mute-icon] svg {
|
|
959
|
+
margin-left: 5px;
|
|
960
|
+
width: 80px;
|
|
961
|
+
height: 80px;
|
|
1226
962
|
}
|
|
1227
|
-
.
|
|
1228
|
-
|
|
963
|
+
.big-mute-icon[data-big-mute-icon] svg path {
|
|
964
|
+
fill: #1f1e1e !important;
|
|
1229
965
|
}
|
|
1230
|
-
.
|
|
1231
|
-
|
|
1232
|
-
border-bottom-right-radius: 4px;
|
|
966
|
+
.big-mute-icon[data-big-mute-icon]:hover {
|
|
967
|
+
background: rgba(240, 243, 247, 0.8784313725);
|
|
1233
968
|
}
|
|
1234
|
-
.
|
|
1235
|
-
|
|
1236
|
-
|
|
969
|
+
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
970
|
+
fill: #151515 !important;
|
|
971
|
+
}.player-poster[data-poster] {
|
|
972
|
+
display: flex;
|
|
973
|
+
justify-content: center;
|
|
974
|
+
align-items: center;
|
|
975
|
+
position: absolute;
|
|
976
|
+
height: 100%;
|
|
977
|
+
width: 100%;
|
|
978
|
+
z-index: 998;
|
|
979
|
+
top: 0;
|
|
980
|
+
left: 0;
|
|
981
|
+
background-color: #000;
|
|
982
|
+
background-size: cover;
|
|
983
|
+
background-repeat: no-repeat;
|
|
984
|
+
background-position: 50% 50%;
|
|
1237
985
|
}
|
|
1238
|
-
.
|
|
1239
|
-
|
|
1240
|
-
line-height: 26px;
|
|
1241
|
-
bottom: 52px;
|
|
1242
|
-
border-radius: 3px;
|
|
1243
|
-
background-color: rgba(74, 74, 74, 0.7);
|
|
986
|
+
.player-poster[data-poster].clickable {
|
|
987
|
+
cursor: pointer;
|
|
1244
988
|
}
|
|
1245
|
-
.
|
|
1246
|
-
|
|
1247
|
-
font-size: 14px;
|
|
1248
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
989
|
+
.player-poster[data-poster]:hover .play-wrapper[data-poster] {
|
|
990
|
+
opacity: 1;
|
|
1249
991
|
}
|
|
1250
|
-
.
|
|
1251
|
-
|
|
1252
|
-
|
|
992
|
+
.player-poster[data-poster] .play-wrapper[data-poster] {
|
|
993
|
+
width: 100%;
|
|
994
|
+
height: 25%;
|
|
995
|
+
margin: 0 auto;
|
|
996
|
+
opacity: 0.75;
|
|
997
|
+
transition: opacity 0.1s ease;
|
|
1253
998
|
}
|
|
1254
|
-
.
|
|
1255
|
-
|
|
999
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg {
|
|
1000
|
+
height: 100%;
|
|
1001
|
+
display: inline;
|
|
1002
|
+
}
|
|
1003
|
+
.player-poster[data-poster] .play-wrapper[data-poster] svg path {
|
|
1004
|
+
fill: #fff;
|
|
1256
1005
|
}[data-player] {
|
|
1257
1006
|
--bottom-panel: 40px;
|
|
1258
1007
|
}
|
|
@@ -1858,6 +1607,83 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1858
1607
|
}
|
|
1859
1608
|
.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 {
|
|
1860
1609
|
transform: scaleY(1.5);
|
|
1610
|
+
}.media-control-pip button {
|
|
1611
|
+
float: right;
|
|
1612
|
+
height: 40px;
|
|
1613
|
+
margin-right: 20px;
|
|
1614
|
+
}
|
|
1615
|
+
.media-control-pip button svg {
|
|
1616
|
+
height: 20px;
|
|
1617
|
+
}.media-control-skin-1[data-media-control-skin-1] .media-control-quality,
|
|
1618
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-audio-tracks {
|
|
1619
|
+
display: block;
|
|
1620
|
+
}
|
|
1621
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] {
|
|
1622
|
+
width: 40px;
|
|
1623
|
+
margin-top: 0;
|
|
1624
|
+
}
|
|
1625
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] button[data-subtitles-button] {
|
|
1626
|
+
display: flex;
|
|
1627
|
+
justify-content: center;
|
|
1628
|
+
padding: 0;
|
|
1629
|
+
align-items: center;
|
|
1630
|
+
}
|
|
1631
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] button[data-subtitles-button]:hover {
|
|
1632
|
+
color: white;
|
|
1633
|
+
}
|
|
1634
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul {
|
|
1635
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
1636
|
+
border: none;
|
|
1637
|
+
width: auto;
|
|
1638
|
+
transform: rotate(180deg);
|
|
1639
|
+
border-radius: 4px;
|
|
1640
|
+
bottom: 52px;
|
|
1641
|
+
margin-left: -28px;
|
|
1642
|
+
}
|
|
1643
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li {
|
|
1644
|
+
transform: rotate(-180deg);
|
|
1645
|
+
font-size: 16px;
|
|
1646
|
+
text-align: center;
|
|
1647
|
+
white-space: nowrap;
|
|
1648
|
+
height: 30px;
|
|
1649
|
+
}
|
|
1650
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li a {
|
|
1651
|
+
height: 30px;
|
|
1652
|
+
padding: 5px 10px;
|
|
1653
|
+
color: #fffffe;
|
|
1654
|
+
}
|
|
1655
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li a:hover {
|
|
1656
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
1657
|
+
}
|
|
1658
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li.current a {
|
|
1659
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
1660
|
+
}
|
|
1661
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li:first-child a {
|
|
1662
|
+
border-bottom-left-radius: 4px;
|
|
1663
|
+
border-bottom-right-radius: 4px;
|
|
1664
|
+
}
|
|
1665
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-subtitles .subtitles[data-subtitles] ul li:last-child a {
|
|
1666
|
+
border-top-left-radius: 4px;
|
|
1667
|
+
border-top-right-radius: 4px;
|
|
1668
|
+
}
|
|
1669
|
+
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] {
|
|
1670
|
+
height: 26px;
|
|
1671
|
+
line-height: 26px;
|
|
1672
|
+
bottom: 52px;
|
|
1673
|
+
border-radius: 3px;
|
|
1674
|
+
background-color: rgba(74, 74, 74, 0.7);
|
|
1675
|
+
}
|
|
1676
|
+
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span {
|
|
1677
|
+
letter-spacing: 0.8px;
|
|
1678
|
+
font-size: 14px;
|
|
1679
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1680
|
+
}
|
|
1681
|
+
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-seek-time] {
|
|
1682
|
+
padding-left: 8px;
|
|
1683
|
+
padding-right: 8px;
|
|
1684
|
+
}
|
|
1685
|
+
.media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
|
|
1686
|
+
display: none !important;
|
|
1861
1687
|
}.share_plugin[data-share] {
|
|
1862
1688
|
pointer-events: auto;
|
|
1863
1689
|
z-index: 5;
|
|
@@ -1921,54 +1747,207 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1921
1747
|
}
|
|
1922
1748
|
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
1923
1749
|
text-align: left;
|
|
1924
|
-
font-size: 14px;
|
|
1925
|
-
padding: 5px;
|
|
1750
|
+
font-size: 14px;
|
|
1751
|
+
padding: 5px;
|
|
1752
|
+
}
|
|
1753
|
+
.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 {
|
|
1754
|
+
overflow: hidden;
|
|
1755
|
+
text-overflow: ellipsis;
|
|
1756
|
+
color: #818181;
|
|
1757
|
+
border: solid 1px #d3d3d3;
|
|
1758
|
+
width: calc(100% - 10px);
|
|
1759
|
+
padding: 5px;
|
|
1760
|
+
}
|
|
1761
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
1762
|
+
max-height: 90px;
|
|
1763
|
+
resize: none;
|
|
1764
|
+
}
|
|
1765
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
1766
|
+
width: 32px;
|
|
1767
|
+
display: inline-block;
|
|
1768
|
+
margin-right: 5px;
|
|
1769
|
+
cursor: pointer;
|
|
1770
|
+
}*, :focus, :visited {
|
|
1771
|
+
outline: none !important;
|
|
1772
|
+
}
|
|
1773
|
+
|
|
1774
|
+
.multicamera[data-multicamera] {
|
|
1775
|
+
float: right;
|
|
1776
|
+
margin-top: 4px;
|
|
1777
|
+
position: relative;
|
|
1778
|
+
margin-right: 20px;
|
|
1779
|
+
width: 20px;
|
|
1780
|
+
}
|
|
1781
|
+
.multicamera[data-multicamera] button {
|
|
1782
|
+
background-color: transparent;
|
|
1783
|
+
color: #fff;
|
|
1784
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1785
|
+
-webkit-font-smoothing: antialiased;
|
|
1786
|
+
border: none;
|
|
1787
|
+
font-size: 14px;
|
|
1788
|
+
padding: 0;
|
|
1789
|
+
}
|
|
1790
|
+
.multicamera[data-multicamera] button svg {
|
|
1791
|
+
height: 20px;
|
|
1792
|
+
position: relative;
|
|
1793
|
+
margin-top: 6px;
|
|
1794
|
+
}
|
|
1795
|
+
.multicamera[data-multicamera] button:hover {
|
|
1796
|
+
color: #c9c9c9;
|
|
1797
|
+
}
|
|
1798
|
+
.multicamera[data-multicamera] button.changing {
|
|
1799
|
+
animation: pulse 0.5s infinite alternate;
|
|
1800
|
+
}
|
|
1801
|
+
.multicamera[data-multicamera] button span.quality-arrow {
|
|
1802
|
+
width: 9px;
|
|
1803
|
+
height: 6px;
|
|
1804
|
+
margin-top: 11px;
|
|
1805
|
+
margin-left: 5px;
|
|
1806
|
+
}
|
|
1807
|
+
.multicamera[data-multicamera] > ul {
|
|
1808
|
+
padding: 6px 0;
|
|
1809
|
+
right: -24px;
|
|
1810
|
+
width: 245px;
|
|
1811
|
+
list-style-type: none;
|
|
1812
|
+
position: absolute;
|
|
1813
|
+
bottom: 48px;
|
|
1814
|
+
border-radius: 4px;
|
|
1815
|
+
display: none;
|
|
1816
|
+
background-color: rgba(74, 74, 74, 0.9);
|
|
1817
|
+
}
|
|
1818
|
+
.multicamera[data-multicamera] > ul::after {
|
|
1819
|
+
content: "";
|
|
1820
|
+
position: absolute;
|
|
1821
|
+
top: 100%;
|
|
1822
|
+
left: 85%;
|
|
1823
|
+
margin-left: -10px;
|
|
1824
|
+
width: 0;
|
|
1825
|
+
height: 0;
|
|
1826
|
+
border-top: 10px solid rgba(74, 74, 74, 0.9);
|
|
1827
|
+
border-right: 10px solid transparent;
|
|
1828
|
+
border-left: 10px solid transparent;
|
|
1829
|
+
}
|
|
1830
|
+
.multicamera[data-multicamera] li {
|
|
1831
|
+
font-size: 10px;
|
|
1832
|
+
cursor: pointer;
|
|
1833
|
+
}
|
|
1834
|
+
.multicamera[data-multicamera] li .multicamera-item {
|
|
1835
|
+
display: flex;
|
|
1836
|
+
padding: 10px 0;
|
|
1837
|
+
justify-content: center;
|
|
1838
|
+
position: relative;
|
|
1839
|
+
}
|
|
1840
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
|
|
1841
|
+
pointer-events: none;
|
|
1842
|
+
}
|
|
1843
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
|
|
1844
|
+
opacity: 0.5;
|
|
1845
|
+
}
|
|
1846
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
|
|
1847
|
+
opacity: 0.5;
|
|
1848
|
+
}
|
|
1849
|
+
.multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
|
|
1850
|
+
background-color: rgba(0, 0, 0, 0);
|
|
1851
|
+
}
|
|
1852
|
+
.multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
|
|
1853
|
+
background-color: rgba(0, 0, 0, 0.3);
|
|
1854
|
+
}
|
|
1855
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
|
|
1856
|
+
width: 80px;
|
|
1857
|
+
height: 60px;
|
|
1858
|
+
}
|
|
1859
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
|
|
1860
|
+
width: 80px;
|
|
1861
|
+
height: 60px;
|
|
1862
|
+
}
|
|
1863
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text {
|
|
1864
|
+
width: 120px;
|
|
1865
|
+
text-align: left;
|
|
1866
|
+
margin-left: 15px;
|
|
1926
1867
|
}
|
|
1927
|
-
.
|
|
1928
|
-
|
|
1868
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1869
|
+
width: 120px;
|
|
1870
|
+
height: 20px;
|
|
1871
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1872
|
+
font-size: 14px;
|
|
1873
|
+
font-weight: normal;
|
|
1874
|
+
font-style: normal;
|
|
1875
|
+
font-stretch: normal;
|
|
1876
|
+
line-height: 1.43;
|
|
1877
|
+
letter-spacing: normal;
|
|
1878
|
+
text-align: left;
|
|
1879
|
+
color: #fff;
|
|
1929
1880
|
text-overflow: ellipsis;
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1881
|
+
overflow: hidden;
|
|
1882
|
+
}
|
|
1883
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1884
|
+
opacity: 0.6;
|
|
1885
|
+
}
|
|
1886
|
+
.multicamera[data-multicamera] li[data-title] {
|
|
1887
|
+
background-color: #c3c2c2;
|
|
1933
1888
|
padding: 5px;
|
|
1934
1889
|
}
|
|
1935
|
-
.
|
|
1936
|
-
|
|
1937
|
-
|
|
1890
|
+
.multicamera[data-multicamera] li a {
|
|
1891
|
+
color: #444;
|
|
1892
|
+
padding: 2px 10px;
|
|
1893
|
+
display: block;
|
|
1894
|
+
text-decoration: none;
|
|
1938
1895
|
}
|
|
1939
|
-
.
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
margin-right: 5px;
|
|
1943
|
-
cursor: pointer;
|
|
1944
|
-
}.media-control-pip button {
|
|
1945
|
-
float: right;
|
|
1946
|
-
height: 40px;
|
|
1947
|
-
margin-right: 20px;
|
|
1896
|
+
.multicamera[data-multicamera] li a:hover {
|
|
1897
|
+
background-color: #555;
|
|
1898
|
+
color: white;
|
|
1948
1899
|
}
|
|
1949
|
-
.
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1900
|
+
.multicamera[data-multicamera] li a:hover a {
|
|
1901
|
+
color: white;
|
|
1902
|
+
text-decoration: none;
|
|
1903
|
+
}
|
|
1904
|
+
.multicamera[data-multicamera] li.current a {
|
|
1905
|
+
color: #f00;
|
|
1953
1906
|
}
|
|
1954
1907
|
|
|
1955
|
-
|
|
1908
|
+
@keyframes pulse {
|
|
1909
|
+
0% {
|
|
1910
|
+
color: #fff;
|
|
1911
|
+
}
|
|
1912
|
+
50% {
|
|
1913
|
+
color: #ff0101;
|
|
1914
|
+
}
|
|
1915
|
+
100% {
|
|
1916
|
+
color: #B80000;
|
|
1917
|
+
}
|
|
1918
|
+
}.seek-time[data-seek-time] {
|
|
1956
1919
|
position: absolute;
|
|
1957
|
-
|
|
1958
|
-
height:
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1920
|
+
white-space: nowrap;
|
|
1921
|
+
height: 20px;
|
|
1922
|
+
line-height: 20px;
|
|
1923
|
+
font-size: 0;
|
|
1924
|
+
left: -100%;
|
|
1925
|
+
bottom: 55px;
|
|
1926
|
+
background-color: rgba(2, 2, 2, 0.5);
|
|
1927
|
+
z-index: 9999;
|
|
1928
|
+
transition: opacity 0.1s ease;
|
|
1962
1929
|
}
|
|
1963
|
-
.
|
|
1964
|
-
|
|
1965
|
-
height: 100%;
|
|
1966
|
-
display: flex;
|
|
1967
|
-
justify-content: space-between;
|
|
1930
|
+
.seek-time[data-seek-time].hidden[data-seek-time] {
|
|
1931
|
+
opacity: 0;
|
|
1968
1932
|
}
|
|
1969
|
-
.
|
|
1970
|
-
|
|
1971
|
-
|
|
1933
|
+
.seek-time[data-seek-time] [data-seek-time] {
|
|
1934
|
+
display: inline-block;
|
|
1935
|
+
color: white;
|
|
1936
|
+
font-size: 10px;
|
|
1937
|
+
padding-left: 7px;
|
|
1938
|
+
padding-right: 7px;
|
|
1939
|
+
vertical-align: top;
|
|
1940
|
+
}
|
|
1941
|
+
.seek-time[data-seek-time] [data-duration] {
|
|
1942
|
+
display: inline-block;
|
|
1943
|
+
color: rgba(255, 255, 255, 0.5);
|
|
1944
|
+
font-size: 10px;
|
|
1945
|
+
padding-right: 7px;
|
|
1946
|
+
vertical-align: top;
|
|
1947
|
+
}
|
|
1948
|
+
.seek-time[data-seek-time] [data-duration]::before {
|
|
1949
|
+
content: "|";
|
|
1950
|
+
margin-right: 7px;
|
|
1972
1951
|
}.spinner-three-bounce[data-spinner] {
|
|
1973
1952
|
position: absolute;
|
|
1974
1953
|
width: 70px;
|
|
@@ -2007,6 +1986,88 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
2007
1986
|
40% {
|
|
2008
1987
|
transform: scale(1);
|
|
2009
1988
|
}
|
|
1989
|
+
}.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
|
|
1990
|
+
height: 0;
|
|
1991
|
+
}
|
|
1992
|
+
|
|
1993
|
+
.skip_time_plugin[data-skip-time] {
|
|
1994
|
+
position: absolute;
|
|
1995
|
+
width: 100%;
|
|
1996
|
+
height: calc(100% - 50px);
|
|
1997
|
+
z-index: 9998;
|
|
1998
|
+
background-color: transparent;
|
|
1999
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
2000
|
+
}
|
|
2001
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] {
|
|
2002
|
+
width: 100%;
|
|
2003
|
+
height: 100%;
|
|
2004
|
+
display: flex;
|
|
2005
|
+
justify-content: space-between;
|
|
2006
|
+
}
|
|
2007
|
+
.skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
|
|
2008
|
+
width: 33.3%;
|
|
2009
|
+
height: 100%;
|
|
2010
|
+
}.scrub-thumbnails {
|
|
2011
|
+
position: absolute;
|
|
2012
|
+
bottom: 52px;
|
|
2013
|
+
width: 100%;
|
|
2014
|
+
transition: opacity 0.3s ease;
|
|
2015
|
+
}
|
|
2016
|
+
.scrub-thumbnails.hidden {
|
|
2017
|
+
opacity: 0;
|
|
2018
|
+
}
|
|
2019
|
+
.scrub-thumbnails .thumbnail-container {
|
|
2020
|
+
display: inline-block;
|
|
2021
|
+
position: relative;
|
|
2022
|
+
overflow: hidden;
|
|
2023
|
+
background-color: #000;
|
|
2024
|
+
}
|
|
2025
|
+
.scrub-thumbnails .thumbnail-container .thumbnail-img {
|
|
2026
|
+
position: absolute;
|
|
2027
|
+
width: auto;
|
|
2028
|
+
}
|
|
2029
|
+
.scrub-thumbnails .thumbnails-text {
|
|
2030
|
+
background-color: rgba(74, 74, 74, 0.7);
|
|
2031
|
+
border-radius: 3px;
|
|
2032
|
+
white-space: nowrap;
|
|
2033
|
+
overflow: hidden;
|
|
2034
|
+
text-overflow: ellipsis;
|
|
2035
|
+
color: white;
|
|
2036
|
+
position: absolute;
|
|
2037
|
+
bottom: 23px;
|
|
2038
|
+
width: 100px;
|
|
2039
|
+
}
|
|
2040
|
+
.scrub-thumbnails .spotlight {
|
|
2041
|
+
background-color: #4a4a4a;
|
|
2042
|
+
overflow: hidden;
|
|
2043
|
+
position: absolute;
|
|
2044
|
+
bottom: 0;
|
|
2045
|
+
left: 0;
|
|
2046
|
+
border-color: #4a4a4a;
|
|
2047
|
+
border-style: solid;
|
|
2048
|
+
border-width: 3px;
|
|
2049
|
+
border-radius: 3px;
|
|
2050
|
+
}
|
|
2051
|
+
.scrub-thumbnails .spotlight img {
|
|
2052
|
+
width: auto;
|
|
2053
|
+
}
|
|
2054
|
+
.scrub-thumbnails .backdrop {
|
|
2055
|
+
position: absolute;
|
|
2056
|
+
left: 0;
|
|
2057
|
+
bottom: 0;
|
|
2058
|
+
right: 0;
|
|
2059
|
+
background-color: #000;
|
|
2060
|
+
overflow: hidden;
|
|
2061
|
+
}
|
|
2062
|
+
.scrub-thumbnails .backdrop .carousel {
|
|
2063
|
+
position: absolute;
|
|
2064
|
+
top: 0;
|
|
2065
|
+
left: 0;
|
|
2066
|
+
height: 100%;
|
|
2067
|
+
white-space: nowrap;
|
|
2068
|
+
}
|
|
2069
|
+
.scrub-thumbnails .backdrop .carousel img {
|
|
2070
|
+
width: auto;
|
|
2010
2071
|
}*, :focus, :visited {
|
|
2011
2072
|
outline: none !important;
|
|
2012
2073
|
}
|
|
@@ -2088,67 +2149,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
2088
2149
|
.ios-fullscreen::cue {
|
|
2089
2150
|
visibility: visible !important;
|
|
2090
2151
|
font-size: 1em !important;
|
|
2091
|
-
}.scrub-thumbnails {
|
|
2092
|
-
position: absolute;
|
|
2093
|
-
bottom: 52px;
|
|
2094
|
-
width: 100%;
|
|
2095
|
-
transition: opacity 0.3s ease;
|
|
2096
|
-
}
|
|
2097
|
-
.scrub-thumbnails.hidden {
|
|
2098
|
-
opacity: 0;
|
|
2099
|
-
}
|
|
2100
|
-
.scrub-thumbnails .thumbnail-container {
|
|
2101
|
-
display: inline-block;
|
|
2102
|
-
position: relative;
|
|
2103
|
-
overflow: hidden;
|
|
2104
|
-
background-color: #000;
|
|
2105
|
-
}
|
|
2106
|
-
.scrub-thumbnails .thumbnail-container .thumbnail-img {
|
|
2107
|
-
position: absolute;
|
|
2108
|
-
width: auto;
|
|
2109
|
-
}
|
|
2110
|
-
.scrub-thumbnails .thumbnails-text {
|
|
2111
|
-
background-color: rgba(74, 74, 74, 0.7);
|
|
2112
|
-
border-radius: 3px;
|
|
2113
|
-
white-space: nowrap;
|
|
2114
|
-
overflow: hidden;
|
|
2115
|
-
text-overflow: ellipsis;
|
|
2116
|
-
color: white;
|
|
2117
|
-
position: absolute;
|
|
2118
|
-
bottom: 23px;
|
|
2119
|
-
width: 100px;
|
|
2120
|
-
}
|
|
2121
|
-
.scrub-thumbnails .spotlight {
|
|
2122
|
-
background-color: #4a4a4a;
|
|
2123
|
-
overflow: hidden;
|
|
2124
|
-
position: absolute;
|
|
2125
|
-
bottom: 0;
|
|
2126
|
-
left: 0;
|
|
2127
|
-
border-color: #4a4a4a;
|
|
2128
|
-
border-style: solid;
|
|
2129
|
-
border-width: 3px;
|
|
2130
|
-
border-radius: 3px;
|
|
2131
|
-
}
|
|
2132
|
-
.scrub-thumbnails .spotlight img {
|
|
2133
|
-
width: auto;
|
|
2134
|
-
}
|
|
2135
|
-
.scrub-thumbnails .backdrop {
|
|
2136
|
-
position: absolute;
|
|
2137
|
-
left: 0;
|
|
2138
|
-
bottom: 0;
|
|
2139
|
-
right: 0;
|
|
2140
|
-
background-color: #000;
|
|
2141
|
-
overflow: hidden;
|
|
2142
|
-
}
|
|
2143
|
-
.scrub-thumbnails .backdrop .carousel {
|
|
2144
|
-
position: absolute;
|
|
2145
|
-
top: 0;
|
|
2146
|
-
left: 0;
|
|
2147
|
-
height: 100%;
|
|
2148
|
-
white-space: nowrap;
|
|
2149
|
-
}
|
|
2150
|
-
.scrub-thumbnails .backdrop .carousel img {
|
|
2151
|
-
width: auto;
|
|
2152
2152
|
}.player-logo[data-logo] {
|
|
2153
2153
|
position: absolute;
|
|
2154
2154
|
z-index: 2;
|