@gcorevideo/player 2.25.4 → 2.25.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/audio-tracks/style.scss +1 -14
- package/assets/bottom-gear/gear.scss +40 -38
- package/assets/media-control/media-control.scss +260 -305
- package/assets/media-control/width270.scss +3 -2
- package/assets/media-control/width370.scss +8 -6
- package/assets/multi-camera/style.scss +9 -19
- package/assets/picture-in-picture/style.scss +14 -0
- package/assets/subtitles/style.scss +108 -68
- package/dist/core.js +1 -1
- package/dist/index.css +535 -572
- package/dist/index.embed.js +53 -51
- package/dist/index.js +124 -122
- package/lib/plugins/clips/Clips.d.ts.map +1 -1
- package/lib/plugins/clips/Clips.js +2 -4
- package/lib/plugins/picture-in-picture/PictureInPicture.d.ts +1 -1
- package/lib/plugins/picture-in-picture/PictureInPicture.d.ts.map +1 -1
- package/lib/plugins/picture-in-picture/PictureInPicture.js +1 -1
- package/lib/plugins/seek-time/SeekTime.d.ts.map +1 -1
- package/lib/plugins/seek-time/SeekTime.js +7 -2
- package/package.json +1 -1
- package/src/plugins/clips/Clips.ts +3 -5
- package/src/plugins/picture-in-picture/PictureInPicture.ts +1 -1
- package/src/plugins/seek-time/SeekTime.ts +7 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/assets/picture-in-picture/button.scss +0 -12
package/dist/index.css
CHANGED
|
@@ -122,11 +122,122 @@
|
|
|
122
122
|
.gplayer-lite-btn::-moz-focus-inner {
|
|
123
123
|
border: 0;
|
|
124
124
|
padding: 0;
|
|
125
|
-
}
|
|
125
|
+
}*,
|
|
126
|
+
:focus,
|
|
127
|
+
:visited {
|
|
128
|
+
outline: none !important;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.media-control-audiotracks {
|
|
132
|
+
position: relative;
|
|
133
|
+
}
|
|
134
|
+
.media-control-audiotracks button {
|
|
135
|
+
background-color: transparent;
|
|
136
|
+
color: #fff;
|
|
137
|
+
-webkit-font-smoothing: antialiased;
|
|
138
|
+
border: none;
|
|
139
|
+
cursor: pointer;
|
|
140
|
+
display: flex;
|
|
141
|
+
align-items: center;
|
|
142
|
+
padding: 0;
|
|
143
|
+
}
|
|
144
|
+
.media-control-audiotracks button .audio-text {
|
|
145
|
+
text-overflow: ellipsis;
|
|
146
|
+
overflow: hidden;
|
|
147
|
+
white-space: nowrap;
|
|
148
|
+
max-width: 100px;
|
|
149
|
+
background-color: transparent;
|
|
150
|
+
-webkit-font-smoothing: antialiased;
|
|
151
|
+
border: none;
|
|
152
|
+
cursor: pointer;
|
|
153
|
+
}
|
|
154
|
+
.media-control-audiotracks button:hover {
|
|
155
|
+
color: white;
|
|
156
|
+
}
|
|
157
|
+
.media-control-audiotracks button.changing {
|
|
158
|
+
animation: pulse 0.5s infinite alternate;
|
|
159
|
+
}
|
|
160
|
+
.media-control-audiotracks button span.audio-arrow {
|
|
161
|
+
width: 9px;
|
|
162
|
+
height: 6px;
|
|
163
|
+
margin-left: 5px;
|
|
164
|
+
}
|
|
165
|
+
.media-control-audiotracks .menu {
|
|
166
|
+
max-width: 114px;
|
|
167
|
+
list-style-type: none;
|
|
168
|
+
position: absolute;
|
|
169
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
170
|
+
border: none;
|
|
171
|
+
min-width: 60px;
|
|
172
|
+
border-radius: 4px;
|
|
173
|
+
bottom: 40px;
|
|
174
|
+
right: -2px;
|
|
175
|
+
}
|
|
176
|
+
.media-control-audiotracks .menu.hidden {
|
|
177
|
+
display: none;
|
|
178
|
+
}
|
|
179
|
+
.media-control-audiotracks li {
|
|
180
|
+
font-size: var(--font-size-media-controls-dropdown);
|
|
181
|
+
text-align: right;
|
|
182
|
+
height: 30px;
|
|
183
|
+
}
|
|
184
|
+
.media-control-audiotracks li[data-title] {
|
|
185
|
+
background-color: #c3c2c2;
|
|
186
|
+
padding: 5px;
|
|
187
|
+
}
|
|
188
|
+
.media-control-audiotracks li a {
|
|
189
|
+
display: block;
|
|
190
|
+
text-decoration: none;
|
|
191
|
+
text-overflow: ellipsis;
|
|
192
|
+
overflow: hidden;
|
|
193
|
+
white-space: nowrap;
|
|
194
|
+
height: 30px;
|
|
195
|
+
padding: 5px 10px;
|
|
196
|
+
color: #fffffe;
|
|
197
|
+
}
|
|
198
|
+
.media-control-audiotracks li a:hover {
|
|
199
|
+
text-decoration: none;
|
|
200
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
201
|
+
color: white;
|
|
202
|
+
}
|
|
203
|
+
.media-control-audiotracks li.current a {
|
|
204
|
+
color: #f00;
|
|
205
|
+
}
|
|
206
|
+
.media-control-audiotracks li:first-child a {
|
|
207
|
+
border-bottom-left-radius: 4px;
|
|
208
|
+
border-bottom-right-radius: 4px;
|
|
209
|
+
}
|
|
210
|
+
.media-control-audiotracks li:last-child a {
|
|
211
|
+
border-top-left-radius: 4px;
|
|
212
|
+
border-top-right-radius: 4px;
|
|
213
|
+
}@charset "UTF-8";
|
|
214
|
+
.gplayer-mc-clips {
|
|
215
|
+
display: flex;
|
|
216
|
+
gap: 6px;
|
|
217
|
+
}
|
|
218
|
+
.gplayer-mc-clips .gplayer-mc-clips-text {
|
|
219
|
+
text-overflow: ellipsis;
|
|
220
|
+
white-space: nowrap;
|
|
221
|
+
overflow: hidden;
|
|
222
|
+
display: inline-block;
|
|
223
|
+
text-overflow: ellipsis;
|
|
224
|
+
color: white;
|
|
225
|
+
cursor: default;
|
|
226
|
+
line-height: var(--bottom-panel);
|
|
227
|
+
position: relative;
|
|
228
|
+
max-width: 150px;
|
|
229
|
+
}
|
|
230
|
+
.gplayer-mc-clips .gplayer-mc-clips-text::before {
|
|
231
|
+
content: "•";
|
|
232
|
+
padding-right: 6px;
|
|
233
|
+
}
|
|
234
|
+
.gplayer-mc-clips .gplayer-mc-clips-text.compact {
|
|
235
|
+
max-width: 100px;
|
|
236
|
+
}.media-control-skin-1 .gplayer-mc-panel-item.media-control-gear {
|
|
126
237
|
order: 99;
|
|
127
238
|
height: 20px;
|
|
128
239
|
}
|
|
129
|
-
.media-control-skin-1
|
|
240
|
+
.media-control-skin-1 .gplayer-mc-panel-item.media-control-gear .gear-wrapper {
|
|
130
241
|
position: absolute;
|
|
131
242
|
right: 16px;
|
|
132
243
|
bottom: 52px;
|
|
@@ -134,11 +245,12 @@
|
|
|
134
245
|
min-height: 48px;
|
|
135
246
|
z-index: 9999;
|
|
136
247
|
border-radius: 4px;
|
|
248
|
+
box-shadow: 0 0 1px 1px var(--gplayer-mc-popup-border-color);
|
|
137
249
|
}
|
|
138
|
-
.media-control-skin-1
|
|
250
|
+
.media-control-skin-1 .gplayer-mc-panel-item.media-control-gear .gear-options-list {
|
|
139
251
|
padding: 8px 0;
|
|
140
252
|
}
|
|
141
|
-
.media-control-skin-1
|
|
253
|
+
.media-control-skin-1 .gplayer-mc-panel-item.media-control-gear .gear-option {
|
|
142
254
|
margin: 0;
|
|
143
255
|
text-align: left;
|
|
144
256
|
line-height: 22px;
|
|
@@ -150,22 +262,22 @@
|
|
|
150
262
|
justify-content: flex-start;
|
|
151
263
|
gap: 8px;
|
|
152
264
|
}
|
|
153
|
-
.media-control-skin-1
|
|
265
|
+
.media-control-skin-1 .gplayer-mc-panel-item.media-control-gear .gear-option_icon {
|
|
154
266
|
flex: 24px 0 0;
|
|
155
267
|
height: 24px;
|
|
156
268
|
}
|
|
157
|
-
.media-control-skin-1
|
|
269
|
+
.media-control-skin-1 .gplayer-mc-panel-item.media-control-gear .gear-option_icon.hidden {
|
|
158
270
|
visibility: hidden;
|
|
159
271
|
display: inline-block;
|
|
160
272
|
}
|
|
161
|
-
.media-control-skin-1
|
|
273
|
+
.media-control-skin-1 .gplayer-mc-panel-item.media-control-gear .gear-option_label {
|
|
162
274
|
flex: 0 1 100%;
|
|
163
275
|
}
|
|
164
|
-
.media-control-skin-1
|
|
276
|
+
.media-control-skin-1 .gplayer-mc-panel-item.media-control-gear .gear-option_arrow-right-icon {
|
|
165
277
|
flex: 0 0 14px;
|
|
166
278
|
height: 24px;
|
|
167
279
|
}
|
|
168
|
-
.media-control-skin-1
|
|
280
|
+
.media-control-skin-1 .gplayer-mc-panel-item.media-control-gear .gear-option_value {
|
|
169
281
|
flex: 1 0 auto;
|
|
170
282
|
}*, :focus, :visited {
|
|
171
283
|
outline: none !important;
|
|
@@ -229,76 +341,6 @@
|
|
|
229
341
|
}
|
|
230
342
|
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
231
343
|
display: inline;
|
|
232
|
-
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
233
|
-
color: #CCCACA;
|
|
234
|
-
position: absolute;
|
|
235
|
-
top: 0;
|
|
236
|
-
height: 100%;
|
|
237
|
-
width: 100%;
|
|
238
|
-
background-color: rgba(0, 0, 0, 0.7);
|
|
239
|
-
z-index: 2000;
|
|
240
|
-
display: flex;
|
|
241
|
-
flex-direction: column;
|
|
242
|
-
justify-content: center;
|
|
243
|
-
}
|
|
244
|
-
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
245
|
-
font-size: 14px;
|
|
246
|
-
color: #CCCACA;
|
|
247
|
-
margin-top: 45px;
|
|
248
|
-
}
|
|
249
|
-
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
250
|
-
font-weight: bold;
|
|
251
|
-
line-height: 30px;
|
|
252
|
-
font-size: 18px;
|
|
253
|
-
}
|
|
254
|
-
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
255
|
-
width: 90%;
|
|
256
|
-
margin: 0 auto;
|
|
257
|
-
}
|
|
258
|
-
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
259
|
-
font-size: 13px;
|
|
260
|
-
margin-top: 15px;
|
|
261
|
-
}
|
|
262
|
-
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
263
|
-
cursor: pointer;
|
|
264
|
-
width: 30px;
|
|
265
|
-
margin: 15px auto 0;
|
|
266
|
-
}.context-menu {
|
|
267
|
-
z-index: 999;
|
|
268
|
-
position: absolute;
|
|
269
|
-
top: 0;
|
|
270
|
-
left: 0;
|
|
271
|
-
text-align: center;
|
|
272
|
-
}
|
|
273
|
-
.context-menu .context-menu-list {
|
|
274
|
-
font-family: "Proxima Nova", sans-serif;
|
|
275
|
-
font-size: 12px;
|
|
276
|
-
line-height: 12px;
|
|
277
|
-
list-style-type: none;
|
|
278
|
-
text-align: left;
|
|
279
|
-
padding: 5px;
|
|
280
|
-
margin-left: auto;
|
|
281
|
-
margin-right: auto;
|
|
282
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
283
|
-
border: 1px solid #666;
|
|
284
|
-
border-radius: 4px;
|
|
285
|
-
}
|
|
286
|
-
.context-menu .context-menu-list-item button {
|
|
287
|
-
border: none;
|
|
288
|
-
background-color: transparent;
|
|
289
|
-
padding: 0;
|
|
290
|
-
color: white;
|
|
291
|
-
display: flex;
|
|
292
|
-
gap: 8px;
|
|
293
|
-
align-items: center;
|
|
294
|
-
justify-content: center;
|
|
295
|
-
cursor: pointer;
|
|
296
|
-
padding: 5px;
|
|
297
|
-
width: 100%;
|
|
298
|
-
}
|
|
299
|
-
.context-menu .context-menu-list-item_icon {
|
|
300
|
-
width: 20px;
|
|
301
|
-
height: 20px;
|
|
302
344
|
}:root {
|
|
303
345
|
--primary-background-color: #000;
|
|
304
346
|
--secondary-background-color: #262626;
|
|
@@ -663,115 +705,139 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
663
705
|
.fullscreen .clappr-nerd-stats .stats-box {
|
|
664
706
|
top: unset;
|
|
665
707
|
}
|
|
666
|
-
}
|
|
667
|
-
:
|
|
668
|
-
:
|
|
669
|
-
|
|
708
|
+
}.context-menu {
|
|
709
|
+
z-index: 999;
|
|
710
|
+
position: absolute;
|
|
711
|
+
top: 0;
|
|
712
|
+
left: 0;
|
|
713
|
+
text-align: center;
|
|
670
714
|
}
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
715
|
+
.context-menu .context-menu-list {
|
|
716
|
+
font-family: "Proxima Nova", sans-serif;
|
|
717
|
+
font-size: 12px;
|
|
718
|
+
line-height: 12px;
|
|
719
|
+
list-style-type: none;
|
|
720
|
+
text-align: left;
|
|
721
|
+
padding: 5px;
|
|
722
|
+
margin-left: auto;
|
|
723
|
+
margin-right: auto;
|
|
724
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
725
|
+
border: 1px solid #666;
|
|
726
|
+
border-radius: 4px;
|
|
674
727
|
}
|
|
675
|
-
.
|
|
676
|
-
background-color: transparent;
|
|
677
|
-
color: #fff;
|
|
678
|
-
-webkit-font-smoothing: antialiased;
|
|
728
|
+
.context-menu .context-menu-list-item button {
|
|
679
729
|
border: none;
|
|
680
|
-
|
|
730
|
+
background-color: transparent;
|
|
731
|
+
padding: 0;
|
|
732
|
+
color: white;
|
|
681
733
|
display: flex;
|
|
734
|
+
gap: 8px;
|
|
682
735
|
align-items: center;
|
|
683
|
-
|
|
684
|
-
}
|
|
685
|
-
.media-control-audiotracks button .audio-text {
|
|
686
|
-
text-overflow: ellipsis;
|
|
687
|
-
overflow: hidden;
|
|
688
|
-
white-space: nowrap;
|
|
689
|
-
max-width: 100px;
|
|
690
|
-
background-color: transparent;
|
|
691
|
-
-webkit-font-smoothing: antialiased;
|
|
692
|
-
border: none;
|
|
736
|
+
justify-content: center;
|
|
693
737
|
cursor: pointer;
|
|
738
|
+
padding: 5px;
|
|
739
|
+
width: 100%;
|
|
694
740
|
}
|
|
695
|
-
.
|
|
696
|
-
|
|
741
|
+
.context-menu .context-menu-list-item_icon {
|
|
742
|
+
width: 20px;
|
|
743
|
+
height: 20px;
|
|
744
|
+
}.dvr-controls {
|
|
745
|
+
--disabled-opacity: 0.3;
|
|
746
|
+
--circle-radius: 5px;
|
|
747
|
+
display: flex;
|
|
748
|
+
align-items: center;
|
|
749
|
+
color: var(--player-dvr-color);
|
|
750
|
+
font-size: 10px;
|
|
751
|
+
font-weight: 500;
|
|
752
|
+
height: var(--bottom-panel);
|
|
753
|
+
line-height: var(--bottom-panel);
|
|
754
|
+
margin-left: 0;
|
|
697
755
|
}
|
|
698
|
-
.
|
|
699
|
-
|
|
756
|
+
.dvr-controls .live-info,
|
|
757
|
+
.dvr-controls .live-button {
|
|
758
|
+
font-size: 14px;
|
|
759
|
+
font-weight: 500;
|
|
760
|
+
margin-left: 20px;
|
|
761
|
+
letter-spacing: 0.8px;
|
|
762
|
+
text-transform: uppercase;
|
|
700
763
|
}
|
|
701
|
-
.
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
764
|
+
.dvr-controls .live-info::before,
|
|
765
|
+
.dvr-controls .live-button::before {
|
|
766
|
+
margin-right: 8px;
|
|
767
|
+
content: "";
|
|
768
|
+
display: inline-block;
|
|
769
|
+
position: relative;
|
|
770
|
+
width: calc(var(--circle-radius) * 2);
|
|
771
|
+
height: calc(var(--circle-radius) * 2);
|
|
772
|
+
border-radius: var(--circle-radius);
|
|
773
|
+
background-color: var(--player-dvr-color);
|
|
705
774
|
}
|
|
706
|
-
.
|
|
707
|
-
|
|
708
|
-
list-style-type: none;
|
|
709
|
-
position: absolute;
|
|
710
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
711
|
-
border: none;
|
|
712
|
-
min-width: 60px;
|
|
713
|
-
border-radius: 4px;
|
|
714
|
-
bottom: 40px;
|
|
715
|
-
right: -2px;
|
|
775
|
+
.dvr-controls.disabled {
|
|
776
|
+
opacity: var(--disabled-opacity);
|
|
716
777
|
}
|
|
717
|
-
.
|
|
718
|
-
|
|
778
|
+
.dvr-controls.disabled:before {
|
|
779
|
+
background-color: var(--player-dvr-color);
|
|
719
780
|
}
|
|
720
|
-
.
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
height: 30px;
|
|
781
|
+
.dvr-controls .live-info {
|
|
782
|
+
text-transform: uppercase;
|
|
783
|
+
color: #fffffe;
|
|
724
784
|
}
|
|
725
|
-
.
|
|
726
|
-
background-color: #
|
|
727
|
-
padding: 5px;
|
|
785
|
+
.dvr-controls .live-info::before {
|
|
786
|
+
background-color: #ed4f4a;
|
|
728
787
|
}
|
|
729
|
-
.
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
788
|
+
.dvr-controls .live-button {
|
|
789
|
+
cursor: pointer;
|
|
790
|
+
outline: none;
|
|
791
|
+
border: 0;
|
|
792
|
+
color: var(--player-dvr-color);
|
|
793
|
+
background-color: transparent;
|
|
794
|
+
padding: 0;
|
|
795
|
+
opacity: 0.7;
|
|
796
|
+
transition: all 0.1s ease;
|
|
738
797
|
}
|
|
739
|
-
.
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
798
|
+
.dvr-controls .live-button:hover {
|
|
799
|
+
opacity: 1;
|
|
800
|
+
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
801
|
+
}.quality-levels li.disabled {
|
|
802
|
+
opacity: 0.5;
|
|
803
|
+
pointer-events: none;
|
|
743
804
|
}
|
|
744
|
-
.
|
|
745
|
-
color: #
|
|
805
|
+
.quality-levels li.current {
|
|
806
|
+
background-color: #000;
|
|
807
|
+
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
808
|
+
color: #CCCACA;
|
|
809
|
+
position: absolute;
|
|
810
|
+
top: 0;
|
|
811
|
+
height: 100%;
|
|
812
|
+
width: 100%;
|
|
813
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
814
|
+
z-index: 2000;
|
|
815
|
+
display: flex;
|
|
816
|
+
flex-direction: column;
|
|
817
|
+
justify-content: center;
|
|
746
818
|
}
|
|
747
|
-
.
|
|
748
|
-
|
|
749
|
-
|
|
819
|
+
div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
|
|
820
|
+
font-size: 14px;
|
|
821
|
+
color: #CCCACA;
|
|
822
|
+
margin-top: 45px;
|
|
750
823
|
}
|
|
751
|
-
.
|
|
752
|
-
|
|
753
|
-
|
|
824
|
+
div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
|
|
825
|
+
font-weight: bold;
|
|
826
|
+
line-height: 30px;
|
|
827
|
+
font-size: 18px;
|
|
754
828
|
}
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
0
|
|
758
|
-
color: #fff;
|
|
759
|
-
}
|
|
760
|
-
50% {
|
|
761
|
-
color: #ff0101;
|
|
762
|
-
}
|
|
763
|
-
100% {
|
|
764
|
-
color: #B80000;
|
|
765
|
-
}
|
|
766
|
-
}.media-control-pip {
|
|
767
|
-
order: 95;
|
|
768
|
-
display: flex;
|
|
829
|
+
div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
|
|
830
|
+
width: 90%;
|
|
831
|
+
margin: 0 auto;
|
|
769
832
|
}
|
|
770
|
-
.
|
|
771
|
-
|
|
833
|
+
div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
|
|
834
|
+
font-size: 13px;
|
|
835
|
+
margin-top: 15px;
|
|
772
836
|
}
|
|
773
|
-
.
|
|
774
|
-
|
|
837
|
+
div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
838
|
+
cursor: pointer;
|
|
839
|
+
width: 30px;
|
|
840
|
+
margin: 15px auto 0;
|
|
775
841
|
}[data-player] {
|
|
776
842
|
--bottom-panel: 40px;
|
|
777
843
|
}
|
|
@@ -819,11 +885,11 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
819
885
|
background-color: #ff5700;
|
|
820
886
|
}
|
|
821
887
|
|
|
822
|
-
.media-control-skin-1
|
|
823
|
-
.media-control-skin-1
|
|
888
|
+
.media-control-skin-1.w270 .media-control-quality,
|
|
889
|
+
.media-control-skin-1.w270 .media-control-audiotracks {
|
|
824
890
|
display: none;
|
|
825
891
|
}
|
|
826
|
-
.media-control-skin-1
|
|
892
|
+
.media-control-skin-1.w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] {
|
|
827
893
|
transform: rotate(270deg);
|
|
828
894
|
float: none;
|
|
829
895
|
display: block;
|
|
@@ -838,32 +904,32 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
838
904
|
width: 80px;
|
|
839
905
|
/* padding-left: 12px; */
|
|
840
906
|
}
|
|
841
|
-
.media-control-skin-1
|
|
907
|
+
.media-control-skin-1.w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background-mask {
|
|
842
908
|
position: absolute;
|
|
843
909
|
width: 100%;
|
|
844
910
|
height: 100%;
|
|
845
911
|
left: -5px;
|
|
846
912
|
}
|
|
847
|
-
.media-control-skin-1
|
|
913
|
+
.media-control-skin-1.w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume].volume-bar-hide {
|
|
848
914
|
display: none;
|
|
849
915
|
}
|
|
850
|
-
.media-control-skin-1
|
|
916
|
+
.media-control-skin-1.w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-background {
|
|
851
917
|
margin-left: 11px;
|
|
852
918
|
top: 7px;
|
|
853
919
|
width: 80px;
|
|
854
920
|
}
|
|
855
|
-
.media-control-skin-1
|
|
921
|
+
.media-control-skin-1.w270 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber {
|
|
856
922
|
margin-left: 11px;
|
|
857
923
|
top: 1px;
|
|
858
924
|
}
|
|
859
925
|
|
|
860
|
-
.media-control-skin-1
|
|
926
|
+
.media-control-skin-1.w370 .media-control-cc {
|
|
861
927
|
width: 28px;
|
|
862
928
|
}
|
|
863
|
-
.media-control-skin-1
|
|
929
|
+
.media-control-skin-1.w370 .media-control-cc svg {
|
|
864
930
|
height: 17px;
|
|
865
931
|
}
|
|
866
|
-
.media-control-skin-1
|
|
932
|
+
.media-control-skin-1.w370 .share_plugin[data-share] .share-container {
|
|
867
933
|
top: calc(50% - 150px);
|
|
868
934
|
left: calc(50% - 125px);
|
|
869
935
|
width: 250px;
|
|
@@ -871,69 +937,66 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
871
937
|
max-height: 300px;
|
|
872
938
|
transform: none;
|
|
873
939
|
}
|
|
874
|
-
.media-control-skin-1
|
|
940
|
+
.media-control-skin-1.w370 .share_plugin[data-share] .share-container .share-container-header {
|
|
875
941
|
border: none;
|
|
876
942
|
}
|
|
877
|
-
.media-control-skin-1
|
|
943
|
+
.media-control-skin-1.w370 .share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
878
944
|
visibility: hidden;
|
|
879
945
|
}
|
|
880
|
-
.media-control-skin-1
|
|
881
|
-
.media-control-skin-1
|
|
946
|
+
.media-control-skin-1.w370 .media-control-quality,
|
|
947
|
+
.media-control-skin-1.w370 .media-control-audiotracks {
|
|
882
948
|
display: block;
|
|
883
949
|
}
|
|
884
|
-
.media-control-skin-1
|
|
950
|
+
.media-control-skin-1.w370 .media-control-audiotracks[data-audiotracks] {
|
|
885
951
|
margin-top: 3px;
|
|
886
952
|
margin-right: 10px;
|
|
887
953
|
}
|
|
888
|
-
.media-control-skin-1
|
|
954
|
+
.media-control-skin-1.w370 .media-control-audiotracks[data-audiotracks] ul {
|
|
889
955
|
bottom: 30px;
|
|
890
956
|
width: 50px;
|
|
891
957
|
}
|
|
892
|
-
.media-control-skin-1
|
|
958
|
+
.media-control-skin-1.w370 .media-control-audiotracks[data-audiotracks] ul li {
|
|
893
959
|
height: 23px;
|
|
894
960
|
font-size: 14px;
|
|
895
961
|
}
|
|
896
|
-
.media-control-skin-1
|
|
962
|
+
.media-control-skin-1.w370 .media-control-audiotracks[data-audiotracks] ul li a {
|
|
897
963
|
height: 23px;
|
|
898
964
|
padding: 2px 5px;
|
|
899
965
|
}
|
|
900
|
-
.media-control-skin-1
|
|
901
|
-
.media-control-skin-1
|
|
966
|
+
.media-control-skin-1.w370 .media-control-audiotracks[data-audiotracks] button[data-audiotracks-button] .quality-text,
|
|
967
|
+
.media-control-skin-1.w370 .media-control-audiotracks[data-audiotracks] button[data-audiotracks-button] .audio-text {
|
|
902
968
|
font-size: 13px;
|
|
903
969
|
}
|
|
904
|
-
.media-control-skin-1
|
|
905
|
-
.media-control-skin-1
|
|
970
|
+
.media-control-skin-1.w370 .media-control-audiotracks[data-audiotracks] button[data-audiotracks-button] span.quality-arrow,
|
|
971
|
+
.media-control-skin-1.w370 .media-control-audiotracks[data-audiotracks] button[data-audiotracks-button] span.audio-arrow {
|
|
906
972
|
width: 7px;
|
|
907
973
|
height: 5px;
|
|
908
974
|
margin-left: 4px;
|
|
909
975
|
margin-top: 11px;
|
|
910
976
|
}
|
|
911
|
-
.media-control-skin-1
|
|
977
|
+
.media-control-skin-1.w370 .media-control-multicamera .multicamera {
|
|
912
978
|
margin-top: 0;
|
|
913
979
|
margin-right: 10px;
|
|
914
980
|
}
|
|
915
|
-
.media-control-skin-1
|
|
981
|
+
.media-control-skin-1.w370 .media-control-multicamera .multicamera button {
|
|
916
982
|
height: 32px;
|
|
917
983
|
}
|
|
918
|
-
.media-control-skin-1
|
|
984
|
+
.media-control-skin-1.w370 .media-control-multicamera .multicamera button svg {
|
|
919
985
|
height: 17px;
|
|
920
986
|
margin: 0;
|
|
921
987
|
}
|
|
922
|
-
.media-control-skin-1
|
|
988
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] {
|
|
923
989
|
padding-left: 10px;
|
|
924
990
|
padding-right: 12px;
|
|
925
991
|
}
|
|
926
|
-
.media-control-skin-1
|
|
992
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .media-control-indicator {
|
|
927
993
|
line-height: 32px;
|
|
928
994
|
}
|
|
929
|
-
.media-control-skin-1
|
|
995
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .media-control-indicator[data-position], .media-control-skin-1.w370 .media-control-layer[data-controls] .media-control-indicator[data-duration] {
|
|
930
996
|
font-size: 11px;
|
|
931
997
|
line-height: 32px;
|
|
932
998
|
}
|
|
933
|
-
.media-control-skin-1
|
|
934
|
-
height: 32px;
|
|
935
|
-
}
|
|
936
|
-
.media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls .live-button {
|
|
999
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .dvr-controls .live-button {
|
|
937
1000
|
margin-left: 10px;
|
|
938
1001
|
height: 32px;
|
|
939
1002
|
font-size: 12px;
|
|
@@ -941,12 +1004,12 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
941
1004
|
text-shadow: none;
|
|
942
1005
|
letter-spacing: 0.6px;
|
|
943
1006
|
}
|
|
944
|
-
.media-control-skin-1
|
|
1007
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .dvr-controls .live-button::before {
|
|
945
1008
|
width: 8px;
|
|
946
1009
|
height: 8px;
|
|
947
1010
|
margin-right: 4px;
|
|
948
1011
|
}
|
|
949
|
-
.media-control-skin-1
|
|
1012
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .dvr-controls .live-info {
|
|
950
1013
|
margin-left: 10px;
|
|
951
1014
|
height: 32px;
|
|
952
1015
|
font-size: 12px;
|
|
@@ -954,47 +1017,48 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
954
1017
|
text-shadow: none;
|
|
955
1018
|
letter-spacing: 0.6px;
|
|
956
1019
|
}
|
|
957
|
-
.media-control-skin-1
|
|
1020
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .dvr-controls .live-info::before {
|
|
958
1021
|
width: 8px;
|
|
959
1022
|
height: 8px;
|
|
960
1023
|
margin-right: 4px;
|
|
961
1024
|
}
|
|
962
|
-
.media-control-skin-1
|
|
963
|
-
height: 32px;
|
|
964
|
-
}
|
|
965
|
-
.media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] button.media-control-button[data-fullscreen] {
|
|
1025
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] button.media-control-button[data-fullscreen] {
|
|
966
1026
|
height: 33px;
|
|
967
1027
|
}
|
|
968
|
-
.media-control-skin-1
|
|
1028
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] button.media-control-button svg {
|
|
969
1029
|
height: 17px;
|
|
970
1030
|
}
|
|
971
|
-
.media-control-skin-1
|
|
1031
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .gplayer-mc-clips .gplayer-mc-clips-text {
|
|
972
1032
|
line-height: 33px;
|
|
973
1033
|
font-size: 11px;
|
|
974
1034
|
}
|
|
975
|
-
.media-control-skin-1
|
|
1035
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .gplayer-mc-clips .gplayer-mc-clips-text {
|
|
976
1036
|
max-width: 50px;
|
|
977
1037
|
}
|
|
978
|
-
.media-control-skin-1
|
|
1038
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .drawer-container[data-volume] {
|
|
979
1039
|
height: 32px;
|
|
980
1040
|
margin-right: 8px;
|
|
981
1041
|
}
|
|
982
|
-
.media-control-skin-1
|
|
1042
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] {
|
|
983
1043
|
height: 32px;
|
|
984
1044
|
}
|
|
985
|
-
.media-control-skin-1
|
|
1045
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] svg {
|
|
986
1046
|
height: 17px;
|
|
987
1047
|
margin-top: 5px;
|
|
988
1048
|
}
|
|
989
|
-
.media-control-skin-1
|
|
1049
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume] {
|
|
990
1050
|
display: none;
|
|
991
1051
|
}
|
|
992
|
-
.media-control-skin-1
|
|
1052
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .drawer-container[data-volume] .bar-container[data-volume].volume-bar-hide {
|
|
993
1053
|
width: 0;
|
|
994
1054
|
height: 12px;
|
|
995
1055
|
top: 9px;
|
|
996
1056
|
padding: 0;
|
|
997
1057
|
}
|
|
1058
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .media-control-button,
|
|
1059
|
+
.media-control-skin-1.w370 .media-control-layer[data-controls] .gplayer-mc-panel-item {
|
|
1060
|
+
height: 32px;
|
|
1061
|
+
}
|
|
998
1062
|
|
|
999
1063
|
:root {
|
|
1000
1064
|
--font-size-media-controls: 14px;
|
|
@@ -1004,9 +1068,11 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1004
1068
|
--player-live-color: #ff0101;
|
|
1005
1069
|
--player-seekbar-current-color: #ff5700;
|
|
1006
1070
|
--player-seekbar-buffer-color: #fff;
|
|
1071
|
+
--gplayer-mc-text-color: #fff;
|
|
1072
|
+
--gplayer-mc-popup-border-color: rgba(255, 255, 255, 0.1);
|
|
1007
1073
|
}
|
|
1008
1074
|
|
|
1009
|
-
.media-control-skin-1
|
|
1075
|
+
.media-control-skin-1 {
|
|
1010
1076
|
position: absolute;
|
|
1011
1077
|
width: 100%;
|
|
1012
1078
|
height: 100%;
|
|
@@ -1015,37 +1081,37 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1015
1081
|
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1016
1082
|
font-size: var(--font-size-media-controls);
|
|
1017
1083
|
}
|
|
1018
|
-
.media-control-skin-1
|
|
1084
|
+
.media-control-skin-1.dragging {
|
|
1019
1085
|
pointer-events: auto;
|
|
1020
1086
|
cursor: grabbing !important;
|
|
1021
1087
|
cursor: url("closed-hand.cur"), move;
|
|
1022
1088
|
}
|
|
1023
|
-
.media-control-skin-1
|
|
1089
|
+
.media-control-skin-1.dragging * {
|
|
1024
1090
|
cursor: grabbing !important;
|
|
1025
1091
|
cursor: url("closed-hand.cur"), move;
|
|
1026
1092
|
}
|
|
1027
|
-
.media-control-skin-1
|
|
1093
|
+
.media-control-skin-1 .media-control-icon {
|
|
1028
1094
|
line-height: 0;
|
|
1029
1095
|
letter-spacing: 0;
|
|
1030
1096
|
speak: none;
|
|
1031
|
-
color:
|
|
1097
|
+
color: var(--gplayer-mc-text-color);
|
|
1032
1098
|
vertical-align: middle;
|
|
1033
1099
|
text-align: left;
|
|
1034
1100
|
transition: all 0.1s ease;
|
|
1035
1101
|
}
|
|
1036
|
-
.media-control-skin-1
|
|
1102
|
+
.media-control-skin-1 .media-control-icon:hover {
|
|
1037
1103
|
color: white;
|
|
1038
1104
|
}
|
|
1039
|
-
.media-control-skin-1
|
|
1105
|
+
.media-control-skin-1.media-control-hide .media-control-background[data-background] {
|
|
1040
1106
|
opacity: 0;
|
|
1041
1107
|
}
|
|
1042
|
-
.media-control-skin-1
|
|
1108
|
+
.media-control-skin-1.media-control-hide .media-control-layer[data-controls] {
|
|
1043
1109
|
bottom: -50px;
|
|
1044
1110
|
}
|
|
1045
|
-
.media-control-skin-1
|
|
1111
|
+
.media-control-skin-1.media-control-hide .media-control-layer[data-controls] .bar-scrubber[data-seekbar] {
|
|
1046
1112
|
opacity: 0;
|
|
1047
1113
|
}
|
|
1048
|
-
.media-control-skin-1
|
|
1114
|
+
.media-control-skin-1 .media-control-layer[data-controls] {
|
|
1049
1115
|
position: absolute;
|
|
1050
1116
|
bottom: 0;
|
|
1051
1117
|
width: 100%;
|
|
@@ -1057,48 +1123,48 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1057
1123
|
display: flex;
|
|
1058
1124
|
justify-content: space-between;
|
|
1059
1125
|
}
|
|
1060
|
-
.media-control-skin-1
|
|
1126
|
+
.media-control-skin-1 .media-control-left-panel {
|
|
1061
1127
|
display: flex;
|
|
1062
1128
|
align-items: center;
|
|
1063
1129
|
gap: 0.5rem;
|
|
1064
1130
|
justify-content: flex-start;
|
|
1065
1131
|
}
|
|
1066
|
-
.media-control-skin-1
|
|
1067
|
-
.media-control-skin-1
|
|
1068
|
-
.media-control-skin-1
|
|
1069
|
-
order:
|
|
1132
|
+
.media-control-skin-1 .media-control-button,
|
|
1133
|
+
.media-control-skin-1 .media-control-indicator,
|
|
1134
|
+
.media-control-skin-1 .gplayer-mc-panel-item {
|
|
1135
|
+
order: 50;
|
|
1070
1136
|
}
|
|
1071
|
-
.media-control-skin-1
|
|
1072
|
-
.media-control-skin-1
|
|
1137
|
+
.media-control-skin-1 [data-playpause],
|
|
1138
|
+
.media-control-skin-1 [data-playstop] {
|
|
1073
1139
|
order: 1;
|
|
1074
1140
|
}
|
|
1075
|
-
.media-control-skin-1
|
|
1141
|
+
.media-control-skin-1 [data-volume] {
|
|
1076
1142
|
order: 2;
|
|
1077
1143
|
}
|
|
1078
|
-
.media-control-skin-1
|
|
1144
|
+
.media-control-skin-1 [data-position] {
|
|
1079
1145
|
order: 3;
|
|
1080
1146
|
}
|
|
1081
|
-
.media-control-skin-1
|
|
1147
|
+
.media-control-skin-1 [data-duration] {
|
|
1082
1148
|
order: 3;
|
|
1083
1149
|
}
|
|
1084
|
-
.media-control-skin-1
|
|
1150
|
+
.media-control-skin-1 .media-control-center-panel {
|
|
1085
1151
|
height: 100%;
|
|
1086
1152
|
text-align: center;
|
|
1087
1153
|
line-height: var(--bottom-panel);
|
|
1088
1154
|
}
|
|
1089
|
-
.media-control-skin-1
|
|
1155
|
+
.media-control-skin-1 .media-control-right-panel {
|
|
1090
1156
|
display: flex;
|
|
1091
1157
|
align-items: center;
|
|
1092
1158
|
gap: 1rem;
|
|
1093
1159
|
justify-content: flex-end;
|
|
1094
1160
|
}
|
|
1095
1161
|
@media (max-width: 420px) {
|
|
1096
|
-
.media-control-skin-1
|
|
1162
|
+
.media-control-skin-1 .media-control-right-panel {
|
|
1097
1163
|
gap: 0.5rem;
|
|
1098
1164
|
overflow: hidden;
|
|
1099
1165
|
}
|
|
1100
1166
|
}
|
|
1101
|
-
.media-control-skin-1
|
|
1167
|
+
.media-control-skin-1 button.media-control-button {
|
|
1102
1168
|
background-color: transparent;
|
|
1103
1169
|
border: 0;
|
|
1104
1170
|
padding: 0;
|
|
@@ -1107,34 +1173,34 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1107
1173
|
height: 20px;
|
|
1108
1174
|
width: 24px;
|
|
1109
1175
|
}
|
|
1110
|
-
.media-control-skin-1
|
|
1176
|
+
.media-control-skin-1 button.media-control-button svg {
|
|
1111
1177
|
height: 20px;
|
|
1112
1178
|
}
|
|
1113
|
-
.media-control-skin-1
|
|
1179
|
+
.media-control-skin-1 button.media-control-button svg path {
|
|
1114
1180
|
fill: white;
|
|
1115
1181
|
}
|
|
1116
|
-
.media-control-skin-1
|
|
1182
|
+
.media-control-skin-1 button.media-control-button:focus {
|
|
1117
1183
|
outline: none;
|
|
1118
1184
|
}
|
|
1119
|
-
.media-control-skin-1
|
|
1185
|
+
.media-control-skin-1 button.media-control-button[data-play] {
|
|
1120
1186
|
float: left;
|
|
1121
1187
|
height: 100%;
|
|
1122
1188
|
}
|
|
1123
|
-
.media-control-skin-1
|
|
1189
|
+
.media-control-skin-1 button.media-control-button[data-pause] {
|
|
1124
1190
|
float: left;
|
|
1125
1191
|
height: 100%;
|
|
1126
1192
|
}
|
|
1127
|
-
.media-control-skin-1
|
|
1193
|
+
.media-control-skin-1 button.media-control-button[data-stop] {
|
|
1128
1194
|
float: left;
|
|
1129
1195
|
height: 100%;
|
|
1130
1196
|
}
|
|
1131
|
-
.media-control-skin-1
|
|
1197
|
+
.media-control-skin-1 button.media-control-button[data-fullscreen] {
|
|
1132
1198
|
order: 100;
|
|
1133
1199
|
background-color: transparent;
|
|
1134
1200
|
border: 0;
|
|
1135
1201
|
height: 40px;
|
|
1136
1202
|
}
|
|
1137
|
-
.media-control-skin-1
|
|
1203
|
+
.media-control-skin-1 button.media-control-button[data-hd-indicator] {
|
|
1138
1204
|
background-color: transparent;
|
|
1139
1205
|
border: 0;
|
|
1140
1206
|
cursor: default;
|
|
@@ -1142,30 +1208,27 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1142
1208
|
float: right;
|
|
1143
1209
|
height: 100%;
|
|
1144
1210
|
}
|
|
1145
|
-
.media-control-skin-1
|
|
1211
|
+
.media-control-skin-1 .media-control-indicator[data-position], .media-control-skin-1 .media-control-indicator[data-duration] {
|
|
1146
1212
|
display: flex;
|
|
1147
1213
|
color: white;
|
|
1148
1214
|
cursor: default;
|
|
1149
1215
|
line-height: var(--bottom-panel);
|
|
1150
1216
|
position: relative;
|
|
1151
1217
|
}
|
|
1152
|
-
.media-control-skin-1
|
|
1218
|
+
.media-control-skin-1 .media-control-indicator[data-position] {
|
|
1153
1219
|
margin: 1px 0 0 7px;
|
|
1154
1220
|
}
|
|
1155
|
-
.media-control-skin-1
|
|
1221
|
+
.media-control-skin-1 .media-control-indicator[data-duration] {
|
|
1156
1222
|
color: rgb(255, 255, 255);
|
|
1157
1223
|
opacity: 0.5;
|
|
1158
1224
|
margin-top: 1px;
|
|
1159
1225
|
margin-right: 6px;
|
|
1160
1226
|
}
|
|
1161
|
-
.media-control-skin-1
|
|
1227
|
+
.media-control-skin-1 .media-control-indicator[data-duration]::before {
|
|
1162
1228
|
content: "|";
|
|
1163
1229
|
margin-right: 7px;
|
|
1164
1230
|
}
|
|
1165
|
-
.media-control-skin-1
|
|
1166
|
-
height: 32px;
|
|
1167
|
-
}
|
|
1168
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .bar-container[data-seekbar] {
|
|
1231
|
+
.media-control-skin-1 .bar-container[data-seekbar] {
|
|
1169
1232
|
position: absolute;
|
|
1170
1233
|
top: -11px;
|
|
1171
1234
|
left: 0;
|
|
@@ -1175,14 +1238,14 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1175
1238
|
height: 20px;
|
|
1176
1239
|
cursor: pointer;
|
|
1177
1240
|
}
|
|
1178
|
-
.media-control-skin-1
|
|
1241
|
+
.media-control-skin-1 .bar-container[data-seekbar] .bar-background[data-seekbar] {
|
|
1179
1242
|
width: 100%;
|
|
1180
1243
|
height: 3px;
|
|
1181
1244
|
position: relative;
|
|
1182
1245
|
top: 8px;
|
|
1183
1246
|
background-color: #666;
|
|
1184
1247
|
}
|
|
1185
|
-
.media-control-skin-1
|
|
1248
|
+
.media-control-skin-1 .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-1[data-seekbar] {
|
|
1186
1249
|
position: absolute;
|
|
1187
1250
|
top: 0;
|
|
1188
1251
|
left: 0;
|
|
@@ -1191,7 +1254,7 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1191
1254
|
background-color: var(--player-seekbar-buffer-color);
|
|
1192
1255
|
transition: all 0.1s ease-out;
|
|
1193
1256
|
}
|
|
1194
|
-
.media-control-skin-1
|
|
1257
|
+
.media-control-skin-1 .bar-container[data-seekbar] .bar-background[data-seekbar] .bar-fill-2[data-seekbar] {
|
|
1195
1258
|
position: absolute;
|
|
1196
1259
|
top: 0;
|
|
1197
1260
|
left: 0;
|
|
@@ -1200,15 +1263,15 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1200
1263
|
background-color: var(--player-seekbar-current-color);
|
|
1201
1264
|
transition: all 0.1s ease-out;
|
|
1202
1265
|
}
|
|
1203
|
-
.media-control-skin-1
|
|
1266
|
+
.media-control-skin-1 .bar-container[data-seekbar].seek-disabled {
|
|
1204
1267
|
cursor: default;
|
|
1205
1268
|
display: none;
|
|
1206
1269
|
}
|
|
1207
|
-
.media-control-skin-1
|
|
1270
|
+
.media-control-skin-1 .bar-container[data-seekbar].seek-disabled + .bar-scrubber[data-seekbar] {
|
|
1208
1271
|
cursor: default;
|
|
1209
1272
|
display: none;
|
|
1210
1273
|
}
|
|
1211
|
-
.media-control-skin-1
|
|
1274
|
+
.media-control-skin-1 .bar-scrubber[data-seekbar] {
|
|
1212
1275
|
position: absolute;
|
|
1213
1276
|
transform: translateX(-50%);
|
|
1214
1277
|
top: -11.5px;
|
|
@@ -1218,7 +1281,7 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1218
1281
|
opacity: 1;
|
|
1219
1282
|
transition: all 0.1s ease-out;
|
|
1220
1283
|
}
|
|
1221
|
-
.media-control-skin-1
|
|
1284
|
+
.media-control-skin-1 .bar-scrubber[data-seekbar] .bar-scrubber-icon[data-seekbar] {
|
|
1222
1285
|
position: absolute;
|
|
1223
1286
|
left: 4.5px;
|
|
1224
1287
|
top: 4.5px;
|
|
@@ -1227,36 +1290,36 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1227
1290
|
border-radius: 50%;
|
|
1228
1291
|
background-color: white;
|
|
1229
1292
|
}
|
|
1230
|
-
.media-control-skin-1
|
|
1293
|
+
.media-control-skin-1 .drawer-container[data-volume] {
|
|
1231
1294
|
display: flex;
|
|
1232
1295
|
justify-content: flex-start;
|
|
1233
1296
|
height: var(--bottom-panel);
|
|
1234
1297
|
cursor: pointer;
|
|
1235
1298
|
box-sizing: border-box;
|
|
1236
1299
|
}
|
|
1237
|
-
.media-control-skin-1
|
|
1300
|
+
.media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] {
|
|
1238
1301
|
bottom: 0;
|
|
1239
1302
|
}
|
|
1240
|
-
.media-control-skin-1
|
|
1303
|
+
.media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] {
|
|
1241
1304
|
background-color: transparent;
|
|
1242
1305
|
border: 0;
|
|
1243
1306
|
box-sizing: content-box;
|
|
1244
1307
|
height: var(--bottom-panel);
|
|
1245
1308
|
width: 20px;
|
|
1246
1309
|
}
|
|
1247
|
-
.media-control-skin-1
|
|
1310
|
+
.media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] svg {
|
|
1248
1311
|
height: 20px;
|
|
1249
1312
|
position: relative;
|
|
1250
1313
|
top: 3px;
|
|
1251
1314
|
margin-top: 7px;
|
|
1252
1315
|
}
|
|
1253
|
-
.media-control-skin-1
|
|
1316
|
+
.media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume] svg path {
|
|
1254
1317
|
fill: white;
|
|
1255
1318
|
}
|
|
1256
|
-
.media-control-skin-1
|
|
1319
|
+
.media-control-skin-1 .drawer-container[data-volume] .drawer-icon-container[data-volume] .drawer-icon[data-volume].muted svg {
|
|
1257
1320
|
margin-left: 2px;
|
|
1258
1321
|
}
|
|
1259
|
-
.media-control-skin-1
|
|
1322
|
+
.media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] {
|
|
1260
1323
|
position: relative;
|
|
1261
1324
|
margin-left: 10px;
|
|
1262
1325
|
top: 8px;
|
|
@@ -1265,14 +1328,14 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1265
1328
|
padding: 3px 0;
|
|
1266
1329
|
transition: width 0.2s ease-out;
|
|
1267
1330
|
}
|
|
1268
|
-
.media-control-skin-1
|
|
1331
|
+
.media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] {
|
|
1269
1332
|
height: 3px;
|
|
1270
1333
|
border-radius: 100px;
|
|
1271
1334
|
position: relative;
|
|
1272
1335
|
top: 7px;
|
|
1273
1336
|
background-color: #666;
|
|
1274
1337
|
}
|
|
1275
|
-
.media-control-skin-1
|
|
1338
|
+
.media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] .bar-fill-1[data-volume] {
|
|
1276
1339
|
position: absolute;
|
|
1277
1340
|
top: 0;
|
|
1278
1341
|
left: 0;
|
|
@@ -1282,7 +1345,7 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1282
1345
|
background-color: white;
|
|
1283
1346
|
transition: all 0.1s ease-out;
|
|
1284
1347
|
}
|
|
1285
|
-
.media-control-skin-1
|
|
1348
|
+
.media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .bar-background[data-volume] .bar-fill-2[data-volume] {
|
|
1286
1349
|
position: absolute;
|
|
1287
1350
|
top: 0;
|
|
1288
1351
|
left: 0;
|
|
@@ -1291,7 +1354,7 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1291
1354
|
background-color: var(--player-vod-color);
|
|
1292
1355
|
transition: all 0.1s ease-out;
|
|
1293
1356
|
}
|
|
1294
|
-
.media-control-skin-1
|
|
1357
|
+
.media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber[data-volume] {
|
|
1295
1358
|
position: absolute;
|
|
1296
1359
|
transform: translateX(-50%);
|
|
1297
1360
|
top: 3px;
|
|
@@ -1301,7 +1364,7 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1301
1364
|
opacity: 1;
|
|
1302
1365
|
transition: all 0.1s ease-out;
|
|
1303
1366
|
}
|
|
1304
|
-
.media-control-skin-1
|
|
1367
|
+
.media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .bar-scrubber[data-volume] .bar-scrubber-icon[data-volume] {
|
|
1305
1368
|
position: absolute;
|
|
1306
1369
|
left: 3px;
|
|
1307
1370
|
top: 5px;
|
|
@@ -1310,7 +1373,7 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1310
1373
|
border-radius: 50%;
|
|
1311
1374
|
background-color: white;
|
|
1312
1375
|
}
|
|
1313
|
-
.media-control-skin-1
|
|
1376
|
+
.media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume] {
|
|
1314
1377
|
float: left;
|
|
1315
1378
|
width: 4px;
|
|
1316
1379
|
padding-left: 2px;
|
|
@@ -1319,75 +1382,45 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1319
1382
|
box-shadow: inset 2px 0 0 white;
|
|
1320
1383
|
transition: transform 0.2s ease-out;
|
|
1321
1384
|
}
|
|
1322
|
-
.media-control-skin-1
|
|
1385
|
+
.media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume].fill {
|
|
1323
1386
|
box-shadow: inset 2px 0 0 #fff;
|
|
1324
1387
|
opacity: 1;
|
|
1325
1388
|
}
|
|
1326
|
-
.media-control-skin-1
|
|
1389
|
+
.media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume]:nth-of-type(1) {
|
|
1327
1390
|
padding-left: 0;
|
|
1328
1391
|
}
|
|
1329
|
-
.media-control-skin-1
|
|
1392
|
+
.media-control-skin-1 .drawer-container[data-volume] .bar-container[data-volume] .segmented-bar-element[data-volume]:hover {
|
|
1330
1393
|
transform: scaleY(1.5);
|
|
1331
1394
|
}
|
|
1332
1395
|
|
|
1333
1396
|
/* TODO distribute between plugins' styles */
|
|
1334
|
-
.media-control-skin-1
|
|
1335
|
-
display: flex;
|
|
1336
|
-
justify-content: center;
|
|
1337
|
-
padding: 0;
|
|
1338
|
-
align-items: center;
|
|
1339
|
-
}
|
|
1340
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-cc button[data-cc-button]:hover {
|
|
1341
|
-
color: white;
|
|
1342
|
-
}
|
|
1343
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-cc ul {
|
|
1344
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
1345
|
-
border: none;
|
|
1346
|
-
width: auto;
|
|
1347
|
-
border-radius: 4px;
|
|
1348
|
-
bottom: 52px;
|
|
1349
|
-
margin-left: -28px;
|
|
1350
|
-
}
|
|
1351
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li {
|
|
1352
|
-
font-size: 16px;
|
|
1353
|
-
text-align: center;
|
|
1354
|
-
white-space: nowrap;
|
|
1355
|
-
height: 30px;
|
|
1356
|
-
}
|
|
1357
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li a {
|
|
1358
|
-
height: 30px;
|
|
1359
|
-
padding: 5px 10px;
|
|
1360
|
-
color: #fffffe;
|
|
1361
|
-
}
|
|
1362
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li a:hover {
|
|
1363
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
1364
|
-
}
|
|
1365
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li.current a {
|
|
1366
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
1367
|
-
}
|
|
1368
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li:first-child a {
|
|
1369
|
-
border-bottom-left-radius: 4px;
|
|
1370
|
-
border-bottom-right-radius: 4px;
|
|
1371
|
-
}
|
|
1372
|
-
.media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li:last-child a {
|
|
1373
|
-
border-top-left-radius: 4px;
|
|
1374
|
-
border-top-right-radius: 4px;
|
|
1375
|
-
}
|
|
1376
|
-
.media-control-skin-1[data-media-control-skin-1] .seek-time {
|
|
1397
|
+
.media-control-skin-1 .seek-time {
|
|
1377
1398
|
height: 26px;
|
|
1378
1399
|
line-height: 26px;
|
|
1379
1400
|
bottom: 52px;
|
|
1380
1401
|
border-radius: 3px;
|
|
1381
1402
|
background-color: rgba(74, 74, 74, 0.7);
|
|
1382
1403
|
}
|
|
1383
|
-
.media-control-skin-1
|
|
1404
|
+
.media-control-skin-1 .seek-time span {
|
|
1384
1405
|
letter-spacing: 0.8px;
|
|
1385
1406
|
font-size: 14px;
|
|
1386
1407
|
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1387
1408
|
}
|
|
1388
|
-
.media-control-skin-1
|
|
1409
|
+
.media-control-skin-1 .seek-time .seek-time__pos {
|
|
1389
1410
|
padding-left: 8px;
|
|
1390
1411
|
padding-right: 8px;
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1414
|
+
@keyframes pulse {
|
|
1415
|
+
0% {
|
|
1416
|
+
color: #fff;
|
|
1417
|
+
}
|
|
1418
|
+
50% {
|
|
1419
|
+
color: #ff0101;
|
|
1420
|
+
}
|
|
1421
|
+
100% {
|
|
1422
|
+
color: #B80000;
|
|
1423
|
+
}
|
|
1391
1424
|
}.big-mute-icon-wrapper[data-big-mute] {
|
|
1392
1425
|
position: absolute;
|
|
1393
1426
|
z-index: 9998;
|
|
@@ -1437,134 +1470,49 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1437
1470
|
}
|
|
1438
1471
|
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
1439
1472
|
fill: #151515 !important;
|
|
1440
|
-
}.
|
|
1441
|
-
--disabled-opacity: 0.3;
|
|
1442
|
-
--circle-radius: 5px;
|
|
1473
|
+
}.player-poster {
|
|
1443
1474
|
display: flex;
|
|
1475
|
+
justify-content: center;
|
|
1444
1476
|
align-items: center;
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1477
|
+
position: absolute;
|
|
1478
|
+
height: 100%;
|
|
1479
|
+
width: 100%;
|
|
1480
|
+
z-index: 998;
|
|
1481
|
+
top: 0;
|
|
1482
|
+
left: 0;
|
|
1483
|
+
background-color: #000;
|
|
1484
|
+
background-size: cover;
|
|
1485
|
+
background-repeat: no-repeat;
|
|
1486
|
+
background-position: 50% 50%;
|
|
1451
1487
|
}
|
|
1452
|
-
.
|
|
1453
|
-
|
|
1454
|
-
font-size: 14px;
|
|
1455
|
-
font-weight: 500;
|
|
1456
|
-
margin-left: 20px;
|
|
1457
|
-
letter-spacing: 0.8px;
|
|
1458
|
-
text-transform: uppercase;
|
|
1488
|
+
.player-poster.clickable {
|
|
1489
|
+
cursor: pointer;
|
|
1459
1490
|
}
|
|
1460
|
-
.
|
|
1461
|
-
|
|
1462
|
-
margin-right: 8px;
|
|
1463
|
-
content: "";
|
|
1464
|
-
display: inline-block;
|
|
1465
|
-
position: relative;
|
|
1466
|
-
width: calc(var(--circle-radius) * 2);
|
|
1467
|
-
height: calc(var(--circle-radius) * 2);
|
|
1468
|
-
border-radius: var(--circle-radius);
|
|
1469
|
-
background-color: var(--player-dvr-color);
|
|
1491
|
+
.player-poster:hover .play-wrapper {
|
|
1492
|
+
opacity: 1;
|
|
1470
1493
|
}
|
|
1471
|
-
.
|
|
1472
|
-
|
|
1494
|
+
.player-poster .play-wrapper {
|
|
1495
|
+
width: 100%;
|
|
1496
|
+
height: 25%;
|
|
1497
|
+
margin: 0 auto;
|
|
1498
|
+
opacity: 0.75;
|
|
1499
|
+
transition: opacity 0.1s ease;
|
|
1473
1500
|
}
|
|
1474
|
-
.
|
|
1475
|
-
|
|
1501
|
+
.player-poster .play-wrapper svg {
|
|
1502
|
+
height: 100%;
|
|
1503
|
+
display: inline;
|
|
1476
1504
|
}
|
|
1477
|
-
.
|
|
1478
|
-
|
|
1479
|
-
|
|
1505
|
+
.player-poster .play-wrapper svg path {
|
|
1506
|
+
fill: #fff;
|
|
1507
|
+
}.share_plugin[data-share] {
|
|
1508
|
+
pointer-events: auto;
|
|
1509
|
+
z-index: 5;
|
|
1510
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
1480
1511
|
}
|
|
1481
|
-
.
|
|
1482
|
-
|
|
1512
|
+
.share_plugin[data-share].share-hide .share-button-container {
|
|
1513
|
+
right: -50px;
|
|
1483
1514
|
}
|
|
1484
|
-
.
|
|
1485
|
-
cursor: pointer;
|
|
1486
|
-
outline: none;
|
|
1487
|
-
border: 0;
|
|
1488
|
-
color: var(--player-dvr-color);
|
|
1489
|
-
background-color: transparent;
|
|
1490
|
-
padding: 0;
|
|
1491
|
-
opacity: 0.7;
|
|
1492
|
-
transition: all 0.1s ease;
|
|
1493
|
-
}
|
|
1494
|
-
.dvr-controls .live-button:hover {
|
|
1495
|
-
opacity: 1;
|
|
1496
|
-
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
1497
|
-
}.quality-levels li.disabled {
|
|
1498
|
-
opacity: 0.5;
|
|
1499
|
-
pointer-events: none;
|
|
1500
|
-
}
|
|
1501
|
-
.quality-levels li.current {
|
|
1502
|
-
background-color: #000;
|
|
1503
|
-
}.seek-time {
|
|
1504
|
-
position: absolute;
|
|
1505
|
-
white-space: nowrap;
|
|
1506
|
-
height: 20px;
|
|
1507
|
-
line-height: 20px;
|
|
1508
|
-
font-size: 0;
|
|
1509
|
-
left: -100%;
|
|
1510
|
-
bottom: 55px;
|
|
1511
|
-
background-color: rgba(2, 2, 2, 0.5);
|
|
1512
|
-
z-index: 9999;
|
|
1513
|
-
transition: opacity 0.1s ease;
|
|
1514
|
-
}
|
|
1515
|
-
.seek-time.hidden {
|
|
1516
|
-
opacity: 0;
|
|
1517
|
-
}
|
|
1518
|
-
.seek-time .seek-time__pos {
|
|
1519
|
-
display: inline-block;
|
|
1520
|
-
color: white;
|
|
1521
|
-
font-size: 10px;
|
|
1522
|
-
padding-left: 7px;
|
|
1523
|
-
padding-right: 7px;
|
|
1524
|
-
vertical-align: top;
|
|
1525
|
-
}
|
|
1526
|
-
.seek-time .seek-time__duration {
|
|
1527
|
-
display: inline-block;
|
|
1528
|
-
color: rgba(255, 255, 255, 0.5);
|
|
1529
|
-
font-size: 10px;
|
|
1530
|
-
padding-right: 7px;
|
|
1531
|
-
vertical-align: top;
|
|
1532
|
-
}
|
|
1533
|
-
.seek-time .seek-time__duration::before {
|
|
1534
|
-
content: "|";
|
|
1535
|
-
margin-right: 7px;
|
|
1536
|
-
}@charset "UTF-8";
|
|
1537
|
-
.gplayer-mc-clips {
|
|
1538
|
-
display: flex;
|
|
1539
|
-
gap: 6px;
|
|
1540
|
-
}
|
|
1541
|
-
.gplayer-mc-clips .gplayer-mc-clips-text {
|
|
1542
|
-
text-overflow: ellipsis;
|
|
1543
|
-
white-space: nowrap;
|
|
1544
|
-
overflow: hidden;
|
|
1545
|
-
display: inline-block;
|
|
1546
|
-
text-overflow: ellipsis;
|
|
1547
|
-
color: white;
|
|
1548
|
-
cursor: default;
|
|
1549
|
-
line-height: var(--bottom-panel);
|
|
1550
|
-
position: relative;
|
|
1551
|
-
max-width: 150px;
|
|
1552
|
-
}
|
|
1553
|
-
.gplayer-mc-clips .gplayer-mc-clips-text::before {
|
|
1554
|
-
content: "•";
|
|
1555
|
-
padding-right: 6px;
|
|
1556
|
-
}
|
|
1557
|
-
.gplayer-mc-clips .gplayer-mc-clips-text.compact {
|
|
1558
|
-
max-width: 100px;
|
|
1559
|
-
}.share_plugin[data-share] {
|
|
1560
|
-
pointer-events: auto;
|
|
1561
|
-
z-index: 5;
|
|
1562
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
1563
|
-
}
|
|
1564
|
-
.share_plugin[data-share].share-hide .share-button-container {
|
|
1565
|
-
right: -50px;
|
|
1566
|
-
}
|
|
1567
|
-
.share_plugin[data-share] .share-button-container {
|
|
1515
|
+
.share_plugin[data-share] .share-button-container {
|
|
1568
1516
|
cursor: pointer;
|
|
1569
1517
|
width: 36px;
|
|
1570
1518
|
height: 36px;
|
|
@@ -1639,7 +1587,9 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1639
1587
|
display: inline-block;
|
|
1640
1588
|
margin-right: 5px;
|
|
1641
1589
|
cursor: pointer;
|
|
1642
|
-
}*,
|
|
1590
|
+
}*,
|
|
1591
|
+
:focus,
|
|
1592
|
+
:visited {
|
|
1643
1593
|
outline: none !important;
|
|
1644
1594
|
}
|
|
1645
1595
|
|
|
@@ -1737,7 +1687,8 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1737
1687
|
text-align: left;
|
|
1738
1688
|
margin-left: 15px;
|
|
1739
1689
|
}
|
|
1740
|
-
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title,
|
|
1690
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title,
|
|
1691
|
+
.multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
|
|
1741
1692
|
width: 120px;
|
|
1742
1693
|
height: 20px;
|
|
1743
1694
|
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
@@ -1775,18 +1726,69 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1775
1726
|
}
|
|
1776
1727
|
.multicamera[data-multicamera] li.current a {
|
|
1777
1728
|
color: #f00;
|
|
1729
|
+
}.media-control-skin-1 .gplayer-mc-panel-item.media-control-pip {
|
|
1730
|
+
order: 95;
|
|
1731
|
+
display: flex;
|
|
1732
|
+
}
|
|
1733
|
+
.media-control-skin-1 .gplayer-mc-panel-item.media-control-pip button {
|
|
1734
|
+
height: 20px;
|
|
1735
|
+
}
|
|
1736
|
+
.media-control-skin-1 .gplayer-mc-panel-item.media-control-pip button svg {
|
|
1737
|
+
height: 20px;
|
|
1738
|
+
}.seek-time {
|
|
1739
|
+
position: absolute;
|
|
1740
|
+
white-space: nowrap;
|
|
1741
|
+
height: 20px;
|
|
1742
|
+
line-height: 20px;
|
|
1743
|
+
font-size: 0;
|
|
1744
|
+
left: -100%;
|
|
1745
|
+
bottom: 55px;
|
|
1746
|
+
background-color: rgba(2, 2, 2, 0.5);
|
|
1747
|
+
z-index: 9999;
|
|
1748
|
+
transition: opacity 0.1s ease;
|
|
1749
|
+
}
|
|
1750
|
+
.seek-time.hidden {
|
|
1751
|
+
opacity: 0;
|
|
1752
|
+
}
|
|
1753
|
+
.seek-time .seek-time__pos {
|
|
1754
|
+
display: inline-block;
|
|
1755
|
+
color: white;
|
|
1756
|
+
font-size: 10px;
|
|
1757
|
+
padding-left: 7px;
|
|
1758
|
+
padding-right: 7px;
|
|
1759
|
+
vertical-align: top;
|
|
1760
|
+
}
|
|
1761
|
+
.seek-time .seek-time__duration {
|
|
1762
|
+
display: inline-block;
|
|
1763
|
+
color: rgba(255, 255, 255, 0.5);
|
|
1764
|
+
font-size: 10px;
|
|
1765
|
+
padding-right: 7px;
|
|
1766
|
+
vertical-align: top;
|
|
1767
|
+
}
|
|
1768
|
+
.seek-time .seek-time__duration::before {
|
|
1769
|
+
content: "|";
|
|
1770
|
+
margin-right: 7px;
|
|
1771
|
+
}.container-with-poster-clickable .mc-skip-time {
|
|
1772
|
+
height: 0;
|
|
1778
1773
|
}
|
|
1779
1774
|
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1775
|
+
.mc-skip-time {
|
|
1776
|
+
position: absolute;
|
|
1777
|
+
width: 100%;
|
|
1778
|
+
height: calc(100% - 50px);
|
|
1779
|
+
z-index: 9998;
|
|
1780
|
+
background-color: transparent;
|
|
1781
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1782
|
+
}
|
|
1783
|
+
.mc-skip-time .skip-container {
|
|
1784
|
+
width: 100%;
|
|
1785
|
+
height: 100%;
|
|
1786
|
+
display: flex;
|
|
1787
|
+
justify-content: space-between;
|
|
1788
|
+
}
|
|
1789
|
+
.mc-skip-time .skip-container .skip-item {
|
|
1790
|
+
flex: 1 0 0px;
|
|
1791
|
+
height: 100%;
|
|
1790
1792
|
}.spinner-three-bounce[data-spinner] {
|
|
1791
1793
|
position: absolute;
|
|
1792
1794
|
width: 70px;
|
|
@@ -1825,61 +1827,95 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1825
1827
|
40% {
|
|
1826
1828
|
transform: scale(1);
|
|
1827
1829
|
}
|
|
1828
|
-
}.
|
|
1829
|
-
height: 0;
|
|
1830
|
-
}
|
|
1831
|
-
|
|
1832
|
-
.mc-skip-time {
|
|
1833
|
-
position: absolute;
|
|
1834
|
-
width: 100%;
|
|
1835
|
-
height: calc(100% - 50px);
|
|
1836
|
-
z-index: 9998;
|
|
1837
|
-
background-color: transparent;
|
|
1838
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif;
|
|
1839
|
-
}
|
|
1840
|
-
.mc-skip-time .skip-container {
|
|
1841
|
-
width: 100%;
|
|
1842
|
-
height: 100%;
|
|
1843
|
-
display: flex;
|
|
1844
|
-
justify-content: space-between;
|
|
1845
|
-
}
|
|
1846
|
-
.mc-skip-time .skip-container .skip-item {
|
|
1847
|
-
flex: 1 0 0px;
|
|
1848
|
-
height: 100%;
|
|
1849
|
-
}.player-poster {
|
|
1830
|
+
}.media-control-skin-1 .media-control-cc button.media-control-button {
|
|
1850
1831
|
display: flex;
|
|
1851
1832
|
justify-content: center;
|
|
1833
|
+
padding: 0;
|
|
1852
1834
|
align-items: center;
|
|
1853
|
-
|
|
1854
|
-
height: 100%;
|
|
1855
|
-
width: 100%;
|
|
1856
|
-
z-index: 998;
|
|
1857
|
-
top: 0;
|
|
1858
|
-
left: 0;
|
|
1859
|
-
background-color: #000;
|
|
1860
|
-
background-size: cover;
|
|
1861
|
-
background-repeat: no-repeat;
|
|
1862
|
-
background-position: 50% 50%;
|
|
1835
|
+
vertical-align: top;
|
|
1863
1836
|
}
|
|
1864
|
-
.
|
|
1837
|
+
.media-control-skin-1 .media-control-cc button.media-control-button:hover {
|
|
1838
|
+
color: white;
|
|
1839
|
+
}
|
|
1840
|
+
.media-control-skin-1 .media-control-cc ul {
|
|
1841
|
+
width: auto;
|
|
1842
|
+
border-radius: 4px;
|
|
1843
|
+
bottom: 52px;
|
|
1844
|
+
margin-left: -28px;
|
|
1845
|
+
}
|
|
1846
|
+
.media-control-skin-1 .media-control-cc ul li {
|
|
1847
|
+
font-size: 16px;
|
|
1848
|
+
text-align: center;
|
|
1849
|
+
white-space: nowrap;
|
|
1850
|
+
height: 30px;
|
|
1851
|
+
}
|
|
1852
|
+
.media-control-skin-1 .media-control-cc ul li a {
|
|
1853
|
+
height: 30px;
|
|
1854
|
+
padding: 5px 10px;
|
|
1855
|
+
color: #fffffe;
|
|
1856
|
+
}
|
|
1857
|
+
.media-control-skin-1 .media-control-cc ul li a:hover {
|
|
1858
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
1859
|
+
}
|
|
1860
|
+
.media-control-skin-1 .media-control-cc ul li.current a {
|
|
1861
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
1862
|
+
}
|
|
1863
|
+
.media-control-skin-1 .media-control-cc ul li:first-child a {
|
|
1864
|
+
border-bottom-left-radius: 4px;
|
|
1865
|
+
border-bottom-right-radius: 4px;
|
|
1866
|
+
}
|
|
1867
|
+
.media-control-skin-1 .media-control-cc ul li:last-child a {
|
|
1868
|
+
border-top-left-radius: 4px;
|
|
1869
|
+
border-top-right-radius: 4px;
|
|
1870
|
+
}
|
|
1871
|
+
.media-control-skin-1 .media-control-cc {
|
|
1872
|
+
position: relative;
|
|
1873
|
+
order: 85;
|
|
1874
|
+
}
|
|
1875
|
+
.media-control-skin-1 .media-control-cc button {
|
|
1876
|
+
background-color: transparent;
|
|
1877
|
+
color: #fff;
|
|
1878
|
+
-webkit-font-smoothing: antialiased;
|
|
1879
|
+
border: none;
|
|
1865
1880
|
cursor: pointer;
|
|
1866
1881
|
}
|
|
1867
|
-
.
|
|
1868
|
-
|
|
1882
|
+
.media-control-skin-1 .media-control-cc button .cc-text svg {
|
|
1883
|
+
fill: white;
|
|
1869
1884
|
}
|
|
1870
|
-
.
|
|
1871
|
-
|
|
1872
|
-
height: 25%;
|
|
1873
|
-
margin: 0 auto;
|
|
1874
|
-
opacity: 0.75;
|
|
1875
|
-
transition: opacity 0.1s ease;
|
|
1885
|
+
.media-control-skin-1 .media-control-cc button:hover {
|
|
1886
|
+
color: #c9c9c9;
|
|
1876
1887
|
}
|
|
1877
|
-
.
|
|
1878
|
-
|
|
1879
|
-
display: inline;
|
|
1888
|
+
.media-control-skin-1 .media-control-cc button.changing {
|
|
1889
|
+
animation: pulse 0.5s infinite alternate;
|
|
1880
1890
|
}
|
|
1881
|
-
.
|
|
1882
|
-
|
|
1891
|
+
.media-control-skin-1 .media-control-cc ul {
|
|
1892
|
+
width: 80px;
|
|
1893
|
+
overflow: hidden;
|
|
1894
|
+
list-style-type: none;
|
|
1895
|
+
position: absolute;
|
|
1896
|
+
bottom: 25px;
|
|
1897
|
+
border: none;
|
|
1898
|
+
background-color: #e6e6e6;
|
|
1899
|
+
padding: 8px 0;
|
|
1900
|
+
box-shadow: 0 0 1px 1px var(--gplayer-mc-popup-border-color);
|
|
1901
|
+
}
|
|
1902
|
+
.media-control-skin-1 .media-control-cc li a {
|
|
1903
|
+
color: #444;
|
|
1904
|
+
padding: 2px 10px;
|
|
1905
|
+
display: block;
|
|
1906
|
+
text-decoration: none;
|
|
1907
|
+
}
|
|
1908
|
+
.media-control-skin-1 .media-control-cc li a:hover {
|
|
1909
|
+
background-color: #555;
|
|
1910
|
+
color: white;
|
|
1911
|
+
}
|
|
1912
|
+
.media-control-skin-1 .media-control-cc li a:hover a {
|
|
1913
|
+
color: white;
|
|
1914
|
+
text-decoration: none;
|
|
1915
|
+
}
|
|
1916
|
+
.media-control-skin-1 .media-control-cc li.current a {
|
|
1917
|
+
color: #f00;
|
|
1918
|
+
background-color: #555;
|
|
1883
1919
|
}.scrub-thumbnails {
|
|
1884
1920
|
position: absolute;
|
|
1885
1921
|
bottom: 52px;
|
|
@@ -1943,79 +1979,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1943
1979
|
}
|
|
1944
1980
|
.scrub-thumbnails .backdrop .carousel img {
|
|
1945
1981
|
width: auto;
|
|
1946
|
-
}*,
|
|
1947
|
-
:focus,
|
|
1948
|
-
:visited {
|
|
1949
|
-
outline: none !important;
|
|
1950
|
-
}
|
|
1951
|
-
|
|
1952
|
-
.media-control-cc[data-cc] {
|
|
1953
|
-
position: relative;
|
|
1954
|
-
order: 85;
|
|
1955
|
-
}
|
|
1956
|
-
.media-control-cc[data-cc] button {
|
|
1957
|
-
background-color: transparent;
|
|
1958
|
-
color: #fff;
|
|
1959
|
-
-webkit-font-smoothing: antialiased;
|
|
1960
|
-
border: none;
|
|
1961
|
-
cursor: pointer;
|
|
1962
|
-
}
|
|
1963
|
-
.media-control-cc[data-cc] button .cc-text svg {
|
|
1964
|
-
fill: white;
|
|
1965
|
-
}
|
|
1966
|
-
.media-control-cc[data-cc] button:hover {
|
|
1967
|
-
color: #c9c9c9;
|
|
1968
|
-
}
|
|
1969
|
-
.media-control-cc[data-cc] button.changing {
|
|
1970
|
-
animation: pulse 0.5s infinite alternate;
|
|
1971
|
-
}
|
|
1972
|
-
.media-control-cc[data-cc] ul {
|
|
1973
|
-
width: 80px;
|
|
1974
|
-
list-style-type: none;
|
|
1975
|
-
position: absolute;
|
|
1976
|
-
bottom: 25px;
|
|
1977
|
-
border: 1px solid black;
|
|
1978
|
-
background-color: #e6e6e6;
|
|
1979
|
-
padding: 8px 0;
|
|
1980
|
-
}
|
|
1981
|
-
.media-control-cc[data-cc] li a {
|
|
1982
|
-
color: #444;
|
|
1983
|
-
padding: 2px 10px;
|
|
1984
|
-
display: block;
|
|
1985
|
-
text-decoration: none;
|
|
1986
|
-
}
|
|
1987
|
-
.media-control-cc[data-cc] li a:hover {
|
|
1988
|
-
background-color: #555;
|
|
1989
|
-
color: white;
|
|
1990
|
-
}
|
|
1991
|
-
.media-control-cc[data-cc] li a:hover a {
|
|
1992
|
-
color: white;
|
|
1993
|
-
text-decoration: none;
|
|
1994
|
-
}
|
|
1995
|
-
.media-control-cc[data-cc] li.current a {
|
|
1996
|
-
color: #f00;
|
|
1997
|
-
background-color: #555;
|
|
1998
|
-
}
|
|
1999
|
-
|
|
2000
|
-
@keyframes pulse {
|
|
2001
|
-
0% {
|
|
2002
|
-
color: #fff;
|
|
2003
|
-
}
|
|
2004
|
-
50% {
|
|
2005
|
-
color: #ff0101;
|
|
2006
|
-
}
|
|
2007
|
-
100% {
|
|
2008
|
-
color: #B80000;
|
|
2009
|
-
}
|
|
2010
|
-
}
|
|
2011
|
-
::cue {
|
|
2012
|
-
visibility: hidden !important;
|
|
2013
|
-
font-size: 0 !important;
|
|
2014
|
-
}
|
|
2015
|
-
|
|
2016
|
-
.ios-fullscreen::cue {
|
|
2017
|
-
visibility: visible !important;
|
|
2018
|
-
font-size: 1em !important;
|
|
2019
1982
|
}.player-logo[data-logo] {
|
|
2020
1983
|
position: absolute;
|
|
2021
1984
|
z-index: 2;
|