@jiaozhiye/qm-design-react 1.6.6 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -411,58 +411,37 @@ mark {
411
411
  .anticon-spin,
412
412
  .anticon-spin::before {
413
413
  display: inline-block;
414
- -webkit-animation: loadingCircle 1s infinite linear;
415
414
  animation: loadingCircle 1s infinite linear;
416
415
  }
417
416
  .ant-fade-enter,
418
417
  .ant-fade-appear {
419
- -webkit-animation-duration: 0.2s;
420
418
  animation-duration: 0.2s;
421
- -webkit-animation-fill-mode: both;
422
419
  animation-fill-mode: both;
423
- -webkit-animation-play-state: paused;
424
420
  animation-play-state: paused;
425
421
  }
426
422
  .ant-fade-leave {
427
- -webkit-animation-duration: 0.2s;
428
423
  animation-duration: 0.2s;
429
- -webkit-animation-fill-mode: both;
430
424
  animation-fill-mode: both;
431
- -webkit-animation-play-state: paused;
432
425
  animation-play-state: paused;
433
426
  }
434
427
  .ant-fade-enter.ant-fade-enter-active,
435
428
  .ant-fade-appear.ant-fade-appear-active {
436
- -webkit-animation-name: antFadeIn;
437
429
  animation-name: antFadeIn;
438
- -webkit-animation-play-state: running;
439
430
  animation-play-state: running;
440
431
  }
441
432
  .ant-fade-leave.ant-fade-leave-active {
442
- -webkit-animation-name: antFadeOut;
443
433
  animation-name: antFadeOut;
444
- -webkit-animation-play-state: running;
445
434
  animation-play-state: running;
446
435
  pointer-events: none;
447
436
  }
448
437
  .ant-fade-enter,
449
438
  .ant-fade-appear {
450
439
  opacity: 0;
451
- -webkit-animation-timing-function: linear;
452
440
  animation-timing-function: linear;
453
441
  }
454
442
  .ant-fade-leave {
455
- -webkit-animation-timing-function: linear;
456
443
  animation-timing-function: linear;
457
444
  }
458
- @-webkit-keyframes antFadeIn {
459
- 0% {
460
- opacity: 0;
461
- }
462
- 100% {
463
- opacity: 1;
464
- }
465
- }
466
445
  @keyframes antFadeIn {
467
446
  0% {
468
447
  opacity: 0;
@@ -471,14 +450,6 @@ mark {
471
450
  opacity: 1;
472
451
  }
473
452
  }
474
- @-webkit-keyframes antFadeOut {
475
- 0% {
476
- opacity: 1;
477
- }
478
- 100% {
479
- opacity: 0;
480
- }
481
- }
482
453
  @keyframes antFadeOut {
483
454
  0% {
484
455
  opacity: 1;
@@ -489,180 +460,120 @@ mark {
489
460
  }
490
461
  .ant-move-up-enter,
491
462
  .ant-move-up-appear {
492
- -webkit-animation-duration: 0.2s;
493
463
  animation-duration: 0.2s;
494
- -webkit-animation-fill-mode: both;
495
464
  animation-fill-mode: both;
496
- -webkit-animation-play-state: paused;
497
465
  animation-play-state: paused;
498
466
  }
499
467
  .ant-move-up-leave {
500
- -webkit-animation-duration: 0.2s;
501
468
  animation-duration: 0.2s;
502
- -webkit-animation-fill-mode: both;
503
469
  animation-fill-mode: both;
504
- -webkit-animation-play-state: paused;
505
470
  animation-play-state: paused;
506
471
  }
507
472
  .ant-move-up-enter.ant-move-up-enter-active,
508
473
  .ant-move-up-appear.ant-move-up-appear-active {
509
- -webkit-animation-name: antMoveUpIn;
510
474
  animation-name: antMoveUpIn;
511
- -webkit-animation-play-state: running;
512
475
  animation-play-state: running;
513
476
  }
514
477
  .ant-move-up-leave.ant-move-up-leave-active {
515
- -webkit-animation-name: antMoveUpOut;
516
478
  animation-name: antMoveUpOut;
517
- -webkit-animation-play-state: running;
518
479
  animation-play-state: running;
519
480
  pointer-events: none;
520
481
  }
521
482
  .ant-move-up-enter,
522
483
  .ant-move-up-appear {
523
484
  opacity: 0;
524
- -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
525
485
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
526
486
  }
527
487
  .ant-move-up-leave {
528
- -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
529
488
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
530
489
  }
531
490
  .ant-move-down-enter,
532
491
  .ant-move-down-appear {
533
- -webkit-animation-duration: 0.2s;
534
492
  animation-duration: 0.2s;
535
- -webkit-animation-fill-mode: both;
536
493
  animation-fill-mode: both;
537
- -webkit-animation-play-state: paused;
538
494
  animation-play-state: paused;
539
495
  }
540
496
  .ant-move-down-leave {
541
- -webkit-animation-duration: 0.2s;
542
497
  animation-duration: 0.2s;
543
- -webkit-animation-fill-mode: both;
544
498
  animation-fill-mode: both;
545
- -webkit-animation-play-state: paused;
546
499
  animation-play-state: paused;
547
500
  }
548
501
  .ant-move-down-enter.ant-move-down-enter-active,
549
502
  .ant-move-down-appear.ant-move-down-appear-active {
550
- -webkit-animation-name: antMoveDownIn;
551
503
  animation-name: antMoveDownIn;
552
- -webkit-animation-play-state: running;
553
504
  animation-play-state: running;
554
505
  }
555
506
  .ant-move-down-leave.ant-move-down-leave-active {
556
- -webkit-animation-name: antMoveDownOut;
557
507
  animation-name: antMoveDownOut;
558
- -webkit-animation-play-state: running;
559
508
  animation-play-state: running;
560
509
  pointer-events: none;
561
510
  }
562
511
  .ant-move-down-enter,
563
512
  .ant-move-down-appear {
564
513
  opacity: 0;
565
- -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
566
514
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
567
515
  }
568
516
  .ant-move-down-leave {
569
- -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
570
517
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
571
518
  }
572
519
  .ant-move-left-enter,
573
520
  .ant-move-left-appear {
574
- -webkit-animation-duration: 0.2s;
575
521
  animation-duration: 0.2s;
576
- -webkit-animation-fill-mode: both;
577
522
  animation-fill-mode: both;
578
- -webkit-animation-play-state: paused;
579
523
  animation-play-state: paused;
580
524
  }
581
525
  .ant-move-left-leave {
582
- -webkit-animation-duration: 0.2s;
583
526
  animation-duration: 0.2s;
584
- -webkit-animation-fill-mode: both;
585
527
  animation-fill-mode: both;
586
- -webkit-animation-play-state: paused;
587
528
  animation-play-state: paused;
588
529
  }
589
530
  .ant-move-left-enter.ant-move-left-enter-active,
590
531
  .ant-move-left-appear.ant-move-left-appear-active {
591
- -webkit-animation-name: antMoveLeftIn;
592
532
  animation-name: antMoveLeftIn;
593
- -webkit-animation-play-state: running;
594
533
  animation-play-state: running;
595
534
  }
596
535
  .ant-move-left-leave.ant-move-left-leave-active {
597
- -webkit-animation-name: antMoveLeftOut;
598
536
  animation-name: antMoveLeftOut;
599
- -webkit-animation-play-state: running;
600
537
  animation-play-state: running;
601
538
  pointer-events: none;
602
539
  }
603
540
  .ant-move-left-enter,
604
541
  .ant-move-left-appear {
605
542
  opacity: 0;
606
- -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
607
543
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
608
544
  }
609
545
  .ant-move-left-leave {
610
- -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
611
546
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
612
547
  }
613
548
  .ant-move-right-enter,
614
549
  .ant-move-right-appear {
615
- -webkit-animation-duration: 0.2s;
616
550
  animation-duration: 0.2s;
617
- -webkit-animation-fill-mode: both;
618
551
  animation-fill-mode: both;
619
- -webkit-animation-play-state: paused;
620
552
  animation-play-state: paused;
621
553
  }
622
554
  .ant-move-right-leave {
623
- -webkit-animation-duration: 0.2s;
624
555
  animation-duration: 0.2s;
625
- -webkit-animation-fill-mode: both;
626
556
  animation-fill-mode: both;
627
- -webkit-animation-play-state: paused;
628
557
  animation-play-state: paused;
629
558
  }
630
559
  .ant-move-right-enter.ant-move-right-enter-active,
631
560
  .ant-move-right-appear.ant-move-right-appear-active {
632
- -webkit-animation-name: antMoveRightIn;
633
561
  animation-name: antMoveRightIn;
634
- -webkit-animation-play-state: running;
635
562
  animation-play-state: running;
636
563
  }
637
564
  .ant-move-right-leave.ant-move-right-leave-active {
638
- -webkit-animation-name: antMoveRightOut;
639
565
  animation-name: antMoveRightOut;
640
- -webkit-animation-play-state: running;
641
566
  animation-play-state: running;
642
567
  pointer-events: none;
643
568
  }
644
569
  .ant-move-right-enter,
645
570
  .ant-move-right-appear {
646
571
  opacity: 0;
647
- -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
648
572
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
649
573
  }
650
574
  .ant-move-right-leave {
651
- -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
652
575
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
653
576
  }
654
- @-webkit-keyframes antMoveDownIn {
655
- 0% {
656
- transform: translateY(100%);
657
- transform-origin: 0 0;
658
- opacity: 0;
659
- }
660
- 100% {
661
- transform: translateY(0%);
662
- transform-origin: 0 0;
663
- opacity: 1;
664
- }
665
- }
666
577
  @keyframes antMoveDownIn {
667
578
  0% {
668
579
  transform: translateY(100%);
@@ -675,18 +586,6 @@ mark {
675
586
  opacity: 1;
676
587
  }
677
588
  }
678
- @-webkit-keyframes antMoveDownOut {
679
- 0% {
680
- transform: translateY(0%);
681
- transform-origin: 0 0;
682
- opacity: 1;
683
- }
684
- 100% {
685
- transform: translateY(100%);
686
- transform-origin: 0 0;
687
- opacity: 0;
688
- }
689
- }
690
589
  @keyframes antMoveDownOut {
691
590
  0% {
692
591
  transform: translateY(0%);
@@ -699,18 +598,6 @@ mark {
699
598
  opacity: 0;
700
599
  }
701
600
  }
702
- @-webkit-keyframes antMoveLeftIn {
703
- 0% {
704
- transform: translateX(-100%);
705
- transform-origin: 0 0;
706
- opacity: 0;
707
- }
708
- 100% {
709
- transform: translateX(0%);
710
- transform-origin: 0 0;
711
- opacity: 1;
712
- }
713
- }
714
601
  @keyframes antMoveLeftIn {
715
602
  0% {
716
603
  transform: translateX(-100%);
@@ -723,18 +610,6 @@ mark {
723
610
  opacity: 1;
724
611
  }
725
612
  }
726
- @-webkit-keyframes antMoveLeftOut {
727
- 0% {
728
- transform: translateX(0%);
729
- transform-origin: 0 0;
730
- opacity: 1;
731
- }
732
- 100% {
733
- transform: translateX(-100%);
734
- transform-origin: 0 0;
735
- opacity: 0;
736
- }
737
- }
738
613
  @keyframes antMoveLeftOut {
739
614
  0% {
740
615
  transform: translateX(0%);
@@ -747,18 +622,6 @@ mark {
747
622
  opacity: 0;
748
623
  }
749
624
  }
750
- @-webkit-keyframes antMoveRightIn {
751
- 0% {
752
- transform: translateX(100%);
753
- transform-origin: 0 0;
754
- opacity: 0;
755
- }
756
- 100% {
757
- transform: translateX(0%);
758
- transform-origin: 0 0;
759
- opacity: 1;
760
- }
761
- }
762
625
  @keyframes antMoveRightIn {
763
626
  0% {
764
627
  transform: translateX(100%);
@@ -771,18 +634,6 @@ mark {
771
634
  opacity: 1;
772
635
  }
773
636
  }
774
- @-webkit-keyframes antMoveRightOut {
775
- 0% {
776
- transform: translateX(0%);
777
- transform-origin: 0 0;
778
- opacity: 1;
779
- }
780
- 100% {
781
- transform: translateX(100%);
782
- transform-origin: 0 0;
783
- opacity: 0;
784
- }
785
- }
786
637
  @keyframes antMoveRightOut {
787
638
  0% {
788
639
  transform: translateX(0%);
@@ -795,18 +646,6 @@ mark {
795
646
  opacity: 0;
796
647
  }
797
648
  }
798
- @-webkit-keyframes antMoveUpIn {
799
- 0% {
800
- transform: translateY(-100%);
801
- transform-origin: 0 0;
802
- opacity: 0;
803
- }
804
- 100% {
805
- transform: translateY(0%);
806
- transform-origin: 0 0;
807
- opacity: 1;
808
- }
809
- }
810
649
  @keyframes antMoveUpIn {
811
650
  0% {
812
651
  transform: translateY(-100%);
@@ -819,18 +658,6 @@ mark {
819
658
  opacity: 1;
820
659
  }
821
660
  }
822
- @-webkit-keyframes antMoveUpOut {
823
- 0% {
824
- transform: translateY(0%);
825
- transform-origin: 0 0;
826
- opacity: 1;
827
- }
828
- 100% {
829
- transform: translateY(-100%);
830
- transform-origin: 0 0;
831
- opacity: 0;
832
- }
833
- }
834
661
  @keyframes antMoveUpOut {
835
662
  0% {
836
663
  transform: translateY(0%);
@@ -843,11 +670,6 @@ mark {
843
670
  opacity: 0;
844
671
  }
845
672
  }
846
- @-webkit-keyframes loadingCircle {
847
- 100% {
848
- transform: rotate(360deg);
849
- }
850
- }
851
673
  @keyframes loadingCircle {
852
674
  100% {
853
675
  transform: rotate(360deg);
@@ -873,30 +695,17 @@ html {
873
695
  box-shadow: 0 0 0 0 var(--ant-primary-color);
874
696
  box-shadow: 0 0 0 0 var(--antd-wave-shadow-color);
875
697
  opacity: 0.2;
876
- -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);
877
698
  animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1), waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
878
- -webkit-animation-fill-mode: forwards;
879
699
  animation-fill-mode: forwards;
880
700
  content: '';
881
701
  pointer-events: none;
882
702
  }
883
- @-webkit-keyframes waveEffect {
884
- 100% {
885
- box-shadow: 0 0 0 var(--ant-primary-color);
886
- box-shadow: 0 0 0 6px var(--antd-wave-shadow-color);
887
- }
888
- }
889
703
  @keyframes waveEffect {
890
704
  100% {
891
705
  box-shadow: 0 0 0 var(--ant-primary-color);
892
706
  box-shadow: 0 0 0 6px var(--antd-wave-shadow-color);
893
707
  }
894
708
  }
895
- @-webkit-keyframes fadeEffect {
896
- 100% {
897
- opacity: 0;
898
- }
899
- }
900
709
  @keyframes fadeEffect {
901
710
  100% {
902
711
  opacity: 0;
@@ -904,180 +713,128 @@ html {
904
713
  }
905
714
  .ant-slide-up-enter,
906
715
  .ant-slide-up-appear {
907
- -webkit-animation-duration: 0.2s;
908
716
  animation-duration: 0.2s;
909
- -webkit-animation-fill-mode: both;
910
717
  animation-fill-mode: both;
911
- -webkit-animation-play-state: paused;
912
718
  animation-play-state: paused;
913
719
  }
914
720
  .ant-slide-up-leave {
915
- -webkit-animation-duration: 0.2s;
916
721
  animation-duration: 0.2s;
917
- -webkit-animation-fill-mode: both;
918
722
  animation-fill-mode: both;
919
- -webkit-animation-play-state: paused;
920
723
  animation-play-state: paused;
921
724
  }
922
725
  .ant-slide-up-enter.ant-slide-up-enter-active,
923
726
  .ant-slide-up-appear.ant-slide-up-appear-active {
924
- -webkit-animation-name: antSlideUpIn;
925
727
  animation-name: antSlideUpIn;
926
- -webkit-animation-play-state: running;
927
728
  animation-play-state: running;
928
729
  }
929
730
  .ant-slide-up-leave.ant-slide-up-leave-active {
930
- -webkit-animation-name: antSlideUpOut;
931
731
  animation-name: antSlideUpOut;
932
- -webkit-animation-play-state: running;
933
732
  animation-play-state: running;
934
733
  pointer-events: none;
935
734
  }
936
735
  .ant-slide-up-enter,
937
736
  .ant-slide-up-appear {
737
+ transform: scale(0);
738
+ transform-origin: 0% 0%;
938
739
  opacity: 0;
939
- -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
940
740
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
941
741
  }
942
742
  .ant-slide-up-leave {
943
- -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
944
743
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
945
744
  }
946
745
  .ant-slide-down-enter,
947
746
  .ant-slide-down-appear {
948
- -webkit-animation-duration: 0.2s;
949
747
  animation-duration: 0.2s;
950
- -webkit-animation-fill-mode: both;
951
748
  animation-fill-mode: both;
952
- -webkit-animation-play-state: paused;
953
749
  animation-play-state: paused;
954
750
  }
955
751
  .ant-slide-down-leave {
956
- -webkit-animation-duration: 0.2s;
957
752
  animation-duration: 0.2s;
958
- -webkit-animation-fill-mode: both;
959
753
  animation-fill-mode: both;
960
- -webkit-animation-play-state: paused;
961
754
  animation-play-state: paused;
962
755
  }
963
756
  .ant-slide-down-enter.ant-slide-down-enter-active,
964
757
  .ant-slide-down-appear.ant-slide-down-appear-active {
965
- -webkit-animation-name: antSlideDownIn;
966
758
  animation-name: antSlideDownIn;
967
- -webkit-animation-play-state: running;
968
759
  animation-play-state: running;
969
760
  }
970
761
  .ant-slide-down-leave.ant-slide-down-leave-active {
971
- -webkit-animation-name: antSlideDownOut;
972
762
  animation-name: antSlideDownOut;
973
- -webkit-animation-play-state: running;
974
763
  animation-play-state: running;
975
764
  pointer-events: none;
976
765
  }
977
766
  .ant-slide-down-enter,
978
767
  .ant-slide-down-appear {
768
+ transform: scale(0);
769
+ transform-origin: 0% 0%;
979
770
  opacity: 0;
980
- -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
981
771
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
982
772
  }
983
773
  .ant-slide-down-leave {
984
- -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
985
774
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
986
775
  }
987
776
  .ant-slide-left-enter,
988
777
  .ant-slide-left-appear {
989
- -webkit-animation-duration: 0.2s;
990
778
  animation-duration: 0.2s;
991
- -webkit-animation-fill-mode: both;
992
779
  animation-fill-mode: both;
993
- -webkit-animation-play-state: paused;
994
780
  animation-play-state: paused;
995
781
  }
996
782
  .ant-slide-left-leave {
997
- -webkit-animation-duration: 0.2s;
998
783
  animation-duration: 0.2s;
999
- -webkit-animation-fill-mode: both;
1000
784
  animation-fill-mode: both;
1001
- -webkit-animation-play-state: paused;
1002
785
  animation-play-state: paused;
1003
786
  }
1004
787
  .ant-slide-left-enter.ant-slide-left-enter-active,
1005
788
  .ant-slide-left-appear.ant-slide-left-appear-active {
1006
- -webkit-animation-name: antSlideLeftIn;
1007
789
  animation-name: antSlideLeftIn;
1008
- -webkit-animation-play-state: running;
1009
790
  animation-play-state: running;
1010
791
  }
1011
792
  .ant-slide-left-leave.ant-slide-left-leave-active {
1012
- -webkit-animation-name: antSlideLeftOut;
1013
793
  animation-name: antSlideLeftOut;
1014
- -webkit-animation-play-state: running;
1015
794
  animation-play-state: running;
1016
795
  pointer-events: none;
1017
796
  }
1018
797
  .ant-slide-left-enter,
1019
798
  .ant-slide-left-appear {
799
+ transform: scale(0);
800
+ transform-origin: 0% 0%;
1020
801
  opacity: 0;
1021
- -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1022
802
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1023
803
  }
1024
804
  .ant-slide-left-leave {
1025
- -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1026
805
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1027
806
  }
1028
807
  .ant-slide-right-enter,
1029
808
  .ant-slide-right-appear {
1030
- -webkit-animation-duration: 0.2s;
1031
809
  animation-duration: 0.2s;
1032
- -webkit-animation-fill-mode: both;
1033
810
  animation-fill-mode: both;
1034
- -webkit-animation-play-state: paused;
1035
811
  animation-play-state: paused;
1036
812
  }
1037
813
  .ant-slide-right-leave {
1038
- -webkit-animation-duration: 0.2s;
1039
814
  animation-duration: 0.2s;
1040
- -webkit-animation-fill-mode: both;
1041
815
  animation-fill-mode: both;
1042
- -webkit-animation-play-state: paused;
1043
816
  animation-play-state: paused;
1044
817
  }
1045
818
  .ant-slide-right-enter.ant-slide-right-enter-active,
1046
819
  .ant-slide-right-appear.ant-slide-right-appear-active {
1047
- -webkit-animation-name: antSlideRightIn;
1048
820
  animation-name: antSlideRightIn;
1049
- -webkit-animation-play-state: running;
1050
821
  animation-play-state: running;
1051
822
  }
1052
823
  .ant-slide-right-leave.ant-slide-right-leave-active {
1053
- -webkit-animation-name: antSlideRightOut;
1054
824
  animation-name: antSlideRightOut;
1055
- -webkit-animation-play-state: running;
1056
825
  animation-play-state: running;
1057
826
  pointer-events: none;
1058
827
  }
1059
828
  .ant-slide-right-enter,
1060
829
  .ant-slide-right-appear {
830
+ transform: scale(0);
831
+ transform-origin: 0% 0%;
1061
832
  opacity: 0;
1062
- -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1063
833
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1064
834
  }
1065
835
  .ant-slide-right-leave {
1066
- -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1067
836
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1068
837
  }
1069
- @-webkit-keyframes antSlideUpIn {
1070
- 0% {
1071
- transform: scaleY(0.8);
1072
- transform-origin: 0% 0%;
1073
- opacity: 0;
1074
- }
1075
- 100% {
1076
- transform: scaleY(1);
1077
- transform-origin: 0% 0%;
1078
- opacity: 1;
1079
- }
1080
- }
1081
838
  @keyframes antSlideUpIn {
1082
839
  0% {
1083
840
  transform: scaleY(0.8);
@@ -1090,18 +847,6 @@ html {
1090
847
  opacity: 1;
1091
848
  }
1092
849
  }
1093
- @-webkit-keyframes antSlideUpOut {
1094
- 0% {
1095
- transform: scaleY(1);
1096
- transform-origin: 0% 0%;
1097
- opacity: 1;
1098
- }
1099
- 100% {
1100
- transform: scaleY(0.8);
1101
- transform-origin: 0% 0%;
1102
- opacity: 0;
1103
- }
1104
- }
1105
850
  @keyframes antSlideUpOut {
1106
851
  0% {
1107
852
  transform: scaleY(1);
@@ -1114,18 +859,6 @@ html {
1114
859
  opacity: 0;
1115
860
  }
1116
861
  }
1117
- @-webkit-keyframes antSlideDownIn {
1118
- 0% {
1119
- transform: scaleY(0.8);
1120
- transform-origin: 100% 100%;
1121
- opacity: 0;
1122
- }
1123
- 100% {
1124
- transform: scaleY(1);
1125
- transform-origin: 100% 100%;
1126
- opacity: 1;
1127
- }
1128
- }
1129
862
  @keyframes antSlideDownIn {
1130
863
  0% {
1131
864
  transform: scaleY(0.8);
@@ -1138,18 +871,6 @@ html {
1138
871
  opacity: 1;
1139
872
  }
1140
873
  }
1141
- @-webkit-keyframes antSlideDownOut {
1142
- 0% {
1143
- transform: scaleY(1);
1144
- transform-origin: 100% 100%;
1145
- opacity: 1;
1146
- }
1147
- 100% {
1148
- transform: scaleY(0.8);
1149
- transform-origin: 100% 100%;
1150
- opacity: 0;
1151
- }
1152
- }
1153
874
  @keyframes antSlideDownOut {
1154
875
  0% {
1155
876
  transform: scaleY(1);
@@ -1162,18 +883,6 @@ html {
1162
883
  opacity: 0;
1163
884
  }
1164
885
  }
1165
- @-webkit-keyframes antSlideLeftIn {
1166
- 0% {
1167
- transform: scaleX(0.8);
1168
- transform-origin: 0% 0%;
1169
- opacity: 0;
1170
- }
1171
- 100% {
1172
- transform: scaleX(1);
1173
- transform-origin: 0% 0%;
1174
- opacity: 1;
1175
- }
1176
- }
1177
886
  @keyframes antSlideLeftIn {
1178
887
  0% {
1179
888
  transform: scaleX(0.8);
@@ -1186,18 +895,6 @@ html {
1186
895
  opacity: 1;
1187
896
  }
1188
897
  }
1189
- @-webkit-keyframes antSlideLeftOut {
1190
- 0% {
1191
- transform: scaleX(1);
1192
- transform-origin: 0% 0%;
1193
- opacity: 1;
1194
- }
1195
- 100% {
1196
- transform: scaleX(0.8);
1197
- transform-origin: 0% 0%;
1198
- opacity: 0;
1199
- }
1200
- }
1201
898
  @keyframes antSlideLeftOut {
1202
899
  0% {
1203
900
  transform: scaleX(1);
@@ -1210,18 +907,6 @@ html {
1210
907
  opacity: 0;
1211
908
  }
1212
909
  }
1213
- @-webkit-keyframes antSlideRightIn {
1214
- 0% {
1215
- transform: scaleX(0.8);
1216
- transform-origin: 100% 0%;
1217
- opacity: 0;
1218
- }
1219
- 100% {
1220
- transform: scaleX(1);
1221
- transform-origin: 100% 0%;
1222
- opacity: 1;
1223
- }
1224
- }
1225
910
  @keyframes antSlideRightIn {
1226
911
  0% {
1227
912
  transform: scaleX(0.8);
@@ -1234,18 +919,6 @@ html {
1234
919
  opacity: 1;
1235
920
  }
1236
921
  }
1237
- @-webkit-keyframes antSlideRightOut {
1238
- 0% {
1239
- transform: scaleX(1);
1240
- transform-origin: 100% 0%;
1241
- opacity: 1;
1242
- }
1243
- 100% {
1244
- transform: scaleX(0.8);
1245
- transform-origin: 100% 0%;
1246
- opacity: 0;
1247
- }
1248
- }
1249
922
  @keyframes antSlideRightOut {
1250
923
  0% {
1251
924
  transform: scaleX(1);
@@ -1260,32 +933,22 @@ html {
1260
933
  }
1261
934
  .ant-zoom-enter,
1262
935
  .ant-zoom-appear {
1263
- -webkit-animation-duration: 0.2s;
1264
936
  animation-duration: 0.2s;
1265
- -webkit-animation-fill-mode: both;
1266
937
  animation-fill-mode: both;
1267
- -webkit-animation-play-state: paused;
1268
938
  animation-play-state: paused;
1269
939
  }
1270
940
  .ant-zoom-leave {
1271
- -webkit-animation-duration: 0.2s;
1272
941
  animation-duration: 0.2s;
1273
- -webkit-animation-fill-mode: both;
1274
942
  animation-fill-mode: both;
1275
- -webkit-animation-play-state: paused;
1276
943
  animation-play-state: paused;
1277
944
  }
1278
945
  .ant-zoom-enter.ant-zoom-enter-active,
1279
946
  .ant-zoom-appear.ant-zoom-appear-active {
1280
- -webkit-animation-name: antZoomIn;
1281
947
  animation-name: antZoomIn;
1282
- -webkit-animation-play-state: running;
1283
948
  animation-play-state: running;
1284
949
  }
1285
950
  .ant-zoom-leave.ant-zoom-leave-active {
1286
- -webkit-animation-name: antZoomOut;
1287
951
  animation-name: antZoomOut;
1288
- -webkit-animation-play-state: running;
1289
952
  animation-play-state: running;
1290
953
  pointer-events: none;
1291
954
  }
@@ -1293,7 +956,6 @@ html {
1293
956
  .ant-zoom-appear {
1294
957
  transform: scale(0);
1295
958
  opacity: 0;
1296
- -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1297
959
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1298
960
  }
1299
961
  .ant-zoom-enter-prepare,
@@ -1301,37 +963,26 @@ html {
1301
963
  transform: none;
1302
964
  }
1303
965
  .ant-zoom-leave {
1304
- -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1305
966
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1306
967
  }
1307
968
  .ant-zoom-big-enter,
1308
969
  .ant-zoom-big-appear {
1309
- -webkit-animation-duration: 0.2s;
1310
970
  animation-duration: 0.2s;
1311
- -webkit-animation-fill-mode: both;
1312
971
  animation-fill-mode: both;
1313
- -webkit-animation-play-state: paused;
1314
972
  animation-play-state: paused;
1315
973
  }
1316
974
  .ant-zoom-big-leave {
1317
- -webkit-animation-duration: 0.2s;
1318
975
  animation-duration: 0.2s;
1319
- -webkit-animation-fill-mode: both;
1320
976
  animation-fill-mode: both;
1321
- -webkit-animation-play-state: paused;
1322
977
  animation-play-state: paused;
1323
978
  }
1324
979
  .ant-zoom-big-enter.ant-zoom-big-enter-active,
1325
980
  .ant-zoom-big-appear.ant-zoom-big-appear-active {
1326
- -webkit-animation-name: antZoomBigIn;
1327
981
  animation-name: antZoomBigIn;
1328
- -webkit-animation-play-state: running;
1329
982
  animation-play-state: running;
1330
983
  }
1331
984
  .ant-zoom-big-leave.ant-zoom-big-leave-active {
1332
- -webkit-animation-name: antZoomBigOut;
1333
985
  animation-name: antZoomBigOut;
1334
- -webkit-animation-play-state: running;
1335
986
  animation-play-state: running;
1336
987
  pointer-events: none;
1337
988
  }
@@ -1339,7 +990,6 @@ html {
1339
990
  .ant-zoom-big-appear {
1340
991
  transform: scale(0);
1341
992
  opacity: 0;
1342
- -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1343
993
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1344
994
  }
1345
995
  .ant-zoom-big-enter-prepare,
@@ -1347,37 +997,26 @@ html {
1347
997
  transform: none;
1348
998
  }
1349
999
  .ant-zoom-big-leave {
1350
- -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1351
1000
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1352
1001
  }
1353
1002
  .ant-zoom-big-fast-enter,
1354
1003
  .ant-zoom-big-fast-appear {
1355
- -webkit-animation-duration: 0.1s;
1356
1004
  animation-duration: 0.1s;
1357
- -webkit-animation-fill-mode: both;
1358
1005
  animation-fill-mode: both;
1359
- -webkit-animation-play-state: paused;
1360
1006
  animation-play-state: paused;
1361
1007
  }
1362
1008
  .ant-zoom-big-fast-leave {
1363
- -webkit-animation-duration: 0.1s;
1364
1009
  animation-duration: 0.1s;
1365
- -webkit-animation-fill-mode: both;
1366
1010
  animation-fill-mode: both;
1367
- -webkit-animation-play-state: paused;
1368
1011
  animation-play-state: paused;
1369
1012
  }
1370
1013
  .ant-zoom-big-fast-enter.ant-zoom-big-fast-enter-active,
1371
1014
  .ant-zoom-big-fast-appear.ant-zoom-big-fast-appear-active {
1372
- -webkit-animation-name: antZoomBigIn;
1373
1015
  animation-name: antZoomBigIn;
1374
- -webkit-animation-play-state: running;
1375
1016
  animation-play-state: running;
1376
1017
  }
1377
1018
  .ant-zoom-big-fast-leave.ant-zoom-big-fast-leave-active {
1378
- -webkit-animation-name: antZoomBigOut;
1379
1019
  animation-name: antZoomBigOut;
1380
- -webkit-animation-play-state: running;
1381
1020
  animation-play-state: running;
1382
1021
  pointer-events: none;
1383
1022
  }
@@ -1385,7 +1024,6 @@ html {
1385
1024
  .ant-zoom-big-fast-appear {
1386
1025
  transform: scale(0);
1387
1026
  opacity: 0;
1388
- -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1389
1027
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1390
1028
  }
1391
1029
  .ant-zoom-big-fast-enter-prepare,
@@ -1393,37 +1031,26 @@ html {
1393
1031
  transform: none;
1394
1032
  }
1395
1033
  .ant-zoom-big-fast-leave {
1396
- -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1397
1034
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1398
1035
  }
1399
1036
  .ant-zoom-up-enter,
1400
1037
  .ant-zoom-up-appear {
1401
- -webkit-animation-duration: 0.2s;
1402
1038
  animation-duration: 0.2s;
1403
- -webkit-animation-fill-mode: both;
1404
1039
  animation-fill-mode: both;
1405
- -webkit-animation-play-state: paused;
1406
1040
  animation-play-state: paused;
1407
1041
  }
1408
1042
  .ant-zoom-up-leave {
1409
- -webkit-animation-duration: 0.2s;
1410
1043
  animation-duration: 0.2s;
1411
- -webkit-animation-fill-mode: both;
1412
1044
  animation-fill-mode: both;
1413
- -webkit-animation-play-state: paused;
1414
1045
  animation-play-state: paused;
1415
1046
  }
1416
1047
  .ant-zoom-up-enter.ant-zoom-up-enter-active,
1417
1048
  .ant-zoom-up-appear.ant-zoom-up-appear-active {
1418
- -webkit-animation-name: antZoomUpIn;
1419
1049
  animation-name: antZoomUpIn;
1420
- -webkit-animation-play-state: running;
1421
1050
  animation-play-state: running;
1422
1051
  }
1423
1052
  .ant-zoom-up-leave.ant-zoom-up-leave-active {
1424
- -webkit-animation-name: antZoomUpOut;
1425
1053
  animation-name: antZoomUpOut;
1426
- -webkit-animation-play-state: running;
1427
1054
  animation-play-state: running;
1428
1055
  pointer-events: none;
1429
1056
  }
@@ -1431,7 +1058,6 @@ html {
1431
1058
  .ant-zoom-up-appear {
1432
1059
  transform: scale(0);
1433
1060
  opacity: 0;
1434
- -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1435
1061
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1436
1062
  }
1437
1063
  .ant-zoom-up-enter-prepare,
@@ -1439,37 +1065,26 @@ html {
1439
1065
  transform: none;
1440
1066
  }
1441
1067
  .ant-zoom-up-leave {
1442
- -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1443
1068
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1444
1069
  }
1445
1070
  .ant-zoom-down-enter,
1446
1071
  .ant-zoom-down-appear {
1447
- -webkit-animation-duration: 0.2s;
1448
1072
  animation-duration: 0.2s;
1449
- -webkit-animation-fill-mode: both;
1450
1073
  animation-fill-mode: both;
1451
- -webkit-animation-play-state: paused;
1452
1074
  animation-play-state: paused;
1453
1075
  }
1454
1076
  .ant-zoom-down-leave {
1455
- -webkit-animation-duration: 0.2s;
1456
1077
  animation-duration: 0.2s;
1457
- -webkit-animation-fill-mode: both;
1458
1078
  animation-fill-mode: both;
1459
- -webkit-animation-play-state: paused;
1460
1079
  animation-play-state: paused;
1461
1080
  }
1462
1081
  .ant-zoom-down-enter.ant-zoom-down-enter-active,
1463
1082
  .ant-zoom-down-appear.ant-zoom-down-appear-active {
1464
- -webkit-animation-name: antZoomDownIn;
1465
1083
  animation-name: antZoomDownIn;
1466
- -webkit-animation-play-state: running;
1467
1084
  animation-play-state: running;
1468
1085
  }
1469
1086
  .ant-zoom-down-leave.ant-zoom-down-leave-active {
1470
- -webkit-animation-name: antZoomDownOut;
1471
1087
  animation-name: antZoomDownOut;
1472
- -webkit-animation-play-state: running;
1473
1088
  animation-play-state: running;
1474
1089
  pointer-events: none;
1475
1090
  }
@@ -1477,7 +1092,6 @@ html {
1477
1092
  .ant-zoom-down-appear {
1478
1093
  transform: scale(0);
1479
1094
  opacity: 0;
1480
- -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1481
1095
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1482
1096
  }
1483
1097
  .ant-zoom-down-enter-prepare,
@@ -1485,37 +1099,26 @@ html {
1485
1099
  transform: none;
1486
1100
  }
1487
1101
  .ant-zoom-down-leave {
1488
- -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1489
1102
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1490
1103
  }
1491
1104
  .ant-zoom-left-enter,
1492
1105
  .ant-zoom-left-appear {
1493
- -webkit-animation-duration: 0.2s;
1494
1106
  animation-duration: 0.2s;
1495
- -webkit-animation-fill-mode: both;
1496
1107
  animation-fill-mode: both;
1497
- -webkit-animation-play-state: paused;
1498
1108
  animation-play-state: paused;
1499
1109
  }
1500
1110
  .ant-zoom-left-leave {
1501
- -webkit-animation-duration: 0.2s;
1502
1111
  animation-duration: 0.2s;
1503
- -webkit-animation-fill-mode: both;
1504
1112
  animation-fill-mode: both;
1505
- -webkit-animation-play-state: paused;
1506
1113
  animation-play-state: paused;
1507
1114
  }
1508
1115
  .ant-zoom-left-enter.ant-zoom-left-enter-active,
1509
1116
  .ant-zoom-left-appear.ant-zoom-left-appear-active {
1510
- -webkit-animation-name: antZoomLeftIn;
1511
1117
  animation-name: antZoomLeftIn;
1512
- -webkit-animation-play-state: running;
1513
1118
  animation-play-state: running;
1514
1119
  }
1515
1120
  .ant-zoom-left-leave.ant-zoom-left-leave-active {
1516
- -webkit-animation-name: antZoomLeftOut;
1517
1121
  animation-name: antZoomLeftOut;
1518
- -webkit-animation-play-state: running;
1519
1122
  animation-play-state: running;
1520
1123
  pointer-events: none;
1521
1124
  }
@@ -1523,7 +1126,6 @@ html {
1523
1126
  .ant-zoom-left-appear {
1524
1127
  transform: scale(0);
1525
1128
  opacity: 0;
1526
- -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1527
1129
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1528
1130
  }
1529
1131
  .ant-zoom-left-enter-prepare,
@@ -1531,37 +1133,26 @@ html {
1531
1133
  transform: none;
1532
1134
  }
1533
1135
  .ant-zoom-left-leave {
1534
- -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1535
1136
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1536
1137
  }
1537
1138
  .ant-zoom-right-enter,
1538
1139
  .ant-zoom-right-appear {
1539
- -webkit-animation-duration: 0.2s;
1540
1140
  animation-duration: 0.2s;
1541
- -webkit-animation-fill-mode: both;
1542
1141
  animation-fill-mode: both;
1543
- -webkit-animation-play-state: paused;
1544
1142
  animation-play-state: paused;
1545
1143
  }
1546
1144
  .ant-zoom-right-leave {
1547
- -webkit-animation-duration: 0.2s;
1548
1145
  animation-duration: 0.2s;
1549
- -webkit-animation-fill-mode: both;
1550
1146
  animation-fill-mode: both;
1551
- -webkit-animation-play-state: paused;
1552
1147
  animation-play-state: paused;
1553
1148
  }
1554
1149
  .ant-zoom-right-enter.ant-zoom-right-enter-active,
1555
1150
  .ant-zoom-right-appear.ant-zoom-right-appear-active {
1556
- -webkit-animation-name: antZoomRightIn;
1557
1151
  animation-name: antZoomRightIn;
1558
- -webkit-animation-play-state: running;
1559
1152
  animation-play-state: running;
1560
1153
  }
1561
1154
  .ant-zoom-right-leave.ant-zoom-right-leave-active {
1562
- -webkit-animation-name: antZoomRightOut;
1563
1155
  animation-name: antZoomRightOut;
1564
- -webkit-animation-play-state: running;
1565
1156
  animation-play-state: running;
1566
1157
  pointer-events: none;
1567
1158
  }
@@ -1569,7 +1160,6 @@ html {
1569
1160
  .ant-zoom-right-appear {
1570
1161
  transform: scale(0);
1571
1162
  opacity: 0;
1572
- -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1573
1163
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1574
1164
  }
1575
1165
  .ant-zoom-right-enter-prepare,
@@ -1577,19 +1167,8 @@ html {
1577
1167
  transform: none;
1578
1168
  }
1579
1169
  .ant-zoom-right-leave {
1580
- -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1581
1170
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1582
1171
  }
1583
- @-webkit-keyframes antZoomIn {
1584
- 0% {
1585
- transform: scale(0.2);
1586
- opacity: 0;
1587
- }
1588
- 100% {
1589
- transform: scale(1);
1590
- opacity: 1;
1591
- }
1592
- }
1593
1172
  @keyframes antZoomIn {
1594
1173
  0% {
1595
1174
  transform: scale(0.2);
@@ -1600,15 +1179,6 @@ html {
1600
1179
  opacity: 1;
1601
1180
  }
1602
1181
  }
1603
- @-webkit-keyframes antZoomOut {
1604
- 0% {
1605
- transform: scale(1);
1606
- }
1607
- 100% {
1608
- transform: scale(0.2);
1609
- opacity: 0;
1610
- }
1611
- }
1612
1182
  @keyframes antZoomOut {
1613
1183
  0% {
1614
1184
  transform: scale(1);
@@ -1618,16 +1188,6 @@ html {
1618
1188
  opacity: 0;
1619
1189
  }
1620
1190
  }
1621
- @-webkit-keyframes antZoomBigIn {
1622
- 0% {
1623
- transform: scale(0.8);
1624
- opacity: 0;
1625
- }
1626
- 100% {
1627
- transform: scale(1);
1628
- opacity: 1;
1629
- }
1630
- }
1631
1191
  @keyframes antZoomBigIn {
1632
1192
  0% {
1633
1193
  transform: scale(0.8);
@@ -1638,15 +1198,6 @@ html {
1638
1198
  opacity: 1;
1639
1199
  }
1640
1200
  }
1641
- @-webkit-keyframes antZoomBigOut {
1642
- 0% {
1643
- transform: scale(1);
1644
- }
1645
- 100% {
1646
- transform: scale(0.8);
1647
- opacity: 0;
1648
- }
1649
- }
1650
1201
  @keyframes antZoomBigOut {
1651
1202
  0% {
1652
1203
  transform: scale(1);
@@ -1656,17 +1207,6 @@ html {
1656
1207
  opacity: 0;
1657
1208
  }
1658
1209
  }
1659
- @-webkit-keyframes antZoomUpIn {
1660
- 0% {
1661
- transform: scale(0.8);
1662
- transform-origin: 50% 0%;
1663
- opacity: 0;
1664
- }
1665
- 100% {
1666
- transform: scale(1);
1667
- transform-origin: 50% 0%;
1668
- }
1669
- }
1670
1210
  @keyframes antZoomUpIn {
1671
1211
  0% {
1672
1212
  transform: scale(0.8);
@@ -1678,17 +1218,6 @@ html {
1678
1218
  transform-origin: 50% 0%;
1679
1219
  }
1680
1220
  }
1681
- @-webkit-keyframes antZoomUpOut {
1682
- 0% {
1683
- transform: scale(1);
1684
- transform-origin: 50% 0%;
1685
- }
1686
- 100% {
1687
- transform: scale(0.8);
1688
- transform-origin: 50% 0%;
1689
- opacity: 0;
1690
- }
1691
- }
1692
1221
  @keyframes antZoomUpOut {
1693
1222
  0% {
1694
1223
  transform: scale(1);
@@ -1700,17 +1229,6 @@ html {
1700
1229
  opacity: 0;
1701
1230
  }
1702
1231
  }
1703
- @-webkit-keyframes antZoomLeftIn {
1704
- 0% {
1705
- transform: scale(0.8);
1706
- transform-origin: 0% 50%;
1707
- opacity: 0;
1708
- }
1709
- 100% {
1710
- transform: scale(1);
1711
- transform-origin: 0% 50%;
1712
- }
1713
- }
1714
1232
  @keyframes antZoomLeftIn {
1715
1233
  0% {
1716
1234
  transform: scale(0.8);
@@ -1722,17 +1240,6 @@ html {
1722
1240
  transform-origin: 0% 50%;
1723
1241
  }
1724
1242
  }
1725
- @-webkit-keyframes antZoomLeftOut {
1726
- 0% {
1727
- transform: scale(1);
1728
- transform-origin: 0% 50%;
1729
- }
1730
- 100% {
1731
- transform: scale(0.8);
1732
- transform-origin: 0% 50%;
1733
- opacity: 0;
1734
- }
1735
- }
1736
1243
  @keyframes antZoomLeftOut {
1737
1244
  0% {
1738
1245
  transform: scale(1);
@@ -1744,17 +1251,6 @@ html {
1744
1251
  opacity: 0;
1745
1252
  }
1746
1253
  }
1747
- @-webkit-keyframes antZoomRightIn {
1748
- 0% {
1749
- transform: scale(0.8);
1750
- transform-origin: 100% 50%;
1751
- opacity: 0;
1752
- }
1753
- 100% {
1754
- transform: scale(1);
1755
- transform-origin: 100% 50%;
1756
- }
1757
- }
1758
1254
  @keyframes antZoomRightIn {
1759
1255
  0% {
1760
1256
  transform: scale(0.8);
@@ -1766,17 +1262,6 @@ html {
1766
1262
  transform-origin: 100% 50%;
1767
1263
  }
1768
1264
  }
1769
- @-webkit-keyframes antZoomRightOut {
1770
- 0% {
1771
- transform: scale(1);
1772
- transform-origin: 100% 50%;
1773
- }
1774
- 100% {
1775
- transform: scale(0.8);
1776
- transform-origin: 100% 50%;
1777
- opacity: 0;
1778
- }
1779
- }
1780
1265
  @keyframes antZoomRightOut {
1781
1266
  0% {
1782
1267
  transform: scale(1);
@@ -1788,17 +1273,6 @@ html {
1788
1273
  opacity: 0;
1789
1274
  }
1790
1275
  }
1791
- @-webkit-keyframes antZoomDownIn {
1792
- 0% {
1793
- transform: scale(0.8);
1794
- transform-origin: 50% 100%;
1795
- opacity: 0;
1796
- }
1797
- 100% {
1798
- transform: scale(1);
1799
- transform-origin: 50% 100%;
1800
- }
1801
- }
1802
1276
  @keyframes antZoomDownIn {
1803
1277
  0% {
1804
1278
  transform: scale(0.8);
@@ -1810,17 +1284,6 @@ html {
1810
1284
  transform-origin: 50% 100%;
1811
1285
  }
1812
1286
  }
1813
- @-webkit-keyframes antZoomDownOut {
1814
- 0% {
1815
- transform: scale(1);
1816
- transform-origin: 50% 100%;
1817
- }
1818
- 100% {
1819
- transform: scale(0.8);
1820
- transform-origin: 50% 100%;
1821
- opacity: 0;
1822
- }
1823
- }
1824
1287
  @keyframes antZoomDownOut {
1825
1288
  0% {
1826
1289
  transform: scale(1);
@@ -2044,7 +1507,7 @@ html {
2044
1507
  transform: translateX(-50%);
2045
1508
  transition: top 0.3s ease-in-out;
2046
1509
  }
2047
- .ant-anchor-ink-ball.visible {
1510
+ .ant-anchor-ink-ball.ant-anchor-ink-ball-visible {
2048
1511
  display: inline-block;
2049
1512
  }
2050
1513
  .ant-anchor-fixed .ant-anchor-ink .ant-anchor-ink-ball {
@@ -2342,7 +1805,6 @@ html {
2342
1805
  .ant-badge-count.anticon-spin,
2343
1806
  .ant-badge-dot.anticon-spin,
2344
1807
  .ant-badge .ant-scroll-number-custom-component.anticon-spin {
2345
- -webkit-animation: antBadgeLoadingCircle 1s infinite linear;
2346
1808
  animation: antBadgeLoadingCircle 1s infinite linear;
2347
1809
  }
2348
1810
  .ant-badge-status {
@@ -2373,7 +1835,6 @@ html {
2373
1835
  height: 100%;
2374
1836
  border: 1px solid var(--ant-primary-color);
2375
1837
  border-radius: 50%;
2376
- -webkit-animation: antStatusProcessing 1.2s infinite ease-in-out;
2377
1838
  animation: antStatusProcessing 1.2s infinite ease-in-out;
2378
1839
  content: '';
2379
1840
  }
@@ -2432,24 +1893,18 @@ html {
2432
1893
  }
2433
1894
  .ant-badge-zoom-appear,
2434
1895
  .ant-badge-zoom-enter {
2435
- -webkit-animation: antZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
2436
1896
  animation: antZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
2437
- -webkit-animation-fill-mode: both;
2438
1897
  animation-fill-mode: both;
2439
1898
  }
2440
1899
  .ant-badge-zoom-leave {
2441
- -webkit-animation: antZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6);
2442
1900
  animation: antZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6);
2443
- -webkit-animation-fill-mode: both;
2444
1901
  animation-fill-mode: both;
2445
1902
  }
2446
1903
  .ant-badge-not-a-wrapper .ant-badge-zoom-appear,
2447
1904
  .ant-badge-not-a-wrapper .ant-badge-zoom-enter {
2448
- -webkit-animation: antNoWrapperZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
2449
1905
  animation: antNoWrapperZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
2450
1906
  }
2451
1907
  .ant-badge-not-a-wrapper .ant-badge-zoom-leave {
2452
- -webkit-animation: antNoWrapperZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6);
2453
1908
  animation: antNoWrapperZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6);
2454
1909
  }
2455
1910
  .ant-badge-not-a-wrapper:not(.ant-badge-status) {
@@ -2466,16 +1921,6 @@ html {
2466
1921
  display: block;
2467
1922
  transform-origin: 50% 50%;
2468
1923
  }
2469
- @-webkit-keyframes antStatusProcessing {
2470
- 0% {
2471
- transform: scale(0.8);
2472
- opacity: 0.5;
2473
- }
2474
- 100% {
2475
- transform: scale(2.4);
2476
- opacity: 0;
2477
- }
2478
- }
2479
1924
  @keyframes antStatusProcessing {
2480
1925
  0% {
2481
1926
  transform: scale(0.8);
@@ -2511,15 +1956,6 @@ html {
2511
1956
  .ant-scroll-number-symbol {
2512
1957
  vertical-align: top;
2513
1958
  }
2514
- @-webkit-keyframes antZoomBadgeIn {
2515
- 0% {
2516
- transform: scale(0) translate(50%, -50%);
2517
- opacity: 0;
2518
- }
2519
- 100% {
2520
- transform: scale(1) translate(50%, -50%);
2521
- }
2522
- }
2523
1959
  @keyframes antZoomBadgeIn {
2524
1960
  0% {
2525
1961
  transform: scale(0) translate(50%, -50%);
@@ -2529,15 +1965,6 @@ html {
2529
1965
  transform: scale(1) translate(50%, -50%);
2530
1966
  }
2531
1967
  }
2532
- @-webkit-keyframes antZoomBadgeOut {
2533
- 0% {
2534
- transform: scale(1) translate(50%, -50%);
2535
- }
2536
- 100% {
2537
- transform: scale(0) translate(50%, -50%);
2538
- opacity: 0;
2539
- }
2540
- }
2541
1968
  @keyframes antZoomBadgeOut {
2542
1969
  0% {
2543
1970
  transform: scale(1) translate(50%, -50%);
@@ -2547,15 +1974,6 @@ html {
2547
1974
  opacity: 0;
2548
1975
  }
2549
1976
  }
2550
- @-webkit-keyframes antNoWrapperZoomBadgeIn {
2551
- 0% {
2552
- transform: scale(0);
2553
- opacity: 0;
2554
- }
2555
- 100% {
2556
- transform: scale(1);
2557
- }
2558
- }
2559
1977
  @keyframes antNoWrapperZoomBadgeIn {
2560
1978
  0% {
2561
1979
  transform: scale(0);
@@ -2565,15 +1983,6 @@ html {
2565
1983
  transform: scale(1);
2566
1984
  }
2567
1985
  }
2568
- @-webkit-keyframes antNoWrapperZoomBadgeOut {
2569
- 0% {
2570
- transform: scale(1);
2571
- }
2572
- 100% {
2573
- transform: scale(0);
2574
- opacity: 0;
2575
- }
2576
- }
2577
1986
  @keyframes antNoWrapperZoomBadgeOut {
2578
1987
  0% {
2579
1988
  transform: scale(1);
@@ -2583,15 +1992,6 @@ html {
2583
1992
  opacity: 0;
2584
1993
  }
2585
1994
  }
2586
- @-webkit-keyframes antBadgeLoadingCircle {
2587
- 0% {
2588
- transform-origin: 50%;
2589
- }
2590
- 100% {
2591
- transform: translate(50%, -50%) rotate(360deg);
2592
- transform-origin: 50%;
2593
- }
2594
- }
2595
1995
  @keyframes antBadgeLoadingCircle {
2596
1996
  0% {
2597
1997
  transform-origin: 50%;
@@ -2739,11 +2139,9 @@ html {
2739
2139
  }
2740
2140
  .ant-badge:not(.ant-badge-not-a-wrapper).ant-badge-rtl .ant-badge-zoom-appear,
2741
2141
  .ant-badge:not(.ant-badge-not-a-wrapper).ant-badge-rtl .ant-badge-zoom-enter {
2742
- -webkit-animation-name: antZoomBadgeInRtl;
2743
2142
  animation-name: antZoomBadgeInRtl;
2744
2143
  }
2745
2144
  .ant-badge:not(.ant-badge-not-a-wrapper).ant-badge-rtl .ant-badge-zoom-leave {
2746
- -webkit-animation-name: antZoomBadgeOutRtl;
2747
2145
  animation-name: antZoomBadgeOutRtl;
2748
2146
  }
2749
2147
  .ant-ribbon-rtl {
@@ -2777,31 +2175,13 @@ html {
2777
2175
  .ant-ribbon-rtl.ant-ribbon-placement-start .ant-ribbon-corner::after {
2778
2176
  border-color: currentcolor transparent transparent currentcolor;
2779
2177
  }
2780
- @-webkit-keyframes antZoomBadgeInRtl {
2781
- 0% {
2782
- transform: scale(0) translate(-50%, -50%);
2783
- opacity: 0;
2784
- }
2785
- 100% {
2786
- transform: scale(1) translate(-50%, -50%);
2787
- }
2788
- }
2789
2178
  @keyframes antZoomBadgeInRtl {
2790
2179
  0% {
2791
2180
  transform: scale(0) translate(-50%, -50%);
2792
2181
  opacity: 0;
2793
2182
  }
2794
- 100% {
2795
- transform: scale(1) translate(-50%, -50%);
2796
- }
2797
- }
2798
- @-webkit-keyframes antZoomBadgeOutRtl {
2799
- 0% {
2800
- transform: scale(1) translate(-50%, -50%);
2801
- }
2802
- 100% {
2803
- transform: scale(0) translate(-50%, -50%);
2804
- opacity: 0;
2183
+ 100% {
2184
+ transform: scale(1) translate(-50%, -50%);
2805
2185
  }
2806
2186
  }
2807
2187
  @keyframes antZoomBadgeOutRtl {
@@ -4227,11 +3607,9 @@ a.ant-btn-icon-only > .anticon {
4227
3607
  }
4228
3608
  .ant-btn > .ant-btn-loading-icon .anticon {
4229
3609
  padding-right: 8px;
4230
- -webkit-animation: none;
4231
3610
  animation: none;
4232
3611
  }
4233
3612
  .ant-btn > .ant-btn-loading-icon .anticon svg {
4234
- -webkit-animation: loadingCircle 1s infinite linear;
4235
3613
  animation: loadingCircle 1s infinite linear;
4236
3614
  }
4237
3615
  .ant-btn-group {
@@ -4780,6 +4158,109 @@ a.ant-btn-lg {
4780
4158
  a.ant-btn-sm {
4781
4159
  line-height: 22px;
4782
4160
  }
4161
+ .ant-btn-compact-item:not(.ant-btn-compact-last-item):not(.ant-btn-compact-item-rtl) {
4162
+ margin-right: -1px;
4163
+ }
4164
+ .ant-btn-compact-item:not(.ant-btn-compact-last-item).ant-btn-compact-item-rtl {
4165
+ margin-left: -1px;
4166
+ }
4167
+ .ant-btn-compact-item:hover,
4168
+ .ant-btn-compact-item:focus,
4169
+ .ant-btn-compact-item:active {
4170
+ z-index: 2;
4171
+ }
4172
+ .ant-btn-compact-item[disabled] {
4173
+ z-index: 0;
4174
+ }
4175
+ .ant-btn-compact-item:not(.ant-btn-compact-first-item):not(.ant-btn-compact-last-item).ant-btn {
4176
+ border-radius: 0;
4177
+ }
4178
+ .ant-btn-compact-item.ant-btn.ant-btn-compact-first-item:not(.ant-btn-compact-last-item):not(.ant-btn-compact-item-rtl) {
4179
+ border-top-right-radius: 0;
4180
+ border-bottom-right-radius: 0;
4181
+ }
4182
+ .ant-btn-compact-item.ant-btn.ant-btn-compact-last-item:not(.ant-btn-compact-first-item):not(.ant-btn-compact-item-rtl) {
4183
+ border-top-left-radius: 0;
4184
+ border-bottom-left-radius: 0;
4185
+ }
4186
+ .ant-btn-compact-item.ant-btn.ant-btn-compact-item-rtl.ant-btn-compact-first-item:not(.ant-btn-compact-last-item) {
4187
+ border-top-left-radius: 0;
4188
+ border-bottom-left-radius: 0;
4189
+ }
4190
+ .ant-btn-compact-item.ant-btn.ant-btn-compact-item-rtl.ant-btn-compact-last-item:not(.ant-btn-compact-first-item) {
4191
+ border-top-right-radius: 0;
4192
+ border-bottom-right-radius: 0;
4193
+ }
4194
+ .ant-btn-icon-only.ant-btn-compact-item {
4195
+ flex: none;
4196
+ }
4197
+ .ant-btn-compact-item.ant-btn-primary:not([disabled]) + .ant-btn-compact-item.ant-btn-primary:not([disabled]) {
4198
+ position: relative;
4199
+ }
4200
+ .ant-btn-compact-item.ant-btn-primary:not([disabled]) + .ant-btn-compact-item.ant-btn-primary:not([disabled])::after {
4201
+ position: absolute;
4202
+ top: -1px;
4203
+ left: -1px;
4204
+ display: inline-block;
4205
+ width: 1px;
4206
+ height: calc(100% + 1px * 2);
4207
+ background-color: var(--ant-primary-5);
4208
+ content: ' ';
4209
+ }
4210
+ .ant-btn-compact-item-rtl.ant-btn-compact-first-item.ant-btn-compact-item-rtl:not(.ant-btn-compact-last-item) {
4211
+ border-top-left-radius: 0;
4212
+ border-bottom-left-radius: 0;
4213
+ }
4214
+ .ant-btn-compact-item-rtl.ant-btn-compact-last-item.ant-btn-compact-item-rtl:not(.ant-btn-compact-first-item) {
4215
+ border-top-right-radius: 0;
4216
+ border-bottom-right-radius: 0;
4217
+ }
4218
+ .ant-btn-compact-item-rtl.ant-btn-sm.ant-btn-compact-first-item.ant-btn-compact-item-rtl.ant-btn-sm:not(.ant-btn-compact-last-item) {
4219
+ border-top-left-radius: 0;
4220
+ border-bottom-left-radius: 0;
4221
+ }
4222
+ .ant-btn-compact-item-rtl.ant-btn-sm.ant-btn-compact-last-item.ant-btn-compact-item-rtl.ant-btn-sm:not(.ant-btn-compact-first-item) {
4223
+ border-top-right-radius: 0;
4224
+ border-bottom-right-radius: 0;
4225
+ }
4226
+ .ant-btn-compact-item-rtl.ant-btn-primary:not([disabled]) + .ant-btn-compact-item-rtl.ant-btn-primary:not([disabled])::after {
4227
+ right: -1px;
4228
+ }
4229
+ .ant-btn-compact-vertical-item:not(.ant-btn-compact-vertical-last-item) {
4230
+ margin-bottom: -1px;
4231
+ }
4232
+ .ant-btn-compact-vertical-item:hover,
4233
+ .ant-btn-compact-vertical-item:focus,
4234
+ .ant-btn-compact-vertical-item:active {
4235
+ z-index: 2;
4236
+ }
4237
+ .ant-btn-compact-vertical-item[disabled] {
4238
+ z-index: 0;
4239
+ }
4240
+ .ant-btn-compact-vertical-item:not(.ant-btn-compact-vertical-first-item):not(.ant-btn-compact-vertical-last-item) {
4241
+ border-radius: 0;
4242
+ }
4243
+ .ant-btn-compact-vertical-item.ant-btn-compact-vertical-first-item:not(.ant-btn-compact-vertical-last-item) {
4244
+ border-bottom-right-radius: 0;
4245
+ border-bottom-left-radius: 0;
4246
+ }
4247
+ .ant-btn-compact-vertical-item.ant-btn-compact-vertical-last-item:not(.ant-btn-compact-vertical-first-item) {
4248
+ border-top-left-radius: 0;
4249
+ border-top-right-radius: 0;
4250
+ }
4251
+ .ant-btn-compact-vertical-item.ant-btn-primary:not([disabled]) + .ant-btn-compact-vertical-item.ant-btn-primary:not([disabled]) {
4252
+ position: relative;
4253
+ }
4254
+ .ant-btn-compact-vertical-item.ant-btn-primary:not([disabled]) + .ant-btn-compact-vertical-item.ant-btn-primary:not([disabled])::after {
4255
+ position: absolute;
4256
+ top: -1px;
4257
+ left: -1px;
4258
+ display: inline-block;
4259
+ width: calc(100% + 1px * 2);
4260
+ height: 1px;
4261
+ background-color: var(--ant-primary-5);
4262
+ content: ' ';
4263
+ }
4783
4264
  .ant-btn-rtl {
4784
4265
  direction: rtl;
4785
4266
  }
@@ -5312,6 +4793,7 @@ a.ant-btn-sm {
5312
4793
  padding-left: 16px;
5313
4794
  }
5314
4795
  .ant-card-meta-detail {
4796
+ flex: 1;
5315
4797
  overflow: hidden;
5316
4798
  }
5317
4799
  .ant-card-meta-detail > div:not(:last-child) {
@@ -5506,6 +4988,7 @@ a.ant-btn-sm {
5506
4988
  display: flex !important;
5507
4989
  justify-content: center;
5508
4990
  margin-right: 15%;
4991
+ margin-bottom: 0;
5509
4992
  margin-left: 15%;
5510
4993
  padding-left: 0;
5511
4994
  list-style: none;
@@ -5524,9 +5007,7 @@ a.ant-btn-sm {
5524
5007
  box-sizing: content-box;
5525
5008
  width: 16px;
5526
5009
  height: 3px;
5527
- margin: 0 2px;
5528
- margin-right: 3px;
5529
- margin-left: 3px;
5010
+ margin: 0 4px;
5530
5011
  padding: 0;
5531
5012
  text-align: center;
5532
5013
  text-indent: -999px;
@@ -5534,6 +5015,7 @@ a.ant-btn-sm {
5534
5015
  transition: all 0.5s;
5535
5016
  }
5536
5017
  .ant-carousel .slick-dots li button {
5018
+ position: relative;
5537
5019
  display: block;
5538
5020
  width: 100%;
5539
5021
  height: 3px;
@@ -5552,6 +5034,14 @@ a.ant-btn-sm {
5552
5034
  .ant-carousel .slick-dots li button:focus {
5553
5035
  opacity: 0.75;
5554
5036
  }
5037
+ .ant-carousel .slick-dots li button::after {
5038
+ position: absolute;
5039
+ top: -4px;
5040
+ right: -4px;
5041
+ bottom: -4px;
5042
+ left: -4px;
5043
+ content: '';
5044
+ }
5555
5045
  .ant-carousel .slick-dots li.slick-active {
5556
5046
  width: 24px;
5557
5047
  }
@@ -5583,7 +5073,7 @@ a.ant-btn-sm {
5583
5073
  .ant-carousel-vertical .slick-dots li {
5584
5074
  width: 3px;
5585
5075
  height: 16px;
5586
- margin: 4px 2px;
5076
+ margin: 4px 0;
5587
5077
  vertical-align: baseline;
5588
5078
  }
5589
5079
  .ant-carousel-vertical .slick-dots li button {
@@ -5625,16 +5115,6 @@ a.ant-btn-sm {
5625
5115
  .ant-carousel-rtl.ant-carousel-vertical .slick-dots {
5626
5116
  flex-direction: column;
5627
5117
  }
5628
- @-webkit-keyframes antCheckboxEffect {
5629
- 0% {
5630
- transform: scale(1);
5631
- opacity: 0.5;
5632
- }
5633
- 100% {
5634
- transform: scale(1.6);
5635
- opacity: 0;
5636
- }
5637
- }
5638
5118
  @keyframes antCheckboxEffect {
5639
5119
  0% {
5640
5120
  transform: scale(1);
@@ -5676,9 +5156,7 @@ a.ant-btn-sm {
5676
5156
  border: 1px solid var(--ant-primary-color);
5677
5157
  border-radius: 2px;
5678
5158
  visibility: hidden;
5679
- -webkit-animation: antCheckboxEffect 0.36s ease-in-out;
5680
5159
  animation: antCheckboxEffect 0.36s ease-in-out;
5681
- -webkit-animation-fill-mode: backwards;
5682
5160
  animation-fill-mode: backwards;
5683
5161
  content: '';
5684
5162
  }
@@ -5747,7 +5225,6 @@ a.ant-btn-sm {
5747
5225
  }
5748
5226
  .ant-cascader-checkbox-disabled.ant-cascader-checkbox-checked .ant-cascader-checkbox-inner::after {
5749
5227
  border-color: rgba(0, 0, 0, 0.25);
5750
- -webkit-animation-name: none;
5751
5228
  animation-name: none;
5752
5229
  }
5753
5230
  .ant-cascader-checkbox-disabled .ant-cascader-checkbox-input {
@@ -5761,7 +5238,6 @@ a.ant-btn-sm {
5761
5238
  .ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner::after {
5762
5239
  border-color: #f5f5f5;
5763
5240
  border-collapse: separate;
5764
- -webkit-animation-name: none;
5765
5241
  animation-name: none;
5766
5242
  }
5767
5243
  .ant-cascader-checkbox-disabled + span {
@@ -5937,6 +5413,39 @@ a.ant-btn-sm {
5937
5413
  .ant-cascader-menu-item-keyword {
5938
5414
  color: #ff4d4f;
5939
5415
  }
5416
+ .ant-cascader-compact-item:not(.ant-cascader-compact-last-item):not(.ant-cascader-compact-item-rtl) {
5417
+ margin-right: -1px;
5418
+ }
5419
+ .ant-cascader-compact-item:not(.ant-cascader-compact-last-item).ant-cascader-compact-item-rtl {
5420
+ margin-left: -1px;
5421
+ }
5422
+ .ant-cascader-compact-item:hover,
5423
+ .ant-cascader-compact-item:focus,
5424
+ .ant-cascader-compact-item:active {
5425
+ z-index: 2;
5426
+ }
5427
+ .ant-cascader-compact-item[disabled] {
5428
+ z-index: 0;
5429
+ }
5430
+ .ant-cascader-compact-item:not(.ant-cascader-compact-first-item):not(.ant-cascader-compact-last-item).ant-cascader {
5431
+ border-radius: 0;
5432
+ }
5433
+ .ant-cascader-compact-item.ant-cascader.ant-cascader-compact-first-item:not(.ant-cascader-compact-last-item):not(.ant-cascader-compact-item-rtl) {
5434
+ border-top-right-radius: 0;
5435
+ border-bottom-right-radius: 0;
5436
+ }
5437
+ .ant-cascader-compact-item.ant-cascader.ant-cascader-compact-last-item:not(.ant-cascader-compact-first-item):not(.ant-cascader-compact-item-rtl) {
5438
+ border-top-left-radius: 0;
5439
+ border-bottom-left-radius: 0;
5440
+ }
5441
+ .ant-cascader-compact-item.ant-cascader.ant-cascader-compact-item-rtl.ant-cascader-compact-first-item:not(.ant-cascader-compact-last-item) {
5442
+ border-top-left-radius: 0;
5443
+ border-bottom-left-radius: 0;
5444
+ }
5445
+ .ant-cascader-compact-item.ant-cascader.ant-cascader-compact-item-rtl.ant-cascader-compact-last-item:not(.ant-cascader-compact-first-item) {
5446
+ border-top-right-radius: 0;
5447
+ border-bottom-right-radius: 0;
5448
+ }
5940
5449
  .ant-cascader-rtl .ant-cascader-menu-item-expand-icon,
5941
5450
  .ant-cascader-rtl .ant-cascader-menu-item-loading-icon {
5942
5451
  margin-right: 4px;
@@ -5978,9 +5487,7 @@ a.ant-btn-sm {
5978
5487
  border: 1px solid var(--ant-primary-color);
5979
5488
  border-radius: 2px;
5980
5489
  visibility: hidden;
5981
- -webkit-animation: antCheckboxEffect 0.36s ease-in-out;
5982
5490
  animation: antCheckboxEffect 0.36s ease-in-out;
5983
- -webkit-animation-fill-mode: backwards;
5984
5491
  animation-fill-mode: backwards;
5985
5492
  content: '';
5986
5493
  }
@@ -6049,7 +5556,6 @@ a.ant-btn-sm {
6049
5556
  }
6050
5557
  .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner::after {
6051
5558
  border-color: rgba(0, 0, 0, 0.25);
6052
- -webkit-animation-name: none;
6053
5559
  animation-name: none;
6054
5560
  }
6055
5561
  .ant-checkbox-disabled .ant-checkbox-input {
@@ -6063,7 +5569,6 @@ a.ant-btn-sm {
6063
5569
  .ant-checkbox-disabled .ant-checkbox-inner::after {
6064
5570
  border-color: #f5f5f5;
6065
5571
  border-collapse: separate;
6066
- -webkit-animation-name: none;
6067
5572
  animation-name: none;
6068
5573
  }
6069
5574
  .ant-checkbox-disabled + span {
@@ -6220,6 +5725,12 @@ a.ant-btn-sm {
6220
5725
  flex: none;
6221
5726
  cursor: pointer;
6222
5727
  }
5728
+ .ant-collapse > .ant-collapse-item .ant-collapse-icon-collapsible-only {
5729
+ cursor: default;
5730
+ }
5731
+ .ant-collapse > .ant-collapse-item .ant-collapse-icon-collapsible-only .ant-collapse-expand-icon {
5732
+ cursor: pointer;
5733
+ }
6223
5734
  .ant-collapse > .ant-collapse-item.ant-collapse-no-arrow > .ant-collapse-header {
6224
5735
  padding-left: 12px;
6225
5736
  }
@@ -6766,24 +6277,20 @@ textarea.ant-picker-input > input {
6766
6277
  .ant-picker-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-picker-dropdown-placement-topRight,
6767
6278
  .ant-picker-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-picker-dropdown-placement-topLeft,
6768
6279
  .ant-picker-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-picker-dropdown-placement-topRight {
6769
- -webkit-animation-name: antSlideDownIn;
6770
6280
  animation-name: antSlideDownIn;
6771
6281
  }
6772
6282
  .ant-picker-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-picker-dropdown-placement-bottomLeft,
6773
6283
  .ant-picker-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-picker-dropdown-placement-bottomRight,
6774
6284
  .ant-picker-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-picker-dropdown-placement-bottomLeft,
6775
6285
  .ant-picker-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-picker-dropdown-placement-bottomRight {
6776
- -webkit-animation-name: antSlideUpIn;
6777
6286
  animation-name: antSlideUpIn;
6778
6287
  }
6779
6288
  .ant-picker-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-picker-dropdown-placement-topLeft,
6780
6289
  .ant-picker-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-picker-dropdown-placement-topRight {
6781
- -webkit-animation-name: antSlideDownOut;
6782
6290
  animation-name: antSlideDownOut;
6783
6291
  }
6784
6292
  .ant-picker-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-picker-dropdown-placement-bottomLeft,
6785
6293
  .ant-picker-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-picker-dropdown-placement-bottomRight {
6786
- -webkit-animation-name: antSlideUpOut;
6787
6294
  animation-name: antSlideUpOut;
6788
6295
  }
6789
6296
  .ant-picker-dropdown-range {
@@ -6872,6 +6379,42 @@ textarea.ant-picker-input > input {
6872
6379
  .ant-picker-panel-container .ant-picker-panel-focused {
6873
6380
  border-color: rgba(0, 0, 0, 0.06);
6874
6381
  }
6382
+ .ant-picker-compact-item:not(.ant-picker-compact-last-item):not(.ant-picker-compact-item-rtl) {
6383
+ margin-right: -1px;
6384
+ }
6385
+ .ant-picker-compact-item:not(.ant-picker-compact-last-item).ant-picker-compact-item-rtl {
6386
+ margin-left: -1px;
6387
+ }
6388
+ .ant-picker-compact-item:hover,
6389
+ .ant-picker-compact-item:focus,
6390
+ .ant-picker-compact-item:active {
6391
+ z-index: 2;
6392
+ }
6393
+ .ant-picker-compact-item.ant-picker-focused {
6394
+ z-index: 2;
6395
+ }
6396
+ .ant-picker-compact-item[disabled] {
6397
+ z-index: 0;
6398
+ }
6399
+ .ant-picker-compact-item:not(.ant-picker-compact-first-item):not(.ant-picker-compact-last-item).ant-picker {
6400
+ border-radius: 0;
6401
+ }
6402
+ .ant-picker-compact-item.ant-picker.ant-picker-compact-first-item:not(.ant-picker-compact-last-item):not(.ant-picker-compact-item-rtl) {
6403
+ border-top-right-radius: 0;
6404
+ border-bottom-right-radius: 0;
6405
+ }
6406
+ .ant-picker-compact-item.ant-picker.ant-picker-compact-last-item:not(.ant-picker-compact-first-item):not(.ant-picker-compact-item-rtl) {
6407
+ border-top-left-radius: 0;
6408
+ border-bottom-left-radius: 0;
6409
+ }
6410
+ .ant-picker-compact-item.ant-picker.ant-picker-compact-item-rtl.ant-picker-compact-first-item:not(.ant-picker-compact-last-item) {
6411
+ border-top-left-radius: 0;
6412
+ border-bottom-left-radius: 0;
6413
+ }
6414
+ .ant-picker-compact-item.ant-picker.ant-picker-compact-item-rtl.ant-picker-compact-last-item:not(.ant-picker-compact-first-item) {
6415
+ border-top-right-radius: 0;
6416
+ border-bottom-right-radius: 0;
6417
+ }
6875
6418
  .ant-picker-panel {
6876
6419
  display: inline-flex;
6877
6420
  flex-direction: column;
@@ -7171,7 +6714,6 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
7171
6714
  height: 56px;
7172
6715
  }
7173
6716
  .ant-picker-footer {
7174
- width: -webkit-min-content;
7175
6717
  width: -moz-min-content;
7176
6718
  width: min-content;
7177
6719
  min-width: 100%;
@@ -7675,6 +7217,7 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
7675
7217
  }
7676
7218
  .ant-divider-horizontal.ant-divider-with-text {
7677
7219
  display: flex;
7220
+ align-items: center;
7678
7221
  margin: 16px 0;
7679
7222
  color: rgba(0, 0, 0, 0.85);
7680
7223
  font-weight: 500;
@@ -7687,7 +7230,6 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
7687
7230
  .ant-divider-horizontal.ant-divider-with-text::before,
7688
7231
  .ant-divider-horizontal.ant-divider-with-text::after {
7689
7232
  position: relative;
7690
- top: 50%;
7691
7233
  width: 50%;
7692
7234
  border-top: 1px solid transparent;
7693
7235
  border-top-color: inherit;
@@ -7696,19 +7238,15 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
7696
7238
  content: '';
7697
7239
  }
7698
7240
  .ant-divider-horizontal.ant-divider-with-text-left::before {
7699
- top: 50%;
7700
7241
  width: 5%;
7701
7242
  }
7702
7243
  .ant-divider-horizontal.ant-divider-with-text-left::after {
7703
- top: 50%;
7704
7244
  width: 95%;
7705
7245
  }
7706
7246
  .ant-divider-horizontal.ant-divider-with-text-right::before {
7707
- top: 50%;
7708
7247
  width: 95%;
7709
7248
  }
7710
7249
  .ant-divider-horizontal.ant-divider-with-text-right::after {
7711
- top: 50%;
7712
7250
  width: 5%;
7713
7251
  }
7714
7252
  .ant-divider-inner-text {
@@ -7850,7 +7388,7 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
7850
7388
  min-height: 0;
7851
7389
  }
7852
7390
  .ant-drawer-extra {
7853
- flex: 0;
7391
+ flex: none;
7854
7392
  }
7855
7393
  .ant-drawer-close {
7856
7394
  display: inline-block;
@@ -7934,9 +7472,9 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
7934
7472
  .ant-drawer-panel-motion-left-leave-active {
7935
7473
  transition: all 0.3s;
7936
7474
  }
7937
- .ant-drawer-panel-motion-left-enter,
7938
- .ant-drawer-panel-motion-left-appear {
7939
- transform: translateX(-100%);
7475
+ .ant-drawer-panel-motion-left-enter-start,
7476
+ .ant-drawer-panel-motion-left-appear-start {
7477
+ transform: translateX(-100%) !important;
7940
7478
  }
7941
7479
  .ant-drawer-panel-motion-left-enter-active,
7942
7480
  .ant-drawer-panel-motion-left-appear-active {
@@ -7958,9 +7496,9 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
7958
7496
  .ant-drawer-panel-motion-right-leave-active {
7959
7497
  transition: all 0.3s;
7960
7498
  }
7961
- .ant-drawer-panel-motion-right-enter,
7962
- .ant-drawer-panel-motion-right-appear {
7963
- transform: translateX(100%);
7499
+ .ant-drawer-panel-motion-right-enter-start,
7500
+ .ant-drawer-panel-motion-right-appear-start {
7501
+ transform: translateX(100%) !important;
7964
7502
  }
7965
7503
  .ant-drawer-panel-motion-right-enter-active,
7966
7504
  .ant-drawer-panel-motion-right-appear-active {
@@ -7982,9 +7520,9 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
7982
7520
  .ant-drawer-panel-motion-top-leave-active {
7983
7521
  transition: all 0.3s;
7984
7522
  }
7985
- .ant-drawer-panel-motion-top-enter,
7986
- .ant-drawer-panel-motion-top-appear {
7987
- transform: translateY(-100%);
7523
+ .ant-drawer-panel-motion-top-enter-start,
7524
+ .ant-drawer-panel-motion-top-appear-start {
7525
+ transform: translateY(-100%) !important;
7988
7526
  }
7989
7527
  .ant-drawer-panel-motion-top-enter-active,
7990
7528
  .ant-drawer-panel-motion-top-appear-active {
@@ -8006,9 +7544,9 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
8006
7544
  .ant-drawer-panel-motion-bottom-leave-active {
8007
7545
  transition: all 0.3s;
8008
7546
  }
8009
- .ant-drawer-panel-motion-bottom-enter,
8010
- .ant-drawer-panel-motion-bottom-appear {
8011
- transform: translateY(100%);
7547
+ .ant-drawer-panel-motion-bottom-enter-start,
7548
+ .ant-drawer-panel-motion-bottom-appear-start {
7549
+ transform: translateY(100%) !important;
8012
7550
  }
8013
7551
  .ant-drawer-panel-motion-bottom-enter-active,
8014
7552
  .ant-drawer-panel-motion-bottom-appear-active {
@@ -8230,19 +7768,25 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
8230
7768
  .ant-dropdown-menu-submenu-title.ant-dropdown-menu-submenu-title-active {
8231
7769
  background-color: #f5f5f5;
8232
7770
  }
8233
- .ant-dropdown-menu-item-disabled,
8234
- .ant-dropdown-menu-submenu-title-disabled {
7771
+ .ant-dropdown-menu-item.ant-dropdown-menu-item-disabled,
7772
+ .ant-dropdown-menu-item.ant-dropdown-menu-submenu-title-disabled,
7773
+ .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-disabled,
7774
+ .ant-dropdown-menu-submenu-title.ant-dropdown-menu-submenu-title-disabled {
8235
7775
  color: rgba(0, 0, 0, 0.25);
8236
7776
  cursor: not-allowed;
8237
7777
  }
8238
- .ant-dropdown-menu-item-disabled:hover,
8239
- .ant-dropdown-menu-submenu-title-disabled:hover {
7778
+ .ant-dropdown-menu-item.ant-dropdown-menu-item-disabled:hover,
7779
+ .ant-dropdown-menu-item.ant-dropdown-menu-submenu-title-disabled:hover,
7780
+ .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-disabled:hover,
7781
+ .ant-dropdown-menu-submenu-title.ant-dropdown-menu-submenu-title-disabled:hover {
8240
7782
  color: rgba(0, 0, 0, 0.25);
8241
7783
  background-color: #fff;
8242
7784
  cursor: not-allowed;
8243
7785
  }
8244
- .ant-dropdown-menu-item-disabled a,
8245
- .ant-dropdown-menu-submenu-title-disabled a {
7786
+ .ant-dropdown-menu-item.ant-dropdown-menu-item-disabled a,
7787
+ .ant-dropdown-menu-item.ant-dropdown-menu-submenu-title-disabled a,
7788
+ .ant-dropdown-menu-submenu-title.ant-dropdown-menu-item-disabled a,
7789
+ .ant-dropdown-menu-submenu-title.ant-dropdown-menu-submenu-title-disabled a {
8246
7790
  pointer-events: none;
8247
7791
  }
8248
7792
  .ant-dropdown-menu-item-divider,
@@ -8299,7 +7843,6 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
8299
7843
  .ant-dropdown.ant-slide-down-appear.ant-slide-down-appear-active.ant-dropdown-placement-bottom,
8300
7844
  .ant-dropdown.ant-slide-down-enter.ant-slide-down-enter-active.ant-dropdown-placement-bottomRight,
8301
7845
  .ant-dropdown.ant-slide-down-appear.ant-slide-down-appear-active.ant-dropdown-placement-bottomRight {
8302
- -webkit-animation-name: antSlideUpIn;
8303
7846
  animation-name: antSlideUpIn;
8304
7847
  }
8305
7848
  .ant-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-dropdown-placement-topLeft,
@@ -8308,19 +7851,16 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
8308
7851
  .ant-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-dropdown-placement-top,
8309
7852
  .ant-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-dropdown-placement-topRight,
8310
7853
  .ant-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-dropdown-placement-topRight {
8311
- -webkit-animation-name: antSlideDownIn;
8312
7854
  animation-name: antSlideDownIn;
8313
7855
  }
8314
7856
  .ant-dropdown.ant-slide-down-leave.ant-slide-down-leave-active.ant-dropdown-placement-bottomLeft,
8315
7857
  .ant-dropdown.ant-slide-down-leave.ant-slide-down-leave-active.ant-dropdown-placement-bottom,
8316
7858
  .ant-dropdown.ant-slide-down-leave.ant-slide-down-leave-active.ant-dropdown-placement-bottomRight {
8317
- -webkit-animation-name: antSlideUpOut;
8318
7859
  animation-name: antSlideUpOut;
8319
7860
  }
8320
7861
  .ant-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-dropdown-placement-topLeft,
8321
7862
  .ant-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-dropdown-placement-top,
8322
7863
  .ant-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-dropdown-placement-topRight {
8323
- -webkit-animation-name: antSlideDownOut;
8324
7864
  animation-name: antSlideDownOut;
8325
7865
  }
8326
7866
  .ant-dropdown-trigger > .anticon.anticon-down,
@@ -8893,7 +8433,6 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
8893
8433
  font-size: 14px;
8894
8434
  text-align: center;
8895
8435
  visibility: visible;
8896
- -webkit-animation: zoomIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
8897
8436
  animation: zoomIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
8898
8437
  pointer-events: none;
8899
8438
  }
@@ -8946,16 +8485,6 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
8946
8485
  .ant-show-help-item-leave-active {
8947
8486
  transform: translateY(-5px);
8948
8487
  }
8949
- @-webkit-keyframes diffZoomIn1 {
8950
- 0% {
8951
- transform: scale(0);
8952
- opacity: 0;
8953
- }
8954
- 100% {
8955
- transform: scale(1);
8956
- opacity: 1;
8957
- }
8958
- }
8959
8488
  @keyframes diffZoomIn1 {
8960
8489
  0% {
8961
8490
  transform: scale(0);
@@ -8966,16 +8495,6 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
8966
8495
  opacity: 1;
8967
8496
  }
8968
8497
  }
8969
- @-webkit-keyframes diffZoomIn2 {
8970
- 0% {
8971
- transform: scale(0);
8972
- opacity: 0;
8973
- }
8974
- 100% {
8975
- transform: scale(1);
8976
- opacity: 1;
8977
- }
8978
- }
8979
8498
  @keyframes diffZoomIn2 {
8980
8499
  0% {
8981
8500
  transform: scale(0);
@@ -8986,16 +8505,6 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
8986
8505
  opacity: 1;
8987
8506
  }
8988
8507
  }
8989
- @-webkit-keyframes diffZoomIn3 {
8990
- 0% {
8991
- transform: scale(0);
8992
- opacity: 0;
8993
- }
8994
- 100% {
8995
- transform: scale(1);
8996
- opacity: 1;
8997
- }
8998
- }
8999
8508
  @keyframes diffZoomIn3 {
9000
8509
  0% {
9001
8510
  transform: scale(0);
@@ -14334,7 +13843,6 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
14334
13843
  .ant-image-preview.ant-zoom-appear {
14335
13844
  transform: none;
14336
13845
  opacity: 0;
14337
- -webkit-animation-duration: 0.3s;
14338
13846
  animation-duration: 0.3s;
14339
13847
  -webkit-user-select: none;
14340
13848
  -moz-user-select: none;
@@ -14375,7 +13883,6 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
14375
13883
  max-height: 100%;
14376
13884
  vertical-align: middle;
14377
13885
  transform: scale3d(1, 1, 1);
14378
- cursor: -webkit-grab;
14379
13886
  cursor: grab;
14380
13887
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
14381
13888
  -webkit-user-select: none;
@@ -14399,7 +13906,6 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
14399
13906
  content: '';
14400
13907
  }
14401
13908
  .ant-image-preview-moving .ant-image-preview-img {
14402
- cursor: -webkit-grabbing;
14403
13909
  cursor: grabbing;
14404
13910
  }
14405
13911
  .ant-image-preview-moving .ant-image-preview-img-wrapper {
@@ -14408,6 +13914,13 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
14408
13914
  .ant-image-preview-wrap {
14409
13915
  z-index: 1080;
14410
13916
  }
13917
+ .ant-image-preview-operations-wrapper {
13918
+ position: fixed;
13919
+ top: 0;
13920
+ right: 0;
13921
+ z-index: 1081;
13922
+ width: 100%;
13923
+ }
14411
13924
  .ant-image-preview-operations {
14412
13925
  box-sizing: border-box;
14413
13926
  margin: 0;
@@ -14417,14 +13930,9 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
14417
13930
  font-variant: tabular-nums;
14418
13931
  line-height: 1.5715;
14419
13932
  font-feature-settings: 'tnum';
14420
- position: absolute;
14421
- top: 0;
14422
- right: 0;
14423
- z-index: 1;
14424
13933
  display: flex;
14425
13934
  flex-direction: row-reverse;
14426
13935
  align-items: center;
14427
- width: 100%;
14428
13936
  color: rgba(255, 255, 255, 0.85);
14429
13937
  list-style: none;
14430
13938
  background: rgba(0, 0, 0, 0.1);
@@ -14434,6 +13942,10 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
14434
13942
  margin-left: 12px;
14435
13943
  padding: 12px;
14436
13944
  cursor: pointer;
13945
+ transition: all 0.3s;
13946
+ }
13947
+ .ant-image-preview-operations-operation:hover {
13948
+ background: rgba(0, 0, 0, 0.2);
14437
13949
  }
14438
13950
  .ant-image-preview-operations-operation-disabled {
14439
13951
  color: rgba(255, 255, 255, 0.25);
@@ -14452,29 +13964,39 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
14452
13964
  }
14453
13965
  .ant-image-preview-switch-left,
14454
13966
  .ant-image-preview-switch-right {
14455
- position: absolute;
13967
+ position: fixed;
14456
13968
  top: 50%;
14457
- right: 10px;
14458
- z-index: 1;
13969
+ right: 8px;
13970
+ z-index: 1081;
14459
13971
  display: flex;
14460
13972
  align-items: center;
14461
13973
  justify-content: center;
14462
13974
  width: 44px;
14463
13975
  height: 44px;
14464
- margin-top: -22px;
14465
13976
  color: rgba(255, 255, 255, 0.85);
14466
13977
  background: rgba(0, 0, 0, 0.1);
14467
13978
  border-radius: 50%;
13979
+ transform: translateY(-50%);
14468
13980
  cursor: pointer;
13981
+ transition: all 0.3s;
14469
13982
  pointer-events: auto;
14470
13983
  }
13984
+ .ant-image-preview-switch-left:hover,
13985
+ .ant-image-preview-switch-right:hover {
13986
+ background: rgba(0, 0, 0, 0.2);
13987
+ }
14471
13988
  .ant-image-preview-switch-left-disabled,
14472
- .ant-image-preview-switch-right-disabled {
13989
+ .ant-image-preview-switch-right-disabled,
13990
+ .ant-image-preview-switch-left-disabled:hover,
13991
+ .ant-image-preview-switch-right-disabled:hover {
14473
13992
  color: rgba(255, 255, 255, 0.25);
13993
+ background: rgba(0, 0, 0, 0.1);
14474
13994
  cursor: not-allowed;
14475
13995
  }
14476
13996
  .ant-image-preview-switch-left-disabled > .anticon,
14477
- .ant-image-preview-switch-right-disabled > .anticon {
13997
+ .ant-image-preview-switch-right-disabled > .anticon,
13998
+ .ant-image-preview-switch-left-disabled:hover > .anticon,
13999
+ .ant-image-preview-switch-right-disabled:hover > .anticon {
14478
14000
  cursor: not-allowed;
14479
14001
  }
14480
14002
  .ant-image-preview-switch-left > .anticon,
@@ -14482,10 +14004,10 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
14482
14004
  font-size: 18px;
14483
14005
  }
14484
14006
  .ant-image-preview-switch-left {
14485
- left: 10px;
14007
+ left: 8px;
14486
14008
  }
14487
14009
  .ant-image-preview-switch-right {
14488
- right: 10px;
14010
+ right: 8px;
14489
14011
  }
14490
14012
  .ant-input-affix-wrapper {
14491
14013
  position: relative;
@@ -14609,16 +14131,19 @@ textarea.ant-input-affix-wrapper {
14609
14131
  z-index: 1;
14610
14132
  }
14611
14133
  .ant-input-affix-wrapper-disabled .ant-input[disabled] {
14612
- background: transparent;
14134
+ background: rgba(255, 255, 255, 0);
14613
14135
  }
14614
- .ant-input-affix-wrapper > input.ant-input {
14615
- padding: 0;
14136
+ .ant-input-affix-wrapper > .ant-input {
14137
+ font-size: inherit;
14616
14138
  border: none;
14617
14139
  outline: none;
14618
14140
  }
14619
- .ant-input-affix-wrapper > input.ant-input:focus {
14141
+ .ant-input-affix-wrapper > .ant-input:focus {
14620
14142
  box-shadow: none !important;
14621
14143
  }
14144
+ .ant-input-affix-wrapper > .ant-input:not(textarea) {
14145
+ padding: 0;
14146
+ }
14622
14147
  .ant-input-affix-wrapper::before {
14623
14148
  width: 0;
14624
14149
  visibility: hidden;
@@ -14671,11 +14196,10 @@ textarea.ant-input-affix-wrapper {
14671
14196
  .ant-input-clear-icon-has-suffix {
14672
14197
  margin: 0 4px;
14673
14198
  }
14674
- .ant-input-affix-wrapper-textarea-with-clear-btn {
14675
- padding: 0 !important;
14676
- border: 0 !important;
14199
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-textarea-with-clear-btn {
14200
+ padding: 0;
14677
14201
  }
14678
- .ant-input-affix-wrapper-textarea-with-clear-btn .ant-input-clear-icon {
14202
+ .ant-input-affix-wrapper.ant-input-affix-wrapper-textarea-with-clear-btn .ant-input-clear-icon {
14679
14203
  position: absolute;
14680
14204
  top: 8px;
14681
14205
  right: 8px;
@@ -15264,6 +14788,39 @@ textarea.ant-input {
15264
14788
  align-items: center;
15265
14789
  margin: auto;
15266
14790
  }
14791
+ .ant-input-compact-item:not(.ant-input-compact-last-item):not(.ant-input-compact-item-rtl) {
14792
+ margin-right: -1px;
14793
+ }
14794
+ .ant-input-compact-item:not(.ant-input-compact-last-item).ant-input-compact-item-rtl {
14795
+ margin-left: -1px;
14796
+ }
14797
+ .ant-input-compact-item:hover,
14798
+ .ant-input-compact-item:focus,
14799
+ .ant-input-compact-item:active {
14800
+ z-index: 2;
14801
+ }
14802
+ .ant-input-compact-item[disabled] {
14803
+ z-index: 0;
14804
+ }
14805
+ .ant-input-compact-item:not(.ant-input-compact-first-item):not(.ant-input-compact-last-item).ant-input {
14806
+ border-radius: 0;
14807
+ }
14808
+ .ant-input-compact-item.ant-input.ant-input-compact-first-item:not(.ant-input-compact-last-item):not(.ant-input-compact-item-rtl) {
14809
+ border-top-right-radius: 0;
14810
+ border-bottom-right-radius: 0;
14811
+ }
14812
+ .ant-input-compact-item.ant-input.ant-input-compact-last-item:not(.ant-input-compact-first-item):not(.ant-input-compact-item-rtl) {
14813
+ border-top-left-radius: 0;
14814
+ border-bottom-left-radius: 0;
14815
+ }
14816
+ .ant-input-compact-item.ant-input.ant-input-compact-item-rtl.ant-input-compact-first-item:not(.ant-input-compact-last-item) {
14817
+ border-top-left-radius: 0;
14818
+ border-bottom-left-radius: 0;
14819
+ }
14820
+ .ant-input-compact-item.ant-input.ant-input-compact-item-rtl.ant-input-compact-last-item:not(.ant-input-compact-first-item) {
14821
+ border-top-right-radius: 0;
14822
+ border-bottom-right-radius: 0;
14823
+ }
15267
14824
  .ant-input-search .ant-input:hover,
15268
14825
  .ant-input-search .ant-input:focus {
15269
14826
  border-color: var(--ant-primary-5);
@@ -15310,6 +14867,32 @@ textarea.ant-input {
15310
14867
  .ant-input-search-small .ant-input-search-button {
15311
14868
  height: 24px;
15312
14869
  }
14870
+ .ant-input-search.ant-input-compact-item:not(.ant-input-compact-item-rtl):not(.ant-input-compact-last-item) .ant-input-group-addon .ant-input-search-button {
14871
+ margin-right: -1px;
14872
+ border-radius: 0;
14873
+ }
14874
+ .ant-input-search.ant-input-compact-item:not(.ant-input-compact-first-item) .ant-input,
14875
+ .ant-input-search.ant-input-compact-item:not(.ant-input-compact-first-item) .ant-input-affix-wrapper {
14876
+ border-radius: 0;
14877
+ }
14878
+ .ant-input-search.ant-input-compact-item > .ant-input-group-addon .ant-input-search-button:hover,
14879
+ .ant-input-search.ant-input-compact-item > .ant-input:hover,
14880
+ .ant-input-search.ant-input-compact-item .ant-input-affix-wrapper:hover,
14881
+ .ant-input-search.ant-input-compact-item > .ant-input-group-addon .ant-input-search-button:focus,
14882
+ .ant-input-search.ant-input-compact-item > .ant-input:focus,
14883
+ .ant-input-search.ant-input-compact-item .ant-input-affix-wrapper:focus,
14884
+ .ant-input-search.ant-input-compact-item > .ant-input-group-addon .ant-input-search-button:active,
14885
+ .ant-input-search.ant-input-compact-item > .ant-input:active,
14886
+ .ant-input-search.ant-input-compact-item .ant-input-affix-wrapper:active {
14887
+ z-index: 2;
14888
+ }
14889
+ .ant-input-search.ant-input-compact-item > .ant-input-affix-wrapper-focused {
14890
+ z-index: 2;
14891
+ }
14892
+ .ant-input-search.ant-input-compact-item-rtl:not(.ant-input-compact-last-item) .ant-input-group-addon:last-child .ant-input-search-button {
14893
+ margin-left: -1px;
14894
+ border-radius: 0;
14895
+ }
15313
14896
  .ant-input-group-wrapper-rtl {
15314
14897
  direction: rtl;
15315
14898
  }
@@ -15345,18 +14928,21 @@ textarea.ant-input {
15345
14928
  }
15346
14929
  .ant-input-search-rtl .ant-input:hover + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary),
15347
14930
  .ant-input-search-rtl .ant-input:focus + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary) {
15348
- border-right-color: var(--ant-primary-5);
15349
14931
  border-left-color: #d9d9d9;
15350
14932
  }
14933
+ .ant-input-search-rtl .ant-input:hover + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary):hover,
14934
+ .ant-input-search-rtl .ant-input:focus + .ant-input-group-addon .ant-input-search-button:not(.ant-btn-primary):hover {
14935
+ border-left-color: var(--ant-primary-5);
14936
+ }
15351
14937
  .ant-input-search-rtl > .ant-input-group > .ant-input-affix-wrapper:hover,
15352
14938
  .ant-input-search-rtl > .ant-input-group > .ant-input-affix-wrapper-focused {
15353
14939
  border-right-color: var(--ant-primary-5);
15354
14940
  }
15355
- .ant-input-search-rtl > .ant-input-group > .ant-input-group-addon {
14941
+ .ant-input-search-rtl > .ant-input-group > .ant-input-group-addon:last-child {
15356
14942
  right: -1px;
15357
14943
  left: auto;
15358
14944
  }
15359
- .ant-input-search-rtl > .ant-input-group > .ant-input-group-addon .ant-input-search-button {
14945
+ .ant-input-search-rtl > .ant-input-group > .ant-input-group-addon:last-child .ant-input-search-button {
15360
14946
  border-radius: 2px 0 0 2px;
15361
14947
  }
15362
14948
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
@@ -16304,6 +15890,42 @@ textarea.ant-input-number {
16304
15890
  .ant-input-number-out-of-range input {
16305
15891
  color: var(--ant-error-color);
16306
15892
  }
15893
+ .ant-input-number-compact-item:not(.ant-input-number-compact-last-item):not(.ant-input-number-compact-item-rtl) {
15894
+ margin-right: -1px;
15895
+ }
15896
+ .ant-input-number-compact-item:not(.ant-input-number-compact-last-item).ant-input-number-compact-item-rtl {
15897
+ margin-left: -1px;
15898
+ }
15899
+ .ant-input-number-compact-item:hover,
15900
+ .ant-input-number-compact-item:focus,
15901
+ .ant-input-number-compact-item:active {
15902
+ z-index: 2;
15903
+ }
15904
+ .ant-input-number-compact-item.ant-input-number-focused {
15905
+ z-index: 2;
15906
+ }
15907
+ .ant-input-number-compact-item[disabled] {
15908
+ z-index: 0;
15909
+ }
15910
+ .ant-input-number-compact-item:not(.ant-input-number-compact-first-item):not(.ant-input-number-compact-last-item).ant-input-number {
15911
+ border-radius: 0;
15912
+ }
15913
+ .ant-input-number-compact-item.ant-input-number.ant-input-number-compact-first-item:not(.ant-input-number-compact-last-item):not(.ant-input-number-compact-item-rtl) {
15914
+ border-top-right-radius: 0;
15915
+ border-bottom-right-radius: 0;
15916
+ }
15917
+ .ant-input-number-compact-item.ant-input-number.ant-input-number-compact-last-item:not(.ant-input-number-compact-first-item):not(.ant-input-number-compact-item-rtl) {
15918
+ border-top-left-radius: 0;
15919
+ border-bottom-left-radius: 0;
15920
+ }
15921
+ .ant-input-number-compact-item.ant-input-number.ant-input-number-compact-item-rtl.ant-input-number-compact-first-item:not(.ant-input-number-compact-last-item) {
15922
+ border-top-left-radius: 0;
15923
+ border-bottom-left-radius: 0;
15924
+ }
15925
+ .ant-input-number-compact-item.ant-input-number.ant-input-number-compact-item-rtl.ant-input-number-compact-last-item:not(.ant-input-number-compact-first-item) {
15926
+ border-top-right-radius: 0;
15927
+ border-bottom-right-radius: 0;
15928
+ }
16307
15929
  .ant-input-number-rtl {
16308
15930
  direction: rtl;
16309
15931
  }
@@ -17352,8 +16974,8 @@ textarea.ant-mentions {
17352
16974
  .ant-menu-submenu-title.ant-menu-item-only-child > .ant-menu-item-icon {
17353
16975
  margin-right: 0;
17354
16976
  }
17355
- .ant-menu-item:focus-visible,
17356
- .ant-menu-submenu-title:focus-visible {
16977
+ .ant-menu-item:not(.ant-menu-item-disabled):focus-visible,
16978
+ .ant-menu-submenu-title:not(.ant-menu-item-disabled):focus-visible {
17357
16979
  box-shadow: 0 0 0 2px var(--ant-primary-2);
17358
16980
  }
17359
16981
  .ant-menu > .ant-menu-item-divider {
@@ -18073,23 +17695,9 @@ textarea.ant-mentions {
18073
17695
  font-size: 16px;
18074
17696
  }
18075
17697
  .ant-message-notice.ant-move-up-leave.ant-move-up-leave-active {
18076
- -webkit-animation-name: MessageMoveOut;
18077
17698
  animation-name: MessageMoveOut;
18078
- -webkit-animation-duration: 0.3s;
18079
17699
  animation-duration: 0.3s;
18080
17700
  }
18081
- @-webkit-keyframes MessageMoveOut {
18082
- 0% {
18083
- max-height: 150px;
18084
- padding: 8px;
18085
- opacity: 1;
18086
- }
18087
- 100% {
18088
- max-height: 0;
18089
- padding: 0;
18090
- opacity: 0;
18091
- }
18092
- }
18093
17701
  @keyframes MessageMoveOut {
18094
17702
  0% {
18095
17703
  max-height: 150px;
@@ -18134,7 +17742,6 @@ textarea.ant-mentions {
18134
17742
  .ant-modal.ant-zoom-appear {
18135
17743
  transform: none;
18136
17744
  opacity: 0;
18137
- -webkit-animation-duration: 0.3s;
18138
17745
  animation-duration: 0.3s;
18139
17746
  -webkit-user-select: none;
18140
17747
  -moz-user-select: none;
@@ -18351,6 +17958,9 @@ textarea.ant-mentions {
18351
17958
  .ant-modal-confirm-success .ant-modal-confirm-body > .anticon {
18352
17959
  color: var(--ant-success-color);
18353
17960
  }
17961
+ .ant-modal-confirm .ant-zoom-leave .ant-modal-confirm-btns {
17962
+ pointer-events: none;
17963
+ }
18354
17964
  .ant-modal-wrap-rtl {
18355
17965
  direction: rtl;
18356
17966
  }
@@ -18497,60 +18107,34 @@ textarea.ant-mentions {
18497
18107
  margin-top: 16px;
18498
18108
  }
18499
18109
  .ant-notification .notification-fade-effect {
18500
- -webkit-animation-duration: 0.24s;
18501
18110
  animation-duration: 0.24s;
18502
- -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
18503
18111
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
18504
- -webkit-animation-fill-mode: both;
18505
18112
  animation-fill-mode: both;
18506
18113
  }
18507
18114
  .ant-notification-fade-enter,
18508
18115
  .ant-notification-fade-appear {
18509
- -webkit-animation-duration: 0.24s;
18510
18116
  animation-duration: 0.24s;
18511
- -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
18512
18117
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
18513
- -webkit-animation-fill-mode: both;
18514
18118
  animation-fill-mode: both;
18515
18119
  opacity: 0;
18516
- -webkit-animation-play-state: paused;
18517
18120
  animation-play-state: paused;
18518
18121
  }
18519
18122
  .ant-notification-fade-leave {
18520
- -webkit-animation-duration: 0.24s;
18521
18123
  animation-duration: 0.24s;
18522
- -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
18523
18124
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
18524
- -webkit-animation-fill-mode: both;
18525
18125
  animation-fill-mode: both;
18526
- -webkit-animation-duration: 0.2s;
18527
18126
  animation-duration: 0.2s;
18528
- -webkit-animation-play-state: paused;
18529
18127
  animation-play-state: paused;
18530
18128
  }
18531
18129
  .ant-notification-fade-enter.ant-notification-fade-enter-active,
18532
18130
  .ant-notification-fade-appear.ant-notification-fade-appear-active {
18533
- -webkit-animation-name: NotificationFadeIn;
18534
18131
  animation-name: NotificationFadeIn;
18535
- -webkit-animation-play-state: running;
18536
18132
  animation-play-state: running;
18537
18133
  }
18538
18134
  .ant-notification-fade-leave.ant-notification-fade-leave-active {
18539
- -webkit-animation-name: NotificationFadeOut;
18540
18135
  animation-name: NotificationFadeOut;
18541
- -webkit-animation-play-state: running;
18542
18136
  animation-play-state: running;
18543
18137
  }
18544
- @-webkit-keyframes NotificationFadeIn {
18545
- 0% {
18546
- left: 384px;
18547
- opacity: 0;
18548
- }
18549
- 100% {
18550
- left: 0;
18551
- opacity: 1;
18552
- }
18553
- }
18554
18138
  @keyframes NotificationFadeIn {
18555
18139
  0% {
18556
18140
  left: 384px;
@@ -18561,20 +18145,6 @@ textarea.ant-mentions {
18561
18145
  opacity: 1;
18562
18146
  }
18563
18147
  }
18564
- @-webkit-keyframes NotificationFadeOut {
18565
- 0% {
18566
- max-height: 150px;
18567
- margin-bottom: 16px;
18568
- opacity: 1;
18569
- }
18570
- 100% {
18571
- max-height: 0;
18572
- margin-bottom: 0;
18573
- padding-top: 0;
18574
- padding-bottom: 0;
18575
- opacity: 0;
18576
- }
18577
- }
18578
18148
  @keyframes NotificationFadeOut {
18579
18149
  0% {
18580
18150
  max-height: 150px;
@@ -18622,12 +18192,10 @@ textarea.ant-mentions {
18622
18192
  }
18623
18193
  .ant-notification-top .ant-notification-fade-enter.ant-notification-fade-enter-active,
18624
18194
  .ant-notification-top .ant-notification-fade-appear.ant-notification-fade-appear-active {
18625
- -webkit-animation-name: NotificationTopFadeIn;
18626
18195
  animation-name: NotificationTopFadeIn;
18627
18196
  }
18628
18197
  .ant-notification-bottom .ant-notification-fade-enter.ant-notification-fade-enter-active,
18629
18198
  .ant-notification-bottom .ant-notification-fade-appear.ant-notification-fade-appear-active {
18630
- -webkit-animation-name: NotificationBottomFadeIn;
18631
18199
  animation-name: NotificationBottomFadeIn;
18632
18200
  }
18633
18201
  .ant-notification-topLeft,
@@ -18639,19 +18207,8 @@ textarea.ant-mentions {
18639
18207
  .ant-notification-bottomLeft .ant-notification-fade-enter.ant-notification-fade-enter-active,
18640
18208
  .ant-notification-topLeft .ant-notification-fade-appear.ant-notification-fade-appear-active,
18641
18209
  .ant-notification-bottomLeft .ant-notification-fade-appear.ant-notification-fade-appear-active {
18642
- -webkit-animation-name: NotificationLeftFadeIn;
18643
18210
  animation-name: NotificationLeftFadeIn;
18644
18211
  }
18645
- @-webkit-keyframes NotificationTopFadeIn {
18646
- 0% {
18647
- margin-top: -100%;
18648
- opacity: 0;
18649
- }
18650
- 100% {
18651
- margin-top: 0;
18652
- opacity: 1;
18653
- }
18654
- }
18655
18212
  @keyframes NotificationTopFadeIn {
18656
18213
  0% {
18657
18214
  margin-top: -100%;
@@ -18662,16 +18219,6 @@ textarea.ant-mentions {
18662
18219
  opacity: 1;
18663
18220
  }
18664
18221
  }
18665
- @-webkit-keyframes NotificationBottomFadeIn {
18666
- 0% {
18667
- margin-bottom: -100%;
18668
- opacity: 0;
18669
- }
18670
- 100% {
18671
- margin-bottom: 0;
18672
- opacity: 1;
18673
- }
18674
- }
18675
18222
  @keyframes NotificationBottomFadeIn {
18676
18223
  0% {
18677
18224
  margin-bottom: -100%;
@@ -18682,16 +18229,6 @@ textarea.ant-mentions {
18682
18229
  opacity: 1;
18683
18230
  }
18684
18231
  }
18685
- @-webkit-keyframes NotificationLeftFadeIn {
18686
- 0% {
18687
- right: 384px;
18688
- opacity: 0;
18689
- }
18690
- 100% {
18691
- right: 0;
18692
- opacity: 1;
18693
- }
18694
- }
18695
18232
  @keyframes NotificationLeftFadeIn {
18696
18233
  0% {
18697
18234
  right: 384px;
@@ -19425,6 +18962,7 @@ textarea.ant-pagination-options-quick-jumper input {
19425
18962
  top: 0;
19426
18963
  left: 0;
19427
18964
  z-index: 1030;
18965
+ max-width: 100%;
19428
18966
  font-weight: normal;
19429
18967
  white-space: normal;
19430
18968
  text-align: left;
@@ -19488,24 +19026,24 @@ textarea.ant-pagination-options-quick-jumper input {
19488
19026
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
19489
19027
  }
19490
19028
  .ant-popover-inner-content {
19029
+ width: -moz-max-content;
19030
+ width: max-content;
19031
+ max-width: 100%;
19491
19032
  padding: 12px 16px;
19492
19033
  color: rgba(0, 0, 0, 0.85);
19493
19034
  }
19494
19035
  .ant-popover-message {
19495
- position: relative;
19036
+ display: flex;
19496
19037
  padding: 4px 0 12px;
19497
19038
  color: rgba(0, 0, 0, 0.85);
19498
19039
  font-size: 14px;
19499
19040
  }
19500
- .ant-popover-message > .anticon {
19501
- position: absolute;
19502
- top: 8.0005px;
19041
+ .ant-popover-message-icon {
19042
+ display: inline-block;
19043
+ margin-right: 8px;
19503
19044
  color: var(--ant-warning-color);
19504
19045
  font-size: 14px;
19505
19046
  }
19506
- .ant-popover-message-title {
19507
- padding-left: 22px;
19508
- }
19509
19047
  .ant-popover-buttons {
19510
19048
  margin-bottom: 4px;
19511
19049
  text-align: right;
@@ -19723,8 +19261,11 @@ textarea.ant-pagination-options-quick-jumper input {
19723
19261
  direction: rtl;
19724
19262
  text-align: right;
19725
19263
  }
19264
+ .ant-popover-rtl .ant-popover-message-icon {
19265
+ margin-right: 0;
19266
+ margin-left: 8px;
19267
+ }
19726
19268
  .ant-popover-rtl .ant-popover-message-title {
19727
- padding-right: 22px;
19728
19269
  padding-left: 16px;
19729
19270
  }
19730
19271
  .ant-popover-rtl .ant-popover-buttons {
@@ -19796,7 +19337,6 @@ textarea.ant-pagination-options-quick-jumper input {
19796
19337
  stroke: rgba(0, 0, 0, 0.04);
19797
19338
  }
19798
19339
  .ant-progress-circle-path {
19799
- -webkit-animation: ant-progress-appear 0.3s;
19800
19340
  animation: ant-progress-appear 0.3s;
19801
19341
  }
19802
19342
  .ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path {
@@ -19839,7 +19379,6 @@ textarea.ant-pagination-options-quick-jumper input {
19839
19379
  background: #fff;
19840
19380
  border-radius: 10px;
19841
19381
  opacity: 0;
19842
- -webkit-animation: ant-progress-active 2.4s cubic-bezier(0.23, 1, 0.32, 1) infinite;
19843
19382
  animation: ant-progress-active 2.4s cubic-bezier(0.23, 1, 0.32, 1) infinite;
19844
19383
  content: '';
19845
19384
  }
@@ -19889,20 +19428,6 @@ textarea.ant-pagination-options-quick-jumper input {
19889
19428
  .ant-progress-circle.ant-progress-status-success .ant-progress-text {
19890
19429
  color: var(--ant-success-color);
19891
19430
  }
19892
- @-webkit-keyframes ant-progress-active {
19893
- 0% {
19894
- transform: translateX(-100%) scaleX(0);
19895
- opacity: 0.1;
19896
- }
19897
- 20% {
19898
- transform: translateX(-100%) scaleX(0);
19899
- opacity: 0.5;
19900
- }
19901
- 100% {
19902
- transform: translateX(0) scaleX(1);
19903
- opacity: 0;
19904
- }
19905
- }
19906
19431
  @keyframes ant-progress-active {
19907
19432
  0% {
19908
19433
  transform: translateX(-100%) scaleX(0);
@@ -20017,9 +19542,7 @@ textarea.ant-pagination-options-quick-jumper input {
20017
19542
  border: 1px solid var(--ant-primary-color);
20018
19543
  border-radius: 50%;
20019
19544
  visibility: hidden;
20020
- -webkit-animation: antRadioEffect 0.36s ease-in-out;
20021
19545
  animation: antRadioEffect 0.36s ease-in-out;
20022
- -webkit-animation-fill-mode: both;
20023
19546
  animation-fill-mode: both;
20024
19547
  content: '';
20025
19548
  }
@@ -20244,16 +19767,6 @@ span.ant-radio + * {
20244
19767
  border-color: #d9d9d9;
20245
19768
  box-shadow: none;
20246
19769
  }
20247
- @-webkit-keyframes antRadioEffect {
20248
- 0% {
20249
- transform: scale(1);
20250
- opacity: 0.5;
20251
- }
20252
- 100% {
20253
- transform: scale(1.6);
20254
- opacity: 0;
20255
- }
20256
- }
20257
19770
  @keyframes antRadioEffect {
20258
19771
  0% {
20259
19772
  transform: scale(1);
@@ -20591,7 +20104,7 @@ span.ant-radio + * {
20591
20104
  .ant-select-single .ant-select-selector .ant-select-selection-placeholder {
20592
20105
  padding: 0;
20593
20106
  line-height: 30px;
20594
- transition: all 0.3s;
20107
+ transition: all 0.3s, visibility 0s;
20595
20108
  }
20596
20109
  .ant-select-single .ant-select-selector .ant-select-selection-item {
20597
20110
  position: relative;
@@ -21124,20 +20637,16 @@ span.ant-radio + * {
21124
20637
  }
21125
20638
  .ant-select-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-select-dropdown-placement-bottomLeft,
21126
20639
  .ant-select-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-select-dropdown-placement-bottomLeft {
21127
- -webkit-animation-name: antSlideUpIn;
21128
20640
  animation-name: antSlideUpIn;
21129
20641
  }
21130
20642
  .ant-select-dropdown.ant-slide-up-enter.ant-slide-up-enter-active.ant-select-dropdown-placement-topLeft,
21131
20643
  .ant-select-dropdown.ant-slide-up-appear.ant-slide-up-appear-active.ant-select-dropdown-placement-topLeft {
21132
- -webkit-animation-name: antSlideDownIn;
21133
20644
  animation-name: antSlideDownIn;
21134
20645
  }
21135
20646
  .ant-select-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-select-dropdown-placement-bottomLeft {
21136
- -webkit-animation-name: antSlideUpOut;
21137
20647
  animation-name: antSlideUpOut;
21138
20648
  }
21139
20649
  .ant-select-dropdown.ant-slide-up-leave.ant-slide-up-leave-active.ant-select-dropdown-placement-topLeft {
21140
- -webkit-animation-name: antSlideDownOut;
21141
20650
  animation-name: antSlideDownOut;
21142
20651
  }
21143
20652
  .ant-select-dropdown-hidden {
@@ -21218,6 +20727,43 @@ span.ant-radio + * {
21218
20727
  .ant-select.ant-select-in-form-item {
21219
20728
  width: 100%;
21220
20729
  }
20730
+ .ant-select-compact-item:not(.ant-select-compact-last-item) {
20731
+ margin-right: -1px;
20732
+ }
20733
+ .ant-select-compact-item:not(.ant-select-compact-last-item).ant-select-compact-item-rtl {
20734
+ margin-right: 0;
20735
+ margin-left: -1px;
20736
+ }
20737
+ .ant-select-compact-item:hover > *,
20738
+ .ant-select-compact-item:focus > *,
20739
+ .ant-select-compact-item:active > * {
20740
+ z-index: 2;
20741
+ }
20742
+ .ant-select-compact-item.ant-select-focused > * {
20743
+ z-index: 2;
20744
+ }
20745
+ .ant-select-compact-item[disabled] > * {
20746
+ z-index: 0;
20747
+ }
20748
+ .ant-select-compact-item:not(.ant-select-compact-first-item):not(.ant-select-compact-last-item).ant-select > .ant-select-selector {
20749
+ border-radius: 0;
20750
+ }
20751
+ .ant-select-compact-item.ant-select-compact-first-item.ant-select:not(.ant-select-compact-last-item):not(.ant-select-compact-item-rtl) > .ant-select-selector {
20752
+ border-top-right-radius: 0;
20753
+ border-bottom-right-radius: 0;
20754
+ }
20755
+ .ant-select-compact-item.ant-select-compact-last-item.ant-select:not(.ant-select-compact-first-item):not(.ant-select-compact-item-rtl) > .ant-select-selector {
20756
+ border-top-left-radius: 0;
20757
+ border-bottom-left-radius: 0;
20758
+ }
20759
+ .ant-select-compact-item.ant-select.ant-select-compact-first-item.ant-select-compact-item-rtl:not(.ant-select-compact-last-item) > .ant-select-selector {
20760
+ border-top-left-radius: 0;
20761
+ border-bottom-left-radius: 0;
20762
+ }
20763
+ .ant-select-compact-item.ant-select.ant-select-compact-last-item.ant-select-compact-item-rtl:not(.ant-select-compact-first-item) > .ant-select-selector {
20764
+ border-top-right-radius: 0;
20765
+ border-bottom-right-radius: 0;
20766
+ }
21221
20767
  .ant-select-rtl {
21222
20768
  direction: rtl;
21223
20769
  }
@@ -21383,7 +20929,6 @@ span.ant-radio + * {
21383
20929
  bottom: 0;
21384
20930
  left: -150%;
21385
20931
  background: linear-gradient(90deg, rgba(190, 190, 190, 0.2) 25%, rgba(129, 129, 129, 0.24) 37%, rgba(190, 190, 190, 0.2) 63%);
21386
- -webkit-animation: ant-skeleton-loading 1.4s ease infinite;
21387
20932
  animation: ant-skeleton-loading 1.4s ease infinite;
21388
20933
  content: '';
21389
20934
  }
@@ -21532,14 +21077,6 @@ span.ant-radio + * {
21532
21077
  .ant-skeleton-element .ant-skeleton-image-svg.ant-skeleton-image-circle {
21533
21078
  border-radius: 50%;
21534
21079
  }
21535
- @-webkit-keyframes ant-skeleton-loading {
21536
- 0% {
21537
- transform: translateX(-37.5%);
21538
- }
21539
- 100% {
21540
- transform: translateX(37.5%);
21541
- }
21542
- }
21543
21080
  @keyframes ant-skeleton-loading {
21544
21081
  0% {
21545
21082
  transform: translateX(-37.5%);
@@ -21557,21 +21094,11 @@ span.ant-radio + * {
21557
21094
  }
21558
21095
  .ant-skeleton-rtl.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-title,
21559
21096
  .ant-skeleton-rtl.ant-skeleton.ant-skeleton-active .ant-skeleton-content .ant-skeleton-paragraph > li {
21560
- -webkit-animation-name: ant-skeleton-loading-rtl;
21561
21097
  animation-name: ant-skeleton-loading-rtl;
21562
21098
  }
21563
21099
  .ant-skeleton-rtl.ant-skeleton.ant-skeleton-active .ant-skeleton-avatar {
21564
- -webkit-animation-name: ant-skeleton-loading-rtl;
21565
21100
  animation-name: ant-skeleton-loading-rtl;
21566
21101
  }
21567
- @-webkit-keyframes ant-skeleton-loading-rtl {
21568
- 0% {
21569
- background-position: 0% 50%;
21570
- }
21571
- 100% {
21572
- background-position: 100% 50%;
21573
- }
21574
- }
21575
21102
  @keyframes ant-skeleton-loading-rtl {
21576
21103
  0% {
21577
21104
  background-position: 0% 50%;
@@ -21798,9 +21325,22 @@ span.ant-radio + * {
21798
21325
  .ant-space-item:empty {
21799
21326
  display: none;
21800
21327
  }
21328
+ .ant-space-compact {
21329
+ display: inline-flex;
21330
+ }
21331
+ .ant-space-compact-block {
21332
+ display: flex;
21333
+ width: 100%;
21334
+ }
21335
+ .ant-space-compact-vertical {
21336
+ flex-direction: column;
21337
+ }
21801
21338
  .ant-space-rtl {
21802
21339
  direction: rtl;
21803
21340
  }
21341
+ .ant-space-compact-rtl {
21342
+ direction: rtl;
21343
+ }
21804
21344
  .ant-spin {
21805
21345
  box-sizing: border-box;
21806
21346
  margin: 0;
@@ -21923,7 +21463,6 @@ span.ant-radio + * {
21923
21463
  transform: scale(0.75);
21924
21464
  transform-origin: 50% 50%;
21925
21465
  opacity: 0.3;
21926
- -webkit-animation: antSpinMove 1s infinite linear alternate;
21927
21466
  animation: antSpinMove 1s infinite linear alternate;
21928
21467
  }
21929
21468
  .ant-spin-dot-item:nth-child(1) {
@@ -21933,24 +21472,20 @@ span.ant-radio + * {
21933
21472
  .ant-spin-dot-item:nth-child(2) {
21934
21473
  top: 0;
21935
21474
  right: 0;
21936
- -webkit-animation-delay: 0.4s;
21937
21475
  animation-delay: 0.4s;
21938
21476
  }
21939
21477
  .ant-spin-dot-item:nth-child(3) {
21940
21478
  right: 0;
21941
21479
  bottom: 0;
21942
- -webkit-animation-delay: 0.8s;
21943
21480
  animation-delay: 0.8s;
21944
21481
  }
21945
21482
  .ant-spin-dot-item:nth-child(4) {
21946
21483
  bottom: 0;
21947
21484
  left: 0;
21948
- -webkit-animation-delay: 1.2s;
21949
21485
  animation-delay: 1.2s;
21950
21486
  }
21951
21487
  .ant-spin-dot-spin {
21952
21488
  transform: rotate(0deg);
21953
- -webkit-animation: antRotate 1.2s infinite linear;
21954
21489
  animation: antRotate 1.2s infinite linear;
21955
21490
  }
21956
21491
  .ant-spin-sm .ant-spin-dot {
@@ -21977,21 +21512,11 @@ span.ant-radio + * {
21977
21512
  opacity: 0.5;
21978
21513
  }
21979
21514
  }
21980
- @-webkit-keyframes antSpinMove {
21981
- to {
21982
- opacity: 1;
21983
- }
21984
- }
21985
21515
  @keyframes antSpinMove {
21986
21516
  to {
21987
21517
  opacity: 1;
21988
21518
  }
21989
21519
  }
21990
- @-webkit-keyframes antRotate {
21991
- to {
21992
- transform: rotate(360deg);
21993
- }
21994
- }
21995
21520
  @keyframes antRotate {
21996
21521
  to {
21997
21522
  transform: rotate(360deg);
@@ -22002,14 +21527,8 @@ span.ant-radio + * {
22002
21527
  }
22003
21528
  .ant-spin-rtl .ant-spin-dot-spin {
22004
21529
  transform: rotate(-45deg);
22005
- -webkit-animation-name: antRotateRtl;
22006
21530
  animation-name: antRotateRtl;
22007
21531
  }
22008
- @-webkit-keyframes antRotateRtl {
22009
- to {
22010
- transform: rotate(-405deg);
22011
- }
22012
- }
22013
21532
  @keyframes antRotateRtl {
22014
21533
  to {
22015
21534
  transform: rotate(-405deg);
@@ -22395,7 +21914,7 @@ span.ant-radio + * {
22395
21914
  .ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
22396
21915
  position: absolute;
22397
21916
  top: 0;
22398
- left: 16px;
21917
+ left: 15px;
22399
21918
  width: 1px;
22400
21919
  height: 100%;
22401
21920
  padding: 38px 0 6px;
@@ -22413,7 +21932,7 @@ span.ant-radio + * {
22413
21932
  .ant-steps-vertical.ant-steps-small .ant-steps-item-container .ant-steps-item-tail {
22414
21933
  position: absolute;
22415
21934
  top: 0;
22416
- left: 12px;
21935
+ left: 11px;
22417
21936
  padding: 30px 0 6px;
22418
21937
  }
22419
21938
  .ant-steps-vertical.ant-steps-small .ant-steps-item-container .ant-steps-item-title {
@@ -22784,6 +22303,15 @@ span.ant-radio + * {
22784
22303
  right: -2px;
22785
22304
  left: auto;
22786
22305
  }
22306
+ .ant-steps-rtl.ant-steps-with-progress.ant-steps-vertical > .ant-steps-item {
22307
+ padding-right: 4px;
22308
+ }
22309
+ .ant-steps-rtl.ant-steps-with-progress.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
22310
+ right: 19px;
22311
+ }
22312
+ .ant-steps-rtl.ant-steps-with-progress.ant-steps-small.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
22313
+ right: 15px;
22314
+ }
22787
22315
  .ant-steps-rtl.ant-steps-with-progress.ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child {
22788
22316
  padding-right: 4px;
22789
22317
  padding-left: 0;
@@ -22794,13 +22322,21 @@ span.ant-radio + * {
22794
22322
  .ant-steps-with-progress .ant-steps-item {
22795
22323
  padding-top: 4px;
22796
22324
  }
22797
- .ant-steps-with-progress .ant-steps-item .ant-steps-item-tail {
22798
- top: 4px !important;
22325
+ .ant-steps-with-progress .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
22326
+ top: 4px;
22327
+ left: 19px;
22799
22328
  }
22800
- .ant-steps-with-progress.ant-steps-horizontal .ant-steps-item:first-child {
22329
+ .ant-steps-with-progress.ant-steps-horizontal .ant-steps-item:first-child,
22330
+ .ant-steps-with-progress.ant-steps-small.ant-steps-horizontal .ant-steps-item:first-child {
22801
22331
  padding-bottom: 4px;
22802
22332
  padding-left: 4px;
22803
22333
  }
22334
+ .ant-steps-with-progress.ant-steps-small > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
22335
+ left: 15px;
22336
+ }
22337
+ .ant-steps-with-progress.ant-steps-vertical .ant-steps-item {
22338
+ padding-left: 4px;
22339
+ }
22804
22340
  .ant-steps-with-progress.ant-steps-label-vertical .ant-steps-item .ant-steps-item-tail {
22805
22341
  top: 14px !important;
22806
22342
  }
@@ -22830,7 +22366,7 @@ span.ant-radio + * {
22830
22366
  height: 22px;
22831
22367
  line-height: 22px;
22832
22368
  vertical-align: middle;
22833
- background-image: linear-gradient(to right, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), linear-gradient(to right, #fff, #fff);
22369
+ background-color: rgba(0, 0, 0, 0.25);
22834
22370
  border: 0;
22835
22371
  border-radius: 100px;
22836
22372
  cursor: pointer;
@@ -22850,7 +22386,7 @@ span.ant-radio + * {
22850
22386
  box-shadow: none;
22851
22387
  }
22852
22388
  .ant-switch-checked {
22853
- background: var(--ant-primary-color);
22389
+ background-color: var(--ant-primary-color);
22854
22390
  }
22855
22391
  .ant-switch-loading,
22856
22392
  .ant-switch-disabled {
@@ -23662,7 +23198,7 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
23662
23198
  position: absolute;
23663
23199
  top: 0;
23664
23200
  bottom: 0;
23665
- z-index: 2;
23201
+ z-index: calc(calc(2 + 1) + 1);
23666
23202
  width: 30px;
23667
23203
  transition: box-shadow 0.3s;
23668
23204
  content: '';
@@ -24425,7 +23961,7 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
24425
23961
  margin: 0 0 0 32px;
24426
23962
  }
24427
23963
  .ant-tabs-content {
24428
- display: flex;
23964
+ position: relative;
24429
23965
  width: 100%;
24430
23966
  }
24431
23967
  .ant-tabs-content-holder {
@@ -24433,14 +23969,37 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
24433
23969
  min-width: 0;
24434
23970
  min-height: 0;
24435
23971
  }
24436
- .ant-tabs-content-animated {
24437
- transition: margin 0.3s;
24438
- }
24439
23972
  .ant-tabs-tabpane {
24440
- flex: none;
24441
- width: 100%;
24442
23973
  outline: none;
24443
23974
  }
23975
+ .ant-tabs-tabpane-hidden {
23976
+ display: none;
23977
+ }
23978
+ .ant-tabs-switch-appear,
23979
+ .ant-tabs-switch-enter {
23980
+ transition: none;
23981
+ }
23982
+ .ant-tabs-switch-appear-start,
23983
+ .ant-tabs-switch-enter-start {
23984
+ opacity: 0;
23985
+ }
23986
+ .ant-tabs-switch-appear-active,
23987
+ .ant-tabs-switch-enter-active {
23988
+ opacity: 1;
23989
+ transition: opacity 0.3s;
23990
+ }
23991
+ .ant-tabs-switch-leave {
23992
+ position: absolute;
23993
+ transition: none;
23994
+ inset: 0;
23995
+ }
23996
+ .ant-tabs-switch-leave-start {
23997
+ opacity: 1;
23998
+ }
23999
+ .ant-tabs-switch-leave-active {
24000
+ opacity: 0;
24001
+ transition: opacity 0.3s;
24002
+ }
24444
24003
  .ant-tag {
24445
24004
  box-sizing: border-box;
24446
24005
  margin: 0;
@@ -24929,7 +24488,6 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
24929
24488
  position: absolute;
24930
24489
  z-index: 1070;
24931
24490
  display: block;
24932
- width: -webkit-max-content;
24933
24491
  width: -moz-max-content;
24934
24492
  width: max-content;
24935
24493
  width: intrinsic;
@@ -25470,14 +25028,6 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
25470
25028
  right: 0;
25471
25029
  left: auto;
25472
25030
  }
25473
- @-webkit-keyframes ant-tree-node-fx-do-not-use {
25474
- 0% {
25475
- opacity: 0;
25476
- }
25477
- 100% {
25478
- opacity: 1;
25479
- }
25480
- }
25481
25031
  @keyframes ant-tree-node-fx-do-not-use {
25482
25032
  0% {
25483
25033
  opacity: 0;
@@ -25563,9 +25113,7 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
25563
25113
  border: 1px solid var(--ant-primary-color);
25564
25114
  border-radius: 2px;
25565
25115
  visibility: hidden;
25566
- -webkit-animation: antCheckboxEffect 0.36s ease-in-out;
25567
25116
  animation: antCheckboxEffect 0.36s ease-in-out;
25568
- -webkit-animation-fill-mode: backwards;
25569
25117
  animation-fill-mode: backwards;
25570
25118
  content: '';
25571
25119
  }
@@ -25634,7 +25182,6 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
25634
25182
  }
25635
25183
  .ant-tree-checkbox-disabled.ant-tree-checkbox-checked .ant-tree-checkbox-inner::after {
25636
25184
  border-color: rgba(0, 0, 0, 0.25);
25637
- -webkit-animation-name: none;
25638
25185
  animation-name: none;
25639
25186
  }
25640
25187
  .ant-tree-checkbox-disabled .ant-tree-checkbox-input {
@@ -25648,7 +25195,6 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
25648
25195
  .ant-tree-checkbox-disabled .ant-tree-checkbox-inner::after {
25649
25196
  border-color: #f5f5f5;
25650
25197
  border-collapse: separate;
25651
- -webkit-animation-name: none;
25652
25198
  animation-name: none;
25653
25199
  }
25654
25200
  .ant-tree-checkbox-disabled + span {
@@ -25784,11 +25330,8 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
25784
25330
  left: 0;
25785
25331
  border: 1px solid var(--ant-primary-color);
25786
25332
  opacity: 0;
25787
- -webkit-animation: ant-tree-node-fx-do-not-use 0.3s;
25788
25333
  animation: ant-tree-node-fx-do-not-use 0.3s;
25789
- -webkit-animation-play-state: running;
25790
25334
  animation-play-state: running;
25791
- -webkit-animation-fill-mode: forwards;
25792
25335
  animation-fill-mode: forwards;
25793
25336
  content: '';
25794
25337
  pointer-events: none;
@@ -25824,6 +25367,9 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
25824
25367
  .ant-tree-treenode:hover .ant-tree .ant-tree-treenode-draggable .ant-tree-draggable-icon {
25825
25368
  opacity: 0.45;
25826
25369
  }
25370
+ .ant-tree .ant-tree-treenode-draggable.ant-tree-treenode-disabled .ant-tree-draggable-icon {
25371
+ visibility: hidden;
25372
+ }
25827
25373
  .ant-tree-indent {
25828
25374
  align-self: stretch;
25829
25375
  white-space: nowrap;
@@ -26040,9 +25586,7 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
26040
25586
  border: 1px solid var(--ant-primary-color);
26041
25587
  border-radius: 2px;
26042
25588
  visibility: hidden;
26043
- -webkit-animation: antCheckboxEffect 0.36s ease-in-out;
26044
25589
  animation: antCheckboxEffect 0.36s ease-in-out;
26045
- -webkit-animation-fill-mode: backwards;
26046
25590
  animation-fill-mode: backwards;
26047
25591
  content: '';
26048
25592
  }
@@ -26111,7 +25655,6 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
26111
25655
  }
26112
25656
  .ant-select-tree-checkbox-disabled.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner::after {
26113
25657
  border-color: rgba(0, 0, 0, 0.25);
26114
- -webkit-animation-name: none;
26115
25658
  animation-name: none;
26116
25659
  }
26117
25660
  .ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-input {
@@ -26125,7 +25668,6 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
26125
25668
  .ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner::after {
26126
25669
  border-color: #f5f5f5;
26127
25670
  border-collapse: separate;
26128
- -webkit-animation-name: none;
26129
25671
  animation-name: none;
26130
25672
  }
26131
25673
  .ant-select-tree-checkbox-disabled + span {
@@ -26276,11 +25818,8 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
26276
25818
  left: 0;
26277
25819
  border: 1px solid var(--ant-primary-color);
26278
25820
  opacity: 0;
26279
- -webkit-animation: ant-tree-node-fx-do-not-use 0.3s;
26280
25821
  animation: ant-tree-node-fx-do-not-use 0.3s;
26281
- -webkit-animation-play-state: running;
26282
25822
  animation-play-state: running;
26283
- -webkit-animation-fill-mode: forwards;
26284
25823
  animation-fill-mode: forwards;
26285
25824
  content: '';
26286
25825
  pointer-events: none;
@@ -26316,6 +25855,9 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
26316
25855
  .ant-select-tree-treenode:hover .ant-select-tree .ant-select-tree-treenode-draggable .ant-select-tree-draggable-icon {
26317
25856
  opacity: 0.45;
26318
25857
  }
25858
+ .ant-select-tree .ant-select-tree-treenode-draggable.ant-select-tree-treenode-disabled .ant-select-tree-draggable-icon {
25859
+ visibility: hidden;
25860
+ }
26319
25861
  .ant-select-tree-indent {
26320
25862
  align-self: stretch;
26321
25863
  white-space: nowrap;
@@ -26484,7 +26026,7 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
26484
26026
  }
26485
26027
  .ant-typography {
26486
26028
  color: rgba(0, 0, 0, 0.85);
26487
- overflow-wrap: break-word;
26029
+ word-break: break-word;
26488
26030
  }
26489
26031
  .ant-typography.ant-typography-secondary {
26490
26032
  color: rgba(0, 0, 0, 0.45);
@@ -27389,31 +26931,17 @@ div.ant-typography-edit-content.ant-typography-rtl {
27389
26931
  .ant-upload-list .ant-upload-animate-inline-appear,
27390
26932
  .ant-upload-list .ant-upload-animate-inline-enter,
27391
26933
  .ant-upload-list .ant-upload-animate-inline-leave {
27392
- -webkit-animation-duration: 0.3s;
27393
26934
  animation-duration: 0.3s;
27394
- -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
27395
26935
  animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
27396
- -webkit-animation-fill-mode: forwards;
27397
26936
  animation-fill-mode: forwards;
27398
26937
  }
27399
26938
  .ant-upload-list .ant-upload-animate-inline-appear,
27400
26939
  .ant-upload-list .ant-upload-animate-inline-enter {
27401
- -webkit-animation-name: uploadAnimateInlineIn;
27402
26940
  animation-name: uploadAnimateInlineIn;
27403
26941
  }
27404
26942
  .ant-upload-list .ant-upload-animate-inline-leave {
27405
- -webkit-animation-name: uploadAnimateInlineOut;
27406
26943
  animation-name: uploadAnimateInlineOut;
27407
26944
  }
27408
- @-webkit-keyframes uploadAnimateInlineIn {
27409
- from {
27410
- width: 0;
27411
- height: 0;
27412
- margin: 0;
27413
- padding: 0;
27414
- opacity: 0;
27415
- }
27416
- }
27417
26945
  @keyframes uploadAnimateInlineIn {
27418
26946
  from {
27419
26947
  width: 0;
@@ -27423,15 +26951,6 @@ div.ant-typography-edit-content.ant-typography-rtl {
27423
26951
  opacity: 0;
27424
26952
  }
27425
26953
  }
27426
- @-webkit-keyframes uploadAnimateInlineOut {
27427
- to {
27428
- width: 0;
27429
- height: 0;
27430
- margin: 0;
27431
- padding: 0;
27432
- opacity: 0;
27433
- }
27434
- }
27435
26954
  @keyframes uploadAnimateInlineOut {
27436
26955
  to {
27437
26956
  width: 0;
@@ -28506,13 +28025,13 @@ table {
28506
28025
  * @Last Modified time: 2022-04-16 09:25:12
28507
28026
  */
28508
28027
  /*!
28509
- * Cropper.js v1.5.12
28028
+ * Cropper.js v1.5.13
28510
28029
  * https://fengyuanchen.github.io/cropperjs
28511
28030
  *
28512
28031
  * Copyright 2015-present Chen Fengyuan
28513
28032
  * Released under the MIT license
28514
28033
  *
28515
- * Date: 2021-06-12T08:00:11.623Z
28034
+ * Date: 2022-11-20T05:30:43.444Z
28516
28035
  */
28517
28036
  .cropper-container {
28518
28037
  direction: ltr;
@@ -28525,6 +28044,7 @@ table {
28525
28044
  user-select: none;
28526
28045
  }
28527
28046
  .cropper-container img {
28047
+ backface-visibility: hidden;
28528
28048
  display: block;
28529
28049
  height: 100%;
28530
28050
  image-orientation: 0deg;
@@ -28599,7 +28119,7 @@ table {
28599
28119
  .cropper-center::before,
28600
28120
  .cropper-center::after {
28601
28121
  background-color: #eee;
28602
- content: ' ';
28122
+ content: " ";
28603
28123
  display: block;
28604
28124
  position: absolute;
28605
28125
  }
@@ -28731,7 +28251,7 @@ table {
28731
28251
  .cropper-point.point-se::before {
28732
28252
  background-color: #39f;
28733
28253
  bottom: -50%;
28734
- content: ' ';
28254
+ content: " ";
28735
28255
  display: block;
28736
28256
  height: 200%;
28737
28257
  opacity: 0;
@@ -28743,7 +28263,7 @@ table {
28743
28263
  opacity: 0;
28744
28264
  }
28745
28265
  .cropper-bg {
28746
- background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC');
28266
+ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC");
28747
28267
  }
28748
28268
  .cropper-hide {
28749
28269
  display: block;