@gcorevideo/player 2.24.11 → 2.24.13

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 (47) hide show
  1. package/README.md +1 -0
  2. package/assets/dvr-controls/dvr_controls.scss +43 -80
  3. package/assets/dvr-controls/index.ejs +8 -2
  4. package/assets/media-control/width370.scss +1 -1
  5. package/dist/core.js +18 -17
  6. package/dist/index.css +516 -542
  7. package/dist/index.embed.js +91 -65
  8. package/dist/index.js +156 -128
  9. package/dist/player.d.ts +3264 -0
  10. package/lib/playback/dash-playback/DashPlayback.d.ts +2 -0
  11. package/lib/playback/dash-playback/DashPlayback.d.ts.map +1 -1
  12. package/lib/playback/dash-playback/DashPlayback.js +17 -11
  13. package/lib/playback/hls-playback/HlsPlayback.d.ts.map +1 -1
  14. package/lib/playback/hls-playback/HlsPlayback.js +0 -5
  15. package/lib/plugins/audio-selector/AudioTracks.js +1 -1
  16. package/lib/plugins/bottom-gear/BottomGear.js +1 -1
  17. package/lib/plugins/clips/Clips.js +1 -1
  18. package/lib/plugins/dvr-controls/DvrControls.d.ts +3 -3
  19. package/lib/plugins/dvr-controls/DvrControls.d.ts.map +1 -1
  20. package/lib/plugins/dvr-controls/DvrControls.js +14 -12
  21. package/lib/plugins/media-control/MediaControl.d.ts +14 -5
  22. package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
  23. package/lib/plugins/media-control/MediaControl.js +55 -29
  24. package/lib/plugins/picture-in-picture/PictureInPicture.js +1 -1
  25. package/lib/plugins/subtitles/ClosedCaptions.js +1 -1
  26. package/lib/testUtils.d.ts.map +1 -1
  27. package/lib/testUtils.js +2 -0
  28. package/package.json +1 -1
  29. package/src/playback/dash-playback/DashPlayback.ts +20 -13
  30. package/src/playback/hls-playback/HlsPlayback.ts +3 -8
  31. package/src/plugins/audio-selector/AudioTracks.ts +1 -1
  32. package/src/plugins/audio-selector/__tests__/AudioTracks.test.ts +2 -2
  33. package/src/plugins/bottom-gear/BottomGear.ts +1 -1
  34. package/src/plugins/bottom-gear/__tests__/BottomGear.test.ts +2 -2
  35. package/src/plugins/clips/Clips.ts +1 -1
  36. package/src/plugins/clips/__tests__/Clips.test.ts +1 -1
  37. package/src/plugins/dvr-controls/DvrControls.ts +14 -14
  38. package/src/plugins/dvr-controls/__tests__/DvrControls.test.ts +20 -17
  39. package/src/plugins/dvr-controls/__tests__/__snapshots__/DvrControls.test.ts.snap +4 -2
  40. package/src/plugins/media-control/MediaControl.ts +69 -35
  41. package/src/plugins/media-control/__tests__/MediaControl.test.ts +128 -112
  42. package/src/plugins/media-control/__tests__/__snapshots__/MediaControl.test.ts.snap +227 -24
  43. package/src/plugins/picture-in-picture/PictureInPicture.ts +1 -1
  44. package/src/plugins/subtitles/ClosedCaptions.ts +1 -1
  45. package/src/plugins/subtitles/__tests__/ClosedCaptions.test.ts +1 -1
  46. package/src/testUtils.ts +2 -0
  47. package/tsconfig.tsbuildinfo +1 -1
package/dist/index.css CHANGED
@@ -122,147 +122,6 @@
122
122
  .gplayer-lite-btn::-moz-focus-inner {
123
123
  border: 0;
124
124
  padding: 0;
125
- }*, :focus, :visited {
126
- outline: none !important;
127
- }
128
-
129
- .gear-wrapper .go-back {
130
- font-weight: 600;
131
- font-size: 14px;
132
- line-height: 20px;
133
- width: 100%;
134
- text-align: left;
135
- padding: 12px;
136
- }
137
- .gear-wrapper .go-back .arrow-left-icon {
138
- float: left;
139
- padding-top: 2px;
140
- padding-right: 2px;
141
- }
142
- .gear-wrapper .go-back .arrow-left-icon svg {
143
- height: 16px;
144
- }
145
- .gear-wrapper ul.gear-sub-menu {
146
- width: 100%;
147
- list-style-type: none;
148
- min-width: 60px;
149
- border-top: 2px solid rgb(36, 36, 36);
150
- overflow-y: auto;
151
- }
152
- .gear-wrapper ul.gear-sub-menu li {
153
- font-size: 12px;
154
- text-align: left;
155
- }
156
- .gear-wrapper ul.gear-sub-menu li[data-title] {
157
- background-color: #c3c2c2;
158
- padding: 5px;
159
- }
160
- .gear-wrapper ul.gear-sub-menu li a {
161
- display: block;
162
- text-decoration: none;
163
- height: 32px;
164
- padding: 5px 10px;
165
- line-height: 22px;
166
- color: #fffffe;
167
- }
168
- .gear-wrapper ul.gear-sub-menu li a:hover {
169
- color: white;
170
- background-color: rgba(0, 0, 0, 0.4);
171
- }
172
- .gear-wrapper ul.gear-sub-menu li a:hover a {
173
- color: white;
174
- text-decoration: none;
175
- }
176
- .gear-wrapper ul.gear-sub-menu li a .check-icon {
177
- width: 30px;
178
- height: 20px;
179
- float: left;
180
- display: block;
181
- }
182
- .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
183
- display: none;
184
- }
185
- .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
186
- display: inline;
187
- }div.player-error-screen, [data-player] div.player-error-screen {
188
- color: #CCCACA;
189
- position: absolute;
190
- top: 0;
191
- height: 100%;
192
- width: 100%;
193
- background-color: rgba(0, 0, 0, 0.7);
194
- z-index: 2000;
195
- display: flex;
196
- flex-direction: column;
197
- justify-content: center;
198
- }
199
- div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
200
- font-size: 14px;
201
- color: #CCCACA;
202
- margin-top: 45px;
203
- }
204
- div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
205
- font-weight: bold;
206
- line-height: 30px;
207
- font-size: 18px;
208
- }
209
- div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
210
- width: 90%;
211
- margin: 0 auto;
212
- }
213
- div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
214
- font-size: 13px;
215
- margin-top: 15px;
216
- }
217
- div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
218
- cursor: pointer;
219
- width: 30px;
220
- margin: 15px auto 0;
221
- }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
222
- order: 99;
223
- height: 20px;
224
- }
225
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
226
- position: absolute;
227
- right: 16px;
228
- bottom: 52px;
229
- width: 250px;
230
- min-height: 48px;
231
- z-index: 9999;
232
- border-radius: 4px;
233
- }
234
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
235
- padding: 8px 0;
236
- }
237
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
238
- margin: 0;
239
- text-align: left;
240
- line-height: 22px;
241
- padding: 5px 14px;
242
- width: 250px;
243
- font-size: 12px;
244
- display: flex;
245
- align-items: center;
246
- justify-content: flex-start;
247
- gap: 8px;
248
- }
249
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
250
- flex: 24px 0 0;
251
- height: 24px;
252
- }
253
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
254
- visibility: hidden;
255
- display: inline-block;
256
- }
257
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
258
- flex: 0 1 100%;
259
- }
260
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
261
- flex: 0 0 14px;
262
- height: 24px;
263
- }
264
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
265
- flex: 1 0 auto;
266
125
  }*,
267
126
  :focus,
268
127
  :visited {
@@ -412,6 +271,100 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
412
271
  }
413
272
  .big-mute-icon[data-big-mute-icon]:hover svg path {
414
273
  fill: #151515 !important;
274
+ }.dvr-controls {
275
+ --disabled-opacity: 0.3;
276
+ --circle-radius: 5px;
277
+ display: flex;
278
+ align-items: center;
279
+ color: var(--player-dvr-color);
280
+ font-size: 10px;
281
+ font-weight: 500;
282
+ height: var(--bottom-panel);
283
+ line-height: var(--bottom-panel);
284
+ margin-left: 0;
285
+ }
286
+ .dvr-controls .live-info,
287
+ .dvr-controls .live-button {
288
+ font-size: 14px;
289
+ font-weight: 500;
290
+ margin-left: 20px;
291
+ letter-spacing: 0.8px;
292
+ text-transform: uppercase;
293
+ }
294
+ .dvr-controls .live-info::before,
295
+ .dvr-controls .live-button::before {
296
+ margin-right: 8px;
297
+ content: "";
298
+ display: inline-block;
299
+ position: relative;
300
+ width: calc(var(--circle-radius) * 2);
301
+ height: calc(var(--circle-radius) * 2);
302
+ border-radius: var(--circle-radius);
303
+ background-color: var(--player-dvr-color);
304
+ }
305
+ .dvr-controls.disabled {
306
+ opacity: var(--disabled-opacity);
307
+ }
308
+ .dvr-controls.disabled:before {
309
+ background-color: var(--player-dvr-color);
310
+ }
311
+
312
+ .live-info {
313
+ text-transform: uppercase;
314
+ color: #fffffe;
315
+ }
316
+ .live-info::before {
317
+ background-color: var(--player-live-color);
318
+ background-color: #ed4f4a;
319
+ }
320
+
321
+ .live-button {
322
+ cursor: pointer;
323
+ outline: none;
324
+ border: 0;
325
+ color: var(--player-dvr-color);
326
+ background-color: transparent;
327
+ padding: 0;
328
+ opacity: 0.7;
329
+ transition: all 0.1s ease;
330
+ }
331
+ .live-button:hover {
332
+ opacity: 1;
333
+ text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
334
+ }.player-poster {
335
+ display: flex;
336
+ justify-content: center;
337
+ align-items: center;
338
+ position: absolute;
339
+ height: 100%;
340
+ width: 100%;
341
+ z-index: 998;
342
+ top: 0;
343
+ left: 0;
344
+ background-color: #000;
345
+ background-size: cover;
346
+ background-repeat: no-repeat;
347
+ background-position: 50% 50%;
348
+ }
349
+ .player-poster.clickable {
350
+ cursor: pointer;
351
+ }
352
+ .player-poster:hover .play-wrapper {
353
+ opacity: 1;
354
+ }
355
+ .player-poster .play-wrapper {
356
+ width: 100%;
357
+ height: 25%;
358
+ margin: 0 auto;
359
+ opacity: 0.75;
360
+ transition: opacity 0.1s ease;
361
+ }
362
+ .player-poster .play-wrapper svg {
363
+ height: 100%;
364
+ display: inline;
365
+ }
366
+ .player-poster .play-wrapper svg path {
367
+ fill: #fff;
415
368
  }:root {
416
369
  --primary-background-color: #000;
417
370
  --secondary-background-color: #262626;
@@ -834,261 +787,230 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
834
787
  .context-menu .context-menu-list-item_icon {
835
788
  width: 20px;
836
789
  height: 20px;
837
- }.container-with-poster-clickable .mc-skip-time {
838
- height: 0;
790
+ }*, :focus, :visited {
791
+ outline: none !important;
839
792
  }
840
793
 
841
- .mc-skip-time {
842
- position: absolute;
794
+ .gear-wrapper .go-back {
795
+ font-weight: 600;
796
+ font-size: 14px;
797
+ line-height: 20px;
843
798
  width: 100%;
844
- height: calc(100% - 50px);
845
- z-index: 9998;
846
- background-color: transparent;
847
- font-family: Roboto, "Open Sans", Arial, sans-serif;
799
+ text-align: left;
800
+ padding: 12px;
848
801
  }
849
- .mc-skip-time .skip-container {
850
- width: 100%;
851
- height: 100%;
852
- display: flex;
853
- justify-content: space-between;
802
+ .gear-wrapper .go-back .arrow-left-icon {
803
+ float: left;
804
+ padding-top: 2px;
805
+ padding-right: 2px;
854
806
  }
855
- .mc-skip-time .skip-container .skip-item {
856
- flex: 1 0 0px;
857
- height: 100%;
858
- }*, :focus, :visited {
859
- outline: none !important;
807
+ .gear-wrapper .go-back .arrow-left-icon svg {
808
+ height: 16px;
860
809
  }
861
-
862
- .multicamera[data-multicamera] {
863
- float: right;
864
- margin-top: 4px;
865
- position: relative;
866
- margin-right: 20px;
867
- width: 20px;
810
+ .gear-wrapper ul.gear-sub-menu {
811
+ width: 100%;
812
+ list-style-type: none;
813
+ min-width: 60px;
814
+ border-top: 2px solid rgb(36, 36, 36);
815
+ overflow-y: auto;
868
816
  }
869
- .multicamera[data-multicamera] button {
870
- background-color: transparent;
871
- color: #fff;
872
- font-family: Roboto, "Open Sans", Arial, sans-serif;
873
- -webkit-font-smoothing: antialiased;
874
- border: none;
875
- font-size: 14px;
876
- padding: 0;
817
+ .gear-wrapper ul.gear-sub-menu li {
818
+ font-size: 12px;
819
+ text-align: left;
877
820
  }
878
- .multicamera[data-multicamera] button svg {
879
- height: 20px;
880
- position: relative;
881
- margin-top: 6px;
821
+ .gear-wrapper ul.gear-sub-menu li[data-title] {
822
+ background-color: #c3c2c2;
823
+ padding: 5px;
882
824
  }
883
- .multicamera[data-multicamera] button:hover {
884
- color: #c9c9c9;
825
+ .gear-wrapper ul.gear-sub-menu li a {
826
+ display: block;
827
+ text-decoration: none;
828
+ height: 32px;
829
+ padding: 5px 10px;
830
+ line-height: 22px;
831
+ color: #fffffe;
885
832
  }
886
- .multicamera[data-multicamera] button.changing {
887
- animation: pulse 0.5s infinite alternate;
833
+ .gear-wrapper ul.gear-sub-menu li a:hover {
834
+ color: white;
835
+ background-color: rgba(0, 0, 0, 0.4);
888
836
  }
889
- .multicamera[data-multicamera] button span.quality-arrow {
890
- width: 9px;
891
- height: 6px;
892
- margin-top: 11px;
893
- margin-left: 5px;
837
+ .gear-wrapper ul.gear-sub-menu li a:hover a {
838
+ color: white;
839
+ text-decoration: none;
894
840
  }
895
- .multicamera[data-multicamera] > ul {
896
- padding: 6px 0;
897
- right: -24px;
898
- width: 245px;
899
- list-style-type: none;
900
- position: absolute;
901
- bottom: 48px;
902
- border-radius: 4px;
841
+ .gear-wrapper ul.gear-sub-menu li a .check-icon {
842
+ width: 30px;
843
+ height: 20px;
844
+ float: left;
845
+ display: block;
846
+ }
847
+ .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
903
848
  display: none;
904
- background-color: rgba(74, 74, 74, 0.9);
905
849
  }
906
- .multicamera[data-multicamera] > ul::after {
907
- content: "";
850
+ .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
851
+ display: inline;
852
+ }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
853
+ order: 99;
854
+ height: 20px;
855
+ }
856
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
908
857
  position: absolute;
909
- top: 100%;
910
- left: 85%;
911
- margin-left: -10px;
912
- width: 0;
913
- height: 0;
914
- border-top: 10px solid rgba(74, 74, 74, 0.9);
915
- border-right: 10px solid transparent;
916
- border-left: 10px solid transparent;
858
+ right: 16px;
859
+ bottom: 52px;
860
+ width: 250px;
861
+ min-height: 48px;
862
+ z-index: 9999;
863
+ border-radius: 4px;
917
864
  }
918
- .multicamera[data-multicamera] li {
919
- font-size: 10px;
920
- cursor: pointer;
865
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
866
+ padding: 8px 0;
921
867
  }
922
- .multicamera[data-multicamera] li .multicamera-item {
868
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
869
+ margin: 0;
870
+ text-align: left;
871
+ line-height: 22px;
872
+ padding: 5px 14px;
873
+ width: 250px;
874
+ font-size: 12px;
923
875
  display: flex;
924
- padding: 10px 0;
925
- justify-content: center;
926
- position: relative;
927
- }
928
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
929
- pointer-events: none;
876
+ align-items: center;
877
+ justify-content: flex-start;
878
+ gap: 8px;
930
879
  }
931
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
932
- opacity: 0.5;
880
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
881
+ flex: 24px 0 0;
882
+ height: 24px;
933
883
  }
934
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
935
- opacity: 0.5;
884
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
885
+ visibility: hidden;
886
+ display: inline-block;
936
887
  }
937
- .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
938
- background-color: rgba(0, 0, 0, 0);
888
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
889
+ flex: 0 1 100%;
939
890
  }
940
- .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
941
- background-color: rgba(0, 0, 0, 0.3);
891
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
892
+ flex: 0 0 14px;
893
+ height: 24px;
942
894
  }
943
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
944
- width: 80px;
945
- height: 60px;
895
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
896
+ flex: 1 0 auto;
897
+ }.share_plugin[data-share] {
898
+ pointer-events: auto;
899
+ z-index: 5;
900
+ font-family: Roboto, "Open Sans", Arial, sans-serif !important;
946
901
  }
947
- .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
948
- width: 80px;
949
- height: 60px;
902
+ .share_plugin[data-share].share-hide .share-button-container {
903
+ right: -50px;
950
904
  }
951
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
952
- width: 120px;
953
- text-align: left;
954
- margin-left: 15px;
905
+ .share_plugin[data-share] .share-button-container {
906
+ cursor: pointer;
907
+ width: 36px;
908
+ height: 36px;
909
+ background-color: rgba(74, 74, 74, 0.6);
910
+ border-radius: 4px;
911
+ position: absolute;
912
+ right: 10px;
913
+ top: 10px;
914
+ padding-top: 6px;
915
+ transition: all 0.3s ease-out;
955
916
  }
956
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
957
- width: 120px;
917
+ .share_plugin[data-share] .share-button-container button[data-share-button] {
918
+ background-color: transparent;
919
+ border: 0;
920
+ margin: 0 6px;
921
+ padding: 0;
922
+ cursor: pointer;
923
+ display: inline-block;
924
+ width: 19px;
958
925
  height: 20px;
959
- font-family: Roboto, "Open Sans", Arial, sans-serif;
960
- font-size: 14px;
961
- font-weight: normal;
962
- font-style: normal;
963
- font-stretch: normal;
964
- line-height: 1.43;
965
- letter-spacing: normal;
966
- text-align: left;
967
- color: #fff;
968
- text-overflow: ellipsis;
969
- overflow: hidden;
970
926
  }
971
- .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
972
- opacity: 0.6;
973
- }
974
- .multicamera[data-multicamera] li[data-title] {
975
- background-color: #c3c2c2;
976
- padding: 5px;
977
- }
978
- .multicamera[data-multicamera] li a {
979
- color: #444;
980
- padding: 2px 10px;
981
- display: block;
982
- text-decoration: none;
983
- }
984
- .multicamera[data-multicamera] li a:hover {
985
- background-color: #555;
986
- color: white;
987
- }
988
- .multicamera[data-multicamera] li a:hover a {
989
- color: white;
990
- text-decoration: none;
927
+ .share_plugin[data-share] .share-container {
928
+ pointer-events: auto;
929
+ position: absolute;
930
+ width: 280px;
931
+ background-color: white;
932
+ transform: translate(0, 50%);
933
+ transform: translate(-50%, -50%);
934
+ left: 50%;
935
+ /* margin-left: -140px; */
936
+ top: calc(50% - 20px);
937
+ /* margin-top: -170px; */
991
938
  }
992
- .multicamera[data-multicamera] li.current a {
993
- color: #f00;
939
+ .share_plugin[data-share] .share-container .share-container-header {
940
+ text-align: left;
941
+ border-bottom: 1px solid rgba(155, 155, 155, 0.25);
994
942
  }
995
-
996
- @keyframes pulse {
997
- 0% {
998
- color: #fff;
999
- }
1000
- 50% {
1001
- color: #ff0101;
1002
- }
1003
- 100% {
1004
- color: #B80000;
1005
- }
1006
- }.dvr-controls[data-dvr] {
943
+ .share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
1007
944
  display: inline-block;
1008
- color: var(--player-dvr-color);
1009
- line-height: 32px;
1010
- font-size: 10px;
1011
- font-weight: bold;
1012
- margin-left: 6px;
1013
- height: 40px;
1014
- line-height: 40px;
1015
- margin-left: 0;
1016
- }
1017
- .dvr-controls[data-dvr] .live-info {
1018
- cursor: default;
1019
- text-transform: uppercase;
945
+ font-size: 16px;
946
+ margin: 5px;
1020
947
  }
1021
- .dvr-controls[data-dvr] .live-info:before {
1022
- content: "";
948
+ .share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
1023
949
  display: inline-block;
1024
- position: relative;
1025
- width: 7px;
1026
- height: 7px;
1027
- border-radius: 3.5px;
1028
- margin-right: 3.5px;
1029
- background-color: var(--player-live-color);
950
+ width: 24px;
951
+ float: right;
952
+ margin: 5px;
953
+ cursor: pointer;
954
+ }
955
+ .share_plugin[data-share] .share-container .share-container-main {
956
+ margin-bottom: 8px;
1030
957
  }
1031
- .dvr-controls[data-dvr] .live-info.disabled {
1032
- opacity: 0.3;
958
+ .share_plugin[data-share] .share-container .share-container-main > div {
959
+ text-align: left;
960
+ font-size: 14px;
961
+ padding: 5px;
1033
962
  }
1034
- .dvr-controls[data-dvr] .live-info.disabled:before {
1035
- background-color: var(--player-dvr-color);
963
+ .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 {
964
+ overflow: hidden;
965
+ text-overflow: ellipsis;
966
+ color: #818181;
967
+ border: solid 1px #d3d3d3;
968
+ width: calc(100% - 10px);
969
+ padding: 5px;
1036
970
  }
1037
- .dvr-controls[data-dvr] .live-button {
1038
- cursor: pointer;
1039
- outline: none;
1040
- display: none;
1041
- border: 0;
1042
- color: var(--player-dvr-color);
1043
- background-color: transparent;
1044
- height: 32px;
1045
- padding: 0;
1046
- opacity: 0.7;
1047
- text-transform: uppercase;
1048
- transition: all 0.1s ease;
971
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
972
+ max-height: 90px;
973
+ resize: none;
1049
974
  }
1050
- .dvr-controls[data-dvr] .live-button:before {
1051
- content: "";
975
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
976
+ width: 32px;
1052
977
  display: inline-block;
1053
- position: relative;
1054
- width: 7px;
1055
- height: 7px;
1056
- border-radius: 3.5px;
1057
- margin-right: 3.5px;
1058
- background-color: var(--player-dvr-color);
1059
- }
1060
- .dvr-controls[data-dvr] .live-button:hover {
1061
- opacity: 1;
1062
- text-shadow: rgba(255, 255, 255, 0.75) 0 0 5px;
978
+ margin-right: 5px;
979
+ cursor: pointer;
980
+ }div.player-error-screen, [data-player] div.player-error-screen {
981
+ color: #CCCACA;
982
+ position: absolute;
983
+ top: 0;
984
+ height: 100%;
985
+ width: 100%;
986
+ background-color: rgba(0, 0, 0, 0.7);
987
+ z-index: 2000;
988
+ display: flex;
989
+ flex-direction: column;
990
+ justify-content: center;
1063
991
  }
1064
- .dvr-controls[data-dvr] .live-info {
992
+ div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
1065
993
  font-size: 14px;
1066
- letter-spacing: 0.8px;
1067
- font-weight: 500;
1068
- color: #fffffe;
1069
- margin-left: 21px;
994
+ color: #CCCACA;
995
+ margin-top: 45px;
1070
996
  }
1071
- .dvr-controls[data-dvr] .live-info::before {
1072
- width: 10px;
1073
- height: 10px;
1074
- border-radius: 50%;
1075
- margin-right: 8px;
1076
- background-color: #ed4f4a;
997
+ div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
998
+ font-weight: bold;
999
+ line-height: 30px;
1000
+ font-size: 18px;
1077
1001
  }
1078
- .dvr-controls[data-dvr] .live-button {
1079
- height: 40px;
1080
- opacity: 1;
1081
- font-size: 14px;
1082
- letter-spacing: 0.8px;
1083
- font-weight: 500;
1084
- margin-left: 20px;
1002
+ div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
1003
+ width: 90%;
1004
+ margin: 0 auto;
1085
1005
  }
1086
- .dvr-controls[data-dvr] .live-button::before {
1087
- width: 10px;
1088
- height: 10px;
1089
- border-radius: 50%;
1090
- margin-right: 8px;
1091
- background-color: #cacaca;
1006
+ div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
1007
+ font-size: 13px;
1008
+ margin-top: 15px;
1009
+ }
1010
+ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1011
+ cursor: pointer;
1012
+ width: 30px;
1013
+ margin: 15px auto 0;
1092
1014
  }.media-control-pip {
1093
1015
  order: 95;
1094
1016
  display: flex;
@@ -1098,6 +1020,33 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1098
1020
  }
1099
1021
  .media-control-pip button svg {
1100
1022
  height: 20px;
1023
+ }.container-with-poster-clickable .mc-skip-time {
1024
+ height: 0;
1025
+ }
1026
+
1027
+ .mc-skip-time {
1028
+ position: absolute;
1029
+ width: 100%;
1030
+ height: calc(100% - 50px);
1031
+ z-index: 9998;
1032
+ background-color: transparent;
1033
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1034
+ }
1035
+ .mc-skip-time .skip-container {
1036
+ width: 100%;
1037
+ height: 100%;
1038
+ display: flex;
1039
+ justify-content: space-between;
1040
+ }
1041
+ .mc-skip-time .skip-container .skip-item {
1042
+ flex: 1 0 0px;
1043
+ height: 100%;
1044
+ }.quality-levels li.disabled {
1045
+ opacity: 0.5;
1046
+ pointer-events: none;
1047
+ }
1048
+ .quality-levels li.current {
1049
+ background-color: #000;
1101
1050
  }.seek-time {
1102
1051
  position: absolute;
1103
1052
  white-space: nowrap;
@@ -1305,10 +1254,10 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1305
1254
  font-size: 11px;
1306
1255
  line-height: 32px;
1307
1256
  }
1308
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls[data-dvr] {
1257
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls {
1309
1258
  height: 32px;
1310
1259
  }
1311
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls[data-dvr] .live-button {
1260
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls .live-button {
1312
1261
  margin-left: 10px;
1313
1262
  height: 32px;
1314
1263
  font-size: 12px;
@@ -1316,12 +1265,12 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1316
1265
  text-shadow: none;
1317
1266
  letter-spacing: 0.6px;
1318
1267
  }
1319
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls[data-dvr] .live-button::before {
1268
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls .live-button::before {
1320
1269
  width: 8px;
1321
1270
  height: 8px;
1322
1271
  margin-right: 4px;
1323
1272
  }
1324
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls[data-dvr] .live-info {
1273
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls .live-info {
1325
1274
  margin-left: 10px;
1326
1275
  height: 32px;
1327
1276
  font-size: 12px;
@@ -1329,7 +1278,7 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1329
1278
  text-shadow: none;
1330
1279
  letter-spacing: 0.6px;
1331
1280
  }
1332
- .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls[data-dvr] .live-info::before {
1281
+ .media-control-skin-1[data-media-control-skin-1].w370 .media-control-layer[data-controls] .dvr-controls .live-info::before {
1333
1282
  width: 8px;
1334
1283
  height: 8px;
1335
1284
  margin-right: 4px;
@@ -1715,107 +1664,221 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1715
1664
  padding: 5px 10px;
1716
1665
  color: #fffffe;
1717
1666
  }
1718
- .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li a:hover {
1719
- background-color: rgba(0, 0, 0, 0.4);
1667
+ .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li a:hover {
1668
+ background-color: rgba(0, 0, 0, 0.4);
1669
+ }
1670
+ .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li.current a {
1671
+ background-color: rgba(0, 0, 0, 0.4);
1672
+ }
1673
+ .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li:first-child a {
1674
+ border-bottom-left-radius: 4px;
1675
+ border-bottom-right-radius: 4px;
1676
+ }
1677
+ .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li:last-child a {
1678
+ border-top-left-radius: 4px;
1679
+ border-top-right-radius: 4px;
1680
+ }
1681
+ .media-control-skin-1[data-media-control-skin-1] .seek-time {
1682
+ height: 26px;
1683
+ line-height: 26px;
1684
+ bottom: 52px;
1685
+ border-radius: 3px;
1686
+ background-color: rgba(74, 74, 74, 0.7);
1687
+ }
1688
+ .media-control-skin-1[data-media-control-skin-1] .seek-time span {
1689
+ letter-spacing: 0.8px;
1690
+ font-size: 14px;
1691
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1692
+ }
1693
+ .media-control-skin-1[data-media-control-skin-1] .seek-time .seek-time__pos {
1694
+ padding-left: 8px;
1695
+ padding-right: 8px;
1696
+ }.spinner-three-bounce[data-spinner] {
1697
+ position: absolute;
1698
+ width: 70px;
1699
+ text-align: center;
1700
+ z-index: 999;
1701
+ left: 0;
1702
+ right: 0;
1703
+ margin: 0 auto;
1704
+ margin-left: auto;
1705
+ margin-right: auto;
1706
+ /* center vertically */
1707
+ top: 50%;
1708
+ transform: translateY(-50%);
1709
+ }
1710
+ .spinner-three-bounce[data-spinner] > div {
1711
+ width: 18px;
1712
+ height: 18px;
1713
+ background-color: #FFF;
1714
+ border-radius: 100%;
1715
+ display: inline-block;
1716
+ animation: bouncedelay 1.4s infinite ease-in-out;
1717
+ /* Prevent first frame from flickering when animation starts */
1718
+ animation-fill-mode: both;
1719
+ }
1720
+ .spinner-three-bounce[data-spinner] [data-bounce1] {
1721
+ animation-delay: -0.32s;
1722
+ }
1723
+ .spinner-three-bounce[data-spinner] [data-bounce2] {
1724
+ animation-delay: -0.16s;
1725
+ }
1726
+
1727
+ @keyframes bouncedelay {
1728
+ 0%, 80%, 100% {
1729
+ transform: scale(0);
1730
+ }
1731
+ 40% {
1732
+ transform: scale(1);
1733
+ }
1734
+ }*, :focus, :visited {
1735
+ outline: none !important;
1736
+ }
1737
+
1738
+ .multicamera[data-multicamera] {
1739
+ float: right;
1740
+ margin-top: 4px;
1741
+ position: relative;
1742
+ margin-right: 20px;
1743
+ width: 20px;
1744
+ }
1745
+ .multicamera[data-multicamera] button {
1746
+ background-color: transparent;
1747
+ color: #fff;
1748
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1749
+ -webkit-font-smoothing: antialiased;
1750
+ border: none;
1751
+ font-size: 14px;
1752
+ padding: 0;
1753
+ }
1754
+ .multicamera[data-multicamera] button svg {
1755
+ height: 20px;
1756
+ position: relative;
1757
+ margin-top: 6px;
1758
+ }
1759
+ .multicamera[data-multicamera] button:hover {
1760
+ color: #c9c9c9;
1761
+ }
1762
+ .multicamera[data-multicamera] button.changing {
1763
+ animation: pulse 0.5s infinite alternate;
1764
+ }
1765
+ .multicamera[data-multicamera] button span.quality-arrow {
1766
+ width: 9px;
1767
+ height: 6px;
1768
+ margin-top: 11px;
1769
+ margin-left: 5px;
1770
+ }
1771
+ .multicamera[data-multicamera] > ul {
1772
+ padding: 6px 0;
1773
+ right: -24px;
1774
+ width: 245px;
1775
+ list-style-type: none;
1776
+ position: absolute;
1777
+ bottom: 48px;
1778
+ border-radius: 4px;
1779
+ display: none;
1780
+ background-color: rgba(74, 74, 74, 0.9);
1781
+ }
1782
+ .multicamera[data-multicamera] > ul::after {
1783
+ content: "";
1784
+ position: absolute;
1785
+ top: 100%;
1786
+ left: 85%;
1787
+ margin-left: -10px;
1788
+ width: 0;
1789
+ height: 0;
1790
+ border-top: 10px solid rgba(74, 74, 74, 0.9);
1791
+ border-right: 10px solid transparent;
1792
+ border-left: 10px solid transparent;
1793
+ }
1794
+ .multicamera[data-multicamera] li {
1795
+ font-size: 10px;
1796
+ cursor: pointer;
1797
+ }
1798
+ .multicamera[data-multicamera] li .multicamera-item {
1799
+ display: flex;
1800
+ padding: 10px 0;
1801
+ justify-content: center;
1802
+ position: relative;
1803
+ }
1804
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] {
1805
+ pointer-events: none;
1720
1806
  }
1721
- .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li.current a {
1722
- background-color: rgba(0, 0, 0, 0.4);
1807
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-screenshot {
1808
+ opacity: 0.5;
1723
1809
  }
1724
- .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li:first-child a {
1725
- border-bottom-left-radius: 4px;
1726
- border-bottom-right-radius: 4px;
1810
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false] .multicamera-text {
1811
+ opacity: 0.5;
1727
1812
  }
1728
- .media-control-skin-1[data-media-control-skin-1] .media-control-cc ul li:last-child a {
1729
- border-top-left-radius: 4px;
1730
- border-top-right-radius: 4px;
1813
+ .multicamera[data-multicamera] li .multicamera-item[data-mulitcamera-selector-live=false]:hover {
1814
+ background-color: rgba(0, 0, 0, 0);
1731
1815
  }
1732
- .media-control-skin-1[data-media-control-skin-1] .seek-time {
1733
- height: 26px;
1734
- line-height: 26px;
1735
- bottom: 52px;
1736
- border-radius: 3px;
1737
- background-color: rgba(74, 74, 74, 0.7);
1816
+ .multicamera[data-multicamera] li .multicamera-item:hover, .multicamera[data-multicamera] li .multicamera-item.multicamera-active {
1817
+ background-color: rgba(0, 0, 0, 0.3);
1738
1818
  }
1739
- .media-control-skin-1[data-media-control-skin-1] .seek-time span {
1740
- letter-spacing: 0.8px;
1741
- font-size: 14px;
1742
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1819
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot {
1820
+ width: 80px;
1821
+ height: 60px;
1743
1822
  }
1744
- .media-control-skin-1[data-media-control-skin-1] .seek-time .seek-time__pos {
1745
- padding-left: 8px;
1746
- padding-right: 8px;
1747
- }.spinner-three-bounce[data-spinner] {
1748
- position: absolute;
1749
- width: 70px;
1750
- text-align: center;
1751
- z-index: 999;
1752
- left: 0;
1753
- right: 0;
1754
- margin: 0 auto;
1755
- margin-left: auto;
1756
- margin-right: auto;
1757
- /* center vertically */
1758
- top: 50%;
1759
- transform: translateY(-50%);
1823
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-screenshot img {
1824
+ width: 80px;
1825
+ height: 60px;
1760
1826
  }
1761
- .spinner-three-bounce[data-spinner] > div {
1762
- width: 18px;
1763
- height: 18px;
1764
- background-color: #FFF;
1765
- border-radius: 100%;
1766
- display: inline-block;
1767
- animation: bouncedelay 1.4s infinite ease-in-out;
1768
- /* Prevent first frame from flickering when animation starts */
1769
- animation-fill-mode: both;
1827
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text {
1828
+ width: 120px;
1829
+ text-align: left;
1830
+ margin-left: 15px;
1770
1831
  }
1771
- .spinner-three-bounce[data-spinner] [data-bounce1] {
1772
- animation-delay: -0.32s;
1832
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-title, .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1833
+ width: 120px;
1834
+ height: 20px;
1835
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
1836
+ font-size: 14px;
1837
+ font-weight: normal;
1838
+ font-style: normal;
1839
+ font-stretch: normal;
1840
+ line-height: 1.43;
1841
+ letter-spacing: normal;
1842
+ text-align: left;
1843
+ color: #fff;
1844
+ text-overflow: ellipsis;
1845
+ overflow: hidden;
1773
1846
  }
1774
- .spinner-three-bounce[data-spinner] [data-bounce2] {
1775
- animation-delay: -0.16s;
1847
+ .multicamera[data-multicamera] li .multicamera-item .multicamera-text .multicamera-description {
1848
+ opacity: 0.6;
1776
1849
  }
1777
-
1778
- @keyframes bouncedelay {
1779
- 0%, 80%, 100% {
1780
- transform: scale(0);
1781
- }
1782
- 40% {
1783
- transform: scale(1);
1784
- }
1785
- }.player-poster {
1786
- display: flex;
1787
- justify-content: center;
1788
- align-items: center;
1789
- position: absolute;
1790
- height: 100%;
1791
- width: 100%;
1792
- z-index: 998;
1793
- top: 0;
1794
- left: 0;
1795
- background-color: #000;
1796
- background-size: cover;
1797
- background-repeat: no-repeat;
1798
- background-position: 50% 50%;
1850
+ .multicamera[data-multicamera] li[data-title] {
1851
+ background-color: #c3c2c2;
1852
+ padding: 5px;
1799
1853
  }
1800
- .player-poster.clickable {
1801
- cursor: pointer;
1854
+ .multicamera[data-multicamera] li a {
1855
+ color: #444;
1856
+ padding: 2px 10px;
1857
+ display: block;
1858
+ text-decoration: none;
1802
1859
  }
1803
- .player-poster:hover .play-wrapper {
1804
- opacity: 1;
1860
+ .multicamera[data-multicamera] li a:hover {
1861
+ background-color: #555;
1862
+ color: white;
1805
1863
  }
1806
- .player-poster .play-wrapper {
1807
- width: 100%;
1808
- height: 25%;
1809
- margin: 0 auto;
1810
- opacity: 0.75;
1811
- transition: opacity 0.1s ease;
1864
+ .multicamera[data-multicamera] li a:hover a {
1865
+ color: white;
1866
+ text-decoration: none;
1812
1867
  }
1813
- .player-poster .play-wrapper svg {
1814
- height: 100%;
1815
- display: inline;
1868
+ .multicamera[data-multicamera] li.current a {
1869
+ color: #f00;
1816
1870
  }
1817
- .player-poster .play-wrapper svg path {
1818
- fill: #fff;
1871
+
1872
+ @keyframes pulse {
1873
+ 0% {
1874
+ color: #fff;
1875
+ }
1876
+ 50% {
1877
+ color: #ff0101;
1878
+ }
1879
+ 100% {
1880
+ color: #B80000;
1881
+ }
1819
1882
  }*,
1820
1883
  :focus,
1821
1884
  :visited {
@@ -1889,104 +1952,6 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1889
1952
  .ios-fullscreen::cue {
1890
1953
  visibility: visible !important;
1891
1954
  font-size: 1em !important;
1892
- }.share_plugin[data-share] {
1893
- pointer-events: auto;
1894
- z-index: 5;
1895
- font-family: Roboto, "Open Sans", Arial, sans-serif !important;
1896
- }
1897
- .share_plugin[data-share].share-hide .share-button-container {
1898
- right: -50px;
1899
- }
1900
- .share_plugin[data-share] .share-button-container {
1901
- cursor: pointer;
1902
- width: 36px;
1903
- height: 36px;
1904
- background-color: rgba(74, 74, 74, 0.6);
1905
- border-radius: 4px;
1906
- position: absolute;
1907
- right: 10px;
1908
- top: 10px;
1909
- padding-top: 6px;
1910
- transition: all 0.3s ease-out;
1911
- }
1912
- .share_plugin[data-share] .share-button-container button[data-share-button] {
1913
- background-color: transparent;
1914
- border: 0;
1915
- margin: 0 6px;
1916
- padding: 0;
1917
- cursor: pointer;
1918
- display: inline-block;
1919
- width: 19px;
1920
- height: 20px;
1921
- }
1922
- .share_plugin[data-share] .share-container {
1923
- pointer-events: auto;
1924
- position: absolute;
1925
- width: 280px;
1926
- background-color: white;
1927
- transform: translate(0, 50%);
1928
- transform: translate(-50%, -50%);
1929
- left: 50%;
1930
- /* margin-left: -140px; */
1931
- top: calc(50% - 20px);
1932
- /* margin-top: -170px; */
1933
- }
1934
- .share_plugin[data-share] .share-container .share-container-header {
1935
- text-align: left;
1936
- border-bottom: 1px solid rgba(155, 155, 155, 0.25);
1937
- }
1938
- .share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
1939
- display: inline-block;
1940
- font-size: 16px;
1941
- margin: 5px;
1942
- }
1943
- .share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
1944
- display: inline-block;
1945
- width: 24px;
1946
- float: right;
1947
- margin: 5px;
1948
- cursor: pointer;
1949
- }
1950
- .share_plugin[data-share] .share-container .share-container-main {
1951
- margin-bottom: 8px;
1952
- }
1953
- .share_plugin[data-share] .share-container .share-container-main > div {
1954
- text-align: left;
1955
- font-size: 14px;
1956
- padding: 5px;
1957
- }
1958
- .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 {
1959
- overflow: hidden;
1960
- text-overflow: ellipsis;
1961
- color: #818181;
1962
- border: solid 1px #d3d3d3;
1963
- width: calc(100% - 10px);
1964
- padding: 5px;
1965
- }
1966
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
1967
- max-height: 90px;
1968
- resize: none;
1969
- }
1970
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
1971
- width: 32px;
1972
- display: inline-block;
1973
- margin-right: 5px;
1974
- cursor: pointer;
1975
- }.quality-levels li.disabled {
1976
- opacity: 0.5;
1977
- pointer-events: none;
1978
- }
1979
- .quality-levels li.current {
1980
- background-color: #000;
1981
- }.player-logo[data-logo] {
1982
- position: absolute;
1983
- z-index: 2;
1984
- width: 100%;
1985
- height: 100%;
1986
- }
1987
-
1988
- .clappr-logo {
1989
- position: absolute;
1990
1955
  }.scrub-thumbnails {
1991
1956
  position: absolute;
1992
1957
  bottom: 52px;
@@ -2050,4 +2015,13 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
2050
2015
  }
2051
2016
  .scrub-thumbnails .backdrop .carousel img {
2052
2017
  width: auto;
2018
+ }.player-logo[data-logo] {
2019
+ position: absolute;
2020
+ z-index: 2;
2021
+ width: 100%;
2022
+ height: 100%;
2023
+ }
2024
+
2025
+ .clappr-logo {
2026
+ position: absolute;
2053
2027
  }