@gcorevideo/player 2.25.0 → 2.25.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/media-control/media-control.scss +23 -0
- package/dist/core.js +1 -1
- package/dist/index.css +523 -505
- package/dist/index.embed.js +2 -1
- package/dist/index.js +2 -1
- package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
- package/lib/plugins/media-control/MediaControl.js +1 -0
- package/package.json +1 -1
- package/src/plugins/media-control/MediaControl.ts +1 -0
- package/src/plugins/media-control/__tests__/__snapshots__/MediaControl.test.ts.snap +6 -6
- package/tsconfig.tsbuildinfo +1 -1
package/dist/index.css
CHANGED
|
@@ -122,113 +122,163 @@
|
|
|
122
122
|
.gplayer-lite-btn::-moz-focus-inner {
|
|
123
123
|
border: 0;
|
|
124
124
|
padding: 0;
|
|
125
|
-
}*,
|
|
125
|
+
}*,
|
|
126
|
+
:focus,
|
|
127
|
+
:visited {
|
|
126
128
|
outline: none !important;
|
|
127
129
|
}
|
|
128
130
|
|
|
129
|
-
.
|
|
130
|
-
|
|
131
|
-
font-size: 14px;
|
|
132
|
-
line-height: 20px;
|
|
133
|
-
width: 100%;
|
|
134
|
-
text-align: left;
|
|
135
|
-
padding: 12px;
|
|
131
|
+
.media-control-audiotracks {
|
|
132
|
+
position: relative;
|
|
136
133
|
}
|
|
137
|
-
.
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
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;
|
|
141
143
|
}
|
|
142
|
-
.
|
|
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;
|
|
144
153
|
}
|
|
145
|
-
.
|
|
146
|
-
|
|
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;
|
|
147
167
|
list-style-type: none;
|
|
168
|
+
position: absolute;
|
|
169
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
170
|
+
border: none;
|
|
148
171
|
min-width: 60px;
|
|
149
|
-
border-
|
|
150
|
-
|
|
172
|
+
border-radius: 4px;
|
|
173
|
+
bottom: 40px;
|
|
174
|
+
right: -2px;
|
|
151
175
|
}
|
|
152
|
-
.
|
|
153
|
-
|
|
154
|
-
text-align: left;
|
|
176
|
+
.media-control-audiotracks .menu.hidden {
|
|
177
|
+
display: none;
|
|
155
178
|
}
|
|
156
|
-
.
|
|
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] {
|
|
157
185
|
background-color: #c3c2c2;
|
|
158
186
|
padding: 5px;
|
|
159
187
|
}
|
|
160
|
-
.
|
|
188
|
+
.media-control-audiotracks li a {
|
|
161
189
|
display: block;
|
|
162
190
|
text-decoration: none;
|
|
163
|
-
|
|
191
|
+
text-overflow: ellipsis;
|
|
192
|
+
overflow: hidden;
|
|
193
|
+
white-space: nowrap;
|
|
194
|
+
height: 30px;
|
|
164
195
|
padding: 5px 10px;
|
|
165
|
-
line-height: 22px;
|
|
166
196
|
color: #fffffe;
|
|
167
197
|
}
|
|
168
|
-
.
|
|
169
|
-
|
|
198
|
+
.media-control-audiotracks li a:hover {
|
|
199
|
+
text-decoration: none;
|
|
170
200
|
background-color: rgba(0, 0, 0, 0.4);
|
|
171
|
-
}
|
|
172
|
-
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
173
201
|
color: white;
|
|
174
|
-
text-decoration: none;
|
|
175
|
-
}
|
|
176
|
-
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
177
|
-
width: 30px;
|
|
178
|
-
height: 20px;
|
|
179
|
-
float: left;
|
|
180
|
-
display: block;
|
|
181
|
-
}
|
|
182
|
-
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
183
|
-
display: none;
|
|
184
202
|
}
|
|
185
|
-
.
|
|
186
|
-
|
|
187
|
-
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
188
|
-
order: 99;
|
|
189
|
-
height: 20px;
|
|
203
|
+
.media-control-audiotracks li.current a {
|
|
204
|
+
color: #f00;
|
|
190
205
|
}
|
|
191
|
-
.media-control-
|
|
192
|
-
|
|
193
|
-
right:
|
|
194
|
-
bottom: 52px;
|
|
195
|
-
width: 250px;
|
|
196
|
-
min-height: 48px;
|
|
197
|
-
z-index: 9999;
|
|
198
|
-
border-radius: 4px;
|
|
206
|
+
.media-control-audiotracks li:first-child a {
|
|
207
|
+
border-bottom-left-radius: 4px;
|
|
208
|
+
border-bottom-right-radius: 4px;
|
|
199
209
|
}
|
|
200
|
-
.media-control-
|
|
201
|
-
|
|
210
|
+
.media-control-audiotracks li:last-child a {
|
|
211
|
+
border-top-left-radius: 4px;
|
|
212
|
+
border-top-right-radius: 4px;
|
|
202
213
|
}
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
214
|
+
|
|
215
|
+
@keyframes pulse {
|
|
216
|
+
0% {
|
|
217
|
+
color: #fff;
|
|
218
|
+
}
|
|
219
|
+
50% {
|
|
220
|
+
color: #ff0101;
|
|
221
|
+
}
|
|
222
|
+
100% {
|
|
223
|
+
color: #B80000;
|
|
224
|
+
}
|
|
225
|
+
}.dvr-controls {
|
|
226
|
+
--disabled-opacity: 0.3;
|
|
227
|
+
--circle-radius: 5px;
|
|
210
228
|
display: flex;
|
|
211
229
|
align-items: center;
|
|
212
|
-
|
|
213
|
-
|
|
230
|
+
color: var(--player-dvr-color);
|
|
231
|
+
font-size: 10px;
|
|
232
|
+
font-weight: 500;
|
|
233
|
+
height: var(--bottom-panel);
|
|
234
|
+
line-height: var(--bottom-panel);
|
|
235
|
+
margin-left: 0;
|
|
214
236
|
}
|
|
215
|
-
.
|
|
216
|
-
|
|
217
|
-
|
|
237
|
+
.dvr-controls .live-info,
|
|
238
|
+
.dvr-controls .live-button {
|
|
239
|
+
font-size: 14px;
|
|
240
|
+
font-weight: 500;
|
|
241
|
+
margin-left: 20px;
|
|
242
|
+
letter-spacing: 0.8px;
|
|
243
|
+
text-transform: uppercase;
|
|
218
244
|
}
|
|
219
|
-
.
|
|
220
|
-
|
|
245
|
+
.dvr-controls .live-info::before,
|
|
246
|
+
.dvr-controls .live-button::before {
|
|
247
|
+
margin-right: 8px;
|
|
248
|
+
content: "";
|
|
221
249
|
display: inline-block;
|
|
250
|
+
position: relative;
|
|
251
|
+
width: calc(var(--circle-radius) * 2);
|
|
252
|
+
height: calc(var(--circle-radius) * 2);
|
|
253
|
+
border-radius: var(--circle-radius);
|
|
254
|
+
background-color: var(--player-dvr-color);
|
|
222
255
|
}
|
|
223
|
-
.
|
|
224
|
-
|
|
256
|
+
.dvr-controls.disabled {
|
|
257
|
+
opacity: var(--disabled-opacity);
|
|
225
258
|
}
|
|
226
|
-
.
|
|
227
|
-
|
|
228
|
-
height: 24px;
|
|
259
|
+
.dvr-controls.disabled:before {
|
|
260
|
+
background-color: var(--player-dvr-color);
|
|
229
261
|
}
|
|
230
|
-
.
|
|
231
|
-
|
|
262
|
+
.dvr-controls .live-info {
|
|
263
|
+
text-transform: uppercase;
|
|
264
|
+
color: #fffffe;
|
|
265
|
+
}
|
|
266
|
+
.dvr-controls .live-info::before {
|
|
267
|
+
background-color: #ed4f4a;
|
|
268
|
+
}
|
|
269
|
+
.dvr-controls .live-button {
|
|
270
|
+
cursor: pointer;
|
|
271
|
+
outline: none;
|
|
272
|
+
border: 0;
|
|
273
|
+
color: var(--player-dvr-color);
|
|
274
|
+
background-color: transparent;
|
|
275
|
+
padding: 0;
|
|
276
|
+
opacity: 0.7;
|
|
277
|
+
transition: all 0.1s ease;
|
|
278
|
+
}
|
|
279
|
+
.dvr-controls .live-button:hover {
|
|
280
|
+
opacity: 1;
|
|
281
|
+
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
232
282
|
}:root {
|
|
233
283
|
--primary-background-color: #000;
|
|
234
284
|
--secondary-background-color: #262626;
|
|
@@ -593,115 +643,55 @@
|
|
|
593
643
|
.fullscreen .clappr-nerd-stats .stats-box {
|
|
594
644
|
top: unset;
|
|
595
645
|
}
|
|
596
|
-
}
|
|
597
|
-
:
|
|
598
|
-
:
|
|
599
|
-
|
|
646
|
+
}.big-mute-icon-wrapper[data-big-mute] {
|
|
647
|
+
position: absolute;
|
|
648
|
+
z-index: 9998;
|
|
649
|
+
background-color: transparent;
|
|
650
|
+
display: flex;
|
|
651
|
+
justify-content: center;
|
|
652
|
+
width: 100%;
|
|
653
|
+
height: calc(100% - 50px);
|
|
654
|
+
margin: 0 auto;
|
|
655
|
+
opacity: 0.75;
|
|
656
|
+
transition: opacity 0.1s ease;
|
|
657
|
+
pointer-events: auto;
|
|
600
658
|
}
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
position: relative;
|
|
659
|
+
.big-mute-icon-wrapper[data-big-mute].hide {
|
|
660
|
+
display: none;
|
|
604
661
|
}
|
|
605
|
-
.
|
|
606
|
-
background-color: transparent;
|
|
607
|
-
color: #fff;
|
|
608
|
-
-webkit-font-smoothing: antialiased;
|
|
609
|
-
border: none;
|
|
662
|
+
.big-mute-icon-wrapper[data-big-mute]:hover {
|
|
610
663
|
cursor: pointer;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
.big-mute-icon[data-big-mute-icon] {
|
|
611
667
|
display: flex;
|
|
612
668
|
align-items: center;
|
|
613
|
-
|
|
669
|
+
justify-content: center;
|
|
670
|
+
align-self: center;
|
|
671
|
+
width: 120px;
|
|
672
|
+
height: 120px;
|
|
673
|
+
border: 2px solid white;
|
|
674
|
+
border-radius: 50%;
|
|
675
|
+
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
676
|
+
filter: alpha(opacity=60);
|
|
677
|
+
opacity: 1;
|
|
678
|
+
box-shadow: 0 0 1px 0 white;
|
|
679
|
+
background: rgba(240, 243, 247, 0.9411764706);
|
|
680
|
+
z-index: 10000;
|
|
614
681
|
}
|
|
615
|
-
.
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
max-width: 100px;
|
|
620
|
-
background-color: transparent;
|
|
621
|
-
-webkit-font-smoothing: antialiased;
|
|
622
|
-
border: none;
|
|
623
|
-
cursor: pointer;
|
|
682
|
+
.big-mute-icon[data-big-mute-icon] svg {
|
|
683
|
+
margin-left: 5px;
|
|
684
|
+
width: 80px;
|
|
685
|
+
height: 80px;
|
|
624
686
|
}
|
|
625
|
-
.
|
|
626
|
-
|
|
627
|
-
}
|
|
628
|
-
.media-control-audiotracks button.changing {
|
|
629
|
-
animation: pulse 0.5s infinite alternate;
|
|
630
|
-
}
|
|
631
|
-
.media-control-audiotracks button span.audio-arrow {
|
|
632
|
-
width: 9px;
|
|
633
|
-
height: 6px;
|
|
634
|
-
margin-left: 5px;
|
|
635
|
-
}
|
|
636
|
-
.media-control-audiotracks .menu {
|
|
637
|
-
max-width: 114px;
|
|
638
|
-
list-style-type: none;
|
|
639
|
-
position: absolute;
|
|
640
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
641
|
-
border: none;
|
|
642
|
-
min-width: 60px;
|
|
643
|
-
border-radius: 4px;
|
|
644
|
-
bottom: 40px;
|
|
645
|
-
right: -2px;
|
|
646
|
-
}
|
|
647
|
-
.media-control-audiotracks .menu.hidden {
|
|
648
|
-
display: none;
|
|
649
|
-
}
|
|
650
|
-
.media-control-audiotracks li {
|
|
651
|
-
font-size: var(--font-size-media-controls-dropdown);
|
|
652
|
-
text-align: right;
|
|
653
|
-
height: 30px;
|
|
654
|
-
}
|
|
655
|
-
.media-control-audiotracks li[data-title] {
|
|
656
|
-
background-color: #c3c2c2;
|
|
657
|
-
padding: 5px;
|
|
658
|
-
}
|
|
659
|
-
.media-control-audiotracks li a {
|
|
660
|
-
display: block;
|
|
661
|
-
text-decoration: none;
|
|
662
|
-
text-overflow: ellipsis;
|
|
663
|
-
overflow: hidden;
|
|
664
|
-
white-space: nowrap;
|
|
665
|
-
height: 30px;
|
|
666
|
-
padding: 5px 10px;
|
|
667
|
-
color: #fffffe;
|
|
668
|
-
}
|
|
669
|
-
.media-control-audiotracks li a:hover {
|
|
670
|
-
text-decoration: none;
|
|
671
|
-
background-color: rgba(0, 0, 0, 0.4);
|
|
672
|
-
color: white;
|
|
673
|
-
}
|
|
674
|
-
.media-control-audiotracks li.current a {
|
|
675
|
-
color: #f00;
|
|
676
|
-
}
|
|
677
|
-
.media-control-audiotracks li:first-child a {
|
|
678
|
-
border-bottom-left-radius: 4px;
|
|
679
|
-
border-bottom-right-radius: 4px;
|
|
680
|
-
}
|
|
681
|
-
.media-control-audiotracks li:last-child a {
|
|
682
|
-
border-top-left-radius: 4px;
|
|
683
|
-
border-top-right-radius: 4px;
|
|
684
|
-
}
|
|
685
|
-
|
|
686
|
-
@keyframes pulse {
|
|
687
|
-
0% {
|
|
688
|
-
color: #fff;
|
|
689
|
-
}
|
|
690
|
-
50% {
|
|
691
|
-
color: #ff0101;
|
|
692
|
-
}
|
|
693
|
-
100% {
|
|
694
|
-
color: #B80000;
|
|
695
|
-
}
|
|
696
|
-
}.media-control-pip {
|
|
697
|
-
order: 95;
|
|
698
|
-
display: flex;
|
|
687
|
+
.big-mute-icon[data-big-mute-icon] svg path {
|
|
688
|
+
fill: #1f1e1e !important;
|
|
699
689
|
}
|
|
700
|
-
.
|
|
701
|
-
|
|
690
|
+
.big-mute-icon[data-big-mute-icon]:hover {
|
|
691
|
+
background: rgba(240, 243, 247, 0.8784313725);
|
|
702
692
|
}
|
|
703
|
-
.
|
|
704
|
-
|
|
693
|
+
.big-mute-icon[data-big-mute-icon]:hover svg path {
|
|
694
|
+
fill: #151515 !important;
|
|
705
695
|
}.context-menu {
|
|
706
696
|
z-index: 999;
|
|
707
697
|
position: absolute;
|
|
@@ -738,6 +728,29 @@
|
|
|
738
728
|
.context-menu .context-menu-list-item_icon {
|
|
739
729
|
width: 20px;
|
|
740
730
|
height: 20px;
|
|
731
|
+
}@charset "UTF-8";
|
|
732
|
+
.gplayer-mc-clips {
|
|
733
|
+
display: flex;
|
|
734
|
+
gap: 6px;
|
|
735
|
+
}
|
|
736
|
+
.gplayer-mc-clips .gplayer-mc-clips-text {
|
|
737
|
+
text-overflow: ellipsis;
|
|
738
|
+
white-space: nowrap;
|
|
739
|
+
overflow: hidden;
|
|
740
|
+
display: inline-block;
|
|
741
|
+
text-overflow: ellipsis;
|
|
742
|
+
color: white;
|
|
743
|
+
cursor: default;
|
|
744
|
+
line-height: var(--bottom-panel);
|
|
745
|
+
position: relative;
|
|
746
|
+
max-width: 150px;
|
|
747
|
+
}
|
|
748
|
+
.gplayer-mc-clips .gplayer-mc-clips-text::before {
|
|
749
|
+
content: "•";
|
|
750
|
+
padding-right: 6px;
|
|
751
|
+
}
|
|
752
|
+
.gplayer-mc-clips .gplayer-mc-clips-text.compact {
|
|
753
|
+
max-width: 100px;
|
|
741
754
|
}.player-poster {
|
|
742
755
|
display: flex;
|
|
743
756
|
justify-content: center;
|
|
@@ -772,29 +785,6 @@
|
|
|
772
785
|
}
|
|
773
786
|
.player-poster .play-wrapper svg path {
|
|
774
787
|
fill: #fff;
|
|
775
|
-
}@charset "UTF-8";
|
|
776
|
-
.gplayer-mc-clips {
|
|
777
|
-
display: flex;
|
|
778
|
-
gap: 6px;
|
|
779
|
-
}
|
|
780
|
-
.gplayer-mc-clips .gplayer-mc-clips-text {
|
|
781
|
-
text-overflow: ellipsis;
|
|
782
|
-
white-space: nowrap;
|
|
783
|
-
overflow: hidden;
|
|
784
|
-
display: inline-block;
|
|
785
|
-
text-overflow: ellipsis;
|
|
786
|
-
color: white;
|
|
787
|
-
cursor: default;
|
|
788
|
-
line-height: var(--bottom-panel);
|
|
789
|
-
position: relative;
|
|
790
|
-
max-width: 150px;
|
|
791
|
-
}
|
|
792
|
-
.gplayer-mc-clips .gplayer-mc-clips-text::before {
|
|
793
|
-
content: "•";
|
|
794
|
-
padding-right: 6px;
|
|
795
|
-
}
|
|
796
|
-
.gplayer-mc-clips .gplayer-mc-clips-text.compact {
|
|
797
|
-
max-width: 100px;
|
|
798
788
|
}div.player-error-screen, [data-player] div.player-error-screen {
|
|
799
789
|
color: #CCCACA;
|
|
800
790
|
position: absolute;
|
|
@@ -977,150 +967,202 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
977
967
|
100% {
|
|
978
968
|
color: #B80000;
|
|
979
969
|
}
|
|
980
|
-
}.
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
background-color: transparent;
|
|
984
|
-
display: flex;
|
|
985
|
-
justify-content: center;
|
|
986
|
-
width: 100%;
|
|
987
|
-
height: calc(100% - 50px);
|
|
988
|
-
margin: 0 auto;
|
|
989
|
-
opacity: 0.75;
|
|
990
|
-
transition: opacity 0.1s ease;
|
|
991
|
-
pointer-events: auto;
|
|
992
|
-
}
|
|
993
|
-
.big-mute-icon-wrapper[data-big-mute].hide {
|
|
994
|
-
display: none;
|
|
995
|
-
}
|
|
996
|
-
.big-mute-icon-wrapper[data-big-mute]:hover {
|
|
997
|
-
cursor: pointer;
|
|
998
|
-
}
|
|
999
|
-
|
|
1000
|
-
.big-mute-icon[data-big-mute-icon] {
|
|
1001
|
-
display: flex;
|
|
1002
|
-
align-items: center;
|
|
1003
|
-
justify-content: center;
|
|
1004
|
-
align-self: center;
|
|
1005
|
-
width: 120px;
|
|
1006
|
-
height: 120px;
|
|
1007
|
-
border: 2px solid white;
|
|
1008
|
-
border-radius: 50%;
|
|
1009
|
-
filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
|
|
1010
|
-
filter: alpha(opacity=60);
|
|
1011
|
-
opacity: 1;
|
|
1012
|
-
box-shadow: 0 0 1px 0 white;
|
|
1013
|
-
background: rgba(240, 243, 247, 0.9411764706);
|
|
1014
|
-
z-index: 10000;
|
|
970
|
+
}.quality-levels li.disabled {
|
|
971
|
+
opacity: 0.5;
|
|
972
|
+
pointer-events: none;
|
|
1015
973
|
}
|
|
1016
|
-
.
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
974
|
+
.quality-levels li.current {
|
|
975
|
+
background-color: #000;
|
|
976
|
+
}.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
|
|
977
|
+
order: 99;
|
|
978
|
+
height: 20px;
|
|
1020
979
|
}
|
|
1021
|
-
.
|
|
1022
|
-
|
|
980
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
|
|
981
|
+
position: absolute;
|
|
982
|
+
right: 16px;
|
|
983
|
+
bottom: 52px;
|
|
984
|
+
width: 250px;
|
|
985
|
+
min-height: 48px;
|
|
986
|
+
z-index: 9999;
|
|
987
|
+
border-radius: 4px;
|
|
1023
988
|
}
|
|
1024
|
-
.
|
|
1025
|
-
|
|
989
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
|
|
990
|
+
padding: 8px 0;
|
|
1026
991
|
}
|
|
1027
|
-
.
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
992
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
|
|
993
|
+
margin: 0;
|
|
994
|
+
text-align: left;
|
|
995
|
+
line-height: 22px;
|
|
996
|
+
padding: 5px 14px;
|
|
997
|
+
width: 250px;
|
|
998
|
+
font-size: 12px;
|
|
1032
999
|
display: flex;
|
|
1033
1000
|
align-items: center;
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
font-weight: 500;
|
|
1037
|
-
height: var(--bottom-panel);
|
|
1038
|
-
line-height: var(--bottom-panel);
|
|
1039
|
-
margin-left: 0;
|
|
1001
|
+
justify-content: flex-start;
|
|
1002
|
+
gap: 8px;
|
|
1040
1003
|
}
|
|
1041
|
-
.
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
font-weight: 500;
|
|
1045
|
-
margin-left: 20px;
|
|
1046
|
-
letter-spacing: 0.8px;
|
|
1047
|
-
text-transform: uppercase;
|
|
1004
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
|
|
1005
|
+
flex: 24px 0 0;
|
|
1006
|
+
height: 24px;
|
|
1048
1007
|
}
|
|
1049
|
-
.
|
|
1050
|
-
|
|
1051
|
-
margin-right: 8px;
|
|
1052
|
-
content: "";
|
|
1008
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
|
|
1009
|
+
visibility: hidden;
|
|
1053
1010
|
display: inline-block;
|
|
1054
|
-
position: relative;
|
|
1055
|
-
width: calc(var(--circle-radius) * 2);
|
|
1056
|
-
height: calc(var(--circle-radius) * 2);
|
|
1057
|
-
border-radius: var(--circle-radius);
|
|
1058
|
-
background-color: var(--player-dvr-color);
|
|
1059
1011
|
}
|
|
1060
|
-
.
|
|
1061
|
-
|
|
1012
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
|
|
1013
|
+
flex: 0 1 100%;
|
|
1062
1014
|
}
|
|
1063
|
-
.
|
|
1064
|
-
|
|
1015
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
|
|
1016
|
+
flex: 0 0 14px;
|
|
1017
|
+
height: 24px;
|
|
1065
1018
|
}
|
|
1066
|
-
.
|
|
1067
|
-
|
|
1068
|
-
|
|
1019
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
|
|
1020
|
+
flex: 1 0 auto;
|
|
1021
|
+
}.share_plugin[data-share] {
|
|
1022
|
+
pointer-events: auto;
|
|
1023
|
+
z-index: 5;
|
|
1024
|
+
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
1069
1025
|
}
|
|
1070
|
-
.
|
|
1071
|
-
|
|
1026
|
+
.share_plugin[data-share].share-hide .share-button-container {
|
|
1027
|
+
right: -50px;
|
|
1072
1028
|
}
|
|
1073
|
-
.
|
|
1029
|
+
.share_plugin[data-share] .share-button-container {
|
|
1074
1030
|
cursor: pointer;
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
color:
|
|
1031
|
+
width: 36px;
|
|
1032
|
+
height: 36px;
|
|
1033
|
+
background-color: rgba(74, 74, 74, 0.6);
|
|
1034
|
+
border-radius: 4px;
|
|
1035
|
+
position: absolute;
|
|
1036
|
+
right: 10px;
|
|
1037
|
+
top: 10px;
|
|
1038
|
+
padding-top: 6px;
|
|
1039
|
+
transition: all 0.3s ease-out;
|
|
1040
|
+
}
|
|
1041
|
+
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
1078
1042
|
background-color: transparent;
|
|
1043
|
+
border: 0;
|
|
1044
|
+
margin: 0 6px;
|
|
1079
1045
|
padding: 0;
|
|
1080
|
-
|
|
1081
|
-
|
|
1046
|
+
cursor: pointer;
|
|
1047
|
+
display: inline-block;
|
|
1048
|
+
width: 19px;
|
|
1049
|
+
height: 20px;
|
|
1082
1050
|
}
|
|
1083
|
-
.
|
|
1084
|
-
|
|
1085
|
-
text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
|
|
1086
|
-
}.spinner-three-bounce[data-spinner] {
|
|
1051
|
+
.share_plugin[data-share] .share-container {
|
|
1052
|
+
pointer-events: auto;
|
|
1087
1053
|
position: absolute;
|
|
1088
|
-
width:
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
margin:
|
|
1094
|
-
|
|
1095
|
-
margin-
|
|
1096
|
-
/* center vertically */
|
|
1097
|
-
top: 50%;
|
|
1098
|
-
transform: translateY(-50%);
|
|
1054
|
+
width: 280px;
|
|
1055
|
+
background-color: white;
|
|
1056
|
+
transform: translate(0, 50%);
|
|
1057
|
+
transform: translate(-50%, -50%);
|
|
1058
|
+
left: 50%;
|
|
1059
|
+
/* margin-left: -140px; */
|
|
1060
|
+
top: calc(50% - 20px);
|
|
1061
|
+
/* margin-top: -170px; */
|
|
1099
1062
|
}
|
|
1100
|
-
.
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1063
|
+
.share_plugin[data-share] .share-container .share-container-header {
|
|
1064
|
+
text-align: left;
|
|
1065
|
+
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
1066
|
+
}
|
|
1067
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
1105
1068
|
display: inline-block;
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
animation-fill-mode: both;
|
|
1069
|
+
font-size: 16px;
|
|
1070
|
+
margin: 5px;
|
|
1109
1071
|
}
|
|
1110
|
-
.
|
|
1111
|
-
|
|
1072
|
+
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
1073
|
+
display: inline-block;
|
|
1074
|
+
width: 24px;
|
|
1075
|
+
float: right;
|
|
1076
|
+
margin: 5px;
|
|
1077
|
+
cursor: pointer;
|
|
1112
1078
|
}
|
|
1113
|
-
.
|
|
1114
|
-
|
|
1079
|
+
.share_plugin[data-share] .share-container .share-container-main {
|
|
1080
|
+
margin-bottom: 8px;
|
|
1081
|
+
}
|
|
1082
|
+
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
1083
|
+
text-align: left;
|
|
1084
|
+
font-size: 14px;
|
|
1085
|
+
padding: 5px;
|
|
1086
|
+
}
|
|
1087
|
+
.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 {
|
|
1088
|
+
overflow: hidden;
|
|
1089
|
+
text-overflow: ellipsis;
|
|
1090
|
+
color: #818181;
|
|
1091
|
+
border: solid 1px #d3d3d3;
|
|
1092
|
+
width: calc(100% - 10px);
|
|
1093
|
+
padding: 5px;
|
|
1094
|
+
}
|
|
1095
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
1096
|
+
max-height: 90px;
|
|
1097
|
+
resize: none;
|
|
1098
|
+
}
|
|
1099
|
+
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
1100
|
+
width: 32px;
|
|
1101
|
+
display: inline-block;
|
|
1102
|
+
margin-right: 5px;
|
|
1103
|
+
cursor: pointer;
|
|
1104
|
+
}*, :focus, :visited {
|
|
1105
|
+
outline: none !important;
|
|
1115
1106
|
}
|
|
1116
1107
|
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1108
|
+
.gear-wrapper .go-back {
|
|
1109
|
+
font-weight: 600;
|
|
1110
|
+
font-size: 14px;
|
|
1111
|
+
line-height: 20px;
|
|
1112
|
+
width: 100%;
|
|
1113
|
+
text-align: left;
|
|
1114
|
+
padding: 12px;
|
|
1115
|
+
}
|
|
1116
|
+
.gear-wrapper .go-back .arrow-left-icon {
|
|
1117
|
+
float: left;
|
|
1118
|
+
padding-top: 2px;
|
|
1119
|
+
padding-right: 2px;
|
|
1120
|
+
}
|
|
1121
|
+
.gear-wrapper .go-back .arrow-left-icon svg {
|
|
1122
|
+
height: 16px;
|
|
1123
|
+
}
|
|
1124
|
+
.gear-wrapper ul.gear-sub-menu {
|
|
1125
|
+
width: 100%;
|
|
1126
|
+
list-style-type: none;
|
|
1127
|
+
min-width: 60px;
|
|
1128
|
+
border-top: 2px solid rgb(36, 36, 36);
|
|
1129
|
+
overflow-y: auto;
|
|
1130
|
+
}
|
|
1131
|
+
.gear-wrapper ul.gear-sub-menu li {
|
|
1132
|
+
font-size: 12px;
|
|
1133
|
+
text-align: left;
|
|
1134
|
+
}
|
|
1135
|
+
.gear-wrapper ul.gear-sub-menu li[data-title] {
|
|
1136
|
+
background-color: #c3c2c2;
|
|
1137
|
+
padding: 5px;
|
|
1138
|
+
}
|
|
1139
|
+
.gear-wrapper ul.gear-sub-menu li a {
|
|
1140
|
+
display: block;
|
|
1141
|
+
text-decoration: none;
|
|
1142
|
+
height: 32px;
|
|
1143
|
+
padding: 5px 10px;
|
|
1144
|
+
line-height: 22px;
|
|
1145
|
+
color: #fffffe;
|
|
1146
|
+
}
|
|
1147
|
+
.gear-wrapper ul.gear-sub-menu li a:hover {
|
|
1148
|
+
color: white;
|
|
1149
|
+
background-color: rgba(0, 0, 0, 0.4);
|
|
1150
|
+
}
|
|
1151
|
+
.gear-wrapper ul.gear-sub-menu li a:hover a {
|
|
1152
|
+
color: white;
|
|
1153
|
+
text-decoration: none;
|
|
1154
|
+
}
|
|
1155
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon {
|
|
1156
|
+
width: 30px;
|
|
1157
|
+
height: 20px;
|
|
1158
|
+
float: left;
|
|
1159
|
+
display: block;
|
|
1160
|
+
}
|
|
1161
|
+
.gear-wrapper ul.gear-sub-menu li a .check-icon svg {
|
|
1162
|
+
display: none;
|
|
1163
|
+
}
|
|
1164
|
+
.gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
|
|
1165
|
+
display: inline;
|
|
1124
1166
|
}[data-player] {
|
|
1125
1167
|
--bottom-panel: 40px;
|
|
1126
1168
|
}
|
|
@@ -1428,6 +1470,24 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1428
1470
|
gap: 0.5rem;
|
|
1429
1471
|
justify-content: flex-start;
|
|
1430
1472
|
}
|
|
1473
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .media-control-button,
|
|
1474
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .media-control-indicator,
|
|
1475
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .gplayer-mc-panel-item {
|
|
1476
|
+
order: 10;
|
|
1477
|
+
}
|
|
1478
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] [data-playpause],
|
|
1479
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] [data-playstop] {
|
|
1480
|
+
order: 1;
|
|
1481
|
+
}
|
|
1482
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] [data-volume] {
|
|
1483
|
+
order: 2;
|
|
1484
|
+
}
|
|
1485
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] [data-position] {
|
|
1486
|
+
order: 3;
|
|
1487
|
+
}
|
|
1488
|
+
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] [data-duration] {
|
|
1489
|
+
order: 3;
|
|
1490
|
+
}
|
|
1431
1491
|
.media-control-skin-1[data-media-control-skin-1] .media-control-layer[data-controls] .media-control-center-panel {
|
|
1432
1492
|
height: 100%;
|
|
1433
1493
|
text-align: center;
|
|
@@ -1732,168 +1792,44 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1732
1792
|
.media-control-skin-1[data-media-control-skin-1] .seek-time .seek-time__pos {
|
|
1733
1793
|
padding-left: 8px;
|
|
1734
1794
|
padding-right: 8px;
|
|
1735
|
-
}
|
|
1736
|
-
:focus,
|
|
1737
|
-
:visited {
|
|
1738
|
-
outline: none !important;
|
|
1739
|
-
}
|
|
1740
|
-
|
|
1741
|
-
.media-control-cc[data-cc] {
|
|
1742
|
-
position: relative;
|
|
1743
|
-
order: 85;
|
|
1744
|
-
}
|
|
1745
|
-
.media-control-cc[data-cc] button {
|
|
1746
|
-
background-color: transparent;
|
|
1747
|
-
color: #fff;
|
|
1748
|
-
-webkit-font-smoothing: antialiased;
|
|
1749
|
-
border: none;
|
|
1750
|
-
cursor: pointer;
|
|
1751
|
-
}
|
|
1752
|
-
.media-control-cc[data-cc] button .cc-text svg {
|
|
1753
|
-
fill: white;
|
|
1754
|
-
}
|
|
1755
|
-
.media-control-cc[data-cc] button:hover {
|
|
1756
|
-
color: #c9c9c9;
|
|
1757
|
-
}
|
|
1758
|
-
.media-control-cc[data-cc] button.changing {
|
|
1759
|
-
animation: pulse 0.5s infinite alternate;
|
|
1760
|
-
}
|
|
1761
|
-
.media-control-cc[data-cc] ul {
|
|
1762
|
-
width: 80px;
|
|
1763
|
-
list-style-type: none;
|
|
1795
|
+
}.spinner-three-bounce[data-spinner] {
|
|
1764
1796
|
position: absolute;
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1797
|
+
width: 70px;
|
|
1798
|
+
text-align: center;
|
|
1799
|
+
z-index: 999;
|
|
1800
|
+
left: 0;
|
|
1801
|
+
right: 0;
|
|
1802
|
+
margin: 0 auto;
|
|
1803
|
+
margin-left: auto;
|
|
1804
|
+
margin-right: auto;
|
|
1805
|
+
/* center vertically */
|
|
1806
|
+
top: 50%;
|
|
1807
|
+
transform: translateY(-50%);
|
|
1775
1808
|
}
|
|
1776
|
-
.
|
|
1777
|
-
|
|
1778
|
-
|
|
1809
|
+
.spinner-three-bounce[data-spinner] > div {
|
|
1810
|
+
width: 18px;
|
|
1811
|
+
height: 18px;
|
|
1812
|
+
background-color: #FFF;
|
|
1813
|
+
border-radius: 100%;
|
|
1814
|
+
display: inline-block;
|
|
1815
|
+
animation: bouncedelay 1.4s infinite ease-in-out;
|
|
1816
|
+
/* Prevent first frame from flickering when animation starts */
|
|
1817
|
+
animation-fill-mode: both;
|
|
1779
1818
|
}
|
|
1780
|
-
.
|
|
1781
|
-
|
|
1782
|
-
text-decoration: none;
|
|
1819
|
+
.spinner-three-bounce[data-spinner] [data-bounce1] {
|
|
1820
|
+
animation-delay: -0.32s;
|
|
1783
1821
|
}
|
|
1784
|
-
.
|
|
1785
|
-
|
|
1786
|
-
background-color: #555;
|
|
1822
|
+
.spinner-three-bounce[data-spinner] [data-bounce2] {
|
|
1823
|
+
animation-delay: -0.16s;
|
|
1787
1824
|
}
|
|
1788
1825
|
|
|
1789
|
-
@keyframes
|
|
1790
|
-
0% {
|
|
1791
|
-
|
|
1792
|
-
}
|
|
1793
|
-
50% {
|
|
1794
|
-
color: #ff0101;
|
|
1826
|
+
@keyframes bouncedelay {
|
|
1827
|
+
0%, 80%, 100% {
|
|
1828
|
+
transform: scale(0);
|
|
1795
1829
|
}
|
|
1796
|
-
|
|
1797
|
-
|
|
1830
|
+
40% {
|
|
1831
|
+
transform: scale(1);
|
|
1798
1832
|
}
|
|
1799
|
-
}
|
|
1800
|
-
::cue {
|
|
1801
|
-
visibility: hidden !important;
|
|
1802
|
-
font-size: 0 !important;
|
|
1803
|
-
}
|
|
1804
|
-
|
|
1805
|
-
.ios-fullscreen::cue {
|
|
1806
|
-
visibility: visible !important;
|
|
1807
|
-
font-size: 1em !important;
|
|
1808
|
-
}.share_plugin[data-share] {
|
|
1809
|
-
pointer-events: auto;
|
|
1810
|
-
z-index: 5;
|
|
1811
|
-
font-family: Roboto, "Open Sans", Arial, sans-serif !important;
|
|
1812
|
-
}
|
|
1813
|
-
.share_plugin[data-share].share-hide .share-button-container {
|
|
1814
|
-
right: -50px;
|
|
1815
|
-
}
|
|
1816
|
-
.share_plugin[data-share] .share-button-container {
|
|
1817
|
-
cursor: pointer;
|
|
1818
|
-
width: 36px;
|
|
1819
|
-
height: 36px;
|
|
1820
|
-
background-color: rgba(74, 74, 74, 0.6);
|
|
1821
|
-
border-radius: 4px;
|
|
1822
|
-
position: absolute;
|
|
1823
|
-
right: 10px;
|
|
1824
|
-
top: 10px;
|
|
1825
|
-
padding-top: 6px;
|
|
1826
|
-
transition: all 0.3s ease-out;
|
|
1827
|
-
}
|
|
1828
|
-
.share_plugin[data-share] .share-button-container button[data-share-button] {
|
|
1829
|
-
background-color: transparent;
|
|
1830
|
-
border: 0;
|
|
1831
|
-
margin: 0 6px;
|
|
1832
|
-
padding: 0;
|
|
1833
|
-
cursor: pointer;
|
|
1834
|
-
display: inline-block;
|
|
1835
|
-
width: 19px;
|
|
1836
|
-
height: 20px;
|
|
1837
|
-
}
|
|
1838
|
-
.share_plugin[data-share] .share-container {
|
|
1839
|
-
pointer-events: auto;
|
|
1840
|
-
position: absolute;
|
|
1841
|
-
width: 280px;
|
|
1842
|
-
background-color: white;
|
|
1843
|
-
transform: translate(0, 50%);
|
|
1844
|
-
transform: translate(-50%, -50%);
|
|
1845
|
-
left: 50%;
|
|
1846
|
-
/* margin-left: -140px; */
|
|
1847
|
-
top: calc(50% - 20px);
|
|
1848
|
-
/* margin-top: -170px; */
|
|
1849
|
-
}
|
|
1850
|
-
.share_plugin[data-share] .share-container .share-container-header {
|
|
1851
|
-
text-align: left;
|
|
1852
|
-
border-bottom: 1px solid rgba(155, 155, 155, 0.25);
|
|
1853
|
-
}
|
|
1854
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
|
|
1855
|
-
display: inline-block;
|
|
1856
|
-
font-size: 16px;
|
|
1857
|
-
margin: 5px;
|
|
1858
|
-
}
|
|
1859
|
-
.share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
|
|
1860
|
-
display: inline-block;
|
|
1861
|
-
width: 24px;
|
|
1862
|
-
float: right;
|
|
1863
|
-
margin: 5px;
|
|
1864
|
-
cursor: pointer;
|
|
1865
|
-
}
|
|
1866
|
-
.share_plugin[data-share] .share-container .share-container-main {
|
|
1867
|
-
margin-bottom: 8px;
|
|
1868
|
-
}
|
|
1869
|
-
.share_plugin[data-share] .share-container .share-container-main > div {
|
|
1870
|
-
text-align: left;
|
|
1871
|
-
font-size: 14px;
|
|
1872
|
-
padding: 5px;
|
|
1873
|
-
}
|
|
1874
|
-
.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 {
|
|
1875
|
-
overflow: hidden;
|
|
1876
|
-
text-overflow: ellipsis;
|
|
1877
|
-
color: #818181;
|
|
1878
|
-
border: solid 1px #d3d3d3;
|
|
1879
|
-
width: calc(100% - 10px);
|
|
1880
|
-
padding: 5px;
|
|
1881
|
-
}
|
|
1882
|
-
.share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
|
|
1883
|
-
max-height: 90px;
|
|
1884
|
-
resize: none;
|
|
1885
|
-
}
|
|
1886
|
-
.share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
|
|
1887
|
-
width: 32px;
|
|
1888
|
-
display: inline-block;
|
|
1889
|
-
margin-right: 5px;
|
|
1890
|
-
cursor: pointer;
|
|
1891
|
-
}.quality-levels li.disabled {
|
|
1892
|
-
opacity: 0.5;
|
|
1893
|
-
pointer-events: none;
|
|
1894
|
-
}
|
|
1895
|
-
.quality-levels li.current {
|
|
1896
|
-
background-color: #000;
|
|
1897
1833
|
}.container-with-poster-clickable .mc-skip-time {
|
|
1898
1834
|
height: 0;
|
|
1899
1835
|
}
|
|
@@ -1915,15 +1851,48 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1915
1851
|
.mc-skip-time .skip-container .skip-item {
|
|
1916
1852
|
flex: 1 0 0px;
|
|
1917
1853
|
height: 100%;
|
|
1918
|
-
}.
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
width: 100%;
|
|
1922
|
-
height: 100%;
|
|
1854
|
+
}.media-control-pip {
|
|
1855
|
+
order: 95;
|
|
1856
|
+
display: flex;
|
|
1923
1857
|
}
|
|
1924
|
-
|
|
1925
|
-
|
|
1858
|
+
.media-control-pip button {
|
|
1859
|
+
height: 20px;
|
|
1860
|
+
}
|
|
1861
|
+
.media-control-pip button svg {
|
|
1862
|
+
height: 20px;
|
|
1863
|
+
}.seek-time {
|
|
1926
1864
|
position: absolute;
|
|
1865
|
+
white-space: nowrap;
|
|
1866
|
+
height: 20px;
|
|
1867
|
+
line-height: 20px;
|
|
1868
|
+
font-size: 0;
|
|
1869
|
+
left: -100%;
|
|
1870
|
+
bottom: 55px;
|
|
1871
|
+
background-color: rgba(2, 2, 2, 0.5);
|
|
1872
|
+
z-index: 9999;
|
|
1873
|
+
transition: opacity 0.1s ease;
|
|
1874
|
+
}
|
|
1875
|
+
.seek-time.hidden {
|
|
1876
|
+
opacity: 0;
|
|
1877
|
+
}
|
|
1878
|
+
.seek-time .seek-time__pos {
|
|
1879
|
+
display: inline-block;
|
|
1880
|
+
color: white;
|
|
1881
|
+
font-size: 10px;
|
|
1882
|
+
padding-left: 7px;
|
|
1883
|
+
padding-right: 7px;
|
|
1884
|
+
vertical-align: top;
|
|
1885
|
+
}
|
|
1886
|
+
.seek-time .seek-time__duration {
|
|
1887
|
+
display: inline-block;
|
|
1888
|
+
color: rgba(255, 255, 255, 0.5);
|
|
1889
|
+
font-size: 10px;
|
|
1890
|
+
padding-right: 7px;
|
|
1891
|
+
vertical-align: top;
|
|
1892
|
+
}
|
|
1893
|
+
.seek-time .seek-time__duration::before {
|
|
1894
|
+
content: "|";
|
|
1895
|
+
margin-right: 7px;
|
|
1927
1896
|
}.scrub-thumbnails {
|
|
1928
1897
|
position: absolute;
|
|
1929
1898
|
bottom: 52px;
|
|
@@ -1987,37 +1956,86 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
|
|
|
1987
1956
|
}
|
|
1988
1957
|
.scrub-thumbnails .backdrop .carousel img {
|
|
1989
1958
|
width: auto;
|
|
1990
|
-
}
|
|
1959
|
+
}*,
|
|
1960
|
+
:focus,
|
|
1961
|
+
:visited {
|
|
1962
|
+
outline: none !important;
|
|
1963
|
+
}
|
|
1964
|
+
|
|
1965
|
+
.media-control-cc[data-cc] {
|
|
1966
|
+
position: relative;
|
|
1967
|
+
order: 85;
|
|
1968
|
+
}
|
|
1969
|
+
.media-control-cc[data-cc] button {
|
|
1970
|
+
background-color: transparent;
|
|
1971
|
+
color: #fff;
|
|
1972
|
+
-webkit-font-smoothing: antialiased;
|
|
1973
|
+
border: none;
|
|
1974
|
+
cursor: pointer;
|
|
1975
|
+
}
|
|
1976
|
+
.media-control-cc[data-cc] button .cc-text svg {
|
|
1977
|
+
fill: white;
|
|
1978
|
+
}
|
|
1979
|
+
.media-control-cc[data-cc] button:hover {
|
|
1980
|
+
color: #c9c9c9;
|
|
1981
|
+
}
|
|
1982
|
+
.media-control-cc[data-cc] button.changing {
|
|
1983
|
+
animation: pulse 0.5s infinite alternate;
|
|
1984
|
+
}
|
|
1985
|
+
.media-control-cc[data-cc] ul {
|
|
1986
|
+
width: 80px;
|
|
1987
|
+
list-style-type: none;
|
|
1991
1988
|
position: absolute;
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
left: -100%;
|
|
1997
|
-
bottom: 55px;
|
|
1998
|
-
background-color: rgba(2, 2, 2, 0.5);
|
|
1999
|
-
z-index: 9999;
|
|
2000
|
-
transition: opacity 0.1s ease;
|
|
1989
|
+
bottom: 25px;
|
|
1990
|
+
border: 1px solid black;
|
|
1991
|
+
background-color: #e6e6e6;
|
|
1992
|
+
padding: 8px 0;
|
|
2001
1993
|
}
|
|
2002
|
-
.
|
|
2003
|
-
|
|
1994
|
+
.media-control-cc[data-cc] li a {
|
|
1995
|
+
color: #444;
|
|
1996
|
+
padding: 2px 10px;
|
|
1997
|
+
display: block;
|
|
1998
|
+
text-decoration: none;
|
|
2004
1999
|
}
|
|
2005
|
-
.
|
|
2006
|
-
|
|
2000
|
+
.media-control-cc[data-cc] li a:hover {
|
|
2001
|
+
background-color: #555;
|
|
2007
2002
|
color: white;
|
|
2008
|
-
font-size: 10px;
|
|
2009
|
-
padding-left: 7px;
|
|
2010
|
-
padding-right: 7px;
|
|
2011
|
-
vertical-align: top;
|
|
2012
2003
|
}
|
|
2013
|
-
.
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
font-size: 10px;
|
|
2017
|
-
padding-right: 7px;
|
|
2018
|
-
vertical-align: top;
|
|
2004
|
+
.media-control-cc[data-cc] li a:hover a {
|
|
2005
|
+
color: white;
|
|
2006
|
+
text-decoration: none;
|
|
2019
2007
|
}
|
|
2020
|
-
.
|
|
2021
|
-
|
|
2022
|
-
|
|
2008
|
+
.media-control-cc[data-cc] li.current a {
|
|
2009
|
+
color: #f00;
|
|
2010
|
+
background-color: #555;
|
|
2011
|
+
}
|
|
2012
|
+
|
|
2013
|
+
@keyframes pulse {
|
|
2014
|
+
0% {
|
|
2015
|
+
color: #fff;
|
|
2016
|
+
}
|
|
2017
|
+
50% {
|
|
2018
|
+
color: #ff0101;
|
|
2019
|
+
}
|
|
2020
|
+
100% {
|
|
2021
|
+
color: #B80000;
|
|
2022
|
+
}
|
|
2023
|
+
}
|
|
2024
|
+
::cue {
|
|
2025
|
+
visibility: hidden !important;
|
|
2026
|
+
font-size: 0 !important;
|
|
2027
|
+
}
|
|
2028
|
+
|
|
2029
|
+
.ios-fullscreen::cue {
|
|
2030
|
+
visibility: visible !important;
|
|
2031
|
+
font-size: 1em !important;
|
|
2032
|
+
}.player-logo[data-logo] {
|
|
2033
|
+
position: absolute;
|
|
2034
|
+
z-index: 2;
|
|
2035
|
+
width: 100%;
|
|
2036
|
+
height: 100%;
|
|
2037
|
+
}
|
|
2038
|
+
|
|
2039
|
+
.clappr-logo {
|
|
2040
|
+
position: absolute;
|
|
2023
2041
|
}
|