@gcorevideo/player 2.28.18 → 2.28.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.css CHANGED
@@ -122,55 +122,6 @@
122
122
  .gplayer-lite-btn::-moz-focus-inner {
123
123
  border: 0;
124
124
  padding: 0;
125
- }.big-mute-icon-wrapper[data-big-mute] {
126
- position: absolute;
127
- z-index: 9998;
128
- background-color: transparent;
129
- display: flex;
130
- justify-content: center;
131
- width: 100%;
132
- height: calc(100% - 50px);
133
- margin: 0 auto;
134
- opacity: 0.75;
135
- transition: opacity 0.1s ease;
136
- pointer-events: auto;
137
- }
138
- .big-mute-icon-wrapper[data-big-mute].hide {
139
- display: none;
140
- }
141
- .big-mute-icon-wrapper[data-big-mute]:hover {
142
- cursor: pointer;
143
- }
144
-
145
- .big-mute-icon[data-big-mute-icon] {
146
- display: flex;
147
- align-items: center;
148
- justify-content: center;
149
- align-self: center;
150
- width: 120px;
151
- height: 120px;
152
- border: 2px solid white;
153
- border-radius: 50%;
154
- filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
155
- filter: alpha(opacity=60);
156
- opacity: 1;
157
- box-shadow: 0 0 1px 0 white;
158
- background: rgba(240, 243, 247, 0.9411764706);
159
- z-index: 10000;
160
- }
161
- .big-mute-icon[data-big-mute-icon] svg {
162
- margin-left: 5px;
163
- width: 80px;
164
- height: 80px;
165
- }
166
- .big-mute-icon[data-big-mute-icon] svg path {
167
- fill: #1f1e1e !important;
168
- }
169
- .big-mute-icon[data-big-mute-icon]:hover {
170
- background: rgba(240, 243, 247, 0.8784313725);
171
- }
172
- .big-mute-icon[data-big-mute-icon]:hover svg path {
173
- fill: #151515 !important;
174
125
  }.media-control-skin-1 .media-control-item.media-control-gear {
175
126
  order: 99;
176
127
  }
@@ -201,7 +152,7 @@
201
152
  }
202
153
  .media-control-skin-1 .media-control-item.media-control-gear .gear-option_icon {
203
154
  flex: 24px 0 0;
204
- height: 24px;
155
+ height: 20px;
205
156
  }
206
157
  .media-control-skin-1 .media-control-item.media-control-gear .gear-option_icon.hidden {
207
158
  visibility: hidden;
@@ -212,7 +163,7 @@
212
163
  }
213
164
  .media-control-skin-1 .media-control-item.media-control-gear .gear-option_arrow-right-icon {
214
165
  flex: 0 0 14px;
215
- height: 24px;
166
+ height: 20px;
216
167
  }
217
168
  .media-control-skin-1 .media-control-item.media-control-gear .gear-option_value {
218
169
  flex: 1 0 auto;
@@ -279,6 +230,171 @@
279
230
  }
280
231
  .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
281
232
  display: inline;
233
+ }.big-mute-icon-wrapper[data-big-mute] {
234
+ position: absolute;
235
+ z-index: 9998;
236
+ background-color: transparent;
237
+ display: flex;
238
+ justify-content: center;
239
+ width: 100%;
240
+ height: calc(100% - 50px);
241
+ margin: 0 auto;
242
+ opacity: 0.75;
243
+ transition: opacity 0.1s ease;
244
+ pointer-events: auto;
245
+ }
246
+ .big-mute-icon-wrapper[data-big-mute].hide {
247
+ display: none;
248
+ }
249
+ .big-mute-icon-wrapper[data-big-mute]:hover {
250
+ cursor: pointer;
251
+ }
252
+
253
+ .big-mute-icon[data-big-mute-icon] {
254
+ display: flex;
255
+ align-items: center;
256
+ justify-content: center;
257
+ align-self: center;
258
+ width: 120px;
259
+ height: 120px;
260
+ border: 2px solid white;
261
+ border-radius: 50%;
262
+ filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
263
+ filter: alpha(opacity=60);
264
+ opacity: 1;
265
+ box-shadow: 0 0 1px 0 white;
266
+ background: rgba(240, 243, 247, 0.9411764706);
267
+ z-index: 10000;
268
+ }
269
+ .big-mute-icon[data-big-mute-icon] svg {
270
+ margin-left: 5px;
271
+ width: 80px;
272
+ height: 80px;
273
+ }
274
+ .big-mute-icon[data-big-mute-icon] svg path {
275
+ fill: #1f1e1e !important;
276
+ }
277
+ .big-mute-icon[data-big-mute-icon]:hover {
278
+ background: rgba(240, 243, 247, 0.8784313725);
279
+ }
280
+ .big-mute-icon[data-big-mute-icon]:hover svg path {
281
+ fill: #151515 !important;
282
+ }@charset "UTF-8";
283
+ .gplayer-mc-clips {
284
+ display: flex;
285
+ gap: 6px;
286
+ }
287
+ .gplayer-mc-clips .gplayer-mc-clips-text {
288
+ text-overflow: ellipsis;
289
+ white-space: nowrap;
290
+ overflow: hidden;
291
+ display: inline-block;
292
+ text-overflow: ellipsis;
293
+ color: white;
294
+ cursor: default;
295
+ line-height: var(--bottom-panel);
296
+ position: relative;
297
+ max-width: 150px;
298
+ }
299
+ .gplayer-mc-clips .gplayer-mc-clips-text::before {
300
+ content: "•";
301
+ padding-right: 6px;
302
+ }
303
+ .gplayer-mc-clips .gplayer-mc-clips-text.compact {
304
+ max-width: 100px;
305
+ }.dvr-controls {
306
+ --disabled-opacity: 0.3;
307
+ --circle-radius: 5px;
308
+ display: flex;
309
+ align-items: center;
310
+ color: var(--player-dvr-color);
311
+ font-size: 10px;
312
+ font-weight: 500;
313
+ height: var(--bottom-panel);
314
+ line-height: var(--bottom-panel);
315
+ margin-left: 0;
316
+ }
317
+ .dvr-controls .live-info,
318
+ .dvr-controls .live-button {
319
+ font-size: 14px;
320
+ font-weight: 500;
321
+ margin-left: 20px;
322
+ letter-spacing: 0.8px;
323
+ text-transform: uppercase;
324
+ }
325
+ .dvr-controls .live-info::before,
326
+ .dvr-controls .live-button::before {
327
+ margin-right: 8px;
328
+ content: "";
329
+ display: inline-block;
330
+ position: relative;
331
+ width: calc(var(--circle-radius) * 2);
332
+ height: calc(var(--circle-radius) * 2);
333
+ border-radius: var(--circle-radius);
334
+ background-color: var(--player-dvr-color);
335
+ }
336
+ .dvr-controls.disabled {
337
+ opacity: var(--disabled-opacity);
338
+ }
339
+ .dvr-controls.disabled:before {
340
+ background-color: var(--player-dvr-color);
341
+ }
342
+ .dvr-controls .live-info {
343
+ text-transform: uppercase;
344
+ color: #fffffe;
345
+ }
346
+ .dvr-controls .live-info::before {
347
+ background-color: #ed4f4a;
348
+ }
349
+ .dvr-controls .live-button {
350
+ cursor: pointer;
351
+ outline: none;
352
+ border: 0;
353
+ color: var(--player-dvr-color);
354
+ background-color: transparent;
355
+ padding: 0;
356
+ opacity: 0.7;
357
+ transition: all 0.1s ease;
358
+ }
359
+ .dvr-controls .live-button:hover {
360
+ opacity: 1;
361
+ text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
362
+ }.context-menu {
363
+ z-index: 999;
364
+ position: absolute;
365
+ top: 0;
366
+ left: 0;
367
+ text-align: center;
368
+ }
369
+ .context-menu .context-menu-list {
370
+ font-family: "Proxima Nova", sans-serif;
371
+ font-size: 12px;
372
+ line-height: 12px;
373
+ list-style-type: none;
374
+ text-align: left;
375
+ padding: 5px;
376
+ margin-left: auto;
377
+ margin-right: auto;
378
+ background-color: rgba(0, 0, 0, 0.75);
379
+ border: 1px solid #666;
380
+ border-radius: 4px;
381
+ }
382
+ .context-menu .context-menu-list-item button {
383
+ border: none;
384
+ background-color: transparent;
385
+ padding: 0;
386
+ color: white;
387
+ display: flex;
388
+ gap: 8px;
389
+ align-items: center;
390
+ justify-content: center;
391
+ cursor: pointer;
392
+ padding: 5px;
393
+ width: 100%;
394
+ }
395
+ .context-menu .context-menu-list-item_icon {
396
+ width: 20px;
397
+ height: 20px;
282
398
  }:root {
283
399
  --primary-background-color: #000;
284
400
  --secondary-background-color: #262626;
@@ -643,122 +759,6 @@
643
759
  .fullscreen .clappr-nerd-stats .stats-box {
644
760
  top: unset;
645
761
  }
646
- }@charset "UTF-8";
647
- .gplayer-mc-clips {
648
- display: flex;
649
- gap: 6px;
650
- }
651
- .gplayer-mc-clips .gplayer-mc-clips-text {
652
- text-overflow: ellipsis;
653
- white-space: nowrap;
654
- overflow: hidden;
655
- display: inline-block;
656
- text-overflow: ellipsis;
657
- color: white;
658
- cursor: default;
659
- line-height: var(--bottom-panel);
660
- position: relative;
661
- max-width: 150px;
662
- }
663
- .gplayer-mc-clips .gplayer-mc-clips-text::before {
664
- content: "•";
665
- padding-right: 6px;
666
- }
667
- .gplayer-mc-clips .gplayer-mc-clips-text.compact {
668
- max-width: 100px;
669
- }.context-menu {
670
- z-index: 999;
671
- position: absolute;
672
- top: 0;
673
- left: 0;
674
- text-align: center;
675
- }
676
- .context-menu .context-menu-list {
677
- font-family: "Proxima Nova", sans-serif;
678
- font-size: 12px;
679
- line-height: 12px;
680
- list-style-type: none;
681
- text-align: left;
682
- padding: 5px;
683
- margin-left: auto;
684
- margin-right: auto;
685
- background-color: rgba(0, 0, 0, 0.75);
686
- border: 1px solid #666;
687
- border-radius: 4px;
688
- }
689
- .context-menu .context-menu-list-item button {
690
- border: none;
691
- background-color: transparent;
692
- padding: 0;
693
- color: white;
694
- display: flex;
695
- gap: 8px;
696
- align-items: center;
697
- justify-content: center;
698
- cursor: pointer;
699
- padding: 5px;
700
- width: 100%;
701
- }
702
- .context-menu .context-menu-list-item_icon {
703
- width: 20px;
704
- height: 20px;
705
- }.dvr-controls {
706
- --disabled-opacity: 0.3;
707
- --circle-radius: 5px;
708
- display: flex;
709
- align-items: center;
710
- color: var(--player-dvr-color);
711
- font-size: 10px;
712
- font-weight: 500;
713
- height: var(--bottom-panel);
714
- line-height: var(--bottom-panel);
715
- margin-left: 0;
716
- }
717
- .dvr-controls .live-info,
718
- .dvr-controls .live-button {
719
- font-size: 14px;
720
- font-weight: 500;
721
- margin-left: 20px;
722
- letter-spacing: 0.8px;
723
- text-transform: uppercase;
724
- }
725
- .dvr-controls .live-info::before,
726
- .dvr-controls .live-button::before {
727
- margin-right: 8px;
728
- content: "";
729
- display: inline-block;
730
- position: relative;
731
- width: calc(var(--circle-radius) * 2);
732
- height: calc(var(--circle-radius) * 2);
733
- border-radius: var(--circle-radius);
734
- background-color: var(--player-dvr-color);
735
- }
736
- .dvr-controls.disabled {
737
- opacity: var(--disabled-opacity);
738
- }
739
- .dvr-controls.disabled:before {
740
- background-color: var(--player-dvr-color);
741
- }
742
- .dvr-controls .live-info {
743
- text-transform: uppercase;
744
- color: #fffffe;
745
- }
746
- .dvr-controls .live-info::before {
747
- background-color: #ed4f4a;
748
- }
749
- .dvr-controls .live-button {
750
- cursor: pointer;
751
- outline: none;
752
- border: 0;
753
- color: var(--player-dvr-color);
754
- background-color: transparent;
755
- padding: 0;
756
- opacity: 0.7;
757
- transition: all 0.1s ease;
758
- }
759
- .dvr-controls .live-button:hover {
760
- opacity: 1;
761
- text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
762
762
  }div.player-error-screen, [data-player] div.player-error-screen {
763
763
  color: #CCCACA;
764
764
  position: absolute;
@@ -790,152 +790,9 @@ div.player-error-screen__code[data-error-screen], [data-player] div.player-error
790
790
  margin-top: 15px;
791
791
  }
792
792
  div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
793
- cursor: pointer;
794
- width: 30px;
795
- margin: 15px auto 0;
796
- }.media-control-skin-1 .media-control-item.media-control-pip {
797
- order: 95;
798
- }
799
- .media-control-skin-1 .media-control-item.media-control-pip button {
800
- height: 20px;
801
- }
802
- .media-control-skin-1 .media-control-item.media-control-pip button svg {
803
- height: 20px;
804
- }*,
805
- :focus,
806
- :visited {
807
- outline: none !important;
808
- }
809
-
810
- .multicamera[data-multicamera] {
811
- float: right;
812
- margin-top: 4px;
813
- position: relative;
814
- margin-right: 20px;
815
- width: 20px;
816
- }
817
- .multicamera[data-multicamera] button {
818
- background-color: transparent;
819
- color: #fff;
820
- font-family: Roboto, "Open Sans", Arial, sans-serif;
821
- -webkit-font-smoothing: antialiased;
822
- border: none;
823
- font-size: 14px;
824
- padding: 0;
825
- }
826
- .multicamera[data-multicamera] button svg {
827
- height: 20px;
828
- position: relative;
829
- margin-top: 6px;
830
- }
831
- .multicamera[data-multicamera] button:hover {
832
- color: #c9c9c9;
833
- }
834
- .multicamera[data-multicamera] button.changing {
835
- animation: pulse 0.5s infinite alternate;
836
- }
837
- .multicamera[data-multicamera] button span.quality-arrow {
838
- width: 9px;
839
- height: 6px;
840
- margin-top: 11px;
841
- margin-left: 5px;
842
- }
843
- .multicamera[data-multicamera] > ul {
844
- padding: 6px 0;
845
- right: -24px;
846
- width: 245px;
847
- list-style-type: none;
848
- position: absolute;
849
- bottom: 48px;
850
- border-radius: 4px;
851
- display: none;
852
- background-color: rgba(74, 74, 74, 0.9);
853
- }
854
- .multicamera[data-multicamera] > ul::after {
855
- content: "";
856
- position: absolute;
857
- top: 100%;
858
- left: 85%;
859
- margin-left: -10px;
860
- width: 0;
861
- height: 0;
862
- border-top: 10px solid rgba(74, 74, 74, 0.9);
863
- border-right: 10px solid transparent;
864
- border-left: 10px solid transparent;
865
- }
866
- .multicamera[data-multicamera] li {
867
- font-size: 10px;
868
- cursor: pointer;
869
- }
870
- .multicamera[data-multicamera] li .multicamera-item {
871
- display: flex;
872
- padding: 10px 0;
873
- justify-content: center;
874
- position: relative;
875
- }
876
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
877
- opacity: 0.5;
878
- }
879
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
880
- opacity: 0.5;
881
- }
882
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
883
- background-color: rgba(0, 0, 0, 0);
884
- }
885
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
886
- pointer-events: none;
887
- }
888
- .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
889
- background-color: rgba(0, 0, 0, 0.3);
890
- }
891
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
892
- width: 80px;
893
- height: 60px;
894
- }
895
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
896
- width: 80px;
897
- height: 60px;
898
- }
899
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
900
- width: 120px;
901
- text-align: left;
902
- margin-left: 15px;
903
- }
904
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title,
905
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
906
- width: 120px;
907
- height: 20px;
908
- font-family: Roboto, "Open Sans", Arial, sans-serif;
909
- font-size: 14px;
910
- font-weight: normal;
911
- font-style: normal;
912
- font-stretch: normal;
913
- line-height: 1.43;
914
- letter-spacing: normal;
915
- text-align: left;
916
- color: #fff;
917
- text-overflow: ellipsis;
918
- overflow: hidden;
919
- }
920
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
921
- opacity: 0.6;
922
- }
923
- .multicamera[data-multicamera] li a {
924
- color: #444;
925
- padding: 2px 10px;
926
- display: block;
927
- text-decoration: none;
928
- }
929
- .multicamera[data-multicamera] li a:hover {
930
- background-color: #555;
931
- color: white;
932
- }
933
- .multicamera[data-multicamera] li a:hover a {
934
- color: white;
935
- text-decoration: none;
936
- }
937
- .multicamera[data-multicamera] li.current a {
938
- color: #f00;
793
+ cursor: pointer;
794
+ width: 30px;
795
+ margin: 15px auto 0;
939
796
  }[data-player] {
940
797
  --bottom-panel: 40px;
941
798
  }
@@ -1557,6 +1414,189 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1557
1414
  100% {
1558
1415
  color: #B80000;
1559
1416
  }
1417
+ }.player-poster {
1418
+ display: flex;
1419
+ justify-content: center;
1420
+ align-items: center;
1421
+ position: absolute;
1422
+ height: 100%;
1423
+ width: 100%;
1424
+ z-index: 998;
1425
+ top: 0;
1426
+ left: 0;
1427
+ background-color: #000;
1428
+ background-size: cover;
1429
+ background-repeat: no-repeat;
1430
+ background-position: 50% 50%;
1431
+ }
1432
+ .player-poster.clickable {
1433
+ cursor: pointer;
1434
+ }
1435
+ .player-poster:hover .play-wrapper {
1436
+ opacity: 1;
1437
+ }
1438
+ .player-poster .play-wrapper {
1439
+ width: 100%;
1440
+ height: 25%;
1441
+ margin: 0 auto;
1442
+ opacity: 0.75;
1443
+ transition: opacity 0.1s ease;
1444
+ }
1445
+ .player-poster .play-wrapper svg {
1446
+ height: 100%;
1447
+ display: inline;
1448
+ }
1449
+ .player-poster .play-wrapper svg path {
1450
+ fill: #fff;
1451
+ }.quality-levels li.disabled {
1452
+ opacity: 0.5;
1453
+ pointer-events: none;
1454
+ }
1455
+ .quality-levels li.current {
1456
+ background-color: #000;
1457
+ }.media-control-skin-1 .media-control-item.media-control-pip {
1458
+ order: 95;
1459
+ }
1460
+ .media-control-skin-1 .media-control-item.media-control-pip button {
1461
+ height: 20px;
1462
+ }
1463
+ .media-control-skin-1 .media-control-item.media-control-pip button svg {
1464
+ height: 20px;
1465
+ }*,
1466
+ :focus,
1467
+ :visited {
1468
+ outline: none !important;
1469
+ }
1470
+
1471
+ .multicamera[data-multicamera] {
1472
+ float: right;
1473
+ margin-top: 4px;
1474
+ position: relative;
1475
+ margin-right: 20px;
1476
+ width: 20px;
1477
+ }
1478
+ .multicamera[data-multicamera] button {
1479
+ background-color: transparent;
1480
+ color: #fff;
1481
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1482
+ -webkit-font-smoothing: antialiased;
1483
+ border: none;
1484
+ font-size: 14px;
1485
+ padding: 0;
1486
+ }
1487
+ .multicamera[data-multicamera] button svg {
1488
+ height: 20px;
1489
+ position: relative;
1490
+ margin-top: 6px;
1491
+ }
1492
+ .multicamera[data-multicamera] button:hover {
1493
+ color: #c9c9c9;
1494
+ }
1495
+ .multicamera[data-multicamera] button.changing {
1496
+ animation: pulse 0.5s infinite alternate;
1497
+ }
1498
+ .multicamera[data-multicamera] button span.quality-arrow {
1499
+ width: 9px;
1500
+ height: 6px;
1501
+ margin-top: 11px;
1502
+ margin-left: 5px;
1503
+ }
1504
+ .multicamera[data-multicamera] > ul {
1505
+ padding: 6px 0;
1506
+ right: -24px;
1507
+ width: 245px;
1508
+ list-style-type: none;
1509
+ position: absolute;
1510
+ bottom: 48px;
1511
+ border-radius: 4px;
1512
+ display: none;
1513
+ background-color: rgba(74, 74, 74, 0.9);
1514
+ }
1515
+ .multicamera[data-multicamera] > ul::after {
1516
+ content: "";
1517
+ position: absolute;
1518
+ top: 100%;
1519
+ left: 85%;
1520
+ margin-left: -10px;
1521
+ width: 0;
1522
+ height: 0;
1523
+ border-top: 10px solid rgba(74, 74, 74, 0.9);
1524
+ border-right: 10px solid transparent;
1525
+ border-left: 10px solid transparent;
1526
+ }
1527
+ .multicamera[data-multicamera] li {
1528
+ font-size: 10px;
1529
+ cursor: pointer;
1530
+ }
1531
+ .multicamera[data-multicamera] li .multicamera-item {
1532
+ display: flex;
1533
+ padding: 10px 0;
1534
+ justify-content: center;
1535
+ position: relative;
1536
+ }
1537
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
1538
+ opacity: 0.5;
1539
+ }
1540
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
1541
+ opacity: 0.5;
1542
+ }
1543
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
1544
+ background-color: rgba(0, 0, 0, 0);
1545
+ }
1546
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
1547
+ pointer-events: none;
1548
+ }
1549
+ .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
1550
+ background-color: rgba(0, 0, 0, 0.3);
1551
+ }
1552
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
1553
+ width: 80px;
1554
+ height: 60px;
1555
+ }
1556
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
1557
+ width: 80px;
1558
+ height: 60px;
1559
+ }
1560
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
1561
+ width: 120px;
1562
+ text-align: left;
1563
+ margin-left: 15px;
1564
+ }
1565
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title,
1566
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1567
+ width: 120px;
1568
+ height: 20px;
1569
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1570
+ font-size: 14px;
1571
+ font-weight: normal;
1572
+ font-style: normal;
1573
+ font-stretch: normal;
1574
+ line-height: 1.43;
1575
+ letter-spacing: normal;
1576
+ text-align: left;
1577
+ color: #fff;
1578
+ text-overflow: ellipsis;
1579
+ overflow: hidden;
1580
+ }
1581
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1582
+ opacity: 0.6;
1583
+ }
1584
+ .multicamera[data-multicamera] li a {
1585
+ color: #444;
1586
+ padding: 2px 10px;
1587
+ display: block;
1588
+ text-decoration: none;
1589
+ }
1590
+ .multicamera[data-multicamera] li a:hover {
1591
+ background-color: #555;
1592
+ color: white;
1593
+ }
1594
+ .multicamera[data-multicamera] li a:hover a {
1595
+ color: white;
1596
+ text-decoration: none;
1597
+ }
1598
+ .multicamera[data-multicamera] li.current a {
1599
+ color: #f00;
1560
1600
  }.seek-time {
1561
1601
  position: absolute;
1562
1602
  white-space: nowrap;
@@ -1590,40 +1630,27 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1590
1630
  .seek-time .seek-time__duration::before {
1591
1631
  content: "|";
1592
1632
  margin-right: 7px;
1593
- }.player-poster {
1594
- display: flex;
1595
- justify-content: center;
1596
- align-items: center;
1633
+ }.container-with-poster-clickable .mc-skip-time {
1634
+ height: 0;
1635
+ }
1636
+
1637
+ .mc-skip-time {
1597
1638
  position: absolute;
1598
- height: 100%;
1599
1639
  width: 100%;
1600
- z-index: 998;
1601
- top: 0;
1602
- left: 0;
1603
- background-color: #000;
1604
- background-size: cover;
1605
- background-repeat: no-repeat;
1606
- background-position: 50% 50%;
1607
- }
1608
- .player-poster.clickable {
1609
- cursor: pointer;
1610
- }
1611
- .player-poster:hover .play-wrapper {
1612
- opacity: 1;
1640
+ height: calc(100% - 50px);
1641
+ z-index: 9998;
1642
+ background-color: transparent;
1643
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1613
1644
  }
1614
- .player-poster .play-wrapper {
1645
+ .mc-skip-time .skip-container {
1615
1646
  width: 100%;
1616
- height: 25%;
1617
- margin: 0 auto;
1618
- opacity: 0.75;
1619
- transition: opacity 0.1s ease;
1620
- }
1621
- .player-poster .play-wrapper svg {
1622
1647
  height: 100%;
1623
- display: inline;
1648
+ display: flex;
1649
+ justify-content: space-between;
1624
1650
  }
1625
- .player-poster .play-wrapper svg path {
1626
- fill: #fff;
1651
+ .mc-skip-time .skip-container .skip-item {
1652
+ flex: 1 0 0px;
1653
+ height: 100%;
1627
1654
  }.share_plugin[data-share] {
1628
1655
  pointer-events: auto;
1629
1656
  z-index: 5;
@@ -1707,12 +1734,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1707
1734
  display: inline-block;
1708
1735
  margin-right: 5px;
1709
1736
  cursor: pointer;
1710
- }.quality-levels li.disabled {
1711
- opacity: 0.5;
1712
- pointer-events: none;
1713
- }
1714
- .quality-levels li.current {
1715
- background-color: #000;
1716
1737
  }.spinner-three-bounce[data-spinner] {
1717
1738
  position: absolute;
1718
1739
  width: 70px;
@@ -1861,27 +1882,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1861
1882
  }
1862
1883
  .scrub-thumbnails .backdrop .carousel img {
1863
1884
  width: auto;
1864
- }.container-with-poster-clickable .mc-skip-time {
1865
- height: 0;
1866
- }
1867
-
1868
- .mc-skip-time {
1869
- position: absolute;
1870
- width: 100%;
1871
- height: calc(100% - 50px);
1872
- z-index: 9998;
1873
- background-color: transparent;
1874
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1875
- }
1876
- .mc-skip-time .skip-container {
1877
- width: 100%;
1878
- height: 100%;
1879
- display: flex;
1880
- justify-content: space-between;
1881
- }
1882
- .mc-skip-time .skip-container .skip-item {
1883
- flex: 1 0 0px;
1884
- height: 100%;
1885
1885
  }.player-logo[data-logo] {
1886
1886
  position: absolute;
1887
1887
  z-index: 2;