@fangzhongya/fang-ui 0.0.54 → 0.0.55
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/components/common/use.cjs +2 -0
- package/dist/components/common/use.js +2 -0
- package/dist/components/index.cjs +84 -80
- package/dist/components/index.d.ts +3 -1
- package/dist/components/index.js +5 -1
- package/dist/components/list/index.cjs +9 -0
- package/dist/components/list/index.css +96 -0
- package/dist/components/list/index.d.ts +2 -0
- package/dist/components/list/index.js +9 -0
- package/dist/components/list/src/data.cjs +97 -0
- package/dist/components/list/src/data.d.ts +100 -0
- package/dist/components/list/src/data.js +97 -0
- package/dist/components/list/src/index.cjs +4 -0
- package/dist/components/list/src/index.js +4 -0
- package/dist/components/list/src/index2.cjs +337 -0
- package/dist/components/list/src/index2.js +337 -0
- package/dist/components/lists/index.cjs +2 -2
- package/dist/components/lists/index.css +27 -72
- package/dist/components/lists/src/data.cjs +80 -49
- package/dist/components/lists/src/data.d.ts +103 -48
- package/dist/components/lists/src/data.js +81 -50
- package/dist/components/lists/src/index.cjs +2 -2
- package/dist/components/lists/src/index2.cjs +237 -303
- package/dist/components/lists/src/index2.js +237 -303
- package/dist/components/listsp/index.cjs +9 -0
- package/dist/components/listsp/index.css +86 -0
- package/dist/components/listsp/index.d.ts +2 -0
- package/dist/components/listsp/index.js +9 -0
- package/dist/components/listsp/src/data.d.ts +14 -0
- package/dist/components/listsp/src/index.cjs +4 -0
- package/dist/components/listsp/src/index.js +4 -0
- package/dist/components/listsp/src/index2.cjs +98 -0
- package/dist/components/listsp/src/index2.js +98 -0
- package/dist/components/page/index.css +35 -38
- package/dist/components/page/index.scss +1 -1
- package/dist/components/page/src/index2.cjs +2 -2
- package/dist/components/page/src/index2.js +2 -2
- package/dist/components/page/style/index2.scss +1 -1
- package/dist/components/tables/common/pagin.cjs +23 -7
- package/dist/components/tables/common/pagin.d.ts +8 -1
- package/dist/components/tables/common/pagin.js +23 -7
- package/dist/components/tables/index.css +1 -4
- package/dist/components/tablesp/index.css +1 -4
- package/dist/css/index.css +100 -46
- package/dist/css/list.css +96 -0
- package/dist/css/lists.css +27 -72
- package/dist/css/listsp.css +86 -0
- package/dist/css/page.css +35 -38
- package/dist/css/tables.css +1 -4
- package/dist/css/tablesp.css +1 -4
- package/dist/directives/scroll/index.cjs +36 -11
- package/dist/directives/scroll/index.js +36 -11
- package/dist/icons/index.css +43 -43
- package/dist/icons/index.json +14 -14
- package/dist/index.cjs +102 -98
- package/dist/index.css +100 -46
- package/dist/index.js +5 -1
- package/dist/type.d.ts +7 -0
- package/package.json +4 -4
- /package/dist/components/{forms-item → forms-items}/index.css +0 -0
- /package/dist/components/{cascader-panel → keep-com}/index.css +0 -0
- /package/dist/components/{lists → list}/src/setup.d.ts +0 -0
- /package/dist/components/{lists → list}/src/util.cjs +0 -0
- /package/dist/components/{lists → list}/src/util.d.ts +0 -0
- /package/dist/components/{lists → list}/src/util.js +0 -0
- /package/dist/components/{lists → tables}/common/img.cjs +0 -0
- /package/dist/components/{lists → tables}/common/img.js +0 -0
- /package/dist/components/{lists → tables}/common/img2.cjs +0 -0
- /package/dist/components/{lists → tables}/common/img2.js +0 -0
- /package/dist/css/{forms-item.css → forms-items.css} +0 -0
- /package/dist/css/{cascader-panel.css → keep-com.css} +0 -0
package/dist/css/index.css
CHANGED
|
@@ -401,97 +401,97 @@
|
|
|
401
401
|
height: 100%;
|
|
402
402
|
}
|
|
403
403
|
|
|
404
|
-
.
|
|
404
|
+
.menus .menu-li-item {
|
|
405
|
+
display: flex;
|
|
406
|
+
align-items: center;
|
|
407
|
+
}
|
|
408
|
+
.menus .menu-li-icon {
|
|
409
|
+
margin-right: 10px;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.list-div .list-table {
|
|
405
413
|
width: 100%;
|
|
406
414
|
height: 100%;
|
|
407
415
|
}
|
|
408
|
-
.
|
|
416
|
+
.list-div .list-table td {
|
|
409
417
|
text-align: left;
|
|
410
418
|
}
|
|
411
|
-
.
|
|
419
|
+
.list-div .list-table th {
|
|
412
420
|
font-weight: initial;
|
|
413
421
|
}
|
|
414
|
-
.
|
|
422
|
+
.list-div .list-table .is-whole .list-table-auto {
|
|
415
423
|
width: 100%;
|
|
416
424
|
}
|
|
417
|
-
.
|
|
425
|
+
.list-div .list-table .is-whole .list-table-value {
|
|
418
426
|
width: 100%;
|
|
419
427
|
display: block;
|
|
420
428
|
}
|
|
421
|
-
.
|
|
422
|
-
.
|
|
429
|
+
.list-div .list-table .list-table-td,
|
|
430
|
+
.list-div .list-table .list-table-th {
|
|
423
431
|
padding: 6px;
|
|
424
432
|
}
|
|
425
|
-
.
|
|
433
|
+
.list-div .list-table .list-table-auto {
|
|
426
434
|
display: inline-flex;
|
|
427
435
|
align-items: center;
|
|
428
436
|
}
|
|
429
|
-
.
|
|
437
|
+
.list-div .list-table .list-table-auto .list-table-label {
|
|
430
438
|
white-space: nowrap;
|
|
431
439
|
}
|
|
432
|
-
.
|
|
440
|
+
.list-div .list-table .list-table-th {
|
|
433
441
|
text-align: left;
|
|
434
442
|
}
|
|
435
|
-
.
|
|
443
|
+
.list-div .list-table.right .list-table-th {
|
|
436
444
|
text-align: right;
|
|
437
445
|
}
|
|
438
|
-
.
|
|
446
|
+
.list-div .list-table.center .list-table-th {
|
|
439
447
|
text-align: center;
|
|
440
448
|
}
|
|
441
|
-
.
|
|
449
|
+
.list-div .list-table.auto .list-table-th {
|
|
442
450
|
padding-right: 0;
|
|
443
451
|
}
|
|
444
|
-
.
|
|
452
|
+
.list-div .list-table.top .list-table-th {
|
|
445
453
|
padding-bottom: 0;
|
|
446
454
|
}
|
|
447
|
-
.
|
|
455
|
+
.list-div .list-table.is-aliquots {
|
|
448
456
|
table-layout: fixed;
|
|
449
457
|
}
|
|
450
|
-
.
|
|
451
|
-
border-right: 1px solid var(--
|
|
452
|
-
border-top: 1px solid var(--
|
|
453
|
-
border-bottom: 1px solid var(--
|
|
458
|
+
.list-div .list-table.is-border {
|
|
459
|
+
border-right: 1px solid var(--list-border-color);
|
|
460
|
+
border-top: 1px solid var(--list-border-color);
|
|
461
|
+
border-bottom: 1px solid var(--list-border-color);
|
|
454
462
|
}
|
|
455
|
-
.
|
|
456
|
-
border-bottom: 1px solid var(--
|
|
457
|
-
border-left: 1px solid var(--
|
|
463
|
+
.list-div .list-table.is-border > tr > td {
|
|
464
|
+
border-bottom: 1px solid var(--list-border-color);
|
|
465
|
+
border-left: 1px solid var(--list-border-color);
|
|
458
466
|
}
|
|
459
|
-
.
|
|
460
|
-
border-right: 1px solid var(--
|
|
467
|
+
.list-div .list-table.is-border > tr > td:last-child {
|
|
468
|
+
border-right: 1px solid var(--list-border-color);
|
|
461
469
|
}
|
|
462
|
-
.
|
|
463
|
-
border-left: 1px solid var(--
|
|
464
|
-
border-bottom: 1px solid var(--
|
|
470
|
+
.list-div .list-table.is-border > tr > th {
|
|
471
|
+
border-left: 1px solid var(--list-border-color);
|
|
472
|
+
border-bottom: 1px solid var(--list-border-color);
|
|
465
473
|
}
|
|
466
|
-
.
|
|
467
|
-
border-right: 1px solid var(--
|
|
474
|
+
.list-div .list-table.is-border > tr > th:last-child {
|
|
475
|
+
border-right: 1px solid var(--list-border-color);
|
|
468
476
|
}
|
|
469
|
-
.
|
|
477
|
+
.list-div .list-table.is-border > tr:last-child > td {
|
|
470
478
|
border-bottom: 0;
|
|
471
479
|
}
|
|
472
|
-
.
|
|
480
|
+
.list-div .list-table.is-border > tr:last-child > th {
|
|
473
481
|
border-bottom: 0;
|
|
474
482
|
}
|
|
475
|
-
.
|
|
483
|
+
.list-div .list-table.is-border.top > tr > th {
|
|
476
484
|
border-bottom: 0;
|
|
477
485
|
}
|
|
478
|
-
.
|
|
486
|
+
.list-div .list-table .list-com {
|
|
479
487
|
display: flex;
|
|
480
488
|
align-items: center;
|
|
481
489
|
}
|
|
482
|
-
.
|
|
490
|
+
.list-div .list-table .list-com-img {
|
|
483
491
|
width: 50px;
|
|
484
492
|
height: 50px;
|
|
485
493
|
}
|
|
486
494
|
|
|
487
|
-
.menus .menu-li-item {
|
|
488
|
-
display: flex;
|
|
489
|
-
align-items: center;
|
|
490
|
-
}
|
|
491
|
-
.menus .menu-li-icon {
|
|
492
|
-
margin-right: 10px;
|
|
493
|
-
}
|
|
494
|
-
|
|
495
495
|
.tables {
|
|
496
496
|
width: 100%;
|
|
497
497
|
min-height: 100px;
|
|
@@ -506,10 +506,7 @@
|
|
|
506
506
|
}
|
|
507
507
|
.tables-table.is-absolute {
|
|
508
508
|
position: absolute;
|
|
509
|
-
|
|
510
|
-
right: 0;
|
|
511
|
-
bottom: 0;
|
|
512
|
-
left: 0;
|
|
509
|
+
inset: 0;
|
|
513
510
|
}
|
|
514
511
|
|
|
515
512
|
.paging {
|
|
@@ -892,6 +889,63 @@
|
|
|
892
889
|
height: 100%;
|
|
893
890
|
}
|
|
894
891
|
|
|
892
|
+
.lists {
|
|
893
|
+
width: 100%;
|
|
894
|
+
min-height: 100px;
|
|
895
|
+
position: relative;
|
|
896
|
+
flex: 1;
|
|
897
|
+
display: flex;
|
|
898
|
+
flex-direction: column;
|
|
899
|
+
background-color: #eee;
|
|
900
|
+
}
|
|
901
|
+
.lists-list {
|
|
902
|
+
padding: 0 var(--lists-interval);
|
|
903
|
+
}
|
|
904
|
+
.lists-list.is-absolute {
|
|
905
|
+
position: absolute;
|
|
906
|
+
inset: 0;
|
|
907
|
+
overflow-y: auto;
|
|
908
|
+
}
|
|
909
|
+
.lists-list--column .lists-list-item {
|
|
910
|
+
display: inline-block;
|
|
911
|
+
}
|
|
912
|
+
.lists-list-item {
|
|
913
|
+
background-color: #fff;
|
|
914
|
+
margin: 0 var(--lists-interval);
|
|
915
|
+
margin-top: calc(var(--lists-interval) * 2);
|
|
916
|
+
}
|
|
917
|
+
.lists-list-item:last-child {
|
|
918
|
+
margin-bottom: calc(var(--lists-interval) * 2);
|
|
919
|
+
}
|
|
920
|
+
.lists-list-item.is-active {
|
|
921
|
+
background-color: rgb(250, 235, 215);
|
|
922
|
+
}
|
|
923
|
+
.lists-list-item.is-selected {
|
|
924
|
+
background-color: rgb(215, 250, 224);
|
|
925
|
+
}
|
|
926
|
+
.lists-list-item .el-card {
|
|
927
|
+
background-color: transparent;
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
.listsp {
|
|
931
|
+
width: 100%;
|
|
932
|
+
height: var(--listsp-height);
|
|
933
|
+
display: flex;
|
|
934
|
+
flex-direction: column;
|
|
935
|
+
}
|
|
936
|
+
.listsp-main {
|
|
937
|
+
display: flex;
|
|
938
|
+
flex-direction: column;
|
|
939
|
+
flex: 1;
|
|
940
|
+
width: 100%;
|
|
941
|
+
}
|
|
942
|
+
.listsp-paginat {
|
|
943
|
+
overflow: hidden;
|
|
944
|
+
}
|
|
945
|
+
.listsp-paginat .el-pagination {
|
|
946
|
+
justify-content: flex-end;
|
|
947
|
+
}
|
|
948
|
+
|
|
895
949
|
.tabless {
|
|
896
950
|
width: 100%;
|
|
897
951
|
height: var(--tabless-height);
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--on: rgb(91, 189, 246);
|
|
3
|
+
--color-primary: #409eff;
|
|
4
|
+
--bag-primary: #409eff;
|
|
5
|
+
--bag-primary-text: #fff;
|
|
6
|
+
--border: #eee;
|
|
7
|
+
--layout-panel-gap: 10px;
|
|
8
|
+
--layout-panel-padding: 20px;
|
|
9
|
+
--layout-form-item-padding-right: var(
|
|
10
|
+
--layout-panel-gap
|
|
11
|
+
);
|
|
12
|
+
--g-main-bg: var(--bg-color-page);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.list-div .list-table {
|
|
16
|
+
width: 100%;
|
|
17
|
+
height: 100%;
|
|
18
|
+
}
|
|
19
|
+
.list-div .list-table td {
|
|
20
|
+
text-align: left;
|
|
21
|
+
}
|
|
22
|
+
.list-div .list-table th {
|
|
23
|
+
font-weight: initial;
|
|
24
|
+
}
|
|
25
|
+
.list-div .list-table .is-whole .list-table-auto {
|
|
26
|
+
width: 100%;
|
|
27
|
+
}
|
|
28
|
+
.list-div .list-table .is-whole .list-table-value {
|
|
29
|
+
width: 100%;
|
|
30
|
+
display: block;
|
|
31
|
+
}
|
|
32
|
+
.list-div .list-table .list-table-td,
|
|
33
|
+
.list-div .list-table .list-table-th {
|
|
34
|
+
padding: 6px;
|
|
35
|
+
}
|
|
36
|
+
.list-div .list-table .list-table-auto {
|
|
37
|
+
display: inline-flex;
|
|
38
|
+
align-items: center;
|
|
39
|
+
}
|
|
40
|
+
.list-div .list-table .list-table-auto .list-table-label {
|
|
41
|
+
white-space: nowrap;
|
|
42
|
+
}
|
|
43
|
+
.list-div .list-table .list-table-th {
|
|
44
|
+
text-align: left;
|
|
45
|
+
}
|
|
46
|
+
.list-div .list-table.right .list-table-th {
|
|
47
|
+
text-align: right;
|
|
48
|
+
}
|
|
49
|
+
.list-div .list-table.center .list-table-th {
|
|
50
|
+
text-align: center;
|
|
51
|
+
}
|
|
52
|
+
.list-div .list-table.auto .list-table-th {
|
|
53
|
+
padding-right: 0;
|
|
54
|
+
}
|
|
55
|
+
.list-div .list-table.top .list-table-th {
|
|
56
|
+
padding-bottom: 0;
|
|
57
|
+
}
|
|
58
|
+
.list-div .list-table.is-aliquots {
|
|
59
|
+
table-layout: fixed;
|
|
60
|
+
}
|
|
61
|
+
.list-div .list-table.is-border {
|
|
62
|
+
border-right: 1px solid var(--list-border-color);
|
|
63
|
+
border-top: 1px solid var(--list-border-color);
|
|
64
|
+
border-bottom: 1px solid var(--list-border-color);
|
|
65
|
+
}
|
|
66
|
+
.list-div .list-table.is-border > tr > td {
|
|
67
|
+
border-bottom: 1px solid var(--list-border-color);
|
|
68
|
+
border-left: 1px solid var(--list-border-color);
|
|
69
|
+
}
|
|
70
|
+
.list-div .list-table.is-border > tr > td:last-child {
|
|
71
|
+
border-right: 1px solid var(--list-border-color);
|
|
72
|
+
}
|
|
73
|
+
.list-div .list-table.is-border > tr > th {
|
|
74
|
+
border-left: 1px solid var(--list-border-color);
|
|
75
|
+
border-bottom: 1px solid var(--list-border-color);
|
|
76
|
+
}
|
|
77
|
+
.list-div .list-table.is-border > tr > th:last-child {
|
|
78
|
+
border-right: 1px solid var(--list-border-color);
|
|
79
|
+
}
|
|
80
|
+
.list-div .list-table.is-border > tr:last-child > td {
|
|
81
|
+
border-bottom: 0;
|
|
82
|
+
}
|
|
83
|
+
.list-div .list-table.is-border > tr:last-child > th {
|
|
84
|
+
border-bottom: 0;
|
|
85
|
+
}
|
|
86
|
+
.list-div .list-table.is-border.top > tr > th {
|
|
87
|
+
border-bottom: 0;
|
|
88
|
+
}
|
|
89
|
+
.list-div .list-table .list-com {
|
|
90
|
+
display: flex;
|
|
91
|
+
align-items: center;
|
|
92
|
+
}
|
|
93
|
+
.list-div .list-table .list-com-img {
|
|
94
|
+
width: 50px;
|
|
95
|
+
height: 50px;
|
|
96
|
+
}
|
package/dist/css/lists.css
CHANGED
|
@@ -12,85 +12,40 @@
|
|
|
12
12
|
--g-main-bg: var(--bg-color-page);
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
.lists
|
|
15
|
+
.lists {
|
|
16
16
|
width: 100%;
|
|
17
|
-
height:
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
font-weight: initial;
|
|
24
|
-
}
|
|
25
|
-
.lists-div .lists-table .is-whole .lists-table-auto {
|
|
26
|
-
width: 100%;
|
|
27
|
-
}
|
|
28
|
-
.lists-div .lists-table .is-whole .lists-table-value {
|
|
29
|
-
width: 100%;
|
|
30
|
-
display: block;
|
|
31
|
-
}
|
|
32
|
-
.lists-div .lists-table .lists-table-td,
|
|
33
|
-
.lists-div .lists-table .lists-table-th {
|
|
34
|
-
padding: 6px;
|
|
35
|
-
}
|
|
36
|
-
.lists-div .lists-table .lists-table-auto {
|
|
37
|
-
display: inline-flex;
|
|
38
|
-
align-items: center;
|
|
39
|
-
}
|
|
40
|
-
.lists-div .lists-table .lists-table-auto .lists-table-label {
|
|
41
|
-
white-space: nowrap;
|
|
42
|
-
}
|
|
43
|
-
.lists-div .lists-table .lists-table-th {
|
|
44
|
-
text-align: left;
|
|
45
|
-
}
|
|
46
|
-
.lists-div .lists-table.right .lists-table-th {
|
|
47
|
-
text-align: right;
|
|
48
|
-
}
|
|
49
|
-
.lists-div .lists-table.center .lists-table-th {
|
|
50
|
-
text-align: center;
|
|
51
|
-
}
|
|
52
|
-
.lists-div .lists-table.auto .lists-table-th {
|
|
53
|
-
padding-right: 0;
|
|
54
|
-
}
|
|
55
|
-
.lists-div .lists-table.top .lists-table-th {
|
|
56
|
-
padding-bottom: 0;
|
|
57
|
-
}
|
|
58
|
-
.lists-div .lists-table.is-aliquots {
|
|
59
|
-
table-layout: fixed;
|
|
60
|
-
}
|
|
61
|
-
.lists-div .lists-table.is-border {
|
|
62
|
-
border-right: 1px solid var(--lists-border-color);
|
|
63
|
-
border-top: 1px solid var(--lists-border-color);
|
|
64
|
-
border-bottom: 1px solid var(--lists-border-color);
|
|
65
|
-
}
|
|
66
|
-
.lists-div .lists-table.is-border > tr > td {
|
|
67
|
-
border-bottom: 1px solid var(--lists-border-color);
|
|
68
|
-
border-left: 1px solid var(--lists-border-color);
|
|
17
|
+
min-height: 100px;
|
|
18
|
+
position: relative;
|
|
19
|
+
flex: 1;
|
|
20
|
+
display: flex;
|
|
21
|
+
flex-direction: column;
|
|
22
|
+
background-color: #eee;
|
|
69
23
|
}
|
|
70
|
-
.lists-
|
|
71
|
-
|
|
24
|
+
.lists-list {
|
|
25
|
+
padding: 0 var(--lists-interval);
|
|
72
26
|
}
|
|
73
|
-
.lists-
|
|
74
|
-
|
|
75
|
-
|
|
27
|
+
.lists-list.is-absolute {
|
|
28
|
+
position: absolute;
|
|
29
|
+
inset: 0;
|
|
30
|
+
overflow-y: auto;
|
|
76
31
|
}
|
|
77
|
-
.lists-
|
|
78
|
-
|
|
32
|
+
.lists-list--column .lists-list-item {
|
|
33
|
+
display: inline-block;
|
|
79
34
|
}
|
|
80
|
-
.lists-
|
|
81
|
-
|
|
35
|
+
.lists-list-item {
|
|
36
|
+
background-color: #fff;
|
|
37
|
+
margin: 0 var(--lists-interval);
|
|
38
|
+
margin-top: calc(var(--lists-interval) * 2);
|
|
82
39
|
}
|
|
83
|
-
.lists-
|
|
84
|
-
|
|
40
|
+
.lists-list-item:last-child {
|
|
41
|
+
margin-bottom: calc(var(--lists-interval) * 2);
|
|
85
42
|
}
|
|
86
|
-
.lists-
|
|
87
|
-
|
|
43
|
+
.lists-list-item.is-active {
|
|
44
|
+
background-color: rgb(250, 235, 215);
|
|
88
45
|
}
|
|
89
|
-
.lists-
|
|
90
|
-
|
|
91
|
-
align-items: center;
|
|
46
|
+
.lists-list-item.is-selected {
|
|
47
|
+
background-color: rgb(215, 250, 224);
|
|
92
48
|
}
|
|
93
|
-
.lists-
|
|
94
|
-
|
|
95
|
-
height: 50px;
|
|
49
|
+
.lists-list-item .el-card {
|
|
50
|
+
background-color: transparent;
|
|
96
51
|
}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--on: rgb(91, 189, 246);
|
|
3
|
+
--color-primary: #409eff;
|
|
4
|
+
--bag-primary: #409eff;
|
|
5
|
+
--bag-primary-text: #fff;
|
|
6
|
+
--border: #eee;
|
|
7
|
+
--layout-panel-gap: 10px;
|
|
8
|
+
--layout-panel-padding: 20px;
|
|
9
|
+
--layout-form-item-padding-right: var(
|
|
10
|
+
--layout-panel-gap
|
|
11
|
+
);
|
|
12
|
+
--g-main-bg: var(--bg-color-page);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.lists {
|
|
16
|
+
width: 100%;
|
|
17
|
+
min-height: 100px;
|
|
18
|
+
position: relative;
|
|
19
|
+
flex: 1;
|
|
20
|
+
display: flex;
|
|
21
|
+
flex-direction: column;
|
|
22
|
+
background-color: #eee;
|
|
23
|
+
}
|
|
24
|
+
.lists-list {
|
|
25
|
+
padding: 0 var(--lists-interval);
|
|
26
|
+
}
|
|
27
|
+
.lists-list.is-absolute {
|
|
28
|
+
position: absolute;
|
|
29
|
+
inset: 0;
|
|
30
|
+
overflow-y: auto;
|
|
31
|
+
}
|
|
32
|
+
.lists-list--column .lists-list-item {
|
|
33
|
+
display: inline-block;
|
|
34
|
+
}
|
|
35
|
+
.lists-list-item {
|
|
36
|
+
background-color: #fff;
|
|
37
|
+
margin: 0 var(--lists-interval);
|
|
38
|
+
margin-top: calc(var(--lists-interval) * 2);
|
|
39
|
+
}
|
|
40
|
+
.lists-list-item:last-child {
|
|
41
|
+
margin-bottom: calc(var(--lists-interval) * 2);
|
|
42
|
+
}
|
|
43
|
+
.lists-list-item.is-active {
|
|
44
|
+
background-color: rgb(250, 235, 215);
|
|
45
|
+
}
|
|
46
|
+
.lists-list-item.is-selected {
|
|
47
|
+
background-color: rgb(215, 250, 224);
|
|
48
|
+
}
|
|
49
|
+
.lists-list-item .el-card {
|
|
50
|
+
background-color: transparent;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.paging {
|
|
54
|
+
padding: 10px;
|
|
55
|
+
}
|
|
56
|
+
.paging-slot {
|
|
57
|
+
padding-left: 10px;
|
|
58
|
+
font-size: 14px;
|
|
59
|
+
font-weight: 400;
|
|
60
|
+
color: #9b9b9b;
|
|
61
|
+
white-space: pre-wrap;
|
|
62
|
+
}
|
|
63
|
+
.paging .el-pagination__total {
|
|
64
|
+
font-size: 14px;
|
|
65
|
+
font-weight: 400;
|
|
66
|
+
color: #9b9b9b;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.listsp {
|
|
70
|
+
width: 100%;
|
|
71
|
+
height: var(--listsp-height);
|
|
72
|
+
display: flex;
|
|
73
|
+
flex-direction: column;
|
|
74
|
+
}
|
|
75
|
+
.listsp-main {
|
|
76
|
+
display: flex;
|
|
77
|
+
flex-direction: column;
|
|
78
|
+
flex: 1;
|
|
79
|
+
width: 100%;
|
|
80
|
+
}
|
|
81
|
+
.listsp-paginat {
|
|
82
|
+
overflow: hidden;
|
|
83
|
+
}
|
|
84
|
+
.listsp-paginat .el-pagination {
|
|
85
|
+
justify-content: flex-end;
|
|
86
|
+
}
|
package/dist/css/page.css
CHANGED
|
@@ -103,85 +103,85 @@
|
|
|
103
103
|
height: inherit;
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
-
.
|
|
106
|
+
.list-div .list-table {
|
|
107
107
|
width: 100%;
|
|
108
108
|
height: 100%;
|
|
109
109
|
}
|
|
110
|
-
.
|
|
110
|
+
.list-div .list-table td {
|
|
111
111
|
text-align: left;
|
|
112
112
|
}
|
|
113
|
-
.
|
|
113
|
+
.list-div .list-table th {
|
|
114
114
|
font-weight: initial;
|
|
115
115
|
}
|
|
116
|
-
.
|
|
116
|
+
.list-div .list-table .is-whole .list-table-auto {
|
|
117
117
|
width: 100%;
|
|
118
118
|
}
|
|
119
|
-
.
|
|
119
|
+
.list-div .list-table .is-whole .list-table-value {
|
|
120
120
|
width: 100%;
|
|
121
121
|
display: block;
|
|
122
122
|
}
|
|
123
|
-
.
|
|
124
|
-
.
|
|
123
|
+
.list-div .list-table .list-table-td,
|
|
124
|
+
.list-div .list-table .list-table-th {
|
|
125
125
|
padding: 6px;
|
|
126
126
|
}
|
|
127
|
-
.
|
|
127
|
+
.list-div .list-table .list-table-auto {
|
|
128
128
|
display: inline-flex;
|
|
129
129
|
align-items: center;
|
|
130
130
|
}
|
|
131
|
-
.
|
|
131
|
+
.list-div .list-table .list-table-auto .list-table-label {
|
|
132
132
|
white-space: nowrap;
|
|
133
133
|
}
|
|
134
|
-
.
|
|
134
|
+
.list-div .list-table .list-table-th {
|
|
135
135
|
text-align: left;
|
|
136
136
|
}
|
|
137
|
-
.
|
|
137
|
+
.list-div .list-table.right .list-table-th {
|
|
138
138
|
text-align: right;
|
|
139
139
|
}
|
|
140
|
-
.
|
|
140
|
+
.list-div .list-table.center .list-table-th {
|
|
141
141
|
text-align: center;
|
|
142
142
|
}
|
|
143
|
-
.
|
|
143
|
+
.list-div .list-table.auto .list-table-th {
|
|
144
144
|
padding-right: 0;
|
|
145
145
|
}
|
|
146
|
-
.
|
|
146
|
+
.list-div .list-table.top .list-table-th {
|
|
147
147
|
padding-bottom: 0;
|
|
148
148
|
}
|
|
149
|
-
.
|
|
149
|
+
.list-div .list-table.is-aliquots {
|
|
150
150
|
table-layout: fixed;
|
|
151
151
|
}
|
|
152
|
-
.
|
|
153
|
-
border-right: 1px solid var(--
|
|
154
|
-
border-top: 1px solid var(--
|
|
155
|
-
border-bottom: 1px solid var(--
|
|
152
|
+
.list-div .list-table.is-border {
|
|
153
|
+
border-right: 1px solid var(--list-border-color);
|
|
154
|
+
border-top: 1px solid var(--list-border-color);
|
|
155
|
+
border-bottom: 1px solid var(--list-border-color);
|
|
156
156
|
}
|
|
157
|
-
.
|
|
158
|
-
border-bottom: 1px solid var(--
|
|
159
|
-
border-left: 1px solid var(--
|
|
157
|
+
.list-div .list-table.is-border > tr > td {
|
|
158
|
+
border-bottom: 1px solid var(--list-border-color);
|
|
159
|
+
border-left: 1px solid var(--list-border-color);
|
|
160
160
|
}
|
|
161
|
-
.
|
|
162
|
-
border-right: 1px solid var(--
|
|
161
|
+
.list-div .list-table.is-border > tr > td:last-child {
|
|
162
|
+
border-right: 1px solid var(--list-border-color);
|
|
163
163
|
}
|
|
164
|
-
.
|
|
165
|
-
border-left: 1px solid var(--
|
|
166
|
-
border-bottom: 1px solid var(--
|
|
164
|
+
.list-div .list-table.is-border > tr > th {
|
|
165
|
+
border-left: 1px solid var(--list-border-color);
|
|
166
|
+
border-bottom: 1px solid var(--list-border-color);
|
|
167
167
|
}
|
|
168
|
-
.
|
|
169
|
-
border-right: 1px solid var(--
|
|
168
|
+
.list-div .list-table.is-border > tr > th:last-child {
|
|
169
|
+
border-right: 1px solid var(--list-border-color);
|
|
170
170
|
}
|
|
171
|
-
.
|
|
171
|
+
.list-div .list-table.is-border > tr:last-child > td {
|
|
172
172
|
border-bottom: 0;
|
|
173
173
|
}
|
|
174
|
-
.
|
|
174
|
+
.list-div .list-table.is-border > tr:last-child > th {
|
|
175
175
|
border-bottom: 0;
|
|
176
176
|
}
|
|
177
|
-
.
|
|
177
|
+
.list-div .list-table.is-border.top > tr > th {
|
|
178
178
|
border-bottom: 0;
|
|
179
179
|
}
|
|
180
|
-
.
|
|
180
|
+
.list-div .list-table .list-com {
|
|
181
181
|
display: flex;
|
|
182
182
|
align-items: center;
|
|
183
183
|
}
|
|
184
|
-
.
|
|
184
|
+
.list-div .list-table .list-com-img {
|
|
185
185
|
width: 50px;
|
|
186
186
|
height: 50px;
|
|
187
187
|
}
|
|
@@ -200,10 +200,7 @@
|
|
|
200
200
|
}
|
|
201
201
|
.tables-table.is-absolute {
|
|
202
202
|
position: absolute;
|
|
203
|
-
|
|
204
|
-
right: 0;
|
|
205
|
-
bottom: 0;
|
|
206
|
-
left: 0;
|
|
203
|
+
inset: 0;
|
|
207
204
|
}
|
|
208
205
|
|
|
209
206
|
.paging {
|
package/dist/css/tables.css
CHANGED