omni-layout 0.0.4-beta.2 → 0.0.4-beta.3

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
@@ -10,17 +10,7 @@
10
10
  [class*= ant-] input::-ms-reveal {
11
11
  display: none;
12
12
  }
13
- [class^=ant-],
14
- [class*= ant-],
15
- [class^=ant-] *,
16
- [class*= ant-] *,
17
- [class^=ant-] *::before,
18
- [class*= ant-] *::before,
19
- [class^=ant-] *::after,
20
- [class*= ant-] *::after {
21
- box-sizing: border-box;
22
- }
23
- /* stylelint-disable at-rule-no-unknown */
13
+ /* stylelint-disable property-no-vendor-prefix, at-rule-no-vendor-prefix */
24
14
  html,
25
15
  body {
26
16
  width: 100%;
@@ -170,7 +160,6 @@ a:focus {
170
160
  a[disabled] {
171
161
  color: rgba(0, 0, 0, 0.25);
172
162
  cursor: not-allowed;
173
- pointer-events: none;
174
163
  }
175
164
  pre,
176
165
  code,
@@ -191,9 +180,6 @@ img {
191
180
  vertical-align: middle;
192
181
  border-style: none;
193
182
  }
194
- svg:not(:root) {
195
- overflow: hidden;
196
- }
197
183
  a,
198
184
  area,
199
185
  button,
@@ -215,9 +201,6 @@ caption {
215
201
  text-align: left;
216
202
  caption-side: bottom;
217
203
  }
218
- th {
219
- text-align: inherit;
220
- }
221
204
  input,
222
205
  button,
223
206
  select,
@@ -342,7 +325,7 @@ mark {
342
325
  text-align: center;
343
326
  text-transform: none;
344
327
  vertical-align: -0.125em;
345
- text-rendering: optimizeLegibility;
328
+ text-rendering: optimizelegibility;
346
329
  -webkit-font-smoothing: antialiased;
347
330
  -moz-osx-font-smoothing: grayscale;
348
331
  }
@@ -358,67 +341,46 @@ mark {
358
341
  .anticon .anticon-icon {
359
342
  display: block;
360
343
  }
344
+ .anticon > .anticon {
345
+ line-height: 0;
346
+ vertical-align: 0;
347
+ }
361
348
  .anticon[tabindex] {
362
349
  cursor: pointer;
363
350
  }
351
+ .anticon-spin,
364
352
  .anticon-spin::before {
365
353
  display: inline-block;
366
- -webkit-animation: loadingCircle 1s infinite linear;
367
- animation: loadingCircle 1s infinite linear;
368
- }
369
- .anticon-spin {
370
- display: inline-block;
371
- -webkit-animation: loadingCircle 1s infinite linear;
372
- animation: loadingCircle 1s infinite linear;
373
- }
374
- .fade-enter,
375
- .fade-appear {
376
- -webkit-animation-duration: 0.2s;
377
- animation-duration: 0.2s;
378
- -webkit-animation-fill-mode: both;
379
- animation-fill-mode: both;
380
- -webkit-animation-play-state: paused;
381
- animation-play-state: paused;
382
- }
383
- .fade-leave {
384
- -webkit-animation-duration: 0.2s;
385
- animation-duration: 0.2s;
386
- -webkit-animation-fill-mode: both;
387
- animation-fill-mode: both;
388
- -webkit-animation-play-state: paused;
389
- animation-play-state: paused;
390
- }
391
- .fade-enter.fade-enter-active,
392
- .fade-appear.fade-appear-active {
393
- -webkit-animation-name: antFadeIn;
394
- animation-name: antFadeIn;
395
- -webkit-animation-play-state: running;
396
- animation-play-state: running;
397
- }
398
- .fade-leave.fade-leave-active {
399
- -webkit-animation-name: antFadeOut;
400
- animation-name: antFadeOut;
401
- -webkit-animation-play-state: running;
402
- animation-play-state: running;
354
+ animation: loadingCircle 1s infinite linear;
355
+ }
356
+ .ant-fade-enter,
357
+ .ant-fade-appear {
358
+ animation-duration: 0.2s;
359
+ animation-fill-mode: both;
360
+ animation-play-state: paused;
361
+ }
362
+ .ant-fade-leave {
363
+ animation-duration: 0.2s;
364
+ animation-fill-mode: both;
365
+ animation-play-state: paused;
366
+ }
367
+ .ant-fade-enter.ant-fade-enter-active,
368
+ .ant-fade-appear.ant-fade-appear-active {
369
+ animation-name: antFadeIn;
370
+ animation-play-state: running;
371
+ }
372
+ .ant-fade-leave.ant-fade-leave-active {
373
+ animation-name: antFadeOut;
374
+ animation-play-state: running;
403
375
  pointer-events: none;
404
376
  }
405
- .fade-enter,
406
- .fade-appear {
377
+ .ant-fade-enter,
378
+ .ant-fade-appear {
407
379
  opacity: 0;
408
- -webkit-animation-timing-function: linear;
409
- animation-timing-function: linear;
410
- }
411
- .fade-leave {
412
- -webkit-animation-timing-function: linear;
413
- animation-timing-function: linear;
380
+ animation-timing-function: linear;
414
381
  }
415
- @-webkit-keyframes antFadeIn {
416
- 0% {
417
- opacity: 0;
418
- }
419
- 100% {
420
- opacity: 1;
421
- }
382
+ .ant-fade-leave {
383
+ animation-timing-function: linear;
422
384
  }
423
385
  @keyframes antFadeIn {
424
386
  0% {
@@ -428,14 +390,6 @@ mark {
428
390
  opacity: 1;
429
391
  }
430
392
  }
431
- @-webkit-keyframes antFadeOut {
432
- 0% {
433
- opacity: 1;
434
- }
435
- 100% {
436
- opacity: 0;
437
- }
438
- }
439
393
  @keyframes antFadeOut {
440
394
  0% {
441
395
  opacity: 1;
@@ -444,181 +398,121 @@ mark {
444
398
  opacity: 0;
445
399
  }
446
400
  }
447
- .move-up-enter,
448
- .move-up-appear {
449
- -webkit-animation-duration: 0.2s;
450
- animation-duration: 0.2s;
451
- -webkit-animation-fill-mode: both;
452
- animation-fill-mode: both;
453
- -webkit-animation-play-state: paused;
454
- animation-play-state: paused;
455
- }
456
- .move-up-leave {
457
- -webkit-animation-duration: 0.2s;
458
- animation-duration: 0.2s;
459
- -webkit-animation-fill-mode: both;
460
- animation-fill-mode: both;
461
- -webkit-animation-play-state: paused;
462
- animation-play-state: paused;
463
- }
464
- .move-up-enter.move-up-enter-active,
465
- .move-up-appear.move-up-appear-active {
466
- -webkit-animation-name: antMoveUpIn;
467
- animation-name: antMoveUpIn;
468
- -webkit-animation-play-state: running;
469
- animation-play-state: running;
470
- }
471
- .move-up-leave.move-up-leave-active {
472
- -webkit-animation-name: antMoveUpOut;
473
- animation-name: antMoveUpOut;
474
- -webkit-animation-play-state: running;
475
- animation-play-state: running;
401
+ .ant-move-up-enter,
402
+ .ant-move-up-appear {
403
+ animation-duration: 0.2s;
404
+ animation-fill-mode: both;
405
+ animation-play-state: paused;
406
+ }
407
+ .ant-move-up-leave {
408
+ animation-duration: 0.2s;
409
+ animation-fill-mode: both;
410
+ animation-play-state: paused;
411
+ }
412
+ .ant-move-up-enter.ant-move-up-enter-active,
413
+ .ant-move-up-appear.ant-move-up-appear-active {
414
+ animation-name: antMoveUpIn;
415
+ animation-play-state: running;
416
+ }
417
+ .ant-move-up-leave.ant-move-up-leave-active {
418
+ animation-name: antMoveUpOut;
419
+ animation-play-state: running;
476
420
  pointer-events: none;
477
421
  }
478
- .move-up-enter,
479
- .move-up-appear {
422
+ .ant-move-up-enter,
423
+ .ant-move-up-appear {
480
424
  opacity: 0;
481
- -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
482
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
483
- }
484
- .move-up-leave {
485
- -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
486
- animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
487
- }
488
- .move-down-enter,
489
- .move-down-appear {
490
- -webkit-animation-duration: 0.2s;
491
- animation-duration: 0.2s;
492
- -webkit-animation-fill-mode: both;
493
- animation-fill-mode: both;
494
- -webkit-animation-play-state: paused;
495
- animation-play-state: paused;
496
- }
497
- .move-down-leave {
498
- -webkit-animation-duration: 0.2s;
499
- animation-duration: 0.2s;
500
- -webkit-animation-fill-mode: both;
501
- animation-fill-mode: both;
502
- -webkit-animation-play-state: paused;
503
- animation-play-state: paused;
504
- }
505
- .move-down-enter.move-down-enter-active,
506
- .move-down-appear.move-down-appear-active {
507
- -webkit-animation-name: antMoveDownIn;
508
- animation-name: antMoveDownIn;
509
- -webkit-animation-play-state: running;
510
- animation-play-state: running;
511
- }
512
- .move-down-leave.move-down-leave-active {
513
- -webkit-animation-name: antMoveDownOut;
514
- animation-name: antMoveDownOut;
515
- -webkit-animation-play-state: running;
516
- animation-play-state: running;
425
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
426
+ }
427
+ .ant-move-up-leave {
428
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
429
+ }
430
+ .ant-move-down-enter,
431
+ .ant-move-down-appear {
432
+ animation-duration: 0.2s;
433
+ animation-fill-mode: both;
434
+ animation-play-state: paused;
435
+ }
436
+ .ant-move-down-leave {
437
+ animation-duration: 0.2s;
438
+ animation-fill-mode: both;
439
+ animation-play-state: paused;
440
+ }
441
+ .ant-move-down-enter.ant-move-down-enter-active,
442
+ .ant-move-down-appear.ant-move-down-appear-active {
443
+ animation-name: antMoveDownIn;
444
+ animation-play-state: running;
445
+ }
446
+ .ant-move-down-leave.ant-move-down-leave-active {
447
+ animation-name: antMoveDownOut;
448
+ animation-play-state: running;
517
449
  pointer-events: none;
518
450
  }
519
- .move-down-enter,
520
- .move-down-appear {
451
+ .ant-move-down-enter,
452
+ .ant-move-down-appear {
521
453
  opacity: 0;
522
- -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
523
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
524
- }
525
- .move-down-leave {
526
- -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
527
- animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
528
- }
529
- .move-left-enter,
530
- .move-left-appear {
531
- -webkit-animation-duration: 0.2s;
532
- animation-duration: 0.2s;
533
- -webkit-animation-fill-mode: both;
534
- animation-fill-mode: both;
535
- -webkit-animation-play-state: paused;
536
- animation-play-state: paused;
537
- }
538
- .move-left-leave {
539
- -webkit-animation-duration: 0.2s;
540
- animation-duration: 0.2s;
541
- -webkit-animation-fill-mode: both;
542
- animation-fill-mode: both;
543
- -webkit-animation-play-state: paused;
544
- animation-play-state: paused;
545
- }
546
- .move-left-enter.move-left-enter-active,
547
- .move-left-appear.move-left-appear-active {
548
- -webkit-animation-name: antMoveLeftIn;
549
- animation-name: antMoveLeftIn;
550
- -webkit-animation-play-state: running;
551
- animation-play-state: running;
552
- }
553
- .move-left-leave.move-left-leave-active {
554
- -webkit-animation-name: antMoveLeftOut;
555
- animation-name: antMoveLeftOut;
556
- -webkit-animation-play-state: running;
557
- animation-play-state: running;
454
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
455
+ }
456
+ .ant-move-down-leave {
457
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
458
+ }
459
+ .ant-move-left-enter,
460
+ .ant-move-left-appear {
461
+ animation-duration: 0.2s;
462
+ animation-fill-mode: both;
463
+ animation-play-state: paused;
464
+ }
465
+ .ant-move-left-leave {
466
+ animation-duration: 0.2s;
467
+ animation-fill-mode: both;
468
+ animation-play-state: paused;
469
+ }
470
+ .ant-move-left-enter.ant-move-left-enter-active,
471
+ .ant-move-left-appear.ant-move-left-appear-active {
472
+ animation-name: antMoveLeftIn;
473
+ animation-play-state: running;
474
+ }
475
+ .ant-move-left-leave.ant-move-left-leave-active {
476
+ animation-name: antMoveLeftOut;
477
+ animation-play-state: running;
558
478
  pointer-events: none;
559
479
  }
560
- .move-left-enter,
561
- .move-left-appear {
480
+ .ant-move-left-enter,
481
+ .ant-move-left-appear {
562
482
  opacity: 0;
563
- -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
564
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
565
- }
566
- .move-left-leave {
567
- -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
568
- animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
569
- }
570
- .move-right-enter,
571
- .move-right-appear {
572
- -webkit-animation-duration: 0.2s;
573
- animation-duration: 0.2s;
574
- -webkit-animation-fill-mode: both;
575
- animation-fill-mode: both;
576
- -webkit-animation-play-state: paused;
577
- animation-play-state: paused;
578
- }
579
- .move-right-leave {
580
- -webkit-animation-duration: 0.2s;
581
- animation-duration: 0.2s;
582
- -webkit-animation-fill-mode: both;
583
- animation-fill-mode: both;
584
- -webkit-animation-play-state: paused;
585
- animation-play-state: paused;
586
- }
587
- .move-right-enter.move-right-enter-active,
588
- .move-right-appear.move-right-appear-active {
589
- -webkit-animation-name: antMoveRightIn;
590
- animation-name: antMoveRightIn;
591
- -webkit-animation-play-state: running;
592
- animation-play-state: running;
593
- }
594
- .move-right-leave.move-right-leave-active {
595
- -webkit-animation-name: antMoveRightOut;
596
- animation-name: antMoveRightOut;
597
- -webkit-animation-play-state: running;
598
- animation-play-state: running;
483
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
484
+ }
485
+ .ant-move-left-leave {
486
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
487
+ }
488
+ .ant-move-right-enter,
489
+ .ant-move-right-appear {
490
+ animation-duration: 0.2s;
491
+ animation-fill-mode: both;
492
+ animation-play-state: paused;
493
+ }
494
+ .ant-move-right-leave {
495
+ animation-duration: 0.2s;
496
+ animation-fill-mode: both;
497
+ animation-play-state: paused;
498
+ }
499
+ .ant-move-right-enter.ant-move-right-enter-active,
500
+ .ant-move-right-appear.ant-move-right-appear-active {
501
+ animation-name: antMoveRightIn;
502
+ animation-play-state: running;
503
+ }
504
+ .ant-move-right-leave.ant-move-right-leave-active {
505
+ animation-name: antMoveRightOut;
506
+ animation-play-state: running;
599
507
  pointer-events: none;
600
508
  }
601
- .move-right-enter,
602
- .move-right-appear {
509
+ .ant-move-right-enter,
510
+ .ant-move-right-appear {
603
511
  opacity: 0;
604
- -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
605
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
512
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
606
513
  }
607
- .move-right-leave {
608
- -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
609
- animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
610
- }
611
- @-webkit-keyframes antMoveDownIn {
612
- 0% {
613
- transform: translateY(100%);
614
- transform-origin: 0 0;
615
- opacity: 0;
616
- }
617
- 100% {
618
- transform: translateY(0%);
619
- transform-origin: 0 0;
620
- opacity: 1;
621
- }
514
+ .ant-move-right-leave {
515
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
622
516
  }
623
517
  @keyframes antMoveDownIn {
624
518
  0% {
@@ -632,18 +526,6 @@ mark {
632
526
  opacity: 1;
633
527
  }
634
528
  }
635
- @-webkit-keyframes antMoveDownOut {
636
- 0% {
637
- transform: translateY(0%);
638
- transform-origin: 0 0;
639
- opacity: 1;
640
- }
641
- 100% {
642
- transform: translateY(100%);
643
- transform-origin: 0 0;
644
- opacity: 0;
645
- }
646
- }
647
529
  @keyframes antMoveDownOut {
648
530
  0% {
649
531
  transform: translateY(0%);
@@ -656,18 +538,6 @@ mark {
656
538
  opacity: 0;
657
539
  }
658
540
  }
659
- @-webkit-keyframes antMoveLeftIn {
660
- 0% {
661
- transform: translateX(-100%);
662
- transform-origin: 0 0;
663
- opacity: 0;
664
- }
665
- 100% {
666
- transform: translateX(0%);
667
- transform-origin: 0 0;
668
- opacity: 1;
669
- }
670
- }
671
541
  @keyframes antMoveLeftIn {
672
542
  0% {
673
543
  transform: translateX(-100%);
@@ -680,18 +550,6 @@ mark {
680
550
  opacity: 1;
681
551
  }
682
552
  }
683
- @-webkit-keyframes antMoveLeftOut {
684
- 0% {
685
- transform: translateX(0%);
686
- transform-origin: 0 0;
687
- opacity: 1;
688
- }
689
- 100% {
690
- transform: translateX(-100%);
691
- transform-origin: 0 0;
692
- opacity: 0;
693
- }
694
- }
695
553
  @keyframes antMoveLeftOut {
696
554
  0% {
697
555
  transform: translateX(0%);
@@ -704,18 +562,6 @@ mark {
704
562
  opacity: 0;
705
563
  }
706
564
  }
707
- @-webkit-keyframes antMoveRightIn {
708
- 0% {
709
- transform: translateX(100%);
710
- transform-origin: 0 0;
711
- opacity: 0;
712
- }
713
- 100% {
714
- transform: translateX(0%);
715
- transform-origin: 0 0;
716
- opacity: 1;
717
- }
718
- }
719
565
  @keyframes antMoveRightIn {
720
566
  0% {
721
567
  transform: translateX(100%);
@@ -728,18 +574,6 @@ mark {
728
574
  opacity: 1;
729
575
  }
730
576
  }
731
- @-webkit-keyframes antMoveRightOut {
732
- 0% {
733
- transform: translateX(0%);
734
- transform-origin: 0 0;
735
- opacity: 1;
736
- }
737
- 100% {
738
- transform: translateX(100%);
739
- transform-origin: 0 0;
740
- opacity: 0;
741
- }
742
- }
743
577
  @keyframes antMoveRightOut {
744
578
  0% {
745
579
  transform: translateX(0%);
@@ -752,18 +586,6 @@ mark {
752
586
  opacity: 0;
753
587
  }
754
588
  }
755
- @-webkit-keyframes antMoveUpIn {
756
- 0% {
757
- transform: translateY(-100%);
758
- transform-origin: 0 0;
759
- opacity: 0;
760
- }
761
- 100% {
762
- transform: translateY(0%);
763
- transform-origin: 0 0;
764
- opacity: 1;
765
- }
766
- }
767
589
  @keyframes antMoveUpIn {
768
590
  0% {
769
591
  transform: translateY(-100%);
@@ -776,18 +598,6 @@ mark {
776
598
  opacity: 1;
777
599
  }
778
600
  }
779
- @-webkit-keyframes antMoveUpOut {
780
- 0% {
781
- transform: translateY(0%);
782
- transform-origin: 0 0;
783
- opacity: 1;
784
- }
785
- 100% {
786
- transform: translateY(-100%);
787
- transform-origin: 0 0;
788
- opacity: 0;
789
- }
790
- }
791
601
  @keyframes antMoveUpOut {
792
602
  0% {
793
603
  transform: translateY(0%);
@@ -800,11 +610,6 @@ mark {
800
610
  opacity: 0;
801
611
  }
802
612
  }
803
- @-webkit-keyframes loadingCircle {
804
- 100% {
805
- transform: rotate(360deg);
806
- }
807
- }
808
613
  @keyframes loadingCircle {
809
614
  100% {
810
615
  transform: rotate(360deg);
@@ -830,210 +635,145 @@ html {
830
635
  box-shadow: 0 0 0 0 #1890ff;
831
636
  box-shadow: 0 0 0 0 var(--antd-wave-shadow-color);
832
637
  opacity: 0.2;
833
- -webkit-animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1), waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
834
- animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1), waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
835
- -webkit-animation-fill-mode: forwards;
836
- animation-fill-mode: forwards;
638
+ animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1), waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
639
+ animation-fill-mode: forwards;
837
640
  content: '';
838
641
  pointer-events: none;
839
642
  }
840
- @-webkit-keyframes waveEffect {
841
- 100% {
842
- box-shadow: 0 0 0 #1890ff;
843
- box-shadow: 0 0 0 6px var(--antd-wave-shadow-color);
844
- }
845
- }
846
643
  @keyframes waveEffect {
847
644
  100% {
848
645
  box-shadow: 0 0 0 #1890ff;
849
646
  box-shadow: 0 0 0 6px var(--antd-wave-shadow-color);
850
647
  }
851
648
  }
852
- @-webkit-keyframes fadeEffect {
853
- 100% {
854
- opacity: 0;
855
- }
856
- }
857
649
  @keyframes fadeEffect {
858
650
  100% {
859
651
  opacity: 0;
860
652
  }
861
653
  }
862
- .slide-up-enter,
863
- .slide-up-appear {
864
- -webkit-animation-duration: 0.2s;
865
- animation-duration: 0.2s;
866
- -webkit-animation-fill-mode: both;
867
- animation-fill-mode: both;
868
- -webkit-animation-play-state: paused;
869
- animation-play-state: paused;
870
- }
871
- .slide-up-leave {
872
- -webkit-animation-duration: 0.2s;
873
- animation-duration: 0.2s;
874
- -webkit-animation-fill-mode: both;
875
- animation-fill-mode: both;
876
- -webkit-animation-play-state: paused;
877
- animation-play-state: paused;
878
- }
879
- .slide-up-enter.slide-up-enter-active,
880
- .slide-up-appear.slide-up-appear-active {
881
- -webkit-animation-name: antSlideUpIn;
882
- animation-name: antSlideUpIn;
883
- -webkit-animation-play-state: running;
884
- animation-play-state: running;
885
- }
886
- .slide-up-leave.slide-up-leave-active {
887
- -webkit-animation-name: antSlideUpOut;
888
- animation-name: antSlideUpOut;
889
- -webkit-animation-play-state: running;
890
- animation-play-state: running;
654
+ .ant-slide-up-enter,
655
+ .ant-slide-up-appear {
656
+ animation-duration: 0.2s;
657
+ animation-fill-mode: both;
658
+ animation-play-state: paused;
659
+ }
660
+ .ant-slide-up-leave {
661
+ animation-duration: 0.2s;
662
+ animation-fill-mode: both;
663
+ animation-play-state: paused;
664
+ }
665
+ .ant-slide-up-enter.ant-slide-up-enter-active,
666
+ .ant-slide-up-appear.ant-slide-up-appear-active {
667
+ animation-name: antSlideUpIn;
668
+ animation-play-state: running;
669
+ }
670
+ .ant-slide-up-leave.ant-slide-up-leave-active {
671
+ animation-name: antSlideUpOut;
672
+ animation-play-state: running;
891
673
  pointer-events: none;
892
674
  }
893
- .slide-up-enter,
894
- .slide-up-appear {
675
+ .ant-slide-up-enter,
676
+ .ant-slide-up-appear {
677
+ transform: scale(0);
678
+ transform-origin: 0% 0%;
895
679
  opacity: 0;
896
- -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
897
- animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
898
- }
899
- .slide-up-leave {
900
- -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
901
- animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
902
- }
903
- .slide-down-enter,
904
- .slide-down-appear {
905
- -webkit-animation-duration: 0.2s;
906
- animation-duration: 0.2s;
907
- -webkit-animation-fill-mode: both;
908
- animation-fill-mode: both;
909
- -webkit-animation-play-state: paused;
910
- animation-play-state: paused;
911
- }
912
- .slide-down-leave {
913
- -webkit-animation-duration: 0.2s;
914
- animation-duration: 0.2s;
915
- -webkit-animation-fill-mode: both;
916
- animation-fill-mode: both;
917
- -webkit-animation-play-state: paused;
918
- animation-play-state: paused;
919
- }
920
- .slide-down-enter.slide-down-enter-active,
921
- .slide-down-appear.slide-down-appear-active {
922
- -webkit-animation-name: antSlideDownIn;
923
- animation-name: antSlideDownIn;
924
- -webkit-animation-play-state: running;
925
- animation-play-state: running;
926
- }
927
- .slide-down-leave.slide-down-leave-active {
928
- -webkit-animation-name: antSlideDownOut;
929
- animation-name: antSlideDownOut;
930
- -webkit-animation-play-state: running;
931
- animation-play-state: running;
680
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
681
+ }
682
+ .ant-slide-up-leave {
683
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
684
+ }
685
+ .ant-slide-down-enter,
686
+ .ant-slide-down-appear {
687
+ animation-duration: 0.2s;
688
+ animation-fill-mode: both;
689
+ animation-play-state: paused;
690
+ }
691
+ .ant-slide-down-leave {
692
+ animation-duration: 0.2s;
693
+ animation-fill-mode: both;
694
+ animation-play-state: paused;
695
+ }
696
+ .ant-slide-down-enter.ant-slide-down-enter-active,
697
+ .ant-slide-down-appear.ant-slide-down-appear-active {
698
+ animation-name: antSlideDownIn;
699
+ animation-play-state: running;
700
+ }
701
+ .ant-slide-down-leave.ant-slide-down-leave-active {
702
+ animation-name: antSlideDownOut;
703
+ animation-play-state: running;
932
704
  pointer-events: none;
933
705
  }
934
- .slide-down-enter,
935
- .slide-down-appear {
706
+ .ant-slide-down-enter,
707
+ .ant-slide-down-appear {
708
+ transform: scale(0);
709
+ transform-origin: 0% 0%;
936
710
  opacity: 0;
937
- -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
938
- animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
939
- }
940
- .slide-down-leave {
941
- -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
942
- animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
943
- }
944
- .slide-left-enter,
945
- .slide-left-appear {
946
- -webkit-animation-duration: 0.2s;
947
- animation-duration: 0.2s;
948
- -webkit-animation-fill-mode: both;
949
- animation-fill-mode: both;
950
- -webkit-animation-play-state: paused;
951
- animation-play-state: paused;
952
- }
953
- .slide-left-leave {
954
- -webkit-animation-duration: 0.2s;
955
- animation-duration: 0.2s;
956
- -webkit-animation-fill-mode: both;
957
- animation-fill-mode: both;
958
- -webkit-animation-play-state: paused;
959
- animation-play-state: paused;
960
- }
961
- .slide-left-enter.slide-left-enter-active,
962
- .slide-left-appear.slide-left-appear-active {
963
- -webkit-animation-name: antSlideLeftIn;
964
- animation-name: antSlideLeftIn;
965
- -webkit-animation-play-state: running;
966
- animation-play-state: running;
967
- }
968
- .slide-left-leave.slide-left-leave-active {
969
- -webkit-animation-name: antSlideLeftOut;
970
- animation-name: antSlideLeftOut;
971
- -webkit-animation-play-state: running;
972
- animation-play-state: running;
711
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
712
+ }
713
+ .ant-slide-down-leave {
714
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
715
+ }
716
+ .ant-slide-left-enter,
717
+ .ant-slide-left-appear {
718
+ animation-duration: 0.2s;
719
+ animation-fill-mode: both;
720
+ animation-play-state: paused;
721
+ }
722
+ .ant-slide-left-leave {
723
+ animation-duration: 0.2s;
724
+ animation-fill-mode: both;
725
+ animation-play-state: paused;
726
+ }
727
+ .ant-slide-left-enter.ant-slide-left-enter-active,
728
+ .ant-slide-left-appear.ant-slide-left-appear-active {
729
+ animation-name: antSlideLeftIn;
730
+ animation-play-state: running;
731
+ }
732
+ .ant-slide-left-leave.ant-slide-left-leave-active {
733
+ animation-name: antSlideLeftOut;
734
+ animation-play-state: running;
973
735
  pointer-events: none;
974
736
  }
975
- .slide-left-enter,
976
- .slide-left-appear {
737
+ .ant-slide-left-enter,
738
+ .ant-slide-left-appear {
739
+ transform: scale(0);
740
+ transform-origin: 0% 0%;
977
741
  opacity: 0;
978
- -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
979
- animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
980
- }
981
- .slide-left-leave {
982
- -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
983
- animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
984
- }
985
- .slide-right-enter,
986
- .slide-right-appear {
987
- -webkit-animation-duration: 0.2s;
988
- animation-duration: 0.2s;
989
- -webkit-animation-fill-mode: both;
990
- animation-fill-mode: both;
991
- -webkit-animation-play-state: paused;
992
- animation-play-state: paused;
993
- }
994
- .slide-right-leave {
995
- -webkit-animation-duration: 0.2s;
996
- animation-duration: 0.2s;
997
- -webkit-animation-fill-mode: both;
998
- animation-fill-mode: both;
999
- -webkit-animation-play-state: paused;
1000
- animation-play-state: paused;
1001
- }
1002
- .slide-right-enter.slide-right-enter-active,
1003
- .slide-right-appear.slide-right-appear-active {
1004
- -webkit-animation-name: antSlideRightIn;
1005
- animation-name: antSlideRightIn;
1006
- -webkit-animation-play-state: running;
1007
- animation-play-state: running;
1008
- }
1009
- .slide-right-leave.slide-right-leave-active {
1010
- -webkit-animation-name: antSlideRightOut;
1011
- animation-name: antSlideRightOut;
1012
- -webkit-animation-play-state: running;
1013
- animation-play-state: running;
742
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
743
+ }
744
+ .ant-slide-left-leave {
745
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
746
+ }
747
+ .ant-slide-right-enter,
748
+ .ant-slide-right-appear {
749
+ animation-duration: 0.2s;
750
+ animation-fill-mode: both;
751
+ animation-play-state: paused;
752
+ }
753
+ .ant-slide-right-leave {
754
+ animation-duration: 0.2s;
755
+ animation-fill-mode: both;
756
+ animation-play-state: paused;
757
+ }
758
+ .ant-slide-right-enter.ant-slide-right-enter-active,
759
+ .ant-slide-right-appear.ant-slide-right-appear-active {
760
+ animation-name: antSlideRightIn;
761
+ animation-play-state: running;
762
+ }
763
+ .ant-slide-right-leave.ant-slide-right-leave-active {
764
+ animation-name: antSlideRightOut;
765
+ animation-play-state: running;
1014
766
  pointer-events: none;
1015
767
  }
1016
- .slide-right-enter,
1017
- .slide-right-appear {
768
+ .ant-slide-right-enter,
769
+ .ant-slide-right-appear {
770
+ transform: scale(0);
771
+ transform-origin: 0% 0%;
1018
772
  opacity: 0;
1019
- -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1020
- animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
773
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1021
774
  }
1022
- .slide-right-leave {
1023
- -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1024
- animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1025
- }
1026
- @-webkit-keyframes antSlideUpIn {
1027
- 0% {
1028
- transform: scaleY(0.8);
1029
- transform-origin: 0% 0%;
1030
- opacity: 0;
1031
- }
1032
- 100% {
1033
- transform: scaleY(1);
1034
- transform-origin: 0% 0%;
1035
- opacity: 1;
1036
- }
775
+ .ant-slide-right-leave {
776
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1037
777
  }
1038
778
  @keyframes antSlideUpIn {
1039
779
  0% {
@@ -1047,18 +787,6 @@ html {
1047
787
  opacity: 1;
1048
788
  }
1049
789
  }
1050
- @-webkit-keyframes antSlideUpOut {
1051
- 0% {
1052
- transform: scaleY(1);
1053
- transform-origin: 0% 0%;
1054
- opacity: 1;
1055
- }
1056
- 100% {
1057
- transform: scaleY(0.8);
1058
- transform-origin: 0% 0%;
1059
- opacity: 0;
1060
- }
1061
- }
1062
790
  @keyframes antSlideUpOut {
1063
791
  0% {
1064
792
  transform: scaleY(1);
@@ -1071,18 +799,6 @@ html {
1071
799
  opacity: 0;
1072
800
  }
1073
801
  }
1074
- @-webkit-keyframes antSlideDownIn {
1075
- 0% {
1076
- transform: scaleY(0.8);
1077
- transform-origin: 100% 100%;
1078
- opacity: 0;
1079
- }
1080
- 100% {
1081
- transform: scaleY(1);
1082
- transform-origin: 100% 100%;
1083
- opacity: 1;
1084
- }
1085
- }
1086
802
  @keyframes antSlideDownIn {
1087
803
  0% {
1088
804
  transform: scaleY(0.8);
@@ -1095,18 +811,6 @@ html {
1095
811
  opacity: 1;
1096
812
  }
1097
813
  }
1098
- @-webkit-keyframes antSlideDownOut {
1099
- 0% {
1100
- transform: scaleY(1);
1101
- transform-origin: 100% 100%;
1102
- opacity: 1;
1103
- }
1104
- 100% {
1105
- transform: scaleY(0.8);
1106
- transform-origin: 100% 100%;
1107
- opacity: 0;
1108
- }
1109
- }
1110
814
  @keyframes antSlideDownOut {
1111
815
  0% {
1112
816
  transform: scaleY(1);
@@ -1119,18 +823,6 @@ html {
1119
823
  opacity: 0;
1120
824
  }
1121
825
  }
1122
- @-webkit-keyframes antSlideLeftIn {
1123
- 0% {
1124
- transform: scaleX(0.8);
1125
- transform-origin: 0% 0%;
1126
- opacity: 0;
1127
- }
1128
- 100% {
1129
- transform: scaleX(1);
1130
- transform-origin: 0% 0%;
1131
- opacity: 1;
1132
- }
1133
- }
1134
826
  @keyframes antSlideLeftIn {
1135
827
  0% {
1136
828
  transform: scaleX(0.8);
@@ -1143,18 +835,6 @@ html {
1143
835
  opacity: 1;
1144
836
  }
1145
837
  }
1146
- @-webkit-keyframes antSlideLeftOut {
1147
- 0% {
1148
- transform: scaleX(1);
1149
- transform-origin: 0% 0%;
1150
- opacity: 1;
1151
- }
1152
- 100% {
1153
- transform: scaleX(0.8);
1154
- transform-origin: 0% 0%;
1155
- opacity: 0;
1156
- }
1157
- }
1158
838
  @keyframes antSlideLeftOut {
1159
839
  0% {
1160
840
  transform: scaleX(1);
@@ -1167,18 +847,6 @@ html {
1167
847
  opacity: 0;
1168
848
  }
1169
849
  }
1170
- @-webkit-keyframes antSlideRightIn {
1171
- 0% {
1172
- transform: scaleX(0.8);
1173
- transform-origin: 100% 0%;
1174
- opacity: 0;
1175
- }
1176
- 100% {
1177
- transform: scaleX(1);
1178
- transform-origin: 100% 0%;
1179
- opacity: 1;
1180
- }
1181
- }
1182
850
  @keyframes antSlideRightIn {
1183
851
  0% {
1184
852
  transform: scaleX(0.8);
@@ -1191,18 +859,6 @@ html {
1191
859
  opacity: 1;
1192
860
  }
1193
861
  }
1194
- @-webkit-keyframes antSlideRightOut {
1195
- 0% {
1196
- transform: scaleX(1);
1197
- transform-origin: 100% 0%;
1198
- opacity: 1;
1199
- }
1200
- 100% {
1201
- transform: scaleX(0.8);
1202
- transform-origin: 100% 0%;
1203
- opacity: 0;
1204
- }
1205
- }
1206
862
  @keyframes antSlideRightOut {
1207
863
  0% {
1208
864
  transform: scaleX(1);
@@ -1215,337 +871,243 @@ html {
1215
871
  opacity: 0;
1216
872
  }
1217
873
  }
1218
- .zoom-enter,
1219
- .zoom-appear {
1220
- -webkit-animation-duration: 0.2s;
1221
- animation-duration: 0.2s;
1222
- -webkit-animation-fill-mode: both;
1223
- animation-fill-mode: both;
1224
- -webkit-animation-play-state: paused;
1225
- animation-play-state: paused;
1226
- }
1227
- .zoom-leave {
1228
- -webkit-animation-duration: 0.2s;
1229
- animation-duration: 0.2s;
1230
- -webkit-animation-fill-mode: both;
1231
- animation-fill-mode: both;
1232
- -webkit-animation-play-state: paused;
1233
- animation-play-state: paused;
1234
- }
1235
- .zoom-enter.zoom-enter-active,
1236
- .zoom-appear.zoom-appear-active {
1237
- -webkit-animation-name: antZoomIn;
1238
- animation-name: antZoomIn;
1239
- -webkit-animation-play-state: running;
1240
- animation-play-state: running;
1241
- }
1242
- .zoom-leave.zoom-leave-active {
1243
- -webkit-animation-name: antZoomOut;
1244
- animation-name: antZoomOut;
1245
- -webkit-animation-play-state: running;
1246
- animation-play-state: running;
874
+ .ant-zoom-enter,
875
+ .ant-zoom-appear {
876
+ animation-duration: 0.2s;
877
+ animation-fill-mode: both;
878
+ animation-play-state: paused;
879
+ }
880
+ .ant-zoom-leave {
881
+ animation-duration: 0.2s;
882
+ animation-fill-mode: both;
883
+ animation-play-state: paused;
884
+ }
885
+ .ant-zoom-enter.ant-zoom-enter-active,
886
+ .ant-zoom-appear.ant-zoom-appear-active {
887
+ animation-name: antZoomIn;
888
+ animation-play-state: running;
889
+ }
890
+ .ant-zoom-leave.ant-zoom-leave-active {
891
+ animation-name: antZoomOut;
892
+ animation-play-state: running;
1247
893
  pointer-events: none;
1248
894
  }
1249
- .zoom-enter,
1250
- .zoom-appear {
895
+ .ant-zoom-enter,
896
+ .ant-zoom-appear {
1251
897
  transform: scale(0);
1252
898
  opacity: 0;
1253
- -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1254
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
899
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1255
900
  }
1256
- .zoom-enter-prepare,
1257
- .zoom-appear-prepare {
901
+ .ant-zoom-enter-prepare,
902
+ .ant-zoom-appear-prepare {
1258
903
  transform: none;
1259
904
  }
1260
- .zoom-leave {
1261
- -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1262
- animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1263
- }
1264
- .zoom-big-enter,
1265
- .zoom-big-appear {
1266
- -webkit-animation-duration: 0.2s;
1267
- animation-duration: 0.2s;
1268
- -webkit-animation-fill-mode: both;
1269
- animation-fill-mode: both;
1270
- -webkit-animation-play-state: paused;
1271
- animation-play-state: paused;
1272
- }
1273
- .zoom-big-leave {
1274
- -webkit-animation-duration: 0.2s;
1275
- animation-duration: 0.2s;
1276
- -webkit-animation-fill-mode: both;
1277
- animation-fill-mode: both;
1278
- -webkit-animation-play-state: paused;
1279
- animation-play-state: paused;
1280
- }
1281
- .zoom-big-enter.zoom-big-enter-active,
1282
- .zoom-big-appear.zoom-big-appear-active {
1283
- -webkit-animation-name: antZoomBigIn;
1284
- animation-name: antZoomBigIn;
1285
- -webkit-animation-play-state: running;
1286
- animation-play-state: running;
1287
- }
1288
- .zoom-big-leave.zoom-big-leave-active {
1289
- -webkit-animation-name: antZoomBigOut;
1290
- animation-name: antZoomBigOut;
1291
- -webkit-animation-play-state: running;
1292
- animation-play-state: running;
905
+ .ant-zoom-leave {
906
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
907
+ }
908
+ .ant-zoom-big-enter,
909
+ .ant-zoom-big-appear {
910
+ animation-duration: 0.2s;
911
+ animation-fill-mode: both;
912
+ animation-play-state: paused;
913
+ }
914
+ .ant-zoom-big-leave {
915
+ animation-duration: 0.2s;
916
+ animation-fill-mode: both;
917
+ animation-play-state: paused;
918
+ }
919
+ .ant-zoom-big-enter.ant-zoom-big-enter-active,
920
+ .ant-zoom-big-appear.ant-zoom-big-appear-active {
921
+ animation-name: antZoomBigIn;
922
+ animation-play-state: running;
923
+ }
924
+ .ant-zoom-big-leave.ant-zoom-big-leave-active {
925
+ animation-name: antZoomBigOut;
926
+ animation-play-state: running;
1293
927
  pointer-events: none;
1294
928
  }
1295
- .zoom-big-enter,
1296
- .zoom-big-appear {
929
+ .ant-zoom-big-enter,
930
+ .ant-zoom-big-appear {
1297
931
  transform: scale(0);
1298
932
  opacity: 0;
1299
- -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1300
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
933
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1301
934
  }
1302
- .zoom-big-enter-prepare,
1303
- .zoom-big-appear-prepare {
935
+ .ant-zoom-big-enter-prepare,
936
+ .ant-zoom-big-appear-prepare {
1304
937
  transform: none;
1305
938
  }
1306
- .zoom-big-leave {
1307
- -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1308
- animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1309
- }
1310
- .zoom-big-fast-enter,
1311
- .zoom-big-fast-appear {
1312
- -webkit-animation-duration: 0.1s;
1313
- animation-duration: 0.1s;
1314
- -webkit-animation-fill-mode: both;
1315
- animation-fill-mode: both;
1316
- -webkit-animation-play-state: paused;
1317
- animation-play-state: paused;
1318
- }
1319
- .zoom-big-fast-leave {
1320
- -webkit-animation-duration: 0.1s;
1321
- animation-duration: 0.1s;
1322
- -webkit-animation-fill-mode: both;
1323
- animation-fill-mode: both;
1324
- -webkit-animation-play-state: paused;
1325
- animation-play-state: paused;
1326
- }
1327
- .zoom-big-fast-enter.zoom-big-fast-enter-active,
1328
- .zoom-big-fast-appear.zoom-big-fast-appear-active {
1329
- -webkit-animation-name: antZoomBigIn;
1330
- animation-name: antZoomBigIn;
1331
- -webkit-animation-play-state: running;
1332
- animation-play-state: running;
1333
- }
1334
- .zoom-big-fast-leave.zoom-big-fast-leave-active {
1335
- -webkit-animation-name: antZoomBigOut;
1336
- animation-name: antZoomBigOut;
1337
- -webkit-animation-play-state: running;
1338
- animation-play-state: running;
939
+ .ant-zoom-big-leave {
940
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
941
+ }
942
+ .ant-zoom-big-fast-enter,
943
+ .ant-zoom-big-fast-appear {
944
+ animation-duration: 0.1s;
945
+ animation-fill-mode: both;
946
+ animation-play-state: paused;
947
+ }
948
+ .ant-zoom-big-fast-leave {
949
+ animation-duration: 0.1s;
950
+ animation-fill-mode: both;
951
+ animation-play-state: paused;
952
+ }
953
+ .ant-zoom-big-fast-enter.ant-zoom-big-fast-enter-active,
954
+ .ant-zoom-big-fast-appear.ant-zoom-big-fast-appear-active {
955
+ animation-name: antZoomBigIn;
956
+ animation-play-state: running;
957
+ }
958
+ .ant-zoom-big-fast-leave.ant-zoom-big-fast-leave-active {
959
+ animation-name: antZoomBigOut;
960
+ animation-play-state: running;
1339
961
  pointer-events: none;
1340
962
  }
1341
- .zoom-big-fast-enter,
1342
- .zoom-big-fast-appear {
963
+ .ant-zoom-big-fast-enter,
964
+ .ant-zoom-big-fast-appear {
1343
965
  transform: scale(0);
1344
966
  opacity: 0;
1345
- -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1346
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
967
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1347
968
  }
1348
- .zoom-big-fast-enter-prepare,
1349
- .zoom-big-fast-appear-prepare {
969
+ .ant-zoom-big-fast-enter-prepare,
970
+ .ant-zoom-big-fast-appear-prepare {
1350
971
  transform: none;
1351
972
  }
1352
- .zoom-big-fast-leave {
1353
- -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1354
- animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1355
- }
1356
- .zoom-up-enter,
1357
- .zoom-up-appear {
1358
- -webkit-animation-duration: 0.2s;
1359
- animation-duration: 0.2s;
1360
- -webkit-animation-fill-mode: both;
1361
- animation-fill-mode: both;
1362
- -webkit-animation-play-state: paused;
1363
- animation-play-state: paused;
1364
- }
1365
- .zoom-up-leave {
1366
- -webkit-animation-duration: 0.2s;
1367
- animation-duration: 0.2s;
1368
- -webkit-animation-fill-mode: both;
1369
- animation-fill-mode: both;
1370
- -webkit-animation-play-state: paused;
1371
- animation-play-state: paused;
1372
- }
1373
- .zoom-up-enter.zoom-up-enter-active,
1374
- .zoom-up-appear.zoom-up-appear-active {
1375
- -webkit-animation-name: antZoomUpIn;
1376
- animation-name: antZoomUpIn;
1377
- -webkit-animation-play-state: running;
1378
- animation-play-state: running;
1379
- }
1380
- .zoom-up-leave.zoom-up-leave-active {
1381
- -webkit-animation-name: antZoomUpOut;
1382
- animation-name: antZoomUpOut;
1383
- -webkit-animation-play-state: running;
1384
- animation-play-state: running;
973
+ .ant-zoom-big-fast-leave {
974
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
975
+ }
976
+ .ant-zoom-up-enter,
977
+ .ant-zoom-up-appear {
978
+ animation-duration: 0.2s;
979
+ animation-fill-mode: both;
980
+ animation-play-state: paused;
981
+ }
982
+ .ant-zoom-up-leave {
983
+ animation-duration: 0.2s;
984
+ animation-fill-mode: both;
985
+ animation-play-state: paused;
986
+ }
987
+ .ant-zoom-up-enter.ant-zoom-up-enter-active,
988
+ .ant-zoom-up-appear.ant-zoom-up-appear-active {
989
+ animation-name: antZoomUpIn;
990
+ animation-play-state: running;
991
+ }
992
+ .ant-zoom-up-leave.ant-zoom-up-leave-active {
993
+ animation-name: antZoomUpOut;
994
+ animation-play-state: running;
1385
995
  pointer-events: none;
1386
996
  }
1387
- .zoom-up-enter,
1388
- .zoom-up-appear {
997
+ .ant-zoom-up-enter,
998
+ .ant-zoom-up-appear {
1389
999
  transform: scale(0);
1390
1000
  opacity: 0;
1391
- -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1392
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1001
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1393
1002
  }
1394
- .zoom-up-enter-prepare,
1395
- .zoom-up-appear-prepare {
1003
+ .ant-zoom-up-enter-prepare,
1004
+ .ant-zoom-up-appear-prepare {
1396
1005
  transform: none;
1397
1006
  }
1398
- .zoom-up-leave {
1399
- -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1400
- animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1401
- }
1402
- .zoom-down-enter,
1403
- .zoom-down-appear {
1404
- -webkit-animation-duration: 0.2s;
1405
- animation-duration: 0.2s;
1406
- -webkit-animation-fill-mode: both;
1407
- animation-fill-mode: both;
1408
- -webkit-animation-play-state: paused;
1409
- animation-play-state: paused;
1410
- }
1411
- .zoom-down-leave {
1412
- -webkit-animation-duration: 0.2s;
1413
- animation-duration: 0.2s;
1414
- -webkit-animation-fill-mode: both;
1415
- animation-fill-mode: both;
1416
- -webkit-animation-play-state: paused;
1417
- animation-play-state: paused;
1418
- }
1419
- .zoom-down-enter.zoom-down-enter-active,
1420
- .zoom-down-appear.zoom-down-appear-active {
1421
- -webkit-animation-name: antZoomDownIn;
1422
- animation-name: antZoomDownIn;
1423
- -webkit-animation-play-state: running;
1424
- animation-play-state: running;
1425
- }
1426
- .zoom-down-leave.zoom-down-leave-active {
1427
- -webkit-animation-name: antZoomDownOut;
1428
- animation-name: antZoomDownOut;
1429
- -webkit-animation-play-state: running;
1430
- animation-play-state: running;
1007
+ .ant-zoom-up-leave {
1008
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1009
+ }
1010
+ .ant-zoom-down-enter,
1011
+ .ant-zoom-down-appear {
1012
+ animation-duration: 0.2s;
1013
+ animation-fill-mode: both;
1014
+ animation-play-state: paused;
1015
+ }
1016
+ .ant-zoom-down-leave {
1017
+ animation-duration: 0.2s;
1018
+ animation-fill-mode: both;
1019
+ animation-play-state: paused;
1020
+ }
1021
+ .ant-zoom-down-enter.ant-zoom-down-enter-active,
1022
+ .ant-zoom-down-appear.ant-zoom-down-appear-active {
1023
+ animation-name: antZoomDownIn;
1024
+ animation-play-state: running;
1025
+ }
1026
+ .ant-zoom-down-leave.ant-zoom-down-leave-active {
1027
+ animation-name: antZoomDownOut;
1028
+ animation-play-state: running;
1431
1029
  pointer-events: none;
1432
1030
  }
1433
- .zoom-down-enter,
1434
- .zoom-down-appear {
1031
+ .ant-zoom-down-enter,
1032
+ .ant-zoom-down-appear {
1435
1033
  transform: scale(0);
1436
1034
  opacity: 0;
1437
- -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1438
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1035
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1439
1036
  }
1440
- .zoom-down-enter-prepare,
1441
- .zoom-down-appear-prepare {
1037
+ .ant-zoom-down-enter-prepare,
1038
+ .ant-zoom-down-appear-prepare {
1442
1039
  transform: none;
1443
1040
  }
1444
- .zoom-down-leave {
1445
- -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1446
- animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1447
- }
1448
- .zoom-left-enter,
1449
- .zoom-left-appear {
1450
- -webkit-animation-duration: 0.2s;
1451
- animation-duration: 0.2s;
1452
- -webkit-animation-fill-mode: both;
1453
- animation-fill-mode: both;
1454
- -webkit-animation-play-state: paused;
1455
- animation-play-state: paused;
1456
- }
1457
- .zoom-left-leave {
1458
- -webkit-animation-duration: 0.2s;
1459
- animation-duration: 0.2s;
1460
- -webkit-animation-fill-mode: both;
1461
- animation-fill-mode: both;
1462
- -webkit-animation-play-state: paused;
1463
- animation-play-state: paused;
1464
- }
1465
- .zoom-left-enter.zoom-left-enter-active,
1466
- .zoom-left-appear.zoom-left-appear-active {
1467
- -webkit-animation-name: antZoomLeftIn;
1468
- animation-name: antZoomLeftIn;
1469
- -webkit-animation-play-state: running;
1470
- animation-play-state: running;
1471
- }
1472
- .zoom-left-leave.zoom-left-leave-active {
1473
- -webkit-animation-name: antZoomLeftOut;
1474
- animation-name: antZoomLeftOut;
1475
- -webkit-animation-play-state: running;
1476
- animation-play-state: running;
1041
+ .ant-zoom-down-leave {
1042
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1043
+ }
1044
+ .ant-zoom-left-enter,
1045
+ .ant-zoom-left-appear {
1046
+ animation-duration: 0.2s;
1047
+ animation-fill-mode: both;
1048
+ animation-play-state: paused;
1049
+ }
1050
+ .ant-zoom-left-leave {
1051
+ animation-duration: 0.2s;
1052
+ animation-fill-mode: both;
1053
+ animation-play-state: paused;
1054
+ }
1055
+ .ant-zoom-left-enter.ant-zoom-left-enter-active,
1056
+ .ant-zoom-left-appear.ant-zoom-left-appear-active {
1057
+ animation-name: antZoomLeftIn;
1058
+ animation-play-state: running;
1059
+ }
1060
+ .ant-zoom-left-leave.ant-zoom-left-leave-active {
1061
+ animation-name: antZoomLeftOut;
1062
+ animation-play-state: running;
1477
1063
  pointer-events: none;
1478
1064
  }
1479
- .zoom-left-enter,
1480
- .zoom-left-appear {
1065
+ .ant-zoom-left-enter,
1066
+ .ant-zoom-left-appear {
1481
1067
  transform: scale(0);
1482
1068
  opacity: 0;
1483
- -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1484
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1069
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1485
1070
  }
1486
- .zoom-left-enter-prepare,
1487
- .zoom-left-appear-prepare {
1071
+ .ant-zoom-left-enter-prepare,
1072
+ .ant-zoom-left-appear-prepare {
1488
1073
  transform: none;
1489
1074
  }
1490
- .zoom-left-leave {
1491
- -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1492
- animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1493
- }
1494
- .zoom-right-enter,
1495
- .zoom-right-appear {
1496
- -webkit-animation-duration: 0.2s;
1497
- animation-duration: 0.2s;
1498
- -webkit-animation-fill-mode: both;
1499
- animation-fill-mode: both;
1500
- -webkit-animation-play-state: paused;
1501
- animation-play-state: paused;
1502
- }
1503
- .zoom-right-leave {
1504
- -webkit-animation-duration: 0.2s;
1505
- animation-duration: 0.2s;
1506
- -webkit-animation-fill-mode: both;
1507
- animation-fill-mode: both;
1508
- -webkit-animation-play-state: paused;
1509
- animation-play-state: paused;
1510
- }
1511
- .zoom-right-enter.zoom-right-enter-active,
1512
- .zoom-right-appear.zoom-right-appear-active {
1513
- -webkit-animation-name: antZoomRightIn;
1514
- animation-name: antZoomRightIn;
1515
- -webkit-animation-play-state: running;
1516
- animation-play-state: running;
1517
- }
1518
- .zoom-right-leave.zoom-right-leave-active {
1519
- -webkit-animation-name: antZoomRightOut;
1520
- animation-name: antZoomRightOut;
1521
- -webkit-animation-play-state: running;
1522
- animation-play-state: running;
1075
+ .ant-zoom-left-leave {
1076
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1077
+ }
1078
+ .ant-zoom-right-enter,
1079
+ .ant-zoom-right-appear {
1080
+ animation-duration: 0.2s;
1081
+ animation-fill-mode: both;
1082
+ animation-play-state: paused;
1083
+ }
1084
+ .ant-zoom-right-leave {
1085
+ animation-duration: 0.2s;
1086
+ animation-fill-mode: both;
1087
+ animation-play-state: paused;
1088
+ }
1089
+ .ant-zoom-right-enter.ant-zoom-right-enter-active,
1090
+ .ant-zoom-right-appear.ant-zoom-right-appear-active {
1091
+ animation-name: antZoomRightIn;
1092
+ animation-play-state: running;
1093
+ }
1094
+ .ant-zoom-right-leave.ant-zoom-right-leave-active {
1095
+ animation-name: antZoomRightOut;
1096
+ animation-play-state: running;
1523
1097
  pointer-events: none;
1524
1098
  }
1525
- .zoom-right-enter,
1526
- .zoom-right-appear {
1099
+ .ant-zoom-right-enter,
1100
+ .ant-zoom-right-appear {
1527
1101
  transform: scale(0);
1528
1102
  opacity: 0;
1529
- -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1530
- animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1103
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1531
1104
  }
1532
- .zoom-right-enter-prepare,
1533
- .zoom-right-appear-prepare {
1105
+ .ant-zoom-right-enter-prepare,
1106
+ .ant-zoom-right-appear-prepare {
1534
1107
  transform: none;
1535
1108
  }
1536
- .zoom-right-leave {
1537
- -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1538
- animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1539
- }
1540
- @-webkit-keyframes antZoomIn {
1541
- 0% {
1542
- transform: scale(0.2);
1543
- opacity: 0;
1544
- }
1545
- 100% {
1546
- transform: scale(1);
1547
- opacity: 1;
1548
- }
1109
+ .ant-zoom-right-leave {
1110
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1549
1111
  }
1550
1112
  @keyframes antZoomIn {
1551
1113
  0% {
@@ -1557,15 +1119,6 @@ html {
1557
1119
  opacity: 1;
1558
1120
  }
1559
1121
  }
1560
- @-webkit-keyframes antZoomOut {
1561
- 0% {
1562
- transform: scale(1);
1563
- }
1564
- 100% {
1565
- transform: scale(0.2);
1566
- opacity: 0;
1567
- }
1568
- }
1569
1122
  @keyframes antZoomOut {
1570
1123
  0% {
1571
1124
  transform: scale(1);
@@ -1575,16 +1128,6 @@ html {
1575
1128
  opacity: 0;
1576
1129
  }
1577
1130
  }
1578
- @-webkit-keyframes antZoomBigIn {
1579
- 0% {
1580
- transform: scale(0.8);
1581
- opacity: 0;
1582
- }
1583
- 100% {
1584
- transform: scale(1);
1585
- opacity: 1;
1586
- }
1587
- }
1588
1131
  @keyframes antZoomBigIn {
1589
1132
  0% {
1590
1133
  transform: scale(0.8);
@@ -1595,15 +1138,6 @@ html {
1595
1138
  opacity: 1;
1596
1139
  }
1597
1140
  }
1598
- @-webkit-keyframes antZoomBigOut {
1599
- 0% {
1600
- transform: scale(1);
1601
- }
1602
- 100% {
1603
- transform: scale(0.8);
1604
- opacity: 0;
1605
- }
1606
- }
1607
1141
  @keyframes antZoomBigOut {
1608
1142
  0% {
1609
1143
  transform: scale(1);
@@ -1613,17 +1147,6 @@ html {
1613
1147
  opacity: 0;
1614
1148
  }
1615
1149
  }
1616
- @-webkit-keyframes antZoomUpIn {
1617
- 0% {
1618
- transform: scale(0.8);
1619
- transform-origin: 50% 0%;
1620
- opacity: 0;
1621
- }
1622
- 100% {
1623
- transform: scale(1);
1624
- transform-origin: 50% 0%;
1625
- }
1626
- }
1627
1150
  @keyframes antZoomUpIn {
1628
1151
  0% {
1629
1152
  transform: scale(0.8);
@@ -1635,17 +1158,6 @@ html {
1635
1158
  transform-origin: 50% 0%;
1636
1159
  }
1637
1160
  }
1638
- @-webkit-keyframes antZoomUpOut {
1639
- 0% {
1640
- transform: scale(1);
1641
- transform-origin: 50% 0%;
1642
- }
1643
- 100% {
1644
- transform: scale(0.8);
1645
- transform-origin: 50% 0%;
1646
- opacity: 0;
1647
- }
1648
- }
1649
1161
  @keyframes antZoomUpOut {
1650
1162
  0% {
1651
1163
  transform: scale(1);
@@ -1657,17 +1169,6 @@ html {
1657
1169
  opacity: 0;
1658
1170
  }
1659
1171
  }
1660
- @-webkit-keyframes antZoomLeftIn {
1661
- 0% {
1662
- transform: scale(0.8);
1663
- transform-origin: 0% 50%;
1664
- opacity: 0;
1665
- }
1666
- 100% {
1667
- transform: scale(1);
1668
- transform-origin: 0% 50%;
1669
- }
1670
- }
1671
1172
  @keyframes antZoomLeftIn {
1672
1173
  0% {
1673
1174
  transform: scale(0.8);
@@ -1679,17 +1180,6 @@ html {
1679
1180
  transform-origin: 0% 50%;
1680
1181
  }
1681
1182
  }
1682
- @-webkit-keyframes antZoomLeftOut {
1683
- 0% {
1684
- transform: scale(1);
1685
- transform-origin: 0% 50%;
1686
- }
1687
- 100% {
1688
- transform: scale(0.8);
1689
- transform-origin: 0% 50%;
1690
- opacity: 0;
1691
- }
1692
- }
1693
1183
  @keyframes antZoomLeftOut {
1694
1184
  0% {
1695
1185
  transform: scale(1);
@@ -1701,17 +1191,6 @@ html {
1701
1191
  opacity: 0;
1702
1192
  }
1703
1193
  }
1704
- @-webkit-keyframes antZoomRightIn {
1705
- 0% {
1706
- transform: scale(0.8);
1707
- transform-origin: 100% 50%;
1708
- opacity: 0;
1709
- }
1710
- 100% {
1711
- transform: scale(1);
1712
- transform-origin: 100% 50%;
1713
- }
1714
- }
1715
1194
  @keyframes antZoomRightIn {
1716
1195
  0% {
1717
1196
  transform: scale(0.8);
@@ -1723,17 +1202,6 @@ html {
1723
1202
  transform-origin: 100% 50%;
1724
1203
  }
1725
1204
  }
1726
- @-webkit-keyframes antZoomRightOut {
1727
- 0% {
1728
- transform: scale(1);
1729
- transform-origin: 100% 50%;
1730
- }
1731
- 100% {
1732
- transform: scale(0.8);
1733
- transform-origin: 100% 50%;
1734
- opacity: 0;
1735
- }
1736
- }
1737
1205
  @keyframes antZoomRightOut {
1738
1206
  0% {
1739
1207
  transform: scale(1);
@@ -1745,17 +1213,6 @@ html {
1745
1213
  opacity: 0;
1746
1214
  }
1747
1215
  }
1748
- @-webkit-keyframes antZoomDownIn {
1749
- 0% {
1750
- transform: scale(0.8);
1751
- transform-origin: 50% 100%;
1752
- opacity: 0;
1753
- }
1754
- 100% {
1755
- transform: scale(1);
1756
- transform-origin: 50% 100%;
1757
- }
1758
- }
1759
1216
  @keyframes antZoomDownIn {
1760
1217
  0% {
1761
1218
  transform: scale(0.8);
@@ -1767,17 +1224,6 @@ html {
1767
1224
  transform-origin: 50% 100%;
1768
1225
  }
1769
1226
  }
1770
- @-webkit-keyframes antZoomDownOut {
1771
- 0% {
1772
- transform: scale(1);
1773
- transform-origin: 50% 100%;
1774
- }
1775
- 100% {
1776
- transform: scale(0.8);
1777
- transform-origin: 50% 100%;
1778
- opacity: 0;
1779
- }
1780
- }
1781
1227
  @keyframes antZoomDownOut {
1782
1228
  0% {
1783
1229
  transform: scale(1);
@@ -1812,18 +1258,6 @@ html {
1812
1258
  border-radius: 10px;
1813
1259
  background-color: #555;
1814
1260
  }
1815
- @-webkit-keyframes header-slideInDown {
1816
- 0% {
1817
- opacity: 0;
1818
- margin-bottom: 0;
1819
- transform: translateY(-10px);
1820
- }
1821
- to {
1822
- opacity: 1;
1823
- margin-bottom: 10px;
1824
- transform: translateY(0);
1825
- }
1826
- }
1827
1261
  @keyframes header-slideInDown {
1828
1262
  0% {
1829
1263
  opacity: 0;
@@ -1908,12 +1342,9 @@ html {
1908
1342
  vertical-align: top;
1909
1343
  }
1910
1344
  .omni-header-nav .omni-topnav-all.omni-topnav-all-hover .omni-topnav-all-menu-inner {
1911
- -webkit-animation-duration: 0.5s;
1912
- animation-duration: 0.5s;
1913
- -webkit-animation-fill-mode: both;
1914
- animation-fill-mode: both;
1915
- -webkit-animation-name: header-slideInDown;
1916
- animation-name: header-slideInDown;
1345
+ animation-duration: 0.5s;
1346
+ animation-fill-mode: both;
1347
+ animation-name: header-slideInDown;
1917
1348
  }
1918
1349
  .omni-header-nav .omni-topnav-all.omni-topnav-all-hover .omni-topnav-all-menu {
1919
1350
  display: block;
@@ -1989,14 +1420,13 @@ html {
1989
1420
  margin: 20px 10px 50px 0px;
1990
1421
  -webkit-column-count: 3;
1991
1422
  -webkit-column-gap: 10px;
1992
- -webkit-column-fill: auto;
1993
1423
  -moz-column-count: 3;
1994
1424
  -moz-column-gap: 10px;
1995
- -moz-column-fill: auto;
1996
1425
  column-count: 3;
1997
1426
  -moz-column-gap: 15px;
1998
1427
  column-gap: 15px;
1999
- column-fill: auto;
1428
+ -moz-column-fill: balance;
1429
+ column-fill: balance;
2000
1430
  row-gap: 200px;
2001
1431
  font-size: 14px;
2002
1432
  }
@@ -2006,6 +1436,7 @@ html {
2006
1436
  padding: 20px;
2007
1437
  word-wrap: break-word;
2008
1438
  margin-bottom: 20px;
1439
+ -webkit-column-break-inside: avoid;
2009
1440
  -moz-column-break-inside: avoid;
2010
1441
  column-break-inside: avoid;
2011
1442
  break-inside: avoid;
@@ -2119,14 +1550,6 @@ html {
2119
1550
  border-radius: 0 !important;
2120
1551
  }
2121
1552
  }
2122
- @-webkit-keyframes header-fadeInRightBig {
2123
- from {
2124
- transform: translate3d(300px, 0, 0);
2125
- }
2126
- to {
2127
- transform: none;
2128
- }
2129
- }
2130
1553
  @keyframes header-fadeInRightBig {
2131
1554
  from {
2132
1555
  transform: translate3d(300px, 0, 0);
@@ -2290,17 +1713,14 @@ html {
2290
1713
  display: none;
2291
1714
  right: 0;
2292
1715
  top: 0;
2293
- -webkit-animation-duration: 0.4s;
2294
- animation-duration: 0.4s;
2295
- -webkit-animation-fill-mode: both;
2296
- animation-fill-mode: both;
1716
+ animation-duration: 0.4s;
1717
+ animation-fill-mode: both;
2297
1718
  z-index: 100;
2298
1719
  height: 100%;
2299
1720
  box-shadow: -3px -3px 8px rgba(0, 0, 0, 0.2);
2300
1721
  }
2301
1722
  .omni-layout-app .omni-notice-box.show {
2302
- -webkit-animation-name: header-fadeInRightBig;
2303
- animation-name: header-fadeInRightBig;
1723
+ animation-name: header-fadeInRightBig;
2304
1724
  display: block;
2305
1725
  }
2306
1726
  .omni-layout-app .omni-notice-box .tool-inner {
@@ -2385,6 +1805,7 @@ html {
2385
1805
  line-height: 21px;
2386
1806
  max-height: 21px;
2387
1807
  display: -webkit-box;
1808
+ -webkit-box-orient: vertical;
2388
1809
  -webkit-line-clamp: 1;
2389
1810
  overflow: hidden;
2390
1811
  font-size: 12px;
@@ -2525,7 +1946,6 @@ html {
2525
1946
  transition: all 0.3s;
2526
1947
  -webkit-user-select: none;
2527
1948
  -moz-user-select: none;
2528
- -ms-user-select: none;
2529
1949
  user-select: none;
2530
1950
  }
2531
1951
  .bottomBar div:hover {