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