ls-pro-common 3.0.57 → 3.0.59

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/common.css CHANGED
@@ -467,9 +467,9 @@ a:hover {
467
467
  }
468
468
  .ant-btn {
469
469
  height: 32px;
470
+ color: var(--ant-primary-color);
470
471
  background-color: var(--ant-primary-1);
471
472
  border-color: transparent;
472
- color: var(--ant-primary-color);
473
473
  border-radius: 4px;
474
474
  }
475
475
  .ant-btn.ant-btn-lg {
@@ -480,63 +480,63 @@ a:hover {
480
480
  }
481
481
  .ant-btn:hover,
482
482
  .ant-btn:focus {
483
+ color: var(--ant-primary-color);
483
484
  background-color: var(--ant-primary-2);
484
485
  border-color: transparent;
485
- color: var(--ant-primary-color);
486
486
  }
487
487
  .ant-btn:active {
488
+ color: var(--ant-primary-color);
488
489
  background-color: var(--ant-primary-3);
489
490
  border-color: transparent;
490
- color: var(--ant-primary-color);
491
491
  }
492
492
  .ant-btn[disabled],
493
493
  .ant-btn[disabled]:hover,
494
494
  .ant-btn[disabled]:focus,
495
495
  .ant-btn[disabled]:active {
496
- background-color: #EAEEF2;
496
+ color: #d9d9d9;
497
+ background-color: #eaeef2;
497
498
  border-color: transparent;
498
- color: #D9D9D9;
499
499
  }
500
500
  .ant-btn-primary {
501
+ color: #fff;
501
502
  background-color: var(--ant-primary-color);
502
503
  border-color: transparent;
503
- color: #fff;
504
504
  }
505
505
  .ant-btn-primary:hover,
506
506
  .ant-btn-primary:focus {
507
+ color: #fff;
507
508
  background-color: var(--ant-primary-color-hover);
508
509
  border-color: transparent;
509
- color: #fff;
510
510
  }
511
511
  .ant-btn-primary:active {
512
+ color: #fff;
512
513
  background-color: var(--ant-primary-color-active);
513
514
  border-color: transparent;
514
- color: #fff;
515
515
  }
516
516
  .ant-btn-primary[disabled],
517
517
  .ant-btn-primary[disabled]:hover,
518
518
  .ant-btn-primary[disabled]:focus,
519
519
  .ant-btn-primary[disabled]:active {
520
+ color: #fff;
520
521
  background-color: var(--ant-primary-color-outline);
521
522
  border-color: transparent;
522
- color: #fff;
523
523
  }
524
524
  .ant-btn-dashed,
525
525
  .ant-btn-gray {
526
- background-color: #F1F4F6;
527
- color: #1B1F2A;
526
+ color: #1b1f2a;
527
+ background-color: #f1f4f6;
528
528
  }
529
529
  .ant-btn-dashed:hover,
530
530
  .ant-btn-gray:hover,
531
531
  .ant-btn-dashed:focus,
532
532
  .ant-btn-gray:focus {
533
- background-color: #D2D6DD;
534
- color: #1B1F2A;
533
+ color: #1b1f2a;
534
+ background-color: #d2d6dd;
535
535
  }
536
536
  .ant-btn-dashed:active,
537
537
  .ant-btn-gray:active {
538
- background-color: #B5BBC5;
539
- color: #1B1F2A;
538
+ color: #1b1f2a;
539
+ background-color: #b5bbc5;
540
540
  }
541
541
  .ant-btn-dashed[disabled],
542
542
  .ant-btn-gray[disabled],
@@ -546,38 +546,38 @@ a:hover {
546
546
  .ant-btn-gray[disabled]:focus,
547
547
  .ant-btn-dashed[disabled]:active,
548
548
  .ant-btn-gray[disabled]:active {
549
- background-color: #F1F4F6;
550
549
  color: #818999;
550
+ background-color: #f1f4f6;
551
551
  }
552
552
  .ant-btn-dangerous {
553
- background-color: #FFCCC7;
553
+ color: #f5222d;
554
+ background-color: #ffccc7;
554
555
  border-color: transparent;
555
- color: #F5222D;
556
556
  }
557
557
  .ant-btn-dangerous:hover,
558
558
  .ant-btn-dangerous:focus {
559
- background-color: #FFF1F0;
559
+ color: #f5222d;
560
+ background-color: #fff1f0;
560
561
  border-color: transparent;
561
- color: #F5222D;
562
562
  }
563
563
  .ant-btn-dangerous:active {
564
- background-color: #FFA39E;
564
+ color: #f5222d;
565
+ background-color: #ffa39e;
565
566
  border-color: transparent;
566
- color: #F5222D;
567
567
  }
568
568
  .ant-btn-dangerous[disabled],
569
569
  .ant-btn-dangerous[disabled]:hover,
570
570
  .ant-btn-dangerous[disabled]:focus,
571
571
  .ant-btn-dangerous[disabled]:active {
572
- background-color: #FFCCC7;
572
+ color: #ffa39e;
573
+ background-color: #ffccc7;
573
574
  border-color: transparent;
574
- color: #FFA39E;
575
575
  }
576
576
  .ant-btn-link {
577
+ padding: 4px 8px;
578
+ color: var(--ant-primary-color);
577
579
  background-color: transparent;
578
580
  border-color: transparent;
579
- color: var(--ant-primary-color);
580
- padding: 4px 8px;
581
581
  }
582
582
  .ant-btn-link[disabled],
583
583
  .ant-btn-link[disabled]:hover,
@@ -600,13 +600,13 @@ a:hover {
600
600
  .ant-btn-link[disabled]:hover,
601
601
  .ant-btn-link[disabled]:focus,
602
602
  .ant-btn-link[disabled]:active {
603
- color: #A7B5CC;
603
+ color: #a7b5cc;
604
604
  }
605
605
  .ant-btn-text {
606
+ padding: 4px 8px;
607
+ color: #8c8c8c;
606
608
  background-color: transparent;
607
609
  border-color: transparent;
608
- color: #8C8C8C;
609
- padding: 4px 8px;
610
610
  }
611
611
  .ant-btn-text[disabled],
612
612
  .ant-btn-text[disabled]:hover,
@@ -658,9 +658,9 @@ a:hover {
658
658
  .ant-table-filter-dropdown .ant-checkbox-wrapper + span,
659
659
  .ant-table-filter-dropdown-submenu .ant-checkbox-wrapper + span {
660
660
  display: inline-block;
661
+ width: 200px;
661
662
  overflow: hidden;
662
663
  text-overflow: ellipsis;
663
- width: 200px;
664
664
  }
665
665
  .ant-picker:not(.ant-picker-large, .ant-picker-sm),
666
666
  .ant-input:not(.ant-input-lg, .ant-input-sm) .ant-form-item-label > label,
@@ -731,24 +731,24 @@ a:hover {
731
731
  max-width: 200px;
732
732
  }
733
733
  .ant-picker-panel-container .ant-picker-presets ul {
734
- height: 0;
735
734
  flex: auto;
736
- list-style: none;
737
- overflow: auto;
735
+ height: 0;
738
736
  margin: 0;
739
737
  padding: 8px;
738
+ overflow: auto;
739
+ list-style: none;
740
740
  border-inline-end: 1px solid rgba(5, 5, 5, 0.06);
741
741
  }
742
742
  .ant-picker-panel-container .ant-picker-presets ul li {
743
+ margin-top: 8px;
743
744
  overflow: hidden;
744
745
  white-space: nowrap;
745
746
  text-overflow: ellipsis;
746
747
  border-radius: 4px;
747
- padding-inline: 8px;
748
- padding-block: 1px;
749
748
  cursor: pointer;
750
749
  transition: all 0.3s;
751
- margin-top: 8px;
750
+ padding-inline: 8px;
751
+ padding-block: 1px;
752
752
  }
753
753
  .ant-table td.ant-table-cell {
754
754
  color: #5b5b5b;
@@ -766,8 +766,11 @@ a:hover {
766
766
  }
767
767
  .ant-pro-form-query-filter .ant-input-group.ant-input-group-compact > *:last-child {
768
768
  border-radius: 0 !important;
769
- border-top-left-radius: 4px !important;
770
- border-bottom-left-radius: 4px !important;
769
+ border-top-right-radius: 4px !important;
770
+ border-bottom-right-radius: 4px !important;
771
+ }
772
+ .ant-pro-form-query-filter .ant-input-group > .ant-input:not(:first-child):not(:last-child) {
773
+ line-height: 1.5;
771
774
  }
772
775
  .ant-input-number-group > .ant-input-number:not(:first-child):not(:last-child) {
773
776
  border-radius: 0 !important;
@@ -2813,8 +2816,8 @@ html {
2813
2816
  align-items: center;
2814
2817
  justify-content: space-between;
2815
2818
  height: 42px;
2816
- padding: 0 10px;
2817
2819
  margin-bottom: 10px;
2820
+ padding: 0 10px;
2818
2821
  border-bottom: 1px solid #ccc;
2819
2822
  }
2820
2823
  .search-setting .ant-tree .ant-tree-node-content-wrapper:hover {
@@ -2827,39 +2830,50 @@ html {
2827
2830
  background-color: #f5f5f5;
2828
2831
  }
2829
2832
  .search-modal-body {
2833
+ display: flex;
2830
2834
  min-height: 45vh;
2831
2835
  max-height: 73vh;
2832
- display: flex;
2833
2836
  }
2834
2837
  .search-modal-body .body-left {
2835
- width: 230px;
2836
- border-right: #f0f0f0 1px solid;
2838
+ width: 200px;
2837
2839
  padding: 10px;
2838
2840
  overflow: auto;
2841
+ border-right: #f0f0f0 1px solid;
2839
2842
  }
2840
2843
  .search-modal-body .body-left .search-setting-item {
2841
- padding: 5px 6px;
2842
- border-radius: 4px;
2843
- margin-top: 8px;
2844
2844
  position: relative;
2845
- height: 33px;
2845
+ height: 28px;
2846
+ margin-top: 8px;
2847
+ padding: 2px 10px;
2846
2848
  background-color: #f5f5f5;
2849
+ border-radius: 4px;
2847
2850
  }
2848
2851
  .search-modal-body .body-left .search-setting-item .search-item-btn {
2849
2852
  position: absolute;
2853
+ top: 2px;
2850
2854
  right: 2px;
2851
- top: 5px;
2852
- cursor: pointer;
2853
2855
  display: none;
2856
+ cursor: pointer;
2857
+ }
2858
+ .search-modal-body .body-left .search-setting-item.is_current {
2859
+ color: #fff;
2860
+ background-color: var(--ant-primary-color, #1869ed);
2861
+ }
2862
+ .search-modal-body .body-left .search-setting-item:not(.is_current) .anticon-edit:hover {
2863
+ color: var(--ant-primary-color, #1869ed);
2854
2864
  }
2855
- .search-modal-body .body-left .search-setting-item.is_current,
2856
- .search-modal-body .body-left .search-setting-item:hover {
2865
+ .search-modal-body .body-left .search-setting-item:hover:not(.is_current) {
2857
2866
  background-color: #e6f7ff;
2858
2867
  }
2859
- .search-modal-body .body-left .search-setting-item.is_current .search-item-btn,
2860
2868
  .search-modal-body .body-left .search-setting-item:hover .search-item-btn {
2861
2869
  display: inline-flex;
2862
2870
  }
2871
+ .search-modal-body .body-left .my-icon-remove {
2872
+ margin-top: 3px;
2873
+ }
2874
+ .search-modal-body .body-left .my-icon-remove:hover {
2875
+ color: var(--ant-error-color, #ff4d4f);
2876
+ }
2863
2877
  .search-modal-body .body-right {
2864
2878
  flex: 1;
2865
2879
  overflow: auto;
@@ -3434,6 +3448,9 @@ html {
3434
3448
  .ant-pro-table-column-setting-overlay .ant-tree-treenode .column-setting-item-btn:hover {
3435
3449
  color: var(--ant-primary-color, #1869ed);
3436
3450
  }
3451
+ .ant-pro-table-column-setting-overlay .my-icon-remove {
3452
+ margin-top: 3px;
3453
+ }
3437
3454
  .ant-pro-table-column-setting-overlay .my-icon-remove:hover {
3438
3455
  color: var(--ant-error-color, #ff4d4f);
3439
3456
  }
@@ -3499,16 +3516,16 @@ html {
3499
3516
  }
3500
3517
  .table-column-setting-left .table-column-item {
3501
3518
  position: relative;
3502
- height: 33px;
3519
+ height: 28px;
3503
3520
  margin-top: 8px;
3504
- padding: 5px 6px;
3521
+ padding: 2px 10px;
3505
3522
  color: #494747;
3506
3523
  background-color: #f5f5f5;
3507
3524
  border-radius: 4px;
3508
3525
  }
3509
3526
  .table-column-setting-left .table-column-item .item-btn {
3510
3527
  position: absolute;
3511
- top: 5px;
3528
+ top: 2px;
3512
3529
  right: 2px;
3513
3530
  display: none;
3514
3531
  cursor: pointer;