@gcorevideo/player 2.26.8 → 2.27.0

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,42 +122,29 @@
122
122
  .gplayer-lite-btn::-moz-focus-inner {
123
123
  border: 0;
124
124
  padding: 0;
125
- }.context-menu {
126
- z-index: 999;
127
- position: absolute;
128
- top: 0;
129
- left: 0;
130
- text-align: center;
131
- }
132
- .context-menu .context-menu-list {
133
- font-family: "Proxima Nova", sans-serif;
134
- font-size: 12px;
135
- line-height: 12px;
136
- list-style-type: none;
137
- text-align: left;
138
- padding: 5px;
139
- margin-left: auto;
140
- margin-right: auto;
141
- background-color: rgba(0, 0, 0, 0.75);
142
- border: 1px solid #666;
143
- border-radius: 4px;
125
+ }@charset "UTF-8";
126
+ .gplayer-mc-clips {
127
+ display: flex;
128
+ gap: 6px;
144
129
  }
145
- .context-menu .context-menu-list-item button {
146
- border: none;
147
- background-color: transparent;
148
- padding: 0;
130
+ .gplayer-mc-clips .gplayer-mc-clips-text {
131
+ text-overflow: ellipsis;
132
+ white-space: nowrap;
133
+ overflow: hidden;
134
+ display: inline-block;
135
+ text-overflow: ellipsis;
149
136
  color: white;
150
- display: flex;
151
- gap: 8px;
152
- align-items: center;
153
- justify-content: center;
154
- cursor: pointer;
155
- padding: 5px;
156
- width: 100%;
137
+ cursor: default;
138
+ line-height: var(--bottom-panel);
139
+ position: relative;
140
+ max-width: 150px;
157
141
  }
158
- .context-menu .context-menu-list-item_icon {
159
- width: 20px;
160
- height: 20px;
142
+ .gplayer-mc-clips .gplayer-mc-clips-text::before {
143
+ content: "•";
144
+ padding-right: 6px;
145
+ }
146
+ .gplayer-mc-clips .gplayer-mc-clips-text.compact {
147
+ max-width: 100px;
161
148
  }.big-mute-icon-wrapper[data-big-mute] {
162
149
  position: absolute;
163
150
  z-index: 9998;
@@ -207,29 +194,63 @@
207
194
  }
208
195
  .big-mute-icon[data-big-mute-icon]:hover svg path {
209
196
  fill: #151515 !important;
210
- }@charset "UTF-8";
211
- .gplayer-mc-clips {
197
+ }.dvr-controls {
198
+ --disabled-opacity: 0.3;
199
+ --circle-radius: 5px;
212
200
  display: flex;
213
- gap: 6px;
201
+ align-items: center;
202
+ color: var(--player-dvr-color);
203
+ font-size: 10px;
204
+ font-weight: 500;
205
+ height: var(--bottom-panel);
206
+ line-height: var(--bottom-panel);
207
+ margin-left: 0;
214
208
  }
215
- .gplayer-mc-clips .gplayer-mc-clips-text {
216
- text-overflow: ellipsis;
217
- white-space: nowrap;
218
- overflow: hidden;
209
+ .dvr-controls .live-info,
210
+ .dvr-controls .live-button {
211
+ font-size: 14px;
212
+ font-weight: 500;
213
+ margin-left: 20px;
214
+ letter-spacing: 0.8px;
215
+ text-transform: uppercase;
216
+ }
217
+ .dvr-controls .live-info::before,
218
+ .dvr-controls .live-button::before {
219
+ margin-right: 8px;
220
+ content: "";
219
221
  display: inline-block;
220
- text-overflow: ellipsis;
221
- color: white;
222
- cursor: default;
223
- line-height: var(--bottom-panel);
224
222
  position: relative;
225
- max-width: 150px;
223
+ width: calc(var(--circle-radius) * 2);
224
+ height: calc(var(--circle-radius) * 2);
225
+ border-radius: var(--circle-radius);
226
+ background-color: var(--player-dvr-color);
226
227
  }
227
- .gplayer-mc-clips .gplayer-mc-clips-text::before {
228
- content: "•";
229
- padding-right: 6px;
228
+ .dvr-controls.disabled {
229
+ opacity: var(--disabled-opacity);
230
230
  }
231
- .gplayer-mc-clips .gplayer-mc-clips-text.compact {
232
- max-width: 100px;
231
+ .dvr-controls.disabled:before {
232
+ background-color: var(--player-dvr-color);
233
+ }
234
+ .dvr-controls .live-info {
235
+ text-transform: uppercase;
236
+ color: #fffffe;
237
+ }
238
+ .dvr-controls .live-info::before {
239
+ background-color: #ed4f4a;
240
+ }
241
+ .dvr-controls .live-button {
242
+ cursor: pointer;
243
+ outline: none;
244
+ border: 0;
245
+ color: var(--player-dvr-color);
246
+ background-color: transparent;
247
+ padding: 0;
248
+ opacity: 0.7;
249
+ transition: all 0.1s ease;
250
+ }
251
+ .dvr-controls .live-button:hover {
252
+ opacity: 1;
253
+ text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
233
254
  }.media-control-skin-1 .media-control-item.media-control-gear {
234
255
  order: 99;
235
256
  }
@@ -367,70 +388,47 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
367
388
  cursor: pointer;
368
389
  width: 30px;
369
390
  margin: 15px auto 0;
370
- }.dvr-controls {
371
- --disabled-opacity: 0.3;
372
- --circle-radius: 5px;
373
- display: flex;
374
- align-items: center;
375
- color: var(--player-dvr-color);
376
- font-size: 10px;
377
- font-weight: 500;
378
- height: var(--bottom-panel);
379
- line-height: var(--bottom-panel);
380
- margin-left: 0;
381
- }
382
- .dvr-controls .live-info,
383
- .dvr-controls .live-button {
384
- font-size: 14px;
385
- font-weight: 500;
386
- margin-left: 20px;
387
- letter-spacing: 0.8px;
388
- text-transform: uppercase;
389
- }
390
- .dvr-controls .live-info::before,
391
- .dvr-controls .live-button::before {
392
- margin-right: 8px;
393
- content: "";
394
- display: inline-block;
395
- position: relative;
396
- width: calc(var(--circle-radius) * 2);
397
- height: calc(var(--circle-radius) * 2);
398
- border-radius: var(--circle-radius);
399
- background-color: var(--player-dvr-color);
400
- }
401
- .dvr-controls.disabled {
402
- opacity: var(--disabled-opacity);
403
- }
404
- .dvr-controls.disabled:before {
405
- background-color: var(--player-dvr-color);
391
+ }.quality-levels li.disabled {
392
+ opacity: 0.5;
393
+ pointer-events: none;
406
394
  }
407
- .dvr-controls .live-info {
408
- text-transform: uppercase;
409
- color: #fffffe;
395
+ .quality-levels li.current {
396
+ background-color: #000;
397
+ }.context-menu {
398
+ z-index: 999;
399
+ position: absolute;
400
+ top: 0;
401
+ left: 0;
402
+ text-align: center;
410
403
  }
411
- .dvr-controls .live-info::before {
412
- background-color: #ed4f4a;
404
+ .context-menu .context-menu-list {
405
+ font-family: "Proxima Nova", sans-serif;
406
+ font-size: 12px;
407
+ line-height: 12px;
408
+ list-style-type: none;
409
+ text-align: left;
410
+ padding: 5px;
411
+ margin-left: auto;
412
+ margin-right: auto;
413
+ background-color: rgba(0, 0, 0, 0.75);
414
+ border: 1px solid #666;
415
+ border-radius: 4px;
413
416
  }
414
- .dvr-controls .live-button {
415
- cursor: pointer;
416
- outline: none;
417
- border: 0;
418
- color: var(--player-dvr-color);
417
+ .context-menu .context-menu-list-item button {
418
+ border: none;
419
419
  background-color: transparent;
420
420
  padding: 0;
421
- opacity: 0.7;
422
- transition: all 0.1s ease;
423
- }
424
- .dvr-controls .live-button:hover {
425
- opacity: 1;
426
- text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
427
- }.media-control-skin-1 .media-control-item.media-control-pip {
428
- order: 95;
429
- }
430
- .media-control-skin-1 .media-control-item.media-control-pip button {
431
- height: 20px;
421
+ color: white;
422
+ display: flex;
423
+ gap: 8px;
424
+ align-items: center;
425
+ justify-content: center;
426
+ cursor: pointer;
427
+ padding: 5px;
428
+ width: 100%;
432
429
  }
433
- .media-control-skin-1 .media-control-item.media-control-pip button svg {
430
+ .context-menu .context-menu-list-item_icon {
431
+ width: 20px;
434
432
  height: 20px;
435
433
  }:root {
436
434
  --primary-background-color: #000;
@@ -796,147 +794,187 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
796
794
  .fullscreen .clappr-nerd-stats .stats-box {
797
795
  top: unset;
798
796
  }
799
- }.quality-levels li.disabled {
800
- opacity: 0.5;
801
- pointer-events: none;
797
+ }.spinner-three-bounce[data-spinner] {
798
+ position: absolute;
799
+ width: 70px;
800
+ text-align: center;
801
+ z-index: 999;
802
+ left: 0;
803
+ right: 0;
804
+ margin: 0 auto;
805
+ margin-left: auto;
806
+ margin-right: auto;
807
+ /* center vertically */
808
+ top: 50%;
809
+ transform: translateY(-50%);
802
810
  }
803
- .quality-levels li.current {
804
- background-color: #000;
805
- }*,
806
- :focus,
807
- :visited {
808
- outline: none !important;
811
+ .spinner-three-bounce[data-spinner] > div {
812
+ width: 18px;
813
+ height: 18px;
814
+ background-color: #FFF;
815
+ border-radius: 100%;
816
+ display: inline-block;
817
+ animation: bouncedelay 1.4s infinite ease-in-out;
818
+ /* Prevent first frame from flickering when animation starts */
819
+ animation-fill-mode: both;
809
820
  }
810
-
811
- .multicamera[data-multicamera] {
812
- float: right;
813
- margin-top: 4px;
814
- position: relative;
815
- margin-right: 20px;
816
- width: 20px;
821
+ .spinner-three-bounce[data-spinner] [data-bounce1] {
822
+ animation-delay: -0.32s;
817
823
  }
818
- .multicamera[data-multicamera] button {
819
- background-color: transparent;
820
- color: #fff;
821
- font-family: Roboto, "Open Sans", Arial, sans-serif;
822
- -webkit-font-smoothing: antialiased;
823
- border: none;
824
- font-size: 14px;
825
- padding: 0;
826
- }
827
- .multicamera[data-multicamera] button svg {
828
- height: 20px;
829
- position: relative;
830
- margin-top: 6px;
831
- }
832
- .multicamera[data-multicamera] button:hover {
833
- color: #c9c9c9;
824
+ .spinner-three-bounce[data-spinner] [data-bounce2] {
825
+ animation-delay: -0.16s;
834
826
  }
835
- .multicamera[data-multicamera] button.changing {
836
- animation: pulse 0.5s infinite alternate;
827
+
828
+ @keyframes bouncedelay {
829
+ 0%, 80%, 100% {
830
+ transform: scale(0);
831
+ }
832
+ 40% {
833
+ transform: scale(1);
834
+ }
835
+ }.media-control-skin-1 .media-control-item.media-control-pip {
836
+ order: 95;
837
837
  }
838
- .multicamera[data-multicamera] button span.quality-arrow {
839
- width: 9px;
840
- height: 6px;
841
- margin-top: 11px;
842
- margin-left: 5px;
838
+ .media-control-skin-1 .media-control-item.media-control-pip button {
839
+ height: 20px;
843
840
  }
844
- .multicamera[data-multicamera] > ul {
845
- padding: 6px 0;
846
- right: -24px;
847
- width: 245px;
848
- list-style-type: none;
849
- position: absolute;
850
- bottom: 48px;
851
- border-radius: 4px;
852
- display: none;
853
- background-color: rgba(74, 74, 74, 0.9);
841
+ .media-control-skin-1 .media-control-item.media-control-pip button svg {
842
+ height: 20px;
843
+ }.container-with-poster-clickable .mc-skip-time {
844
+ height: 0;
854
845
  }
855
- .multicamera[data-multicamera] > ul::after {
856
- content: "";
846
+
847
+ .mc-skip-time {
857
848
  position: absolute;
858
- top: 100%;
859
- left: 85%;
860
- margin-left: -10px;
861
- width: 0;
862
- height: 0;
863
- border-top: 10px solid rgba(74, 74, 74, 0.9);
864
- border-right: 10px solid transparent;
865
- border-left: 10px solid transparent;
849
+ width: 100%;
850
+ height: calc(100% - 50px);
851
+ z-index: 9998;
852
+ background-color: transparent;
853
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
866
854
  }
867
- .multicamera[data-multicamera] li {
868
- font-size: 10px;
869
- cursor: pointer;
855
+ .mc-skip-time .skip-container {
856
+ width: 100%;
857
+ height: 100%;
858
+ display: flex;
859
+ justify-content: space-between;
870
860
  }
871
- .multicamera[data-multicamera] li .multicamera-item {
861
+ .mc-skip-time .skip-container .skip-item {
862
+ flex: 1 0 0px;
863
+ height: 100%;
864
+ }.media-control-skin-1 .media-control-cc button.media-control-button {
872
865
  display: flex;
873
- padding: 10px 0;
874
866
  justify-content: center;
875
- position: relative;
867
+ padding: 0;
868
+ align-items: center;
869
+ vertical-align: top;
876
870
  }
877
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
878
- pointer-events: none;
871
+ .media-control-skin-1 .media-control-cc button.media-control-button:hover {
872
+ color: white;
879
873
  }
880
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
881
- opacity: 0.5;
874
+ .media-control-skin-1 .media-control-cc ul li {
875
+ text-align: center;
882
876
  }
883
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
884
- opacity: 0.5;
877
+ .media-control-skin-1 .media-control-cc ul li a {
878
+ height: 30px;
879
+ padding: 5px 10px;
880
+ color: #fffffe;
885
881
  }
886
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
887
- background-color: rgba(0, 0, 0, 0);
882
+ .media-control-skin-1 .media-control-cc ul li a:hover {
883
+ background-color: rgba(0, 0, 0, 0.4);
888
884
  }
889
- .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
890
- background-color: rgba(0, 0, 0, 0.3);
885
+ .media-control-skin-1 .media-control-cc ul li.current a {
886
+ background-color: rgba(0, 0, 0, 0.4);
891
887
  }
892
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
893
- width: 80px;
894
- height: 60px;
888
+ .media-control-skin-1 .media-control-cc ul li:first-child a {
889
+ border-bottom-left-radius: 4px;
890
+ border-bottom-right-radius: 4px;
895
891
  }
896
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
897
- width: 80px;
898
- height: 60px;
892
+ .media-control-skin-1 .media-control-cc ul li:last-child a {
893
+ border-top-left-radius: 4px;
894
+ border-top-right-radius: 4px;
899
895
  }
900
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
901
- width: 120px;
902
- text-align: left;
903
- margin-left: 15px;
896
+ .media-control-skin-1 .media-control-cc {
897
+ position: relative;
898
+ order: 85;
904
899
  }
905
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title,
906
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
907
- width: 120px;
908
- height: 20px;
909
- font-family: Roboto, "Open Sans", Arial, sans-serif;
910
- font-size: 14px;
911
- font-weight: normal;
912
- font-style: normal;
913
- font-stretch: normal;
914
- line-height: 1.43;
915
- letter-spacing: normal;
916
- text-align: left;
917
- color: #fff;
918
- text-overflow: ellipsis;
919
- overflow: hidden;
900
+
901
+ .container .gplayer-cc-line {
902
+ position: absolute;
903
+ bottom: calc(var(--bottom-panel) + 5px);
904
+ width: 100%;
920
905
  }
921
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
922
- opacity: 0.6;
906
+ .container .gplayer-cc-line p {
907
+ width: auto;
908
+ background-color: rgba(0, 0, 0, 0.4);
909
+ color: white;
910
+ display: inline-block;
911
+ }.seek-time {
912
+ position: absolute;
913
+ white-space: nowrap;
914
+ height: 20px;
915
+ line-height: 20px;
916
+ font-size: 0;
917
+ left: -100%;
918
+ bottom: 55px;
919
+ background-color: rgba(2, 2, 2, 0.5);
920
+ z-index: 9999;
921
+ transition: opacity 0.1s ease;
923
922
  }
924
- .multicamera[data-multicamera] li a {
925
- color: #444;
926
- padding: 2px 10px;
927
- display: block;
928
- text-decoration: none;
923
+ .seek-time.hidden {
924
+ opacity: 0;
929
925
  }
930
- .multicamera[data-multicamera] li a:hover {
931
- background-color: #555;
926
+ .seek-time .seek-time__pos {
927
+ display: inline-block;
932
928
  color: white;
929
+ font-size: 10px;
930
+ padding-left: 7px;
931
+ padding-right: 7px;
932
+ vertical-align: top;
933
933
  }
934
- .multicamera[data-multicamera] li a:hover a {
935
- color: white;
936
- text-decoration: none;
934
+ .seek-time .seek-time__duration {
935
+ display: inline-block;
936
+ color: rgba(255, 255, 255, 0.5);
937
+ font-size: 10px;
938
+ padding-right: 7px;
939
+ vertical-align: top;
937
940
  }
938
- .multicamera[data-multicamera] li.current a {
939
- color: #f00;
941
+ .seek-time .seek-time__duration::before {
942
+ content: "|";
943
+ margin-right: 7px;
944
+ }.player-poster {
945
+ display: flex;
946
+ justify-content: center;
947
+ align-items: center;
948
+ position: absolute;
949
+ height: 100%;
950
+ width: 100%;
951
+ z-index: 998;
952
+ top: 0;
953
+ left: 0;
954
+ background-color: #000;
955
+ background-size: cover;
956
+ background-repeat: no-repeat;
957
+ background-position: 50% 50%;
958
+ }
959
+ .player-poster.clickable {
960
+ cursor: pointer;
961
+ }
962
+ .player-poster:hover .play-wrapper {
963
+ opacity: 1;
964
+ }
965
+ .player-poster .play-wrapper {
966
+ width: 100%;
967
+ height: 25%;
968
+ margin: 0 auto;
969
+ opacity: 0.75;
970
+ transition: opacity 0.1s ease;
971
+ }
972
+ .player-poster .play-wrapper svg {
973
+ height: 100%;
974
+ display: inline;
975
+ }
976
+ .player-poster .play-wrapper svg path {
977
+ fill: #fff;
940
978
  }[data-player] {
941
979
  --bottom-panel: 40px;
942
980
  }
@@ -1558,65 +1596,204 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1558
1596
  100% {
1559
1597
  color: #B80000;
1560
1598
  }
1561
- }.spinner-three-bounce[data-spinner] {
1599
+ }.scrub-thumbnails {
1562
1600
  position: absolute;
1563
- width: 70px;
1564
- text-align: center;
1565
- z-index: 999;
1566
- left: 0;
1567
- right: 0;
1568
- margin: 0 auto;
1569
- margin-left: auto;
1570
- margin-right: auto;
1571
- /* center vertically */
1572
- top: 50%;
1573
- transform: translateY(-50%);
1574
- }
1575
- .spinner-three-bounce[data-spinner] > div {
1576
- width: 18px;
1577
- height: 18px;
1578
- background-color: #FFF;
1579
- border-radius: 100%;
1580
- display: inline-block;
1581
- animation: bouncedelay 1.4s infinite ease-in-out;
1582
- /* Prevent first frame from flickering when animation starts */
1583
- animation-fill-mode: both;
1601
+ bottom: 52px;
1602
+ width: 100%;
1603
+ transition: opacity 0.3s ease;
1584
1604
  }
1585
- .spinner-three-bounce[data-spinner] [data-bounce1] {
1586
- animation-delay: -0.32s;
1605
+ .scrub-thumbnails.hidden {
1606
+ opacity: 0;
1587
1607
  }
1588
- .spinner-three-bounce[data-spinner] [data-bounce2] {
1589
- animation-delay: -0.16s;
1608
+ .scrub-thumbnails .thumbnail-container {
1609
+ display: inline-block;
1610
+ position: relative;
1611
+ overflow: hidden;
1612
+ background-color: #000;
1590
1613
  }
1591
-
1592
- @keyframes bouncedelay {
1593
- 0%, 80%, 100% {
1594
- transform: scale(0);
1595
- }
1596
- 40% {
1597
- transform: scale(1);
1598
- }
1599
- }.container-with-poster-clickable .mc-skip-time {
1600
- height: 0;
1614
+ .scrub-thumbnails .thumbnail-container .thumbnail-img {
1615
+ position: absolute;
1616
+ width: auto;
1601
1617
  }
1602
-
1603
- .mc-skip-time {
1618
+ .scrub-thumbnails .thumbnails-text {
1619
+ background-color: rgba(74, 74, 74, 0.7);
1620
+ border-radius: 3px;
1621
+ white-space: nowrap;
1622
+ overflow: hidden;
1623
+ text-overflow: ellipsis;
1624
+ color: white;
1604
1625
  position: absolute;
1605
- width: 100%;
1606
- height: calc(100% - 50px);
1607
- z-index: 9998;
1626
+ bottom: 23px;
1627
+ width: 100px;
1628
+ padding: 0 4px;
1629
+ font-size: 12px;
1630
+ }
1631
+ .scrub-thumbnails .spotlight {
1632
+ background-color: #4a4a4a;
1633
+ overflow: hidden;
1634
+ position: absolute;
1635
+ bottom: 0;
1636
+ left: 0;
1637
+ border-color: #4a4a4a;
1638
+ border-style: solid;
1639
+ border-width: 3px;
1640
+ border-radius: 3px;
1641
+ }
1642
+ .scrub-thumbnails .spotlight img {
1643
+ width: auto;
1644
+ }
1645
+ .scrub-thumbnails .backdrop {
1646
+ position: absolute;
1647
+ left: 0;
1648
+ bottom: 0;
1649
+ right: 0;
1650
+ background-color: #000;
1651
+ overflow: hidden;
1652
+ }
1653
+ .scrub-thumbnails .backdrop .carousel {
1654
+ position: absolute;
1655
+ top: 0;
1656
+ left: 0;
1657
+ height: 100%;
1658
+ white-space: nowrap;
1659
+ }
1660
+ .scrub-thumbnails .backdrop .carousel img {
1661
+ width: auto;
1662
+ }*,
1663
+ :focus,
1664
+ :visited {
1665
+ outline: none !important;
1666
+ }
1667
+
1668
+ .multicamera[data-multicamera] {
1669
+ float: right;
1670
+ margin-top: 4px;
1671
+ position: relative;
1672
+ margin-right: 20px;
1673
+ width: 20px;
1674
+ }
1675
+ .multicamera[data-multicamera] button {
1608
1676
  background-color: transparent;
1677
+ color: #fff;
1609
1678
  font-family: Roboto, "Open Sans", Arial, sans-serif;
1679
+ -webkit-font-smoothing: antialiased;
1680
+ border: none;
1681
+ font-size: 14px;
1682
+ padding: 0;
1610
1683
  }
1611
- .mc-skip-time .skip-container {
1612
- width: 100%;
1613
- height: 100%;
1684
+ .multicamera[data-multicamera] button svg {
1685
+ height: 20px;
1686
+ position: relative;
1687
+ margin-top: 6px;
1688
+ }
1689
+ .multicamera[data-multicamera] button:hover {
1690
+ color: #c9c9c9;
1691
+ }
1692
+ .multicamera[data-multicamera] button.changing {
1693
+ animation: pulse 0.5s infinite alternate;
1694
+ }
1695
+ .multicamera[data-multicamera] button span.quality-arrow {
1696
+ width: 9px;
1697
+ height: 6px;
1698
+ margin-top: 11px;
1699
+ margin-left: 5px;
1700
+ }
1701
+ .multicamera[data-multicamera] > ul {
1702
+ padding: 6px 0;
1703
+ right: -24px;
1704
+ width: 245px;
1705
+ list-style-type: none;
1706
+ position: absolute;
1707
+ bottom: 48px;
1708
+ border-radius: 4px;
1709
+ display: none;
1710
+ background-color: rgba(74, 74, 74, 0.9);
1711
+ }
1712
+ .multicamera[data-multicamera] > ul::after {
1713
+ content: "";
1714
+ position: absolute;
1715
+ top: 100%;
1716
+ left: 85%;
1717
+ margin-left: -10px;
1718
+ width: 0;
1719
+ height: 0;
1720
+ border-top: 10px solid rgba(74, 74, 74, 0.9);
1721
+ border-right: 10px solid transparent;
1722
+ border-left: 10px solid transparent;
1723
+ }
1724
+ .multicamera[data-multicamera] li {
1725
+ font-size: 10px;
1726
+ cursor: pointer;
1727
+ }
1728
+ .multicamera[data-multicamera] li .multicamera-item {
1614
1729
  display: flex;
1615
- justify-content: space-between;
1730
+ padding: 10px 0;
1731
+ justify-content: center;
1732
+ position: relative;
1616
1733
  }
1617
- .mc-skip-time .skip-container .skip-item {
1618
- flex: 1 0 0px;
1619
- height: 100%;
1734
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
1735
+ pointer-events: none;
1736
+ }
1737
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
1738
+ opacity: 0.5;
1739
+ }
1740
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
1741
+ opacity: 0.5;
1742
+ }
1743
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
1744
+ background-color: rgba(0, 0, 0, 0);
1745
+ }
1746
+ .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
1747
+ background-color: rgba(0, 0, 0, 0.3);
1748
+ }
1749
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
1750
+ width: 80px;
1751
+ height: 60px;
1752
+ }
1753
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
1754
+ width: 80px;
1755
+ height: 60px;
1756
+ }
1757
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
1758
+ width: 120px;
1759
+ text-align: left;
1760
+ margin-left: 15px;
1761
+ }
1762
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title,
1763
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1764
+ width: 120px;
1765
+ height: 20px;
1766
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1767
+ font-size: 14px;
1768
+ font-weight: normal;
1769
+ font-style: normal;
1770
+ font-stretch: normal;
1771
+ line-height: 1.43;
1772
+ letter-spacing: normal;
1773
+ text-align: left;
1774
+ color: #fff;
1775
+ text-overflow: ellipsis;
1776
+ overflow: hidden;
1777
+ }
1778
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1779
+ opacity: 0.6;
1780
+ }
1781
+ .multicamera[data-multicamera] li a {
1782
+ color: #444;
1783
+ padding: 2px 10px;
1784
+ display: block;
1785
+ text-decoration: none;
1786
+ }
1787
+ .multicamera[data-multicamera] li a:hover {
1788
+ background-color: #555;
1789
+ color: white;
1790
+ }
1791
+ .multicamera[data-multicamera] li a:hover a {
1792
+ color: white;
1793
+ text-decoration: none;
1794
+ }
1795
+ .multicamera[data-multicamera] li.current a {
1796
+ color: #f00;
1620
1797
  }.share_plugin[data-share] {
1621
1798
  pointer-events: auto;
1622
1799
  z-index: 5;
@@ -1700,183 +1877,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1700
1877
  display: inline-block;
1701
1878
  margin-right: 5px;
1702
1879
  cursor: pointer;
1703
- }.scrub-thumbnails {
1704
- position: absolute;
1705
- bottom: 52px;
1706
- width: 100%;
1707
- transition: opacity 0.3s ease;
1708
- }
1709
- .scrub-thumbnails.hidden {
1710
- opacity: 0;
1711
- }
1712
- .scrub-thumbnails .thumbnail-container {
1713
- display: inline-block;
1714
- position: relative;
1715
- overflow: hidden;
1716
- background-color: #000;
1717
- }
1718
- .scrub-thumbnails .thumbnail-container .thumbnail-img {
1719
- position: absolute;
1720
- width: auto;
1721
- }
1722
- .scrub-thumbnails .thumbnails-text {
1723
- background-color: rgba(74, 74, 74, 0.7);
1724
- border-radius: 3px;
1725
- white-space: nowrap;
1726
- overflow: hidden;
1727
- text-overflow: ellipsis;
1728
- color: white;
1729
- position: absolute;
1730
- bottom: 23px;
1731
- width: 100px;
1732
- padding: 0 4px;
1733
- font-size: 12px;
1734
- }
1735
- .scrub-thumbnails .spotlight {
1736
- background-color: #4a4a4a;
1737
- overflow: hidden;
1738
- position: absolute;
1739
- bottom: 0;
1740
- left: 0;
1741
- border-color: #4a4a4a;
1742
- border-style: solid;
1743
- border-width: 3px;
1744
- border-radius: 3px;
1745
- }
1746
- .scrub-thumbnails .spotlight img {
1747
- width: auto;
1748
- }
1749
- .scrub-thumbnails .backdrop {
1750
- position: absolute;
1751
- left: 0;
1752
- bottom: 0;
1753
- right: 0;
1754
- background-color: #000;
1755
- overflow: hidden;
1756
- }
1757
- .scrub-thumbnails .backdrop .carousel {
1758
- position: absolute;
1759
- top: 0;
1760
- left: 0;
1761
- height: 100%;
1762
- white-space: nowrap;
1763
- }
1764
- .scrub-thumbnails .backdrop .carousel img {
1765
- width: auto;
1766
- }.media-control-skin-1 .media-control-cc button.media-control-button {
1767
- display: flex;
1768
- justify-content: center;
1769
- padding: 0;
1770
- align-items: center;
1771
- vertical-align: top;
1772
- }
1773
- .media-control-skin-1 .media-control-cc button.media-control-button:hover {
1774
- color: white;
1775
- }
1776
- .media-control-skin-1 .media-control-cc ul li {
1777
- text-align: center;
1778
- }
1779
- .media-control-skin-1 .media-control-cc ul li a {
1780
- height: 30px;
1781
- padding: 5px 10px;
1782
- color: #fffffe;
1783
- }
1784
- .media-control-skin-1 .media-control-cc ul li a:hover {
1785
- background-color: rgba(0, 0, 0, 0.4);
1786
- }
1787
- .media-control-skin-1 .media-control-cc ul li.current a {
1788
- background-color: rgba(0, 0, 0, 0.4);
1789
- }
1790
- .media-control-skin-1 .media-control-cc ul li:first-child a {
1791
- border-bottom-left-radius: 4px;
1792
- border-bottom-right-radius: 4px;
1793
- }
1794
- .media-control-skin-1 .media-control-cc ul li:last-child a {
1795
- border-top-left-radius: 4px;
1796
- border-top-right-radius: 4px;
1797
- }
1798
- .media-control-skin-1 .media-control-cc {
1799
- position: relative;
1800
- order: 85;
1801
- }
1802
-
1803
- .container .gplayer-cc-line {
1804
- position: absolute;
1805
- bottom: calc(var(--bottom-panel) + 5px);
1806
- width: 100%;
1807
- }
1808
- .container .gplayer-cc-line p {
1809
- width: auto;
1810
- background-color: rgba(0, 0, 0, 0.4);
1811
- color: white;
1812
- display: inline-block;
1813
- }.player-poster {
1814
- display: flex;
1815
- justify-content: center;
1816
- align-items: center;
1817
- position: absolute;
1818
- height: 100%;
1819
- width: 100%;
1820
- z-index: 998;
1821
- top: 0;
1822
- left: 0;
1823
- background-color: #000;
1824
- background-size: cover;
1825
- background-repeat: no-repeat;
1826
- background-position: 50% 50%;
1827
- }
1828
- .player-poster.clickable {
1829
- cursor: pointer;
1830
- }
1831
- .player-poster:hover .play-wrapper {
1832
- opacity: 1;
1833
- }
1834
- .player-poster .play-wrapper {
1835
- width: 100%;
1836
- height: 25%;
1837
- margin: 0 auto;
1838
- opacity: 0.75;
1839
- transition: opacity 0.1s ease;
1840
- }
1841
- .player-poster .play-wrapper svg {
1842
- height: 100%;
1843
- display: inline;
1844
- }
1845
- .player-poster .play-wrapper svg path {
1846
- fill: #fff;
1847
- }.seek-time {
1848
- position: absolute;
1849
- white-space: nowrap;
1850
- height: 20px;
1851
- line-height: 20px;
1852
- font-size: 0;
1853
- left: -100%;
1854
- bottom: 55px;
1855
- background-color: rgba(2, 2, 2, 0.5);
1856
- z-index: 9999;
1857
- transition: opacity 0.1s ease;
1858
- }
1859
- .seek-time.hidden {
1860
- opacity: 0;
1861
- }
1862
- .seek-time .seek-time__pos {
1863
- display: inline-block;
1864
- color: white;
1865
- font-size: 10px;
1866
- padding-left: 7px;
1867
- padding-right: 7px;
1868
- vertical-align: top;
1869
- }
1870
- .seek-time .seek-time__duration {
1871
- display: inline-block;
1872
- color: rgba(255, 255, 255, 0.5);
1873
- font-size: 10px;
1874
- padding-right: 7px;
1875
- vertical-align: top;
1876
- }
1877
- .seek-time .seek-time__duration::before {
1878
- content: "|";
1879
- margin-right: 7px;
1880
1880
  }.player-logo[data-logo] {
1881
1881
  position: absolute;
1882
1882
  z-index: 2;