@gcorevideo/player 2.24.7 → 2.24.9

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,6 +122,113 @@
122
122
  .gplayer-lite-btn::-moz-focus-inner {
123
123
  border: 0;
124
124
  padding: 0;
125
+ }@charset "UTF-8";
126
+ .media-control-clips {
127
+ display: flex;
128
+ gap: 6px;
129
+ }
130
+ .media-control-clips .media-clip-text {
131
+ text-overflow: ellipsis;
132
+ white-space: nowrap;
133
+ overflow: hidden;
134
+ display: inline-block;
135
+ text-overflow: ellipsis;
136
+ color: white;
137
+ cursor: default;
138
+ line-height: var(--bottom-panel);
139
+ position: relative;
140
+ }
141
+ .media-control-clips .media-clip-text::before {
142
+ content: "•";
143
+ padding-right: 6px;
144
+ }
145
+ .media-control-clips .media-clip-text {
146
+ max-width: 100px;
147
+ }.big-mute-icon-wrapper[data-big-mute] {
148
+ position: absolute;
149
+ z-index: 9998;
150
+ background-color: transparent;
151
+ display: flex;
152
+ justify-content: center;
153
+ width: 100%;
154
+ height: calc(100% - 50px);
155
+ margin: 0 auto;
156
+ opacity: 0.75;
157
+ transition: opacity 0.1s ease;
158
+ pointer-events: auto;
159
+ }
160
+ .big-mute-icon-wrapper[data-big-mute].hide {
161
+ display: none;
162
+ }
163
+ .big-mute-icon-wrapper[data-big-mute]:hover {
164
+ cursor: pointer;
165
+ }
166
+
167
+ .big-mute-icon[data-big-mute-icon] {
168
+ display: flex;
169
+ align-items: center;
170
+ justify-content: center;
171
+ align-self: center;
172
+ width: 120px;
173
+ height: 120px;
174
+ border: 2px solid white;
175
+ border-radius: 50%;
176
+ filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
177
+ filter: alpha(opacity=60);
178
+ opacity: 1;
179
+ box-shadow: 0 0 1px 0 white;
180
+ background: rgba(240, 243, 247, 0.9411764706);
181
+ z-index: 10000;
182
+ }
183
+ .big-mute-icon[data-big-mute-icon] svg {
184
+ margin-left: 5px;
185
+ width: 80px;
186
+ height: 80px;
187
+ }
188
+ .big-mute-icon[data-big-mute-icon] svg path {
189
+ fill: #1f1e1e !important;
190
+ }
191
+ .big-mute-icon[data-big-mute-icon]:hover {
192
+ background: rgba(240, 243, 247, 0.8784313725);
193
+ }
194
+ .big-mute-icon[data-big-mute-icon]:hover svg path {
195
+ fill: #151515 !important;
196
+ }.context-menu {
197
+ z-index: 999;
198
+ position: absolute;
199
+ top: 0;
200
+ left: 0;
201
+ text-align: center;
202
+ }
203
+ .context-menu .context-menu-list {
204
+ font-family: "Proxima Nova", sans-serif;
205
+ font-size: 12px;
206
+ line-height: 12px;
207
+ list-style-type: none;
208
+ text-align: left;
209
+ padding: 5px;
210
+ margin-left: auto;
211
+ margin-right: auto;
212
+ background-color: rgba(0, 0, 0, 0.75);
213
+ border: 1px solid #666;
214
+ border-radius: 4px;
215
+ }
216
+ .context-menu .context-menu-list-item button {
217
+ border: none;
218
+ background-color: transparent;
219
+ padding: 0;
220
+ color: white;
221
+ display: flex;
222
+ gap: 8px;
223
+ align-items: center;
224
+ justify-content: center;
225
+ cursor: pointer;
226
+ padding: 5px;
227
+ width: 100%;
228
+ }
229
+ .context-menu .context-menu-list-item_icon {
230
+ width: 20px;
231
+ height: 20px;
125
232
  }*,
126
233
  :focus,
127
234
  :visited {
@@ -222,55 +329,6 @@
222
329
  100% {
223
330
  color: #B80000;
224
331
  }
225
- }.big-mute-icon-wrapper[data-big-mute] {
226
- position: absolute;
227
- z-index: 9998;
228
- background-color: transparent;
229
- display: flex;
230
- justify-content: center;
231
- width: 100%;
232
- height: calc(100% - 50px);
233
- margin: 0 auto;
234
- opacity: 0.75;
235
- transition: opacity 0.1s ease;
236
- pointer-events: auto;
237
- }
238
- .big-mute-icon-wrapper[data-big-mute].hide {
239
- display: none;
240
- }
241
- .big-mute-icon-wrapper[data-big-mute]:hover {
242
- cursor: pointer;
243
- }
244
-
245
- .big-mute-icon[data-big-mute-icon] {
246
- display: flex;
247
- align-items: center;
248
- justify-content: center;
249
- align-self: center;
250
- width: 120px;
251
- height: 120px;
252
- border: 2px solid white;
253
- border-radius: 50%;
254
- filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
255
- filter: alpha(opacity=60);
256
- opacity: 1;
257
- box-shadow: 0 0 1px 0 white;
258
- background: rgba(240, 243, 247, 0.9411764706);
259
- z-index: 10000;
260
- }
261
- .big-mute-icon[data-big-mute-icon] svg {
262
- margin-left: 5px;
263
- width: 80px;
264
- height: 80px;
265
- }
266
- .big-mute-icon[data-big-mute-icon] svg path {
267
- fill: #1f1e1e !important;
268
- }
269
- .big-mute-icon[data-big-mute-icon]:hover {
270
- background: rgba(240, 243, 247, 0.8784313725);
271
- }
272
- .big-mute-icon[data-big-mute-icon]:hover svg path {
273
- fill: #151515 !important;
274
332
  }*, :focus, :visited {
275
333
  outline: none !important;
276
334
  }
@@ -505,175 +563,89 @@
505
563
  border-radius: 50%;
506
564
  margin-right: 8px;
507
565
  background-color: #cacaca;
508
- }@charset "UTF-8";
509
- .media-control-clips {
510
- display: flex;
511
- gap: 6px;
512
- }
513
- .media-control-clips .media-clip-text {
514
- text-overflow: ellipsis;
515
- white-space: nowrap;
516
- overflow: hidden;
517
- display: inline-block;
518
- text-overflow: ellipsis;
519
- color: white;
520
- cursor: default;
521
- line-height: var(--bottom-panel);
522
- position: relative;
566
+ }.share_plugin[data-share] {
567
+ pointer-events: auto;
568
+ z-index: 5;
569
+ font-family: Roboto, "Open Sans", Arial, sans-serif !important;
523
570
  }
524
- .media-control-clips .media-clip-text::before {
525
- content: "•";
526
- padding-right: 6px;
571
+ .share_plugin[data-share].share-hide .share-button-container {
572
+ right: -50px;
527
573
  }
528
- .media-control-clips .media-clip-text {
529
- max-width: 100px;
530
- }.player-poster {
531
- display: flex;
532
- justify-content: center;
533
- align-items: center;
574
+ .share_plugin[data-share] .share-button-container {
575
+ cursor: pointer;
576
+ width: 36px;
577
+ height: 36px;
578
+ background-color: rgba(74, 74, 74, 0.6);
579
+ border-radius: 4px;
534
580
  position: absolute;
535
- height: 100%;
536
- width: 100%;
537
- z-index: 998;
538
- top: 0;
539
- left: 0;
540
- background-color: #000;
541
- background-size: cover;
542
- background-repeat: no-repeat;
543
- background-position: 50% 50%;
581
+ right: 10px;
582
+ top: 10px;
583
+ padding-top: 6px;
584
+ transition: all 0.3s ease-out;
544
585
  }
545
- .player-poster.clickable {
586
+ .share_plugin[data-share] .share-button-container button[data-share-button] {
587
+ background-color: transparent;
588
+ border: 0;
589
+ margin: 0 6px;
590
+ padding: 0;
546
591
  cursor: pointer;
592
+ display: inline-block;
593
+ width: 19px;
594
+ height: 20px;
547
595
  }
548
- .player-poster:hover .play-wrapper {
549
- opacity: 1;
596
+ .share_plugin[data-share] .share-container {
597
+ pointer-events: auto;
598
+ position: absolute;
599
+ width: 280px;
600
+ background-color: white;
601
+ transform: translate(0, 50%);
602
+ transform: translate(-50%, -50%);
603
+ left: 50%;
604
+ /* margin-left: -140px; */
605
+ top: calc(50% - 20px);
606
+ /* margin-top: -170px; */
550
607
  }
551
- .player-poster .play-wrapper {
552
- width: 100%;
553
- height: 25%;
554
- margin: 0 auto;
555
- opacity: 0.75;
556
- transition: opacity 0.1s ease;
608
+ .share_plugin[data-share] .share-container .share-container-header {
609
+ text-align: left;
610
+ border-bottom: 1px solid rgba(155, 155, 155, 0.25);
557
611
  }
558
- .player-poster .play-wrapper svg {
559
- height: 100%;
560
- display: inline;
612
+ .share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
613
+ display: inline-block;
614
+ font-size: 16px;
615
+ margin: 5px;
561
616
  }
562
- .player-poster .play-wrapper svg path {
563
- fill: #fff;
564
- }.quality-levels li.disabled {
565
- opacity: 0.5;
566
- pointer-events: none;
617
+ .share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
618
+ display: inline-block;
619
+ width: 24px;
620
+ float: right;
621
+ margin: 5px;
622
+ cursor: pointer;
567
623
  }
568
- .quality-levels li.current {
569
- background-color: #000;
570
- }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
571
- order: 99;
572
- height: 20px;
573
- }
574
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
575
- position: absolute;
576
- right: 16px;
577
- bottom: 52px;
578
- width: 250px;
579
- min-height: 48px;
580
- z-index: 9999;
581
- border-radius: 4px;
582
- }
583
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
584
- padding: 8px 0;
624
+ .share_plugin[data-share] .share-container .share-container-main {
625
+ margin-bottom: 8px;
585
626
  }
586
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
587
- margin: 0;
627
+ .share_plugin[data-share] .share-container .share-container-main > div {
588
628
  text-align: left;
589
- line-height: 22px;
590
- padding: 5px 14px;
591
- width: 250px;
592
- font-size: 12px;
593
- display: flex;
594
- align-items: center;
595
- justify-content: flex-start;
596
- gap: 8px;
597
- }
598
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
599
- flex: 24px 0 0;
600
- height: 24px;
601
- }
602
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
603
- visibility: hidden;
604
- display: inline-block;
605
- }
606
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
607
- flex: 0 1 100%;
608
- }
609
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
610
- flex: 0 0 14px;
611
- height: 24px;
612
- }
613
- .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
614
- flex: 1 0 auto;
615
- }*, :focus, :visited {
616
- outline: none !important;
617
- }
618
-
619
- .gear-wrapper .go-back {
620
- font-weight: 600;
621
629
  font-size: 14px;
622
- line-height: 20px;
623
- width: 100%;
624
- text-align: left;
625
- padding: 12px;
626
- }
627
- .gear-wrapper .go-back .arrow-left-icon {
628
- float: left;
629
- padding-top: 2px;
630
- padding-right: 2px;
631
- }
632
- .gear-wrapper .go-back .arrow-left-icon svg {
633
- height: 16px;
634
- }
635
- .gear-wrapper ul.gear-sub-menu {
636
- width: 100%;
637
- list-style-type: none;
638
- min-width: 60px;
639
- border-top: 2px solid rgb(36, 36, 36);
640
- overflow-y: auto;
641
- }
642
- .gear-wrapper ul.gear-sub-menu li {
643
- font-size: 12px;
644
- text-align: left;
645
- }
646
- .gear-wrapper ul.gear-sub-menu li[data-title] {
647
- background-color: #c3c2c2;
648
630
  padding: 5px;
649
631
  }
650
- .gear-wrapper ul.gear-sub-menu li a {
651
- display: block;
652
- text-decoration: none;
653
- height: 32px;
654
- padding: 5px 10px;
655
- line-height: 22px;
656
- color: #fffffe;
657
- }
658
- .gear-wrapper ul.gear-sub-menu li a:hover {
659
- color: white;
660
- background-color: rgba(0, 0, 0, 0.4);
661
- }
662
- .gear-wrapper ul.gear-sub-menu li a:hover a {
663
- color: white;
664
- text-decoration: none;
665
- }
666
- .gear-wrapper ul.gear-sub-menu li a .check-icon {
667
- width: 30px;
668
- height: 20px;
669
- float: left;
670
- display: block;
632
+ .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 {
633
+ overflow: hidden;
634
+ text-overflow: ellipsis;
635
+ color: #818181;
636
+ border: solid 1px #d3d3d3;
637
+ width: calc(100% - 10px);
638
+ padding: 5px;
671
639
  }
672
- .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
673
- display: none;
640
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
641
+ max-height: 90px;
642
+ resize: none;
674
643
  }
675
- .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
676
- display: inline;
644
+ .share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
645
+ width: 32px;
646
+ display: inline-block;
647
+ margin-right: 5px;
648
+ cursor: pointer;
677
649
  }.media-control-pip {
678
650
  order: 95;
679
651
  display: flex;
@@ -683,76 +655,6 @@
683
655
  }
684
656
  .media-control-pip button svg {
685
657
  height: 20px;
686
- }div.player-error-screen, [data-player] div.player-error-screen {
687
- color: #CCCACA;
688
- position: absolute;
689
- top: 0;
690
- height: 100%;
691
- width: 100%;
692
- background-color: rgba(0, 0, 0, 0.7);
693
- z-index: 2000;
694
- display: flex;
695
- flex-direction: column;
696
- justify-content: center;
697
- }
698
- div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
699
- font-size: 14px;
700
- color: #CCCACA;
701
- margin-top: 45px;
702
- }
703
- div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
704
- font-weight: bold;
705
- line-height: 30px;
706
- font-size: 18px;
707
- }
708
- div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
709
- width: 90%;
710
- margin: 0 auto;
711
- }
712
- div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
713
- font-size: 13px;
714
- margin-top: 15px;
715
- }
716
- div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
717
- cursor: pointer;
718
- width: 30px;
719
- margin: 15px auto 0;
720
- }.context-menu {
721
- z-index: 999;
722
- position: absolute;
723
- top: 0;
724
- left: 0;
725
- text-align: center;
726
- }
727
- .context-menu .context-menu-list {
728
- font-family: "Proxima Nova", sans-serif;
729
- font-size: 12px;
730
- line-height: 12px;
731
- list-style-type: none;
732
- text-align: left;
733
- padding: 5px;
734
- margin-left: auto;
735
- margin-right: auto;
736
- background-color: rgba(0, 0, 0, 0.75);
737
- border: 1px solid #666;
738
- border-radius: 4px;
739
- }
740
- .context-menu .context-menu-list-item button {
741
- border: none;
742
- background-color: transparent;
743
- padding: 0;
744
- color: white;
745
- display: flex;
746
- gap: 8px;
747
- align-items: center;
748
- justify-content: center;
749
- cursor: pointer;
750
- padding: 5px;
751
- width: 100%;
752
- }
753
- .context-menu .context-menu-list-item_icon {
754
- width: 20px;
755
- height: 20px;
756
658
  }[data-player] {
757
659
  --bottom-panel: 40px;
758
660
  }
@@ -1366,63 +1268,359 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1366
1268
  .media-control-skin-1[data-media-control-skin-1] .seek-time .seek-time__pos {
1367
1269
  padding-left: 8px;
1368
1270
  padding-right: 8px;
1369
- }:root {
1370
- --primary-background-color: #000;
1371
- --secondary-background-color: #262626;
1372
- --primary-text-color: #fff;
1373
- --secondary-text-color: #fff4f2;
1374
- --hover-text-color: #f9b090;
1375
- --speedtest-red: #df564d;
1376
- --speedtest-orange: #df934d;
1377
- --speedtest-yellow: #dfd04d;
1378
- --speedtest-light-green: #c2df4d;
1379
- --speedtest-green: #73df4d;
1380
- }
1381
-
1382
- .clappr-nerd-stats {
1383
- cursor: default;
1384
- }
1385
- .clappr-nerd-stats .stats-box {
1386
- position: absolute;
1387
- display: inline-block;
1388
- bottom: 52px;
1389
- right: 0;
1390
- top: 0;
1391
- left: 0;
1392
- bottom: 0;
1393
- padding: 0 10px 12px;
1394
- margin: 0;
1395
- line-height: 20px;
1396
- font-size: 12px;
1397
- font-weight: 500;
1398
- background: var(--primary-background-color);
1399
- color: #fff;
1400
- z-index: 20000;
1401
- overflow: auto;
1402
- max-width: 100%;
1403
- }
1404
- .clappr-nerd-stats .stats-box-top {
1271
+ }div.player-error-screen, [data-player] div.player-error-screen {
1272
+ color: #CCCACA;
1405
1273
  position: absolute;
1406
1274
  top: 0;
1407
- left: 0;
1408
- z-index: 9999;
1275
+ height: 100%;
1409
1276
  width: 100%;
1410
- height: 32px;
1411
- background: var(--primary-background-color);
1412
- }
1413
- .clappr-nerd-stats .stats-box-top .close-button {
1414
- position: absolute;
1415
- right: 12px;
1416
- top: 10px;
1417
- display: block;
1418
- width: 12px;
1419
- height: 12px;
1277
+ background-color: rgba(0, 0, 0, 0.7);
1278
+ z-index: 2000;
1279
+ display: flex;
1280
+ flex-direction: column;
1281
+ justify-content: center;
1420
1282
  }
1421
- .clappr-nerd-stats .stats-box-top .close-button svg path {
1422
- fill: var(--primary-text-color);
1283
+ div.player-error-screen__content[data-error-screen], [data-player] div.player-error-screen__content[data-error-screen] {
1284
+ font-size: 14px;
1285
+ color: #CCCACA;
1286
+ margin-top: 45px;
1423
1287
  }
1424
- .clappr-nerd-stats .stats-box-top .close-button:hover svg path {
1425
- fill: var(--hover-text-color);
1288
+ div.player-error-screen__title[data-error-screen], [data-player] div.player-error-screen__title[data-error-screen] {
1289
+ font-weight: bold;
1290
+ line-height: 30px;
1291
+ font-size: 18px;
1292
+ }
1293
+ div.player-error-screen__message[data-error-screen], [data-player] div.player-error-screen__message[data-error-screen] {
1294
+ width: 90%;
1295
+ margin: 0 auto;
1296
+ }
1297
+ div.player-error-screen__code[data-error-screen], [data-player] div.player-error-screen__code[data-error-screen] {
1298
+ font-size: 13px;
1299
+ margin-top: 15px;
1300
+ }
1301
+ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1302
+ cursor: pointer;
1303
+ width: 30px;
1304
+ margin: 15px auto 0;
1305
+ }.seek-time {
1306
+ position: absolute;
1307
+ white-space: nowrap;
1308
+ height: 20px;
1309
+ line-height: 20px;
1310
+ font-size: 0;
1311
+ left: -100%;
1312
+ bottom: 55px;
1313
+ background-color: rgba(2, 2, 2, 0.5);
1314
+ z-index: 9999;
1315
+ transition: opacity 0.1s ease;
1316
+ }
1317
+ .seek-time.hidden {
1318
+ opacity: 0;
1319
+ }
1320
+ .seek-time .seek-time__pos {
1321
+ display: inline-block;
1322
+ color: white;
1323
+ font-size: 10px;
1324
+ padding-left: 7px;
1325
+ padding-right: 7px;
1326
+ vertical-align: top;
1327
+ }
1328
+ .seek-time .seek-time__duration {
1329
+ display: inline-block;
1330
+ color: rgba(255, 255, 255, 0.5);
1331
+ font-size: 10px;
1332
+ padding-right: 7px;
1333
+ vertical-align: top;
1334
+ }
1335
+ .seek-time .seek-time__duration::before {
1336
+ content: "|";
1337
+ margin-right: 7px;
1338
+ }.quality-levels li.disabled {
1339
+ opacity: 0.5;
1340
+ pointer-events: none;
1341
+ }
1342
+ .quality-levels li.current {
1343
+ background-color: #000;
1344
+ }.player-poster {
1345
+ display: flex;
1346
+ justify-content: center;
1347
+ align-items: center;
1348
+ position: absolute;
1349
+ height: 100%;
1350
+ width: 100%;
1351
+ z-index: 998;
1352
+ top: 0;
1353
+ left: 0;
1354
+ background-color: #000;
1355
+ background-size: cover;
1356
+ background-repeat: no-repeat;
1357
+ background-position: 50% 50%;
1358
+ }
1359
+ .player-poster.clickable {
1360
+ cursor: pointer;
1361
+ }
1362
+ .player-poster:hover .play-wrapper {
1363
+ opacity: 1;
1364
+ }
1365
+ .player-poster .play-wrapper {
1366
+ width: 100%;
1367
+ height: 25%;
1368
+ margin: 0 auto;
1369
+ opacity: 0.75;
1370
+ transition: opacity 0.1s ease;
1371
+ }
1372
+ .player-poster .play-wrapper svg {
1373
+ height: 100%;
1374
+ display: inline;
1375
+ }
1376
+ .player-poster .play-wrapper svg path {
1377
+ fill: #fff;
1378
+ }*,
1379
+ :focus,
1380
+ :visited {
1381
+ outline: none !important;
1382
+ }
1383
+
1384
+ .media-control-cc[data-cc] {
1385
+ position: relative;
1386
+ order: 85;
1387
+ }
1388
+ .media-control-cc[data-cc] button {
1389
+ background-color: transparent;
1390
+ color: #fff;
1391
+ -webkit-font-smoothing: antialiased;
1392
+ border: none;
1393
+ cursor: pointer;
1394
+ }
1395
+ .media-control-cc[data-cc] button .cc-text svg {
1396
+ fill: white;
1397
+ }
1398
+ .media-control-cc[data-cc] button:hover {
1399
+ color: #c9c9c9;
1400
+ }
1401
+ .media-control-cc[data-cc] button.changing {
1402
+ animation: pulse 0.5s infinite alternate;
1403
+ }
1404
+ .media-control-cc[data-cc] ul {
1405
+ width: 80px;
1406
+ list-style-type: none;
1407
+ position: absolute;
1408
+ bottom: 25px;
1409
+ border: 1px solid black;
1410
+ background-color: #e6e6e6;
1411
+ padding: 8px 0;
1412
+ }
1413
+ .media-control-cc[data-cc] li a {
1414
+ color: #444;
1415
+ padding: 2px 10px;
1416
+ display: block;
1417
+ text-decoration: none;
1418
+ }
1419
+ .media-control-cc[data-cc] li a:hover {
1420
+ background-color: #555;
1421
+ color: white;
1422
+ }
1423
+ .media-control-cc[data-cc] li a:hover a {
1424
+ color: white;
1425
+ text-decoration: none;
1426
+ }
1427
+ .media-control-cc[data-cc] li.current a {
1428
+ color: #f00;
1429
+ background-color: #555;
1430
+ }
1431
+
1432
+ @keyframes pulse {
1433
+ 0% {
1434
+ color: #fff;
1435
+ }
1436
+ 50% {
1437
+ color: #ff0101;
1438
+ }
1439
+ 100% {
1440
+ color: #B80000;
1441
+ }
1442
+ }
1443
+ ::cue {
1444
+ visibility: hidden !important;
1445
+ font-size: 0 !important;
1446
+ }
1447
+
1448
+ .ios-fullscreen::cue {
1449
+ visibility: visible !important;
1450
+ font-size: 1em !important;
1451
+ }*, :focus, :visited {
1452
+ outline: none !important;
1453
+ }
1454
+
1455
+ .gear-wrapper .go-back {
1456
+ font-weight: 600;
1457
+ font-size: 14px;
1458
+ line-height: 20px;
1459
+ width: 100%;
1460
+ text-align: left;
1461
+ padding: 12px;
1462
+ }
1463
+ .gear-wrapper .go-back .arrow-left-icon {
1464
+ float: left;
1465
+ padding-top: 2px;
1466
+ padding-right: 2px;
1467
+ }
1468
+ .gear-wrapper .go-back .arrow-left-icon svg {
1469
+ height: 16px;
1470
+ }
1471
+ .gear-wrapper ul.gear-sub-menu {
1472
+ width: 100%;
1473
+ list-style-type: none;
1474
+ min-width: 60px;
1475
+ border-top: 2px solid rgb(36, 36, 36);
1476
+ overflow-y: auto;
1477
+ }
1478
+ .gear-wrapper ul.gear-sub-menu li {
1479
+ font-size: 12px;
1480
+ text-align: left;
1481
+ }
1482
+ .gear-wrapper ul.gear-sub-menu li[data-title] {
1483
+ background-color: #c3c2c2;
1484
+ padding: 5px;
1485
+ }
1486
+ .gear-wrapper ul.gear-sub-menu li a {
1487
+ display: block;
1488
+ text-decoration: none;
1489
+ height: 32px;
1490
+ padding: 5px 10px;
1491
+ line-height: 22px;
1492
+ color: #fffffe;
1493
+ }
1494
+ .gear-wrapper ul.gear-sub-menu li a:hover {
1495
+ color: white;
1496
+ background-color: rgba(0, 0, 0, 0.4);
1497
+ }
1498
+ .gear-wrapper ul.gear-sub-menu li a:hover a {
1499
+ color: white;
1500
+ text-decoration: none;
1501
+ }
1502
+ .gear-wrapper ul.gear-sub-menu li a .check-icon {
1503
+ width: 30px;
1504
+ height: 20px;
1505
+ float: left;
1506
+ display: block;
1507
+ }
1508
+ .gear-wrapper ul.gear-sub-menu li a .check-icon svg {
1509
+ display: none;
1510
+ }
1511
+ .gear-wrapper ul.gear-sub-menu li.current a .check-icon svg {
1512
+ display: inline;
1513
+ }.media-control-skin-1[data-media-control-skin-1] .media-control-gear {
1514
+ order: 99;
1515
+ height: 20px;
1516
+ }
1517
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper {
1518
+ position: absolute;
1519
+ right: 16px;
1520
+ bottom: 52px;
1521
+ width: 250px;
1522
+ min-height: 48px;
1523
+ z-index: 9999;
1524
+ border-radius: 4px;
1525
+ }
1526
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list {
1527
+ padding: 8px 0;
1528
+ }
1529
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option {
1530
+ margin: 0;
1531
+ text-align: left;
1532
+ line-height: 22px;
1533
+ padding: 5px 14px;
1534
+ width: 250px;
1535
+ font-size: 12px;
1536
+ display: flex;
1537
+ align-items: center;
1538
+ justify-content: flex-start;
1539
+ gap: 8px;
1540
+ }
1541
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon {
1542
+ flex: 24px 0 0;
1543
+ height: 24px;
1544
+ }
1545
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_icon.hidden {
1546
+ visibility: hidden;
1547
+ display: inline-block;
1548
+ }
1549
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_label {
1550
+ flex: 0 1 100%;
1551
+ }
1552
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_arrow-right-icon {
1553
+ flex: 0 0 14px;
1554
+ height: 24px;
1555
+ }
1556
+ .media-control-skin-1[data-media-control-skin-1] .media-control-gear .gear-wrapper .gear-options-list .gear-option_value {
1557
+ flex: 1 0 auto;
1558
+ }.player-logo[data-logo] {
1559
+ position: absolute;
1560
+ z-index: 2;
1561
+ width: 100%;
1562
+ height: 100%;
1563
+ }
1564
+
1565
+ .clappr-logo {
1566
+ position: absolute;
1567
+ }:root {
1568
+ --primary-background-color: #000;
1569
+ --secondary-background-color: #262626;
1570
+ --primary-text-color: #fff;
1571
+ --secondary-text-color: #fff4f2;
1572
+ --hover-text-color: #f9b090;
1573
+ --speedtest-red: #df564d;
1574
+ --speedtest-orange: #df934d;
1575
+ --speedtest-yellow: #dfd04d;
1576
+ --speedtest-light-green: #c2df4d;
1577
+ --speedtest-green: #73df4d;
1578
+ }
1579
+
1580
+ .clappr-nerd-stats {
1581
+ cursor: default;
1582
+ }
1583
+ .clappr-nerd-stats .stats-box {
1584
+ position: absolute;
1585
+ display: inline-block;
1586
+ bottom: 52px;
1587
+ right: 0;
1588
+ top: 0;
1589
+ left: 0;
1590
+ bottom: 0;
1591
+ padding: 0 10px 12px;
1592
+ margin: 0;
1593
+ line-height: 20px;
1594
+ font-size: 12px;
1595
+ font-weight: 500;
1596
+ background: var(--primary-background-color);
1597
+ color: #fff;
1598
+ z-index: 20000;
1599
+ overflow: auto;
1600
+ max-width: 100%;
1601
+ }
1602
+ .clappr-nerd-stats .stats-box-top {
1603
+ position: absolute;
1604
+ top: 0;
1605
+ left: 0;
1606
+ z-index: 9999;
1607
+ width: 100%;
1608
+ height: 32px;
1609
+ background: var(--primary-background-color);
1610
+ }
1611
+ .clappr-nerd-stats .stats-box-top .close-button {
1612
+ position: absolute;
1613
+ right: 12px;
1614
+ top: 10px;
1615
+ display: block;
1616
+ width: 12px;
1617
+ height: 12px;
1618
+ }
1619
+ .clappr-nerd-stats .stats-box-top .close-button svg path {
1620
+ fill: var(--primary-text-color);
1621
+ }
1622
+ .clappr-nerd-stats .stats-box-top .close-button:hover svg path {
1623
+ fill: var(--hover-text-color);
1426
1624
  }
1427
1625
  .clappr-nerd-stats .stats-box-main {
1428
1626
  overflow: hidden;
@@ -1666,280 +1864,108 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
1666
1864
  align-items: center;
1667
1865
  gap: 4px;
1668
1866
  }
1669
- .speedtest-footer .speedtest-footer-refresh svg path {
1670
- fill: var(--secondary-text-color);
1671
- }
1672
- .speedtest-footer .speedtest-footer-refresh:hover {
1673
- color: var(--hover-text-color);
1674
- }
1675
- .speedtest-footer .speedtest-footer-refresh:hover svg path {
1676
- fill: var(--hover-text-color);
1677
- }
1678
-
1679
- .mobile .clappr-nerd-stats .stats-box {
1680
- position: fixed;
1681
- height: auto;
1682
- width: auto;
1683
- inset: 0;
1684
- min-width: 100vw;
1685
- padding-bottom: 4px;
1686
- padding-left: 4px;
1687
- padding-right: 4px;
1688
- }
1689
- .mobile .clappr-nerd-stats .stats-box-top {
1690
- position: fixed;
1691
- }
1692
- .mobile .clappr-nerd-stats .stats-box-main ul {
1693
- flex: 0 1 50%;
1694
- }
1695
-
1696
- @media only screen and (orientation: portrait) {
1697
- .mobile .speedtest-summary {
1698
- padding: 0 5px;
1699
- height: auto;
1700
- }
1701
- .mobile .speedtest-summary-block {
1702
- width: 100%;
1703
- flex-direction: column;
1704
- }
1705
- .mobile .speedtest-summary-block .speedtest-summary-subblock {
1706
- width: 100%;
1707
- }
1708
- .mobile .speedtest-summary-block .speedtest-summary-subblock-content {
1709
- width: 100%;
1710
- }
1711
- .mobile .speedtest-summary-header {
1712
- padding-top: 12px;
1713
- height: 38px;
1714
- text-align: center;
1715
- }
1716
- .mobile .speedtest-quality-header {
1717
- text-align: center;
1718
- }
1719
- .mobile .speedtest-footer .speedtest-footer-refresh {
1720
- inset: 50% auto auto 50%;
1721
- transform: translate(-50%, -50%);
1722
- }
1723
- }
1724
- @media only screen and (orientation: landscape) {
1725
- .mobile .clappr-nerd-stats .stats-box-main ul {
1726
- flex-basis: 1fr;
1727
- }
1728
- }
1729
- @media only screen and (min-width: 1100px) {
1730
- .fullscreen .clappr-nerd-stats .stats-box {
1731
- top: unset;
1732
- }
1733
- }.container-with-poster-clickable .mc-skip-time {
1734
- height: 0;
1735
- }
1736
-
1737
- .mc-skip-time {
1738
- position: absolute;
1739
- width: 100%;
1740
- height: calc(100% - 50px);
1741
- z-index: 9998;
1742
- background-color: transparent;
1743
- font-family: Roboto, "Open Sans", Arial, sans-serif;
1744
- }
1745
- .mc-skip-time .skip-container {
1746
- width: 100%;
1747
- height: 100%;
1748
- display: flex;
1749
- justify-content: space-between;
1750
- }
1751
- .mc-skip-time .skip-container .skip-item {
1752
- flex: 1 0 0px;
1753
- height: 100%;
1754
- }.seek-time {
1755
- position: absolute;
1756
- white-space: nowrap;
1757
- height: 20px;
1758
- line-height: 20px;
1759
- font-size: 0;
1760
- left: -100%;
1761
- bottom: 55px;
1762
- background-color: rgba(2, 2, 2, 0.5);
1763
- z-index: 9999;
1764
- transition: opacity 0.1s ease;
1765
- }
1766
- .seek-time.hidden {
1767
- opacity: 0;
1768
- }
1769
- .seek-time .seek-time__pos {
1770
- display: inline-block;
1771
- color: white;
1772
- font-size: 10px;
1773
- padding-left: 7px;
1774
- padding-right: 7px;
1775
- vertical-align: top;
1776
- }
1777
- .seek-time .seek-time__duration {
1778
- display: inline-block;
1779
- color: rgba(255, 255, 255, 0.5);
1780
- font-size: 10px;
1781
- padding-right: 7px;
1782
- vertical-align: top;
1783
- }
1784
- .seek-time .seek-time__duration::before {
1785
- content: "|";
1786
- margin-right: 7px;
1787
- }*,
1788
- :focus,
1789
- :visited {
1790
- outline: none !important;
1791
- }
1792
-
1793
- .media-control-cc[data-cc] {
1794
- position: relative;
1795
- order: 85;
1796
- }
1797
- .media-control-cc[data-cc] button {
1798
- background-color: transparent;
1799
- color: #fff;
1800
- -webkit-font-smoothing: antialiased;
1801
- border: none;
1802
- cursor: pointer;
1803
- }
1804
- .media-control-cc[data-cc] button .cc-text svg {
1805
- fill: white;
1806
- }
1807
- .media-control-cc[data-cc] button:hover {
1808
- color: #c9c9c9;
1809
- }
1810
- .media-control-cc[data-cc] button.changing {
1811
- animation: pulse 0.5s infinite alternate;
1812
- }
1813
- .media-control-cc[data-cc] ul {
1814
- width: 80px;
1815
- list-style-type: none;
1816
- position: absolute;
1817
- bottom: 25px;
1818
- border: 1px solid black;
1819
- background-color: #e6e6e6;
1820
- padding: 8px 0;
1867
+ .speedtest-footer .speedtest-footer-refresh svg path {
1868
+ fill: var(--secondary-text-color);
1821
1869
  }
1822
- .media-control-cc[data-cc] li a {
1823
- color: #444;
1824
- padding: 2px 10px;
1825
- display: block;
1826
- text-decoration: none;
1870
+ .speedtest-footer .speedtest-footer-refresh:hover {
1871
+ color: var(--hover-text-color);
1827
1872
  }
1828
- .media-control-cc[data-cc] li a:hover {
1829
- background-color: #555;
1830
- color: white;
1873
+ .speedtest-footer .speedtest-footer-refresh:hover svg path {
1874
+ fill: var(--hover-text-color);
1831
1875
  }
1832
- .media-control-cc[data-cc] li a:hover a {
1833
- color: white;
1834
- text-decoration: none;
1876
+
1877
+ .mobile .clappr-nerd-stats .stats-box {
1878
+ position: fixed;
1879
+ height: auto;
1880
+ width: auto;
1881
+ inset: 0;
1882
+ min-width: 100vw;
1883
+ padding-bottom: 4px;
1884
+ padding-left: 4px;
1885
+ padding-right: 4px;
1835
1886
  }
1836
- .media-control-cc[data-cc] li.current a {
1837
- color: #f00;
1838
- background-color: #555;
1887
+ .mobile .clappr-nerd-stats .stats-box-top {
1888
+ position: fixed;
1889
+ }
1890
+ .mobile .clappr-nerd-stats .stats-box-main ul {
1891
+ flex: 0 1 50%;
1839
1892
  }
1840
1893
 
1841
- @keyframes pulse {
1842
- 0% {
1843
- color: #fff;
1894
+ @media only screen and (orientation: portrait) {
1895
+ .mobile .speedtest-summary {
1896
+ padding: 0 5px;
1897
+ height: auto;
1844
1898
  }
1845
- 50% {
1846
- color: #ff0101;
1899
+ .mobile .speedtest-summary-block {
1900
+ width: 100%;
1901
+ flex-direction: column;
1847
1902
  }
1848
- 100% {
1849
- color: #B80000;
1903
+ .mobile .speedtest-summary-block .speedtest-summary-subblock {
1904
+ width: 100%;
1905
+ }
1906
+ .mobile .speedtest-summary-block .speedtest-summary-subblock-content {
1907
+ width: 100%;
1908
+ }
1909
+ .mobile .speedtest-summary-header {
1910
+ padding-top: 12px;
1911
+ height: 38px;
1912
+ text-align: center;
1913
+ }
1914
+ .mobile .speedtest-quality-header {
1915
+ text-align: center;
1916
+ }
1917
+ .mobile .speedtest-footer .speedtest-footer-refresh {
1918
+ inset: 50% auto auto 50%;
1919
+ transform: translate(-50%, -50%);
1850
1920
  }
1851
1921
  }
1852
- ::cue {
1853
- visibility: hidden !important;
1854
- font-size: 0 !important;
1855
- }
1856
-
1857
- .ios-fullscreen::cue {
1858
- visibility: visible !important;
1859
- font-size: 1em !important;
1860
- }.share_plugin[data-share] {
1861
- pointer-events: auto;
1862
- z-index: 5;
1863
- font-family: Roboto, "Open Sans", Arial, sans-serif !important;
1864
- }
1865
- .share_plugin[data-share].share-hide .share-button-container {
1866
- right: -50px;
1867
- }
1868
- .share_plugin[data-share] .share-button-container {
1869
- cursor: pointer;
1870
- width: 36px;
1871
- height: 36px;
1872
- background-color: rgba(74, 74, 74, 0.6);
1873
- border-radius: 4px;
1874
- position: absolute;
1875
- right: 10px;
1876
- top: 10px;
1877
- padding-top: 6px;
1878
- transition: all 0.3s ease-out;
1879
- }
1880
- .share_plugin[data-share] .share-button-container button[data-share-button] {
1881
- background-color: transparent;
1882
- border: 0;
1883
- margin: 0 6px;
1884
- padding: 0;
1885
- cursor: pointer;
1886
- display: inline-block;
1887
- width: 19px;
1888
- height: 20px;
1922
+ @media only screen and (orientation: landscape) {
1923
+ .mobile .clappr-nerd-stats .stats-box-main ul {
1924
+ flex-basis: 1fr;
1925
+ }
1889
1926
  }
1890
- .share_plugin[data-share] .share-container {
1891
- pointer-events: auto;
1927
+ @media only screen and (min-width: 1100px) {
1928
+ .fullscreen .clappr-nerd-stats .stats-box {
1929
+ top: unset;
1930
+ }
1931
+ }.spinner-three-bounce[data-spinner] {
1892
1932
  position: absolute;
1893
- width: 280px;
1894
- background-color: white;
1895
- transform: translate(0, 50%);
1896
- transform: translate(-50%, -50%);
1897
- left: 50%;
1898
- /* margin-left: -140px; */
1899
- top: calc(50% - 20px);
1900
- /* margin-top: -170px; */
1901
- }
1902
- .share_plugin[data-share] .share-container .share-container-header {
1903
- text-align: left;
1904
- border-bottom: 1px solid rgba(155, 155, 155, 0.25);
1905
- }
1906
- .share_plugin[data-share] .share-container .share-container-header .share-container-header--title {
1907
- display: inline-block;
1908
- font-size: 16px;
1909
- margin: 5px;
1933
+ width: 70px;
1934
+ text-align: center;
1935
+ z-index: 999;
1936
+ left: 0;
1937
+ right: 0;
1938
+ margin: 0 auto;
1939
+ margin-left: auto;
1940
+ margin-right: auto;
1941
+ /* center vertically */
1942
+ top: 50%;
1943
+ transform: translateY(-50%);
1910
1944
  }
1911
- .share_plugin[data-share] .share-container .share-container-header .share-container-header--close {
1945
+ .spinner-three-bounce[data-spinner] > div {
1946
+ width: 18px;
1947
+ height: 18px;
1948
+ background-color: #FFF;
1949
+ border-radius: 100%;
1912
1950
  display: inline-block;
1913
- width: 24px;
1914
- float: right;
1915
- margin: 5px;
1916
- cursor: pointer;
1917
- }
1918
- .share_plugin[data-share] .share-container .share-container-main {
1919
- margin-bottom: 8px;
1920
- }
1921
- .share_plugin[data-share] .share-container .share-container-main > div {
1922
- text-align: left;
1923
- font-size: 14px;
1924
- padding: 5px;
1951
+ animation: bouncedelay 1.4s infinite ease-in-out;
1952
+ /* Prevent first frame from flickering when animation starts */
1953
+ animation-fill-mode: both;
1925
1954
  }
1926
- .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 {
1927
- overflow: hidden;
1928
- text-overflow: ellipsis;
1929
- color: #818181;
1930
- border: solid 1px #d3d3d3;
1931
- width: calc(100% - 10px);
1932
- padding: 5px;
1955
+ .spinner-three-bounce[data-spinner] [data-bounce1] {
1956
+ animation-delay: -0.32s;
1933
1957
  }
1934
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--embed {
1935
- max-height: 90px;
1936
- resize: none;
1958
+ .spinner-three-bounce[data-spinner] [data-bounce2] {
1959
+ animation-delay: -0.16s;
1937
1960
  }
1938
- .share_plugin[data-share] .share-container .share-container-main .share-container-header--socialicon > div {
1939
- width: 32px;
1940
- display: inline-block;
1941
- margin-right: 5px;
1942
- cursor: pointer;
1961
+
1962
+ @keyframes bouncedelay {
1963
+ 0%, 80%, 100% {
1964
+ transform: scale(0);
1965
+ }
1966
+ 40% {
1967
+ transform: scale(1);
1968
+ }
1943
1969
  }.scrub-thumbnails {
1944
1970
  position: absolute;
1945
1971
  bottom: 52px;
@@ -2003,51 +2029,25 @@ div.player-error-screen__reload, [data-player] div.player-error-screen__reload {
2003
2029
  }
2004
2030
  .scrub-thumbnails .backdrop .carousel img {
2005
2031
  width: auto;
2006
- }.player-logo[data-logo] {
2007
- position: absolute;
2008
- z-index: 2;
2009
- width: 100%;
2010
- height: 100%;
2032
+ }.container-with-poster-clickable .mc-skip-time {
2033
+ height: 0;
2011
2034
  }
2012
2035
 
2013
- .clappr-logo {
2014
- position: absolute;
2015
- }.spinner-three-bounce[data-spinner] {
2036
+ .mc-skip-time {
2016
2037
  position: absolute;
2017
- width: 70px;
2018
- text-align: center;
2019
- z-index: 999;
2020
- left: 0;
2021
- right: 0;
2022
- margin: 0 auto;
2023
- margin-left: auto;
2024
- margin-right: auto;
2025
- /* center vertically */
2026
- top: 50%;
2027
- transform: translateY(-50%);
2028
- }
2029
- .spinner-three-bounce[data-spinner] > div {
2030
- width: 18px;
2031
- height: 18px;
2032
- background-color: #FFF;
2033
- border-radius: 100%;
2034
- display: inline-block;
2035
- animation: bouncedelay 1.4s infinite ease-in-out;
2036
- /* Prevent first frame from flickering when animation starts */
2037
- animation-fill-mode: both;
2038
- }
2039
- .spinner-three-bounce[data-spinner] [data-bounce1] {
2040
- animation-delay: -0.32s;
2038
+ width: 100%;
2039
+ height: calc(100% - 50px);
2040
+ z-index: 9998;
2041
+ background-color: transparent;
2042
+ font-family: Roboto, "Open Sans", Arial, sans-serif;
2041
2043
  }
2042
- .spinner-three-bounce[data-spinner] [data-bounce2] {
2043
- animation-delay: -0.16s;
2044
+ .mc-skip-time .skip-container {
2045
+ width: 100%;
2046
+ height: 100%;
2047
+ display: flex;
2048
+ justify-content: space-between;
2044
2049
  }
2045
-
2046
- @keyframes bouncedelay {
2047
- 0%, 80%, 100% {
2048
- transform: scale(0);
2049
- }
2050
- 40% {
2051
- transform: scale(1);
2052
- }
2050
+ .mc-skip-time .skip-container .skip-item {
2051
+ flex: 1 0 0px;
2052
+ height: 100%;
2053
2053
  }