@gcorevideo/player 2.22.13 → 2.22.14

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.
Files changed (31) hide show
  1. package/assets/bottom-gear/gear.scss +20 -13
  2. package/assets/clappr-nerd-stats/button.ejs +2 -2
  3. package/assets/clappr-nerd-stats/clappr-nerd-stats.scss +0 -43
  4. package/assets/level-selector/button.ejs +3 -3
  5. package/assets/level-selector/style.scss +0 -5
  6. package/assets/playback-rate/button.ejs +2 -2
  7. package/dist/core.js +22 -1
  8. package/dist/index.css +599 -630
  9. package/dist/index.js +56 -40
  10. package/dist/plugins/index.css +1485 -1516
  11. package/dist/plugins/index.js +35 -40
  12. package/lib/playback/hls-playback/HlsPlayback.d.ts.map +1 -1
  13. package/lib/playback/hls-playback/HlsPlayback.js +21 -0
  14. package/lib/plugins/clappr-nerd-stats/ClapprNerdStats.d.ts.map +1 -1
  15. package/lib/plugins/media-control/MediaControl.d.ts +4 -1
  16. package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
  17. package/lib/plugins/media-control/MediaControl.js +30 -14
  18. package/lib/plugins/playback-rate/PlaybackRate.d.ts.map +1 -1
  19. package/lib/plugins/playback-rate/PlaybackRate.js +1 -22
  20. package/package.json +1 -1
  21. package/src/playback/hls-playback/HlsPlayback.ts +22 -0
  22. package/src/plugins/clappr-nerd-stats/ClapprNerdStats.ts +0 -1
  23. package/src/plugins/level-selector/__tests__/__snapshots__/QualityLevels.test.ts.snap +3 -3
  24. package/src/plugins/media-control/MediaControl.ts +36 -15
  25. package/src/plugins/media-control/__tests__/MediaControl.test.ts +43 -10
  26. package/src/plugins/media-control/__tests__/__snapshots__/MediaControl.test.ts.snap +20 -20
  27. package/src/plugins/playback-rate/PlaybackRate.ts +1 -24
  28. package/src/plugins/playback-rate/__tests__/PlaybackRate.test.ts +2 -1
  29. package/tsconfig.tsbuildinfo +1 -1
  30. package/assets/clappr-nerd-stats/options-list.ejs +0 -9
  31. package/assets/clappr-nerd-stats/settings.ejs +0 -12
package/dist/index.css CHANGED
@@ -122,143 +122,95 @@
122
122
  .gplayer-lite-btn::-moz-focus-inner {
123
123
  border: 0;
124
124
  padding: 0;
125
- }*, :focus, :visited {
125
+ }*,
126
+ :focus,
127
+ :visited {
126
128
  outline: none !important;
127
129
  }
128
130
 
129
- .multicamera[data-multicamera] {
130
- float: right;
131
- margin-top: 4px;
131
+ .media-control-audiotracks {
132
132
  position: relative;
133
- margin-right: 20px;
134
- width: 20px;
135
133
  }
136
- .multicamera[data-multicamera] button {
134
+ .media-control-audiotracks button {
137
135
  background-color: transparent;
138
136
  color: #fff;
139
- font-family: Roboto, "Open Sans", Arial, sans-serif;
140
137
  -webkit-font-smoothing: antialiased;
141
138
  border: none;
142
- font-size: 14px;
139
+ cursor: pointer;
140
+ display: flex;
141
+ align-items: center;
143
142
  padding: 0;
144
143
  }
145
- .multicamera[data-multicamera] button svg {
146
- height: 20px;
147
- position: relative;
148
- margin-top: 6px;
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;
149
153
  }
150
- .multicamera[data-multicamera] button:hover {
151
- color: #c9c9c9;
154
+ .media-control-audiotracks button:hover {
155
+ color: white;
152
156
  }
153
- .multicamera[data-multicamera] button.changing {
157
+ .media-control-audiotracks button.changing {
154
158
  animation: pulse 0.5s infinite alternate;
155
159
  }
156
- .multicamera[data-multicamera] button span.quality-arrow {
160
+ .media-control-audiotracks button span.audio-arrow {
157
161
  width: 9px;
158
162
  height: 6px;
159
- margin-top: 11px;
160
163
  margin-left: 5px;
161
164
  }
162
- .multicamera[data-multicamera] > ul {
163
- padding: 6px 0;
164
- right: -24px;
165
- width: 245px;
165
+ .media-control-audiotracks .menu {
166
+ max-width: 114px;
166
167
  list-style-type: none;
167
168
  position: absolute;
168
- bottom: 48px;
169
+ background-color: rgba(74, 74, 74, 0.6);
170
+ border: none;
171
+ min-width: 60px;
169
172
  border-radius: 4px;
170
- display: none;
171
- background-color: rgba(74, 74, 74, 0.9);
172
- }
173
- .multicamera[data-multicamera] > ul::after {
174
- content: "";
175
- position: absolute;
176
- top: 100%;
177
- left: 85%;
178
- margin-left: -10px;
179
- width: 0;
180
- height: 0;
181
- border-top: 10px solid rgba(74, 74, 74, 0.9);
182
- border-right: 10px solid transparent;
183
- border-left: 10px solid transparent;
184
- }
185
- .multicamera[data-multicamera] li {
186
- font-size: 10px;
187
- cursor: pointer;
188
- }
189
- .multicamera[data-multicamera] li .multicamera-item {
190
- display: flex;
191
- padding: 10px 0;
192
- justify-content: center;
193
- position: relative;
194
- }
195
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
196
- pointer-events: none;
197
- }
198
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
199
- opacity: 0.5;
200
- }
201
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
202
- opacity: 0.5;
203
- }
204
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
205
- background-color: rgba(0, 0, 0, 0);
206
- }
207
- .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
208
- background-color: rgba(0, 0, 0, 0.3);
209
- }
210
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
211
- width: 80px;
212
- height: 60px;
213
- }
214
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
215
- width: 80px;
216
- height: 60px;
217
- }
218
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
219
- width: 120px;
220
- text-align: left;
221
- margin-left: 15px;
173
+ bottom: 40px;
174
+ right: -2px;
222
175
  }
223
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
224
- width: 120px;
225
- height: 20px;
226
- font-family: Roboto, "Open Sans", Arial, sans-serif;
227
- font-size: 14px;
228
- font-weight: normal;
229
- font-style: normal;
230
- font-stretch: normal;
231
- line-height: 1.43;
232
- letter-spacing: normal;
233
- text-align: left;
234
- color: #fff;
235
- text-overflow: ellipsis;
236
- overflow: hidden;
176
+ .media-control-audiotracks .menu.hidden {
177
+ display: none;
237
178
  }
238
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
239
- opacity: 0.6;
179
+ .media-control-audiotracks li {
180
+ font-size: var(--font-size-media-controls-dropdown);
181
+ text-align: right;
182
+ height: 30px;
240
183
  }
241
- .multicamera[data-multicamera] li[data-title] {
184
+ .media-control-audiotracks li[data-title] {
242
185
  background-color: #c3c2c2;
243
186
  padding: 5px;
244
187
  }
245
- .multicamera[data-multicamera] li a {
246
- color: #444;
247
- padding: 2px 10px;
188
+ .media-control-audiotracks li a {
248
189
  display: block;
249
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;
250
197
  }
251
- .multicamera[data-multicamera] li a:hover {
252
- background-color: #555;
253
- color: white;
254
- }
255
- .multicamera[data-multicamera] li a:hover a {
256
- color: white;
198
+ .media-control-audiotracks li a:hover {
257
199
  text-decoration: none;
200
+ background-color: rgba(0, 0, 0, 0.4);
201
+ color: white;
258
202
  }
259
- .multicamera[data-multicamera] li.current a {
203
+ .media-control-audiotracks li.current a {
260
204
  color: #f00;
261
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
+ }
262
214
 
263
215
  @keyframes pulse {
264
216
  0% {
@@ -270,6 +222,89 @@
270
222
  100% {
271
223
  color: #B80000;
272
224
  }
225
+ }.big-mute-icon-wrapper[data-big-mute] {
226
+ position: absolute;
227
+ z-index: 9998;
228
+ background-color: transparent;
229
+ display: flex;
230
+ justify-content: center;
231
+ width: 100%;
232
+ height: calc(100% - 50px);
233
+ margin: 0 auto;
234
+ opacity: 0.75;
235
+ transition: opacity 0.1s ease;
236
+ pointer-events: auto;
237
+ }
238
+ .big-mute-icon-wrapper[data-big-mute].hide {
239
+ display: none;
240
+ }
241
+ .big-mute-icon-wrapper[data-big-mute]:hover {
242
+ cursor: pointer;
243
+ }
244
+
245
+ .big-mute-icon[data-big-mute-icon] {
246
+ display: flex;
247
+ align-items: center;
248
+ justify-content: center;
249
+ align-self: center;
250
+ width: 120px;
251
+ height: 120px;
252
+ border: 2px solid white;
253
+ border-radius: 50%;
254
+ filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
255
+ filter: alpha(opacity=60);
256
+ opacity: 1;
257
+ box-shadow: 0 0 1px 0 white;
258
+ background: rgba(240, 243, 247, 0.9411764706);
259
+ z-index: 10000;
260
+ }
261
+ .big-mute-icon[data-big-mute-icon] svg {
262
+ margin-left: 5px;
263
+ width: 80px;
264
+ height: 80px;
265
+ }
266
+ .big-mute-icon[data-big-mute-icon] svg path {
267
+ fill: #1f1e1e !important;
268
+ }
269
+ .big-mute-icon[data-big-mute-icon]:hover {
270
+ background: rgba(240, 243, 247, 0.8784313725);
271
+ }
272
+ .big-mute-icon[data-big-mute-icon]:hover svg path {
273
+ fill: #151515 !important;
274
+ }div.player-error-screen, [data-player] div.player-error-screen {
275
+ color: #CCCACA;
276
+ position: absolute;
277
+ top: 0;
278
+ height: 100%;
279
+ width: 100%;
280
+ background-color: rgba(0, 0, 0, 0.7);
281
+ z-index: 2000;
282
+ display: flex;
283
+ flex-direction: column;
284
+ justify-content: center;
285
+ }
286
+ div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
287
+ font-size: 14px;
288
+ color: #CCCACA;
289
+ margin-top: 45px;
290
+ }
291
+ div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
292
+ font-weight: bold;
293
+ line-height: 30px;
294
+ font-size: 18px;
295
+ }
296
+ div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
297
+ width: 90%;
298
+ margin: 0 auto;
299
+ }
300
+ div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
301
+ font-size: 13px;
302
+ margin-top: 15px;
303
+ }
304
+ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
305
+ cursor: pointer;
306
+ width: 30px;
307
+ margin: 15px auto 0;
273
308
  }:root {
274
309
  --primary-background-color: #000;
275
310
  --secondary-background-color: #262626;
@@ -451,48 +486,14 @@
451
486
  padding: 0;
452
487
  }
453
488
 
454
- .settings-options-list {
455
- position: absolute;
456
- right: 16px;
457
- bottom: 52px;
458
- background: var(--primary-background-color);
459
- width: 250px;
460
- height: 48px;
461
- z-index: 9999;
462
- border-radius: 4px;
463
- }
464
- .settings-options-list svg {
465
- float: left;
466
- margin-right: 10px;
467
- }
468
- .settings-options-list .settings-speedtest-option {
469
- color: var(--primary-text-color);
470
- margin: 0;
471
- text-align: left;
472
- height: 24px;
473
- line-height: 22px;
474
- padding: 14px;
475
- width: 250px;
476
- font-size: 12px;
477
- }
478
- .settings-options-list .settings-speedtest-option:hover {
479
- color: var(--hover-text-color);
480
- }
481
- .settings-options-list .settings-speedtest-option:hover svg path {
482
- fill: var(--hover-text-color);
483
- }
484
- .settings-options-list .settings-speedtest-option svg path {
485
- fill: var(--primary-text-color);
486
- }
487
-
488
- .speedtest-summary {
489
- width: 100%;
490
- border-top: 1px solid var(--secondary-background-color) !important;
491
- border-bottom: 1px solid var(--secondary-background-color) !important;
492
- display: flex !important;
493
- flex-direction: column;
494
- align-items: stretch;
495
- justify-content: space-between;
489
+ .speedtest-summary {
490
+ width: 100%;
491
+ border-top: 1px solid var(--secondary-background-color) !important;
492
+ border-bottom: 1px solid var(--secondary-background-color) !important;
493
+ display: flex !important;
494
+ flex-direction: column;
495
+ align-items: stretch;
496
+ justify-content: space-between;
496
497
  }
497
498
  .speedtest-summary .speedtest-summary-header {
498
499
  width: 100%;
@@ -652,115 +653,75 @@
652
653
  .mobile .clappr-nerd-stats[data-clappr-nerd-stats] .stats-box ul {
653
654
  width: 25%;
654
655
  }
655
- }.media-control-pip {
656
- order: 95;
657
- display: flex;
658
- }
659
- .media-control-pip button {
660
- height: 20px;
661
- }
662
- .media-control-pip button svg {
663
- height: 20px;
664
- }*,
665
- :focus,
666
- :visited {
667
- outline: none !important;
668
- }
669
-
670
- .media-control-audiotracks {
671
- position: relative;
672
- }
673
- .media-control-audiotracks button {
674
- background-color: transparent;
675
- color: #fff;
676
- -webkit-font-smoothing: antialiased;
677
- border: none;
678
- cursor: pointer;
679
- display: flex;
680
- align-items: center;
681
- padding: 0;
656
+ }.context-menu {
657
+ z-index: 999;
658
+ position: absolute;
659
+ top: 0;
660
+ left: 0;
661
+ text-align: center;
682
662
  }
683
- .media-control-audiotracks button .audio-text {
684
- text-overflow: ellipsis;
685
- overflow: hidden;
686
- white-space: nowrap;
687
- max-width: 100px;
688
- background-color: transparent;
689
- -webkit-font-smoothing: antialiased;
690
- border: none;
691
- cursor: pointer;
663
+ .context-menu .context-menu-list {
664
+ font-family: "Proxima Nova", sans-serif;
665
+ font-size: 12px;
666
+ line-height: 12px;
667
+ list-style-type: none;
668
+ text-align: left;
669
+ padding: 5px;
670
+ margin-left: auto;
671
+ margin-right: auto;
672
+ background-color: rgba(0, 0, 0, 0.75);
673
+ border: 1px solid #666;
674
+ border-radius: 4px;
692
675
  }
693
- .media-control-audiotracks button:hover {
676
+ .context-menu .context-menu-list .context-menu-list-item {
694
677
  color: white;
678
+ padding: 5px;
679
+ cursor: pointer;
680
+ }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
681
+ order: 99;
682
+ height: 20px;
695
683
  }
696
- .media-control-audiotracks button.changing {
697
- animation: pulse 0.5s infinite alternate;
698
- }
699
- .media-control-audiotracks button span.audio-arrow {
700
- width: 9px;
701
- height: 6px;
702
- margin-left: 5px;
703
- }
704
- .media-control-audiotracks .menu {
705
- max-width: 114px;
706
- list-style-type: none;
684
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
707
685
  position: absolute;
708
- background-color: rgba(74, 74, 74, 0.6);
709
- border: none;
710
- min-width: 60px;
686
+ right: 16px;
687
+ bottom: 52px;
688
+ width: 250px;
689
+ min-height: 48px;
690
+ z-index: 9999;
711
691
  border-radius: 4px;
712
- bottom: 40px;
713
- right: -2px;
714
- }
715
- .media-control-audiotracks .menu.hidden {
716
- display: none;
717
- }
718
- .media-control-audiotracks li {
719
- font-size: var(--font-size-media-controls-dropdown);
720
- text-align: right;
721
- height: 30px;
722
692
  }
723
- .media-control-audiotracks li[data-title] {
724
- background-color: #c3c2c2;
725
- padding: 5px;
693
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
694
+ padding: 8px 0;
726
695
  }
727
- .media-control-audiotracks li a {
728
- display: block;
729
- text-decoration: none;
730
- text-overflow: ellipsis;
731
- overflow: hidden;
732
- white-space: nowrap;
733
- height: 30px;
734
- padding: 5px 10px;
735
- color: #fffffe;
696
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
697
+ margin: 0;
698
+ text-align: left;
699
+ line-height: 22px;
700
+ padding: 5px 14px;
701
+ width: 250px;
702
+ font-size: 12px;
703
+ display: flex;
704
+ align-items: center;
705
+ justify-content: flex-start;
706
+ gap: 8px;
736
707
  }
737
- .media-control-audiotracks li a:hover {
738
- text-decoration: none;
739
- background-color: rgba(0, 0, 0, 0.4);
740
- color: white;
708
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
709
+ flex: 24px 0 0;
710
+ height: 24px;
741
711
  }
742
- .media-control-audiotracks li.current a {
743
- color: #f00;
712
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
713
+ visibility: hidden;
714
+ display: inline-block;
744
715
  }
745
- .media-control-audiotracks li:first-child a {
746
- border-bottom-left-radius: 4px;
747
- border-bottom-right-radius: 4px;
716
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
717
+ flex: 0 1 100%;
748
718
  }
749
- .media-control-audiotracks li:last-child a {
750
- border-top-left-radius: 4px;
751
- border-top-right-radius: 4px;
719
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
720
+ flex: 0 0 14px;
721
+ height: 24px;
752
722
  }
753
-
754
- @keyframes pulse {
755
- 0% {
756
- color: #fff;
757
- }
758
- 50% {
759
- color: #ff0101;
760
- }
761
- 100% {
762
- color: #B80000;
763
- }
723
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
724
+ flex: 1 0 auto;
764
725
  }.dvr-controls[data-dvr] {
765
726
  display: inline-block;
766
727
  color: var(--player-dvr-color);
@@ -1491,122 +1452,69 @@
1491
1452
  }
1492
1453
  .media-control-skin-1[data-media-control-skin-1] .seek-time[data-seek-time] span[data-duration] {
1493
1454
  display: none !important;
1494
- }.share_plugin[data-share] {
1495
- pointer-events: auto;
1496
- z-index: 5;
1497
- font-family: Roboto, "Open Sans", Arial, sans-serif !important;
1498
- }
1499
- .share_plugin[data-share].share-hide .share-button-container {
1500
- right: -50px;
1501
- }
1502
- .share_plugin[data-share] .share-button-container {
1503
- cursor: pointer;
1504
- width: 36px;
1505
- height: 36px;
1506
- background-color: rgba(74, 74, 74, 0.6);
1507
- border-radius: 4px;
1508
- position: absolute;
1509
- right: 10px;
1510
- top: 10px;
1511
- padding-top: 6px;
1512
- transition: all 0.3s ease-out;
1513
- }
1514
- .share_plugin[data-share] .share-button-container button[data-share-button] {
1515
- background-color: transparent;
1516
- border: 0;
1517
- margin: 0 6px;
1518
- padding: 0;
1519
- cursor: pointer;
1520
- display: inline-block;
1521
- width: 19px;
1522
- height: 20px;
1523
- }
1524
- .share_plugin[data-share] .share-container {
1525
- pointer-events: auto;
1526
- position: absolute;
1527
- width: 280px;
1528
- background-color: white;
1529
- transform: translate(0, 50%);
1530
- transform: translate(-50%, -50%);
1531
- left: 50%;
1532
- /* margin-left: -140px; */
1533
- top: calc(50% - 20px);
1534
- /* margin-top: -170px; */
1455
+ }*, :focus, :visited {
1456
+ outline: none !important;
1535
1457
  }
1536
- .share_plugin[data-share] .share-container .share-container-header {
1458
+
1459
+ .gear-wrapper .go-back {
1460
+ font-weight: 600;
1461
+ font-size: 14px;
1462
+ line-height: 20px;
1463
+ width: 100%;
1537
1464
  text-align: left;
1538
- border-bottom: 1px solid rgba(155, 155, 155, 0.25);
1465
+ padding: 12px;
1539
1466
  }
1540
- .share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
1541
- display: inline-block;
1542
- font-size: 16px;
1543
- margin: 5px;
1467
+ .gear-wrapper .go-back .arrow-left-icon {
1468
+ float: left;
1469
+ padding-top: 2px;
1470
+ padding-right: 2px;
1544
1471
  }
1545
- .share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
1546
- display: inline-block;
1547
- width: 24px;
1548
- float: right;
1549
- margin: 5px;
1550
- cursor: pointer;
1472
+ .gear-wrapper .go-back .arrow-left-icon svg {
1473
+ height: 16px;
1551
1474
  }
1552
- .share_plugin[data-share] .share-container .share-container-main {
1553
- margin-bottom: 8px;
1475
+ .gear-wrapper ul.gear-sub-menu {
1476
+ width: 100%;
1477
+ list-style-type: none;
1478
+ min-width: 60px;
1479
+ border-top: 2px solid rgb(36, 36, 36);
1554
1480
  }
1555
- .share_plugin[data-share] .share-container .share-container-main > div {
1481
+ .gear-wrapper ul.gear-sub-menu li {
1482
+ font-size: 12px;
1556
1483
  text-align: left;
1557
- font-size: 14px;
1558
- padding: 5px;
1559
1484
  }
1560
- .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 {
1561
- overflow: hidden;
1562
- text-overflow: ellipsis;
1563
- color: #818181;
1564
- border: solid 1px #d3d3d3;
1565
- width: calc(100% - 10px);
1485
+ .gear-wrapper ul.gear-sub-menu li[data-title] {
1486
+ background-color: #c3c2c2;
1566
1487
  padding: 5px;
1567
1488
  }
1568
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
1569
- max-height: 90px;
1570
- resize: none;
1571
- }
1572
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
1573
- width: 32px;
1574
- display: inline-block;
1575
- margin-right: 5px;
1576
- cursor: pointer;
1577
- }.seek-time[data-seek-time] {
1578
- position: absolute;
1579
- white-space: nowrap;
1580
- height: 20px;
1581
- line-height: 20px;
1582
- font-size: 0;
1583
- left: -100%;
1584
- bottom: 55px;
1585
- background-color: rgba(2, 2, 2, 0.5);
1586
- z-index: 9999;
1587
- transition: opacity 0.1s ease;
1489
+ .gear-wrapper ul.gear-sub-menu li a {
1490
+ display: block;
1491
+ text-decoration: none;
1492
+ height: 32px;
1493
+ padding: 5px 10px;
1494
+ line-height: 22px;
1495
+ color: #fffffe;
1588
1496
  }
1589
- .seek-time[data-seek-time].hidden[data-seek-time] {
1590
- opacity: 0;
1497
+ .gear-wrapper ul.gear-sub-menu li a:hover {
1498
+ color: white;
1499
+ background-color: rgba(0, 0, 0, 0.4);
1591
1500
  }
1592
- .seek-time[data-seek-time] [data-seek-time] {
1593
- display: inline-block;
1501
+ .gear-wrapper ul.gear-sub-menu li a:hover a {
1594
1502
  color: white;
1595
- font-size: 10px;
1596
- padding-left: 7px;
1597
- padding-right: 7px;
1598
- vertical-align: top;
1503
+ text-decoration: none;
1599
1504
  }
1600
- .seek-time[data-seek-time] [data-duration] {
1601
- display: inline-block;
1602
- color: rgba(255, 255, 255, 0.5);
1603
- font-size: 10px;
1604
- padding-right: 7px;
1605
- vertical-align: top;
1505
+ .gear-wrapper ul.gear-sub-menu li a .check-icon {
1506
+ width: 30px;
1507
+ height: 20px;
1508
+ float: left;
1509
+ display: block;
1606
1510
  }
1607
- .seek-time[data-seek-time] [data-duration]::before {
1608
- content: "|";
1609
- margin-right: 7px;
1511
+ .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
1512
+ display: none;
1513
+ }
1514
+ .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
1515
+ display: inline;
1516
+ }.clips.bar-container[data-seekbar] {
1517
+ clip-path: url("#myClip");
1610
1518
  }.container-with-poster-clickable .skip_time_plugin[data-skip-time] {
1611
1519
  height: 0;
1612
1520
  }
@@ -1628,160 +1536,6 @@
1628
1536
  .skip_time_plugin[data-skip-time] .skip-container[data-skip-container] .skip-item {
1629
1537
  width: 33.3%;
1630
1538
  height: 100%;
1631
- }.player-poster[data-poster] {
1632
- display: flex;
1633
- justify-content: center;
1634
- align-items: center;
1635
- position: absolute;
1636
- height: 100%;
1637
- width: 100%;
1638
- z-index: 998;
1639
- top: 0;
1640
- left: 0;
1641
- background-color: #000;
1642
- background-size: cover;
1643
- background-repeat: no-repeat;
1644
- background-position: 50% 50%;
1645
- }
1646
- .player-poster[data-poster].clickable {
1647
- cursor: pointer;
1648
- }
1649
- .player-poster[data-poster]:hover .play-wrapper[data-poster] {
1650
- opacity: 1;
1651
- }
1652
- .player-poster[data-poster] .play-wrapper[data-poster] {
1653
- width: 100%;
1654
- height: 25%;
1655
- margin: 0 auto;
1656
- opacity: 0.75;
1657
- transition: opacity 0.1s ease;
1658
- }
1659
- .player-poster[data-poster] .play-wrapper[data-poster] svg {
1660
- height: 100%;
1661
- display: inline;
1662
- }
1663
- .player-poster[data-poster] .play-wrapper[data-poster] svg path {
1664
- fill: #fff;
1665
- }div.player-error-screen, [data-player] div.player-error-screen {
1666
- color: #CCCACA;
1667
- position: absolute;
1668
- top: 0;
1669
- height: 100%;
1670
- width: 100%;
1671
- background-color: rgba(0, 0, 0, 0.7);
1672
- z-index: 2000;
1673
- display: flex;
1674
- flex-direction: column;
1675
- justify-content: center;
1676
- }
1677
- div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
1678
- font-size: 14px;
1679
- color: #CCCACA;
1680
- margin-top: 45px;
1681
- }
1682
- div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
1683
- font-weight: bold;
1684
- line-height: 30px;
1685
- font-size: 18px;
1686
- }
1687
- div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
1688
- width: 90%;
1689
- margin: 0 auto;
1690
- }
1691
- div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
1692
- font-size: 13px;
1693
- margin-top: 15px;
1694
- }
1695
- div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1696
- cursor: pointer;
1697
- width: 30px;
1698
- margin: 15px auto 0;
1699
- }.gear-option_hd-icon.hidden {
1700
- display: none;
1701
- }
1702
-
1703
- .quality-levels li.disabled {
1704
- opacity: 0.5;
1705
- pointer-events: none;
1706
- }
1707
- .quality-levels li.current {
1708
- background-color: #000;
1709
- }.clips.bar-container[data-seekbar] {
1710
- clip-path: url("#myClip");
1711
- }*,
1712
- :focus,
1713
- :visited {
1714
- outline: none !important;
1715
- }
1716
-
1717
- .media-control-cc[data-cc] {
1718
- position: relative;
1719
- order: 85;
1720
- }
1721
- .media-control-cc[data-cc] button {
1722
- background-color: transparent;
1723
- color: #fff;
1724
- -webkit-font-smoothing: antialiased;
1725
- border: none;
1726
- cursor: pointer;
1727
- }
1728
- .media-control-cc[data-cc] button .cc-text svg {
1729
- fill: white;
1730
- }
1731
- .media-control-cc[data-cc] button:hover {
1732
- color: #c9c9c9;
1733
- }
1734
- .media-control-cc[data-cc] button.changing {
1735
- animation: pulse 0.5s infinite alternate;
1736
- }
1737
- .media-control-cc[data-cc] ul {
1738
- width: 80px;
1739
- list-style-type: none;
1740
- position: absolute;
1741
- bottom: 25px;
1742
- border: 1px solid black;
1743
- display: none;
1744
- background-color: #e6e6e6;
1745
- padding: 8px 0;
1746
- }
1747
- .media-control-cc[data-cc] li a {
1748
- color: #444;
1749
- padding: 2px 10px;
1750
- display: block;
1751
- text-decoration: none;
1752
- }
1753
- .media-control-cc[data-cc] li a:hover {
1754
- background-color: #555;
1755
- color: white;
1756
- }
1757
- .media-control-cc[data-cc] li a:hover a {
1758
- color: white;
1759
- text-decoration: none;
1760
- }
1761
- .media-control-cc[data-cc] li.current a {
1762
- color: #f00;
1763
- background-color: #555;
1764
- }
1765
-
1766
- @keyframes pulse {
1767
- 0% {
1768
- color: #fff;
1769
- }
1770
- 50% {
1771
- color: #ff0101;
1772
- }
1773
- 100% {
1774
- color: #B80000;
1775
- }
1776
- }
1777
- ::cue {
1778
- visibility: hidden !important;
1779
- font-size: 0 !important;
1780
- }
1781
-
1782
- .ios-fullscreen::cue {
1783
- visibility: visible !important;
1784
- font-size: 1em !important;
1785
1539
  }.scrub-thumbnails {
1786
1540
  position: absolute;
1787
1541
  bottom: 52px;
@@ -1843,177 +1597,236 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1843
1597
  }
1844
1598
  .scrub-thumbnails .backdrop .carousel img {
1845
1599
  width: auto;
1846
- }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
1847
- order: 99;
1848
- height: 20px;
1849
- }
1850
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
1851
- position: absolute;
1852
- right: 16px;
1853
- bottom: 52px;
1854
- width: 250px;
1855
- min-height: 48px;
1856
- z-index: 9999;
1857
- border-radius: 4px;
1858
- }
1859
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
1860
- padding: 8px 0;
1861
- }
1862
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list svg {
1863
- float: left;
1864
- margin-right: 10px;
1865
- }
1866
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
1867
- margin: 0;
1868
- text-align: left;
1869
- line-height: 22px;
1870
- padding: 5px 14px;
1871
- width: 250px;
1872
- font-size: 12px;
1873
- }
1874
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_arrow-right-icon {
1875
- float: right;
1876
- margin-right: -14px;
1877
- }
1878
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option .gear-option_value {
1879
- float: right;
1880
- margin-right: 8px;
1881
- }
1882
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option svg {
1883
- height: 20px;
1884
1600
  }*, :focus, :visited {
1885
1601
  outline: none !important;
1886
1602
  }
1887
1603
 
1888
- .gear-wrapper .go-back {
1889
- font-weight: 600;
1890
- font-size: 14px;
1891
- line-height: 20px;
1892
- width: 100%;
1893
- text-align: left;
1894
- padding: 12px;
1895
- }
1896
- .gear-wrapper .go-back .arrow-left-icon {
1897
- float: left;
1898
- padding-top: 2px;
1899
- padding-right: 2px;
1604
+ .multicamera[data-multicamera] {
1605
+ float: right;
1606
+ margin-top: 4px;
1607
+ position: relative;
1608
+ margin-right: 20px;
1609
+ width: 20px;
1900
1610
  }
1901
- .gear-wrapper .go-back .arrow-left-icon svg {
1902
- height: 16px;
1611
+ .multicamera[data-multicamera] button {
1612
+ background-color: transparent;
1613
+ color: #fff;
1614
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1615
+ -webkit-font-smoothing: antialiased;
1616
+ border: none;
1617
+ font-size: 14px;
1618
+ padding: 0;
1903
1619
  }
1904
- .gear-wrapper ul.gear-sub-menu {
1905
- width: 100%;
1620
+ .multicamera[data-multicamera] button svg {
1621
+ height: 20px;
1622
+ position: relative;
1623
+ margin-top: 6px;
1624
+ }
1625
+ .multicamera[data-multicamera] button:hover {
1626
+ color: #c9c9c9;
1627
+ }
1628
+ .multicamera[data-multicamera] button.changing {
1629
+ animation: pulse 0.5s infinite alternate;
1630
+ }
1631
+ .multicamera[data-multicamera] button span.quality-arrow {
1632
+ width: 9px;
1633
+ height: 6px;
1634
+ margin-top: 11px;
1635
+ margin-left: 5px;
1636
+ }
1637
+ .multicamera[data-multicamera] > ul {
1638
+ padding: 6px 0;
1639
+ right: -24px;
1640
+ width: 245px;
1906
1641
  list-style-type: none;
1907
- min-width: 60px;
1908
- border-top: 2px solid rgb(36, 36, 36);
1642
+ position: absolute;
1643
+ bottom: 48px;
1644
+ border-radius: 4px;
1645
+ display: none;
1646
+ background-color: rgba(74, 74, 74, 0.9);
1909
1647
  }
1910
- .gear-wrapper ul.gear-sub-menu li {
1911
- font-size: 12px;
1648
+ .multicamera[data-multicamera] > ul::after {
1649
+ content: "";
1650
+ position: absolute;
1651
+ top: 100%;
1652
+ left: 85%;
1653
+ margin-left: -10px;
1654
+ width: 0;
1655
+ height: 0;
1656
+ border-top: 10px solid rgba(74, 74, 74, 0.9);
1657
+ border-right: 10px solid transparent;
1658
+ border-left: 10px solid transparent;
1659
+ }
1660
+ .multicamera[data-multicamera] li {
1661
+ font-size: 10px;
1662
+ cursor: pointer;
1663
+ }
1664
+ .multicamera[data-multicamera] li .multicamera-item {
1665
+ display: flex;
1666
+ padding: 10px 0;
1667
+ justify-content: center;
1668
+ position: relative;
1669
+ }
1670
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
1671
+ pointer-events: none;
1672
+ }
1673
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
1674
+ opacity: 0.5;
1675
+ }
1676
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
1677
+ opacity: 0.5;
1678
+ }
1679
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
1680
+ background-color: rgba(0, 0, 0, 0);
1681
+ }
1682
+ .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
1683
+ background-color: rgba(0, 0, 0, 0.3);
1684
+ }
1685
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
1686
+ width: 80px;
1687
+ height: 60px;
1688
+ }
1689
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
1690
+ width: 80px;
1691
+ height: 60px;
1692
+ }
1693
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
1694
+ width: 120px;
1912
1695
  text-align: left;
1696
+ margin-left: 15px;
1913
1697
  }
1914
- .gear-wrapper ul.gear-sub-menu li[data-title] {
1698
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1699
+ width: 120px;
1700
+ height: 20px;
1701
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1702
+ font-size: 14px;
1703
+ font-weight: normal;
1704
+ font-style: normal;
1705
+ font-stretch: normal;
1706
+ line-height: 1.43;
1707
+ letter-spacing: normal;
1708
+ text-align: left;
1709
+ color: #fff;
1710
+ text-overflow: ellipsis;
1711
+ overflow: hidden;
1712
+ }
1713
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1714
+ opacity: 0.6;
1715
+ }
1716
+ .multicamera[data-multicamera] li[data-title] {
1915
1717
  background-color: #c3c2c2;
1916
1718
  padding: 5px;
1917
1719
  }
1918
- .gear-wrapper ul.gear-sub-menu li a {
1720
+ .multicamera[data-multicamera] li a {
1721
+ color: #444;
1722
+ padding: 2px 10px;
1919
1723
  display: block;
1920
1724
  text-decoration: none;
1921
- height: 32px;
1922
- padding: 5px 10px;
1923
- line-height: 22px;
1924
- color: #fffffe;
1925
1725
  }
1926
- .gear-wrapper ul.gear-sub-menu li a:hover {
1726
+ .multicamera[data-multicamera] li a:hover {
1727
+ background-color: #555;
1927
1728
  color: white;
1928
- background-color: rgba(0, 0, 0, 0.4);
1929
1729
  }
1930
- .gear-wrapper ul.gear-sub-menu li a:hover a {
1730
+ .multicamera[data-multicamera] li a:hover a {
1931
1731
  color: white;
1932
1732
  text-decoration: none;
1933
1733
  }
1934
- .gear-wrapper ul.gear-sub-menu li a .check-icon {
1935
- width: 30px;
1936
- height: 20px;
1937
- float: left;
1938
- display: block;
1939
- }
1940
- .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
1941
- display: none;
1734
+ .multicamera[data-multicamera] li.current a {
1735
+ color: #f00;
1942
1736
  }
1943
- .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
1944
- display: inline;
1945
- }.big-mute-icon-wrapper[data-big-mute] {
1946
- position: absolute;
1947
- z-index: 9998;
1948
- background-color: transparent;
1949
- display: flex;
1950
- justify-content: center;
1951
- width: 100%;
1952
- height: calc(100% - 50px);
1953
- margin: 0 auto;
1954
- opacity: 0.75;
1955
- transition: opacity 0.1s ease;
1737
+
1738
+ @keyframes pulse {
1739
+ 0% {
1740
+ color: #fff;
1741
+ }
1742
+ 50% {
1743
+ color: #ff0101;
1744
+ }
1745
+ 100% {
1746
+ color: #B80000;
1747
+ }
1748
+ }.share_plugin[data-share] {
1956
1749
  pointer-events: auto;
1750
+ z-index: 5;
1751
+ font-family: Roboto, "Open Sans", Arial, sans-serif !important;
1957
1752
  }
1958
- .big-mute-icon-wrapper[data-big-mute].hide {
1959
- display: none;
1753
+ .share_plugin[data-share].share-hide .share-button-container {
1754
+ right: -50px;
1960
1755
  }
1961
- .big-mute-icon-wrapper[data-big-mute]:hover {
1756
+ .share_plugin[data-share] .share-button-container {
1962
1757
  cursor: pointer;
1758
+ width: 36px;
1759
+ height: 36px;
1760
+ background-color: rgba(74, 74, 74, 0.6);
1761
+ border-radius: 4px;
1762
+ position: absolute;
1763
+ right: 10px;
1764
+ top: 10px;
1765
+ padding-top: 6px;
1766
+ transition: all 0.3s ease-out;
1963
1767
  }
1964
-
1965
- .big-mute-icon[data-big-mute-icon] {
1966
- display: flex;
1967
- align-items: center;
1968
- justify-content: center;
1969
- align-self: center;
1970
- width: 120px;
1971
- height: 120px;
1972
- border: 2px solid white;
1973
- border-radius: 50%;
1974
- filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
1975
- filter: alpha(opacity=60);
1976
- opacity: 1;
1977
- box-shadow: 0 0 1px 0 white;
1978
- background: rgba(240, 243, 247, 0.9411764706);
1979
- z-index: 10000;
1768
+ .share_plugin[data-share] .share-button-container button[data-share-button] {
1769
+ background-color: transparent;
1770
+ border: 0;
1771
+ margin: 0 6px;
1772
+ padding: 0;
1773
+ cursor: pointer;
1774
+ display: inline-block;
1775
+ width: 19px;
1776
+ height: 20px;
1980
1777
  }
1981
- .big-mute-icon[data-big-mute-icon] svg {
1982
- margin-left: 5px;
1983
- width: 80px;
1984
- height: 80px;
1778
+ .share_plugin[data-share] .share-container {
1779
+ pointer-events: auto;
1780
+ position: absolute;
1781
+ width: 280px;
1782
+ background-color: white;
1783
+ transform: translate(0, 50%);
1784
+ transform: translate(-50%, -50%);
1785
+ left: 50%;
1786
+ /* margin-left: -140px; */
1787
+ top: calc(50% - 20px);
1788
+ /* margin-top: -170px; */
1985
1789
  }
1986
- .big-mute-icon[data-big-mute-icon] svg path {
1987
- fill: #1f1e1e !important;
1790
+ .share_plugin[data-share] .share-container .share-container-header {
1791
+ text-align: left;
1792
+ border-bottom: 1px solid rgba(155, 155, 155, 0.25);
1988
1793
  }
1989
- .big-mute-icon[data-big-mute-icon]:hover {
1990
- background: rgba(240, 243, 247, 0.8784313725);
1794
+ .share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
1795
+ display: inline-block;
1796
+ font-size: 16px;
1797
+ margin: 5px;
1991
1798
  }
1992
- .big-mute-icon[data-big-mute-icon]:hover svg path {
1993
- fill: #151515 !important;
1994
- }.context-menu {
1995
- z-index: 999;
1996
- position: absolute;
1997
- top: 0;
1998
- left: 0;
1999
- text-align: center;
1799
+ .share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
1800
+ display: inline-block;
1801
+ width: 24px;
1802
+ float: right;
1803
+ margin: 5px;
1804
+ cursor: pointer;
2000
1805
  }
2001
- .context-menu .context-menu-list {
2002
- font-family: "Proxima Nova", sans-serif;
2003
- font-size: 12px;
2004
- line-height: 12px;
2005
- list-style-type: none;
1806
+ .share_plugin[data-share] .share-container .share-container-main {
1807
+ margin-bottom: 8px;
1808
+ }
1809
+ .share_plugin[data-share] .share-container .share-container-main > div {
2006
1810
  text-align: left;
1811
+ font-size: 14px;
2007
1812
  padding: 5px;
2008
- margin-left: auto;
2009
- margin-right: auto;
2010
- background-color: rgba(0, 0, 0, 0.75);
2011
- border: 1px solid #666;
2012
- border-radius: 4px;
2013
1813
  }
2014
- .context-menu .context-menu-list .context-menu-list-item {
2015
- color: white;
1814
+ .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 {
1815
+ overflow: hidden;
1816
+ text-overflow: ellipsis;
1817
+ color: #818181;
1818
+ border: solid 1px #d3d3d3;
1819
+ width: calc(100% - 10px);
2016
1820
  padding: 5px;
1821
+ }
1822
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
1823
+ max-height: 90px;
1824
+ resize: none;
1825
+ }
1826
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
1827
+ width: 32px;
1828
+ display: inline-block;
1829
+ margin-right: 5px;
2017
1830
  cursor: pointer;
2018
1831
  }.spinner-three-bounce[data-spinner] {
2019
1832
  position: absolute;
@@ -2053,6 +1866,89 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
2053
1866
  40% {
2054
1867
  transform: scale(1);
2055
1868
  }
1869
+ }*,
1870
+ :focus,
1871
+ :visited {
1872
+ outline: none !important;
1873
+ }
1874
+
1875
+ .media-control-cc[data-cc] {
1876
+ position: relative;
1877
+ order: 85;
1878
+ }
1879
+ .media-control-cc[data-cc] button {
1880
+ background-color: transparent;
1881
+ color: #fff;
1882
+ -webkit-font-smoothing: antialiased;
1883
+ border: none;
1884
+ cursor: pointer;
1885
+ }
1886
+ .media-control-cc[data-cc] button .cc-text svg {
1887
+ fill: white;
1888
+ }
1889
+ .media-control-cc[data-cc] button:hover {
1890
+ color: #c9c9c9;
1891
+ }
1892
+ .media-control-cc[data-cc] button.changing {
1893
+ animation: pulse 0.5s infinite alternate;
1894
+ }
1895
+ .media-control-cc[data-cc] ul {
1896
+ width: 80px;
1897
+ list-style-type: none;
1898
+ position: absolute;
1899
+ bottom: 25px;
1900
+ border: 1px solid black;
1901
+ display: none;
1902
+ background-color: #e6e6e6;
1903
+ padding: 8px 0;
1904
+ }
1905
+ .media-control-cc[data-cc] li a {
1906
+ color: #444;
1907
+ padding: 2px 10px;
1908
+ display: block;
1909
+ text-decoration: none;
1910
+ }
1911
+ .media-control-cc[data-cc] li a:hover {
1912
+ background-color: #555;
1913
+ color: white;
1914
+ }
1915
+ .media-control-cc[data-cc] li a:hover a {
1916
+ color: white;
1917
+ text-decoration: none;
1918
+ }
1919
+ .media-control-cc[data-cc] li.current a {
1920
+ color: #f00;
1921
+ background-color: #555;
1922
+ }
1923
+
1924
+ @keyframes pulse {
1925
+ 0% {
1926
+ color: #fff;
1927
+ }
1928
+ 50% {
1929
+ color: #ff0101;
1930
+ }
1931
+ 100% {
1932
+ color: #B80000;
1933
+ }
1934
+ }
1935
+ ::cue {
1936
+ visibility: hidden !important;
1937
+ font-size: 0 !important;
1938
+ }
1939
+
1940
+ .ios-fullscreen::cue {
1941
+ visibility: visible !important;
1942
+ font-size: 1em !important;
1943
+ }.media-control-pip {
1944
+ order: 95;
1945
+ display: flex;
1946
+ }
1947
+ .media-control-pip button {
1948
+ height: 20px;
1949
+ }
1950
+ .media-control-pip button svg {
1951
+ height: 20px;
2056
1952
  }.player-logo[data-logo] {
2057
1953
  position: absolute;
2058
1954
  z-index: 2;
@@ -2062,4 +1958,77 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
2062
1958
 
2063
1959
  .clappr-logo {
2064
1960
  position: absolute;
1961
+ }.quality-levels li.disabled {
1962
+ opacity: 0.5;
1963
+ pointer-events: none;
1964
+ }
1965
+ .quality-levels li.current {
1966
+ background-color: #000;
1967
+ }.player-poster[data-poster] {
1968
+ display: flex;
1969
+ justify-content: center;
1970
+ align-items: center;
1971
+ position: absolute;
1972
+ height: 100%;
1973
+ width: 100%;
1974
+ z-index: 998;
1975
+ top: 0;
1976
+ left: 0;
1977
+ background-color: #000;
1978
+ background-size: cover;
1979
+ background-repeat: no-repeat;
1980
+ background-position: 50% 50%;
1981
+ }
1982
+ .player-poster[data-poster].clickable {
1983
+ cursor: pointer;
1984
+ }
1985
+ .player-poster[data-poster]:hover .play-wrapper[data-poster] {
1986
+ opacity: 1;
1987
+ }
1988
+ .player-poster[data-poster] .play-wrapper[data-poster] {
1989
+ width: 100%;
1990
+ height: 25%;
1991
+ margin: 0 auto;
1992
+ opacity: 0.75;
1993
+ transition: opacity 0.1s ease;
1994
+ }
1995
+ .player-poster[data-poster] .play-wrapper[data-poster] svg {
1996
+ height: 100%;
1997
+ display: inline;
1998
+ }
1999
+ .player-poster[data-poster] .play-wrapper[data-poster] svg path {
2000
+ fill: #fff;
2001
+ }.seek-time[data-seek-time] {
2002
+ position: absolute;
2003
+ white-space: nowrap;
2004
+ height: 20px;
2005
+ line-height: 20px;
2006
+ font-size: 0;
2007
+ left: -100%;
2008
+ bottom: 55px;
2009
+ background-color: rgba(2, 2, 2, 0.5);
2010
+ z-index: 9999;
2011
+ transition: opacity 0.1s ease;
2012
+ }
2013
+ .seek-time[data-seek-time].hidden[data-seek-time] {
2014
+ opacity: 0;
2015
+ }
2016
+ .seek-time[data-seek-time] [data-seek-time] {
2017
+ display: inline-block;
2018
+ color: white;
2019
+ font-size: 10px;
2020
+ padding-left: 7px;
2021
+ padding-right: 7px;
2022
+ vertical-align: top;
2023
+ }
2024
+ .seek-time[data-seek-time] [data-duration] {
2025
+ display: inline-block;
2026
+ color: rgba(255, 255, 255, 0.5);
2027
+ font-size: 10px;
2028
+ padding-right: 7px;
2029
+ vertical-align: top;
2030
+ }
2031
+ .seek-time[data-seek-time] [data-duration]::before {
2032
+ content: "|";
2033
+ margin-right: 7px;
2065
2034
  }