ls-pro-common 1.1.4 → 3.0.1

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
@@ -1,21 +1,22 @@
1
1
  body {
2
- --ant-primary-color: #1869ed;
3
- --ant-primary-color-hover: #418efa;
4
- --ant-primary-color-active: #0a4cc7;
5
- --ant-primary-color-outline: rgba(24, 105, 237, 0.2);
2
+ --bg-color: #F9FAFB;
3
+ --ant-primary-color: #0E55CB;
4
+ --ant-primary-color-hover: #3277d9;
5
+ --ant-primary-color-active: #033ca6;
6
+ --ant-primary-color-outline: rgba(14, 85, 203, 0.2);
6
7
  --ant-primary-1: #e6f4ff;
7
- --ant-primary-2: #bddfff;
8
- --ant-primary-3: #94c8ff;
9
- --ant-primary-4: #6baeff;
10
- --ant-primary-5: #418efa;
11
- --ant-primary-6: #1869ed;
12
- --ant-primary-7: #0a4cc7;
13
- --ant-primary-color-deprecated-pure: #bed5fa;
14
- --ant-primary-color-deprecated-l-35: #bed5fa;
15
- --ant-primary-color-deprecated-l-20: #77a6f4;
16
- --ant-primary-color-deprecated-t-20: #4687f1;
17
- --ant-primary-color-deprecated-t-50: #8cb4f6;
18
- --ant-primary-color-deprecated-f-12: rgba(24, 105, 237, 0.12);
8
+ --ant-primary-2: #b5dbff;
9
+ --ant-primary-3: #85baf2;
10
+ --ant-primary-4: #5a99e6;
11
+ --ant-primary-5: #3277d9;
12
+ --ant-primary-6: #0E55CB;
13
+ --ant-primary-7: #033ca6;
14
+ --ant-primary-color-deprecated-pure: #94b9f8;
15
+ --ant-primary-color-deprecated-l-35: #94b9f8;
16
+ --ant-primary-color-deprecated-l-20: #4c8bf3;
17
+ --ant-primary-color-deprecated-t-20: #3e77d5;
18
+ --ant-primary-color-deprecated-t-50: #87aae5;
19
+ --ant-primary-color-deprecated-f-12: rgba(14, 85, 203, 0.12);
19
20
  --ant-primary-color-active-deprecated-f-30: rgba(230, 244, 255, 0.3);
20
21
  --ant-primary-color-active-deprecated-d-02: #dcf0ff;
21
22
  --ant-success-color: #52c41a;
@@ -36,9 +37,25 @@ body {
36
37
  --ant-warning-color-outline: rgba(250, 173, 20, 0.2);
37
38
  --ant-warning-color-deprecated-bg: #fffbe6;
38
39
  --ant-warning-color-deprecated-border: #ffe58f;
39
- --ant-info-color: #1869ed;
40
+ --ant-info-color: #0E55CB;
40
41
  --ant-info-color-deprecated-bg: #e6f4ff;
41
- --ant-info-color-deprecated-border: #94c8ff;
42
+ --ant-info-color-deprecated-border: #85baf2;
43
+ }
44
+ * ::-webkit-scrollbar-thumb {
45
+ background-color: rgba(101, 100, 99, 0.5);
46
+ border-radius: 6px;
47
+ }
48
+ * ::-webkit-scrollbar-thumb:hover {
49
+ background-color: rgba(101, 100, 99, 0.8);
50
+ border-radius: 6px;
51
+ }
52
+ * ::-webkit-scrollbar {
53
+ width: 8px;
54
+ height: 8px;
55
+ background-color: transparent;
56
+ }
57
+ * {
58
+ scrollbar-width: thin;
42
59
  }
43
60
  body.theme-yellow {
44
61
  --ant-primary-color: #fa8500;
@@ -104,7 +121,7 @@ body.theme-yellow .ant-pro-table-alert-info-content a:active {
104
121
  left: 0;
105
122
  right: 0;
106
123
  bottom: 0;
107
- background: white;
124
+ background: var(--bg-color, #F9FAFB);
108
125
  display: flex;
109
126
  flex-direction: column;
110
127
  z-index: 50;
@@ -112,37 +129,20 @@ body.theme-yellow .ant-pro-table-alert-info-content a:active {
112
129
  .dtl-layout .dtl-header {
113
130
  display: flex;
114
131
  justify-items: center;
115
- padding: 8px 14px;
116
- border-bottom: 1px solid #f0f0f0;
117
- }
118
- .dtl-layout .dtl-header .dtl-back {
119
- display: flex;
120
- align-items: center;
121
- padding-right: 5px;
122
- }
123
- .dtl-layout .dtl-header .dtl-back > span {
124
- padding: 3px;
125
- border-radius: 2px;
126
- }
127
- .dtl-layout .dtl-header .dtl-back > span:hover {
128
- background: var(--ant-primary-2);
129
- color: var(--ant-primary-color);
132
+ padding: 8px 20px;
133
+ background: #fff;
130
134
  }
131
135
  .dtl-layout .dtl-header .dtl-title {
132
- font-size: 14pt;
136
+ font-size: 14px;
133
137
  }
134
138
  .dtl-layout .dtl-header .dtl-btns {
135
139
  flex: 1;
136
140
  text-align: right;
137
141
  }
138
- .dtl-layout .dtl-header .dtl-btns button + button {
139
- margin-left: 8px;
140
- }
141
142
  .dtl-layout .dtl-body {
142
143
  height: 0;
143
144
  flex: 1;
144
145
  overflow: auto;
145
- padding: 12px;
146
146
  }
147
147
  .dtl-layout .dtl-flex {
148
148
  display: flex;
@@ -205,29 +205,6 @@ body.theme-yellow .ant-pro-table-alert-info-content a:active {
205
205
  background-color: #fff;
206
206
  border-radius: 4px;
207
207
  }
208
- .ant-btn {
209
- border-radius: 4px;
210
- border-color: var(--ant-primary-color);
211
- color: var(--ant-primary-color);
212
- height: 28px;
213
- line-height: 1.2;
214
- padding: 2px 15px;
215
- }
216
- .ant-btn:active {
217
- border-color: var(--ant-primary-color-hover);
218
- color: var(--ant-primary-color-hover);
219
- }
220
- .ant-btn-icon-only {
221
- padding: 2px 0;
222
- }
223
- .ant-btn-primary {
224
- color: #fff;
225
- }
226
- .ant-btn-dangerous {
227
- color: var(--ant-error-color);
228
- border-color: var(--ant-error-color);
229
- background: #fff;
230
- }
231
208
  a {
232
209
  color: var(--ant-primary-color);
233
210
  }
@@ -303,18 +280,22 @@ a:hover {
303
280
  .has-background .ant-descriptions-row > th {
304
281
  padding-bottom: 10px;
305
282
  }
306
- .ant-input-has-value:hover .ant-input-clear-icon {
307
- visibility: visible;
308
- }
309
- .ant-modal-confirm-body .ant-modal-confirm-content {
310
- max-height: 60vh;
311
- overflow: auto;
312
- }
313
- .ant-row {
283
+ .ls-group-tip {
284
+ display: flex;
285
+ position: relative;
314
286
  width: 100%;
287
+ align-items: center;
288
+ background: #fff;
289
+ padding-bottom: 12px;
315
290
  }
316
- .ant-popover {
317
- max-width: min-content !important;
291
+ .ls-group-tip .ls-group-divider {
292
+ height: 14px;
293
+ border-right: 2px solid var(--ant-primary-color);
294
+ }
295
+ .ls-group-tip .ls-group-text {
296
+ font-size: 14px;
297
+ color: #181818;
298
+ padding-left: 8px;
318
299
  }
319
300
  .ls-area-cascaded-box {
320
301
  width: 600px;
@@ -386,6 +367,173 @@ a:hover {
386
367
  .ls-area-box-position .ls-ant-select-dropdown {
387
368
  top: 36px !important;
388
369
  }
370
+ .ant-timeline-item-tail {
371
+ border-left: 2px dotted var(--ant-primary-color);
372
+ }
373
+ .ant-timeline-item-head-blue {
374
+ background: var(--ant-primary-color);
375
+ }
376
+ .ant-row {
377
+ width: 100%;
378
+ }
379
+ .ant-popover {
380
+ max-width: min-content !important;
381
+ }
382
+ .ant-input-has-value:hover .ant-input-clear-icon {
383
+ visibility: visible;
384
+ }
385
+ .ant-modal-confirm-body .ant-modal-confirm-content {
386
+ max-height: 60vh;
387
+ overflow: auto;
388
+ }
389
+ .ant-message-notice-content {
390
+ border-radius: 4px !important;
391
+ }
392
+ .ant-modal-content {
393
+ border-radius: 8px !important;
394
+ }
395
+ .ant-input-number,
396
+ .ant-input-affix-wrapper,
397
+ .ant-picker,
398
+ .ant-select-selector {
399
+ border-radius: 4px !important;
400
+ }
401
+ .ant-picker-range-separator {
402
+ padding: 0 2px !important;
403
+ }
404
+ .ant-picker-range-separator .ant-picker-separator {
405
+ font-size: 14px;
406
+ }
407
+ .ant-btn {
408
+ height: 32px;
409
+ background-color: #EAEEF2;
410
+ border-color: transparent;
411
+ color: #595959;
412
+ border-radius: 4px;
413
+ }
414
+ .ant-btn:hover,
415
+ .ant-btn:focus {
416
+ background-color: #D2D6DD;
417
+ border-color: transparent;
418
+ color: #000;
419
+ }
420
+ .ant-btn:active {
421
+ background-color: #B5BBC5;
422
+ border-color: transparent;
423
+ color: #141414;
424
+ }
425
+ .ant-btn[disabled],
426
+ .ant-btn[disabled]:hover,
427
+ .ant-btn[disabled]:focus,
428
+ .ant-btn[disabled]:active {
429
+ background-color: #D2D6DD;
430
+ border-color: transparent;
431
+ color: #BFBFBF;
432
+ }
433
+ .ant-btn-primary {
434
+ background-color: var(--ant-primary-color);
435
+ border-color: transparent;
436
+ color: #fff;
437
+ }
438
+ .ant-btn-primary:hover,
439
+ .ant-btn-primary:focus {
440
+ background-color: var(--ant-primary-color-hover);
441
+ border-color: transparent;
442
+ color: #fff;
443
+ }
444
+ .ant-btn-primary:active {
445
+ background-color: var(--ant-primary-color-active);
446
+ border-color: transparent;
447
+ color: #fff;
448
+ }
449
+ .ant-btn-primary[disabled],
450
+ .ant-btn-primary[disabled]:hover,
451
+ .ant-btn-primary[disabled]:focus,
452
+ .ant-btn-primary[disabled]:active {
453
+ background-color: rgba(24, 105, 237, 0.4);
454
+ border-color: transparent;
455
+ color: #fff;
456
+ }
457
+ .ant-btn-dangerous {
458
+ background-color: #FFCCC7;
459
+ border-color: transparent;
460
+ color: #F5222D;
461
+ }
462
+ .ant-btn-dangerous:hover,
463
+ .ant-btn-dangerous:focus {
464
+ background-color: #FFF1F0;
465
+ border-color: transparent;
466
+ color: #F5222D;
467
+ }
468
+ .ant-btn-dangerous:active {
469
+ background-color: #FFA39E;
470
+ border-color: transparent;
471
+ color: #F5222D;
472
+ }
473
+ .ant-btn-dangerous[disabled],
474
+ .ant-btn-dangerous[disabled]:hover,
475
+ .ant-btn-dangerous[disabled]:focus,
476
+ .ant-btn-dangerous[disabled]:active {
477
+ background-color: #FFCCC7;
478
+ border-color: transparent;
479
+ color: #FFA39E;
480
+ }
481
+ .ant-btn-link {
482
+ background-color: transparent;
483
+ border-color: transparent;
484
+ color: var(--ant-primary-color);
485
+ padding: 4px 8px;
486
+ }
487
+ .ant-btn-link[disabled],
488
+ .ant-btn-link[disabled]:hover,
489
+ .ant-btn-link[disabled]:focus,
490
+ .ant-btn-link[disabled]:active,
491
+ .ant-btn-link:hover,
492
+ .ant-btn-link:focus,
493
+ .ant-btn-link:active {
494
+ background-color: transparent;
495
+ border-color: transparent;
496
+ }
497
+ .ant-btn-link:hover,
498
+ .ant-btn-link:focus {
499
+ color: var(--ant-primary-color-hover);
500
+ }
501
+ .ant-btn-link:active {
502
+ color: var(--ant-primary-color-active);
503
+ }
504
+ .ant-btn-link[disabled],
505
+ .ant-btn-link[disabled]:hover,
506
+ .ant-btn-link[disabled]:focus,
507
+ .ant-btn-link[disabled]:active {
508
+ color: #A7B5CC;
509
+ }
510
+ .ant-btn-text {
511
+ background-color: transparent;
512
+ border-color: transparent;
513
+ color: #8C8C8C;
514
+ padding: 4px 8px;
515
+ }
516
+ .ant-btn-text[disabled],
517
+ .ant-btn-text[disabled]:hover,
518
+ .ant-btn-text[disabled]:focus,
519
+ .ant-btn-text[disabled]:active,
520
+ .ant-btn-text:hover,
521
+ .ant-btn-text:focus,
522
+ .ant-btn-text:active {
523
+ background-color: transparent;
524
+ border-color: transparent;
525
+ }
526
+ .ant-btn-text:hover,
527
+ .ant-btn-text:active,
528
+ .ant-btn-text:focus {
529
+ color: var(--ant-primary-color-hover);
530
+ }
531
+ .ant-btn-text[disabled],
532
+ .ant-btn-text[disabled]:hover,
533
+ .ant-btn-text[disabled]:focus,
534
+ .ant-btn-text[disabled]:active {
535
+ color: #d9d9d9;
536
+ }
389
537
 
390
538
  .pro-table-tooltip-text span {
391
539
  color: #fff;
@@ -415,7 +563,7 @@ a:hover {
415
563
  margin: -12px -8px;
416
564
  }
417
565
  .ant-pro-table .ant-card-body {
418
- padding: 8px 24px;
566
+ padding: 8px 20px;
419
567
  }
420
568
  .ant-pro-table-srcoll {
421
569
  width: 100%;
@@ -426,6 +574,8 @@ a:hover {
426
574
  .ant-pro-table-srcoll .ant-card {
427
575
  flex: 1;
428
576
  height: 0;
577
+ box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
578
+ border-radius: 8px;
429
579
  }
430
580
  .ant-pro-table-srcoll .ant-card .ant-card-body {
431
581
  height: 100%;
@@ -457,8 +607,16 @@ a:hover {
457
607
  display: flex;
458
608
  flex-direction: column;
459
609
  }
610
+ .ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header {
611
+ border-radius: 4px 4px 0 0;
612
+ }
460
613
  .ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container div.ant-table-body {
461
614
  flex: 1;
615
+ overflow: auto !important;
616
+ }
617
+ .ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container::before,
618
+ .ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container::after {
619
+ box-shadow: none;
462
620
  }
463
621
  .ant-pro-table-srcoll .ant-table-placeholder td {
464
622
  border-bottom: none;
@@ -522,6 +680,14 @@ a:hover {
522
680
  .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-left-last {
523
681
  padding-right: 15px !important;
524
682
  }
683
+ .ant-table.ant-table-small .ant-table-title.ant-table-selection-column,
684
+ .ant-table.ant-table-small .ant-table-footer.ant-table-selection-column,
685
+ .ant-table.ant-table-small .ant-table-thead > tr > th.ant-table-selection-column,
686
+ .ant-table.ant-table-small .ant-table-tbody > tr > td.ant-table-selection-column,
687
+ .ant-table.ant-table-small tfoot > tr > th.ant-table-selection-column,
688
+ .ant-table.ant-table-small tfoot > tr > td.ant-table-selection-column {
689
+ text-overflow: unset;
690
+ }
525
691
  .ls-pro-table-mini .ant-table.ant-table-small .ant-table-title,
526
692
  .ls-pro-table-mini .ant-table.ant-table-small .ant-table-footer,
527
693
  .ls-pro-table-mini .ant-table.ant-table-small .ant-table-thead > tr > th,
@@ -530,6 +696,14 @@ a:hover {
530
696
  .ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > td {
531
697
  padding: 7px 5px;
532
698
  }
699
+ .ls-pro-table-mini .ant-table.ant-table-small .ant-table-title .total-label,
700
+ .ls-pro-table-mini .ant-table.ant-table-small .ant-table-footer .total-label,
701
+ .ls-pro-table-mini .ant-table.ant-table-small .ant-table-thead > tr > th .total-label,
702
+ .ls-pro-table-mini .ant-table.ant-table-small .ant-table-tbody > tr > td .total-label,
703
+ .ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > th .total-label,
704
+ .ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > td .total-label {
705
+ font-size: 12px;
706
+ }
533
707
  .ls-pro-table-mini .ant-table.ant-table-small .ant-table-title:first-child,
534
708
  .ls-pro-table-mini .ant-table.ant-table-small .ant-table-footer:first-child,
535
709
  .ls-pro-table-mini .ant-table.ant-table-small .ant-table-thead > tr > th:first-child,
@@ -562,6 +736,14 @@ a:hover {
562
736
  .ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-left-last {
563
737
  padding-right: 15px;
564
738
  }
739
+ .ls-pro-table-mini .ant-pagination {
740
+ padding: 8px 0;
741
+ }
742
+ .ls-pro-table-mini .ant-pagination-item-active {
743
+ background: #E4EEFA;
744
+ border-radius: 4px;
745
+ border-color: transparent;
746
+ }
565
747
  .ls-pro-table .ant-table-tbody tr:nth-of-type(odd) {
566
748
  background-color: #f7fafc;
567
749
  }
@@ -631,6 +813,16 @@ a:hover {
631
813
  .theme-yellow .ls-pro-table .ant-table-tbody > tr.ant-table-row:hover > td {
632
814
  background-color: #ffedd9;
633
815
  }
816
+ .ant-pro-card-body .ant-pro-table .ant-card {
817
+ box-shadow: none;
818
+ border-radius: 0;
819
+ }
820
+ .ant-pro-card-body .ant-pro-table .ant-card-body {
821
+ padding: 0 !important;
822
+ }
823
+ .ant-modal-body .ant-pro-table .ant-card {
824
+ padding: 0;
825
+ }
634
826
  @keyframes turn {
635
827
  0% {
636
828
  transform: rotate(0deg);
@@ -1032,13 +1224,15 @@ a:hover {
1032
1224
  }
1033
1225
 
1034
1226
  .ant-pro-table-search {
1035
- margin-bottom: 0;
1036
- padding: 8px 24px;
1227
+ margin-bottom: 16px;
1228
+ padding: 8px 20px;
1037
1229
  padding-bottom: 0;
1038
1230
  background: #fff;
1231
+ border-radius: 0px 8px 8px 8px;
1232
+ box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
1039
1233
  }
1040
1234
  .ant-pro-table-search > .ant-pro-form-query-filter {
1041
- border-bottom: 1px solid #f0f2f5;
1235
+ border-bottom: none;
1042
1236
  }
1043
1237
  .ant-pro-table-search::before {
1044
1238
  display: table;
@@ -2417,6 +2611,28 @@ html {
2417
2611
  max-width: 100%;
2418
2612
  }
2419
2613
 
2614
+ .ant-pro-table-alert {
2615
+ margin-left: 16px;
2616
+ }
2617
+ .ant-pro-table-alert .ant-alert.ant-alert-no-icon {
2618
+ height: 32px;
2619
+ padding: 0px;
2620
+ background-color: transparent;
2621
+ border: none;
2622
+ }
2623
+ .ant-pro-table-alert-info {
2624
+ display: flex;
2625
+ align-items: center;
2626
+ transition: all 0.3s;
2627
+ }
2628
+ .ant-pro-table-alert-info-content {
2629
+ flex: 1;
2630
+ }
2631
+ .ant-pro-table-alert-info-option {
2632
+ min-width: 48px;
2633
+ padding-left: 16px;
2634
+ }
2635
+
2420
2636
  .pro-table-tooltip-text span {
2421
2637
  color: #fff;
2422
2638
  }
@@ -2445,7 +2661,7 @@ html {
2445
2661
  margin: -12px -8px;
2446
2662
  }
2447
2663
  .ant-pro-table .ant-card-body {
2448
- padding: 8px 24px;
2664
+ padding: 8px 20px;
2449
2665
  }
2450
2666
  .ant-pro-table-srcoll {
2451
2667
  width: 100%;
@@ -2456,6 +2672,8 @@ html {
2456
2672
  .ant-pro-table-srcoll .ant-card {
2457
2673
  flex: 1;
2458
2674
  height: 0;
2675
+ box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
2676
+ border-radius: 8px;
2459
2677
  }
2460
2678
  .ant-pro-table-srcoll .ant-card .ant-card-body {
2461
2679
  height: 100%;
@@ -2487,8 +2705,16 @@ html {
2487
2705
  display: flex;
2488
2706
  flex-direction: column;
2489
2707
  }
2708
+ .ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header {
2709
+ border-radius: 4px 4px 0 0;
2710
+ }
2490
2711
  .ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container div.ant-table-body {
2491
2712
  flex: 1;
2713
+ overflow: auto !important;
2714
+ }
2715
+ .ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container::before,
2716
+ .ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container::after {
2717
+ box-shadow: none;
2492
2718
  }
2493
2719
  .ant-pro-table-srcoll .ant-table-placeholder td {
2494
2720
  border-bottom: none;
@@ -2552,6 +2778,14 @@ html {
2552
2778
  .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-left-last {
2553
2779
  padding-right: 15px !important;
2554
2780
  }
2781
+ .ant-table.ant-table-small .ant-table-title.ant-table-selection-column,
2782
+ .ant-table.ant-table-small .ant-table-footer.ant-table-selection-column,
2783
+ .ant-table.ant-table-small .ant-table-thead > tr > th.ant-table-selection-column,
2784
+ .ant-table.ant-table-small .ant-table-tbody > tr > td.ant-table-selection-column,
2785
+ .ant-table.ant-table-small tfoot > tr > th.ant-table-selection-column,
2786
+ .ant-table.ant-table-small tfoot > tr > td.ant-table-selection-column {
2787
+ text-overflow: unset;
2788
+ }
2555
2789
  .ls-pro-table-mini .ant-table.ant-table-small .ant-table-title,
2556
2790
  .ls-pro-table-mini .ant-table.ant-table-small .ant-table-footer,
2557
2791
  .ls-pro-table-mini .ant-table.ant-table-small .ant-table-thead > tr > th,
@@ -2560,6 +2794,14 @@ html {
2560
2794
  .ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > td {
2561
2795
  padding: 7px 5px;
2562
2796
  }
2797
+ .ls-pro-table-mini .ant-table.ant-table-small .ant-table-title .total-label,
2798
+ .ls-pro-table-mini .ant-table.ant-table-small .ant-table-footer .total-label,
2799
+ .ls-pro-table-mini .ant-table.ant-table-small .ant-table-thead > tr > th .total-label,
2800
+ .ls-pro-table-mini .ant-table.ant-table-small .ant-table-tbody > tr > td .total-label,
2801
+ .ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > th .total-label,
2802
+ .ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > td .total-label {
2803
+ font-size: 12px;
2804
+ }
2563
2805
  .ls-pro-table-mini .ant-table.ant-table-small .ant-table-title:first-child,
2564
2806
  .ls-pro-table-mini .ant-table.ant-table-small .ant-table-footer:first-child,
2565
2807
  .ls-pro-table-mini .ant-table.ant-table-small .ant-table-thead > tr > th:first-child,
@@ -2592,6 +2834,14 @@ html {
2592
2834
  .ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > td.ant-table-cell-fix-left-last {
2593
2835
  padding-right: 15px;
2594
2836
  }
2837
+ .ls-pro-table-mini .ant-pagination {
2838
+ padding: 8px 0;
2839
+ }
2840
+ .ls-pro-table-mini .ant-pagination-item-active {
2841
+ background: #E4EEFA;
2842
+ border-radius: 4px;
2843
+ border-color: transparent;
2844
+ }
2595
2845
  .ls-pro-table .ant-table-tbody tr:nth-of-type(odd) {
2596
2846
  background-color: #f7fafc;
2597
2847
  }
@@ -2661,6 +2911,16 @@ html {
2661
2911
  .theme-yellow .ls-pro-table .ant-table-tbody > tr.ant-table-row:hover > td {
2662
2912
  background-color: #ffedd9;
2663
2913
  }
2914
+ .ant-pro-card-body .ant-pro-table .ant-card {
2915
+ box-shadow: none;
2916
+ border-radius: 0;
2917
+ }
2918
+ .ant-pro-card-body .ant-pro-table .ant-card-body {
2919
+ padding: 0 !important;
2920
+ }
2921
+ .ant-modal-body .ant-pro-table .ant-card {
2922
+ padding: 0;
2923
+ }
2664
2924
  @keyframes turn {
2665
2925
  0% {
2666
2926
  transform: rotate(0deg);
@@ -2817,6 +3077,16 @@ html {
2817
3077
  line-height: 1;
2818
3078
  min-height: 44px;
2819
3079
  }
3080
+ .ant-pro-table-list-toolbar .select-tip {
3081
+ color: #222;
3082
+ display: flex;
3083
+ }
3084
+ .ant-pro-table-list-toolbar .select-tip .select-count {
3085
+ width: 34px;
3086
+ display: inline-block;
3087
+ text-align: center;
3088
+ color: #0E55CB;
3089
+ }
2820
3090
  .ant-pro-table-list-toolbar-container {
2821
3091
  display: flex;
2822
3092
  justify-content: space-between;
@@ -2862,7 +3132,8 @@ html {
2862
3132
  justify-content: flex-end;
2863
3133
  }
2864
3134
  .ant-pro-table-list-toolbar-extra-line {
2865
- margin-bottom: 16px;
3135
+ margin-bottom: 5px;
3136
+ margin-top: 5px;
2866
3137
  }
2867
3138
  .ant-pro-table-list-toolbar-filter {
2868
3139
  display: flex;
@@ -2891,6 +3162,54 @@ html {
2891
3162
  text-align: center;
2892
3163
  cursor: pointer;
2893
3164
  }
3165
+ .ant-pro-table-list-toolbar .tab-tag {
3166
+ box-sizing: border-box;
3167
+ margin: 0;
3168
+ padding: 0;
3169
+ color: rgba(0, 0, 0, 0.85);
3170
+ font-variant: tabular-nums;
3171
+ list-style: none;
3172
+ font-feature-settings: 'tnum', "tnum";
3173
+ display: flex;
3174
+ }
3175
+ .ant-pro-table-list-toolbar .tab-tag-wrap {
3176
+ position: relative;
3177
+ display: inline-block;
3178
+ display: flex;
3179
+ flex: auto;
3180
+ align-self: stretch;
3181
+ overflow: hidden;
3182
+ white-space: nowrap;
3183
+ transform: translate(0);
3184
+ }
3185
+ .ant-pro-table-list-toolbar .tab-tag-list {
3186
+ position: relative;
3187
+ display: flex;
3188
+ transition: transform 0.3s;
3189
+ border: 1px solid #ECF1FA;
3190
+ border-radius: 15px;
3191
+ }
3192
+ .ant-pro-table-list-toolbar .tab-tag-item {
3193
+ position: relative;
3194
+ display: inline-flex;
3195
+ align-items: center;
3196
+ padding: 8px 12px;
3197
+ font-size: 14px;
3198
+ background: transparent;
3199
+ border: 0;
3200
+ height: 30px;
3201
+ outline: none;
3202
+ cursor: pointer;
3203
+ }
3204
+ .ant-pro-table-list-toolbar .tab-tag-item:hover {
3205
+ color: #0E55CB;
3206
+ }
3207
+ .ant-pro-table-list-toolbar .tab-tag-item-active {
3208
+ background: #F3F6FC;
3209
+ box-shadow: -3px -3px 6px rgba(255, 255, 255, 0.5), 2px 2px 4px rgba(166, 177, 193, 0.500102);
3210
+ border-radius: 15px;
3211
+ color: #0E55CB;
3212
+ }
2894
3213
  .ant-pro-table-list-toolbar .ant-tabs-top > .ant-tabs-nav {
2895
3214
  margin-bottom: 0;
2896
3215
  }
@@ -2913,30 +3232,6 @@ html {
2913
3232
  }
2914
3233
  }
2915
3234
 
2916
- .ant-pro-table-alert {
2917
- position: absolute;
2918
- bottom: 24px;
2919
- margin-left: 16px;
2920
- }
2921
- .ant-pro-table-alert .ant-alert.ant-alert-no-icon {
2922
- height: 32px;
2923
- padding: 0px;
2924
- background-color: transparent;
2925
- border: none;
2926
- }
2927
- .ant-pro-table-alert-info {
2928
- display: flex;
2929
- align-items: center;
2930
- transition: all 0.3s;
2931
- }
2932
- .ant-pro-table-alert-info-content {
2933
- flex: 1;
2934
- }
2935
- .ant-pro-table-alert-info-option {
2936
- min-width: 48px;
2937
- padding-left: 16px;
2938
- }
2939
-
2940
3235
  .table-import-body {
2941
3236
  margin-left: 20px;
2942
3237
  }
@@ -3034,7 +3329,13 @@ html {
3034
3329
  margin: 0;
3035
3330
  padding: 0;
3036
3331
  background-color: #fff;
3037
- border-radius: 2px;
3332
+ border-radius: 8px;
3333
+ margin-bottom: 16px;
3334
+ box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
3335
+ }
3336
+ .ant-pro-card-bottom-radius-only {
3337
+ border-top-left-radius: 0;
3338
+ border-top-right-radius: 0;
3038
3339
  }
3039
3340
  .ant-pro-card-col {
3040
3341
  width: 100%;
@@ -3084,7 +3385,7 @@ html {
3084
3385
  font-size: 14px;
3085
3386
  }
3086
3387
  .ant-pro-card-size-small .ant-pro-card-body {
3087
- padding: 12px;
3388
+ padding: 20px;
3088
3389
  }
3089
3390
  .ant-pro-card-ghost {
3090
3391
  background-color: transparent;
@@ -3139,14 +3440,20 @@ html {
3139
3440
  }
3140
3441
  .ant-pro-card-title {
3141
3442
  color: rgba(0, 0, 0, 0.85);
3142
- font-weight: 500;
3143
- font-size: 16px;
3443
+ font-size: 14px;
3144
3444
  }
3145
3445
  .ant-pro-card-extra {
3146
3446
  color: rgba(0, 0, 0, 0.85);
3147
3447
  }
3448
+ .ant-pro-card-type-inner {
3449
+ box-shadow: none;
3450
+ border: 1px solid #E6F4FF;
3451
+ }
3148
3452
  .ant-pro-card-type-inner .ant-pro-card-header {
3149
- background-color: #fafafa;
3453
+ background-color: #F4F7FD;
3454
+ padding: 8px 20px;
3455
+ border-top-left-radius: 8px;
3456
+ border-top-right-radius: 8px;
3150
3457
  }
3151
3458
  .ant-pro-card-collapsible-icon {
3152
3459
  margin-right: 8px;
@@ -3162,7 +3469,7 @@ html {
3162
3469
  display: block;
3163
3470
  box-sizing: border-box;
3164
3471
  height: 100%;
3165
- padding: 24px;
3472
+ padding: 20px;
3166
3473
  }
3167
3474
  .ant-pro-card-body-center {
3168
3475
  display: flex;
@@ -3268,6 +3575,12 @@ html {
3268
3575
  flex-shrink: 0;
3269
3576
  width: 4.16666667%;
3270
3577
  }
3578
+ .ant-pro-card-body .ant-descriptions-view tbody > tr:last-child > td {
3579
+ padding-bottom: 0px;
3580
+ }
3581
+ .ant-pro-card-bottom-radius-only .ant-pro-card-body {
3582
+ padding-top: 10px;
3583
+ }
3271
3584
 
3272
3585
  .ant-pro-card-loading {
3273
3586
  overflow: hidden;