ls-pro-common 1.0.81 → 1.0.83
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 +39 -24
- package/dist/common.js +1 -1
- package/dist/common.min.css +39 -24
- package/dist/common.min.js +1 -1
- package/es/components/DescritionCard.js +1 -1
- package/es/components/common.less +82 -75
- package/es/utils/index.d.ts +1 -1
- package/es/utils/index.js +9 -1
- package/lib/components/DescritionCard.js +1 -1
- package/lib/components/common.less +82 -75
- package/lib/utils/index.d.ts +1 -1
- package/lib/utils/index.js +8 -1
- package/package.json +3 -2
package/dist/common.css
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
body {
|
|
2
|
-
--ant-primary-color: #
|
|
3
|
-
--ant-primary-color-hover: #
|
|
4
|
-
--ant-primary-color-active: #
|
|
5
|
-
--ant-primary-color-outline: rgba(
|
|
6
|
-
--ant-primary-1: #
|
|
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(
|
|
19
|
-
--ant-primary-color-active-deprecated-f-30: rgba(
|
|
20
|
-
--ant-primary-color-active-deprecated-d-02: #
|
|
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);
|
|
6
|
+
--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);
|
|
19
|
+
--ant-primary-color-active-deprecated-f-30: rgba(230, 244, 255, 0.3);
|
|
20
|
+
--ant-primary-color-active-deprecated-d-02: #dcf0ff;
|
|
21
21
|
--ant-success-color: #52c41a;
|
|
22
22
|
--ant-success-color-hover: #73d13d;
|
|
23
23
|
--ant-success-color-active: #389e0d;
|
|
@@ -36,9 +36,9 @@ 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: #
|
|
40
|
-
--ant-info-color-deprecated-bg: #
|
|
41
|
-
--ant-info-color-deprecated-border: #
|
|
39
|
+
--ant-info-color: #1869ed;
|
|
40
|
+
--ant-info-color-deprecated-bg: #e6f4ff;
|
|
41
|
+
--ant-info-color-deprecated-border: #94c8ff;
|
|
42
42
|
}
|
|
43
43
|
.dtl-layout {
|
|
44
44
|
position: absolute;
|
|
@@ -139,7 +139,7 @@ body {
|
|
|
139
139
|
z-index: 9999;
|
|
140
140
|
display: flex;
|
|
141
141
|
align-items: center;
|
|
142
|
-
background-color: rgba(226, 227, 231, 0.
|
|
142
|
+
background-color: rgba(226, 227, 231, 0.35);
|
|
143
143
|
justify-content: center;
|
|
144
144
|
}
|
|
145
145
|
#myloading .load-text {
|
|
@@ -226,8 +226,17 @@ a:hover {
|
|
|
226
226
|
.description-card .ant-pro-card-body {
|
|
227
227
|
padding: 20px 24px;
|
|
228
228
|
}
|
|
229
|
+
.description-card .ant-pro-card-header-border {
|
|
230
|
+
border-bottom: 1px solid #dbeafa;
|
|
231
|
+
}
|
|
232
|
+
.description-card .ant-descriptions-item-label {
|
|
233
|
+
color: #666666;
|
|
234
|
+
}
|
|
235
|
+
.description-card .ant-descriptions-item-content {
|
|
236
|
+
color: #333333;
|
|
237
|
+
}
|
|
229
238
|
.has-background {
|
|
230
|
-
background: #
|
|
239
|
+
background: #f6fafe;
|
|
231
240
|
}
|
|
232
241
|
.has-background .ant-descriptions-row > td,
|
|
233
242
|
.has-background .ant-descriptions-row > th {
|
|
@@ -466,6 +475,9 @@ a:hover {
|
|
|
466
475
|
.ls-pro-table .resizable-th:hover .resizable-th-handle {
|
|
467
476
|
visibility: visible;
|
|
468
477
|
}
|
|
478
|
+
.ls-pro-table .ant-table-cell.ant-table-selection-column {
|
|
479
|
+
text-overflow: inherit !important;
|
|
480
|
+
}
|
|
469
481
|
.theme-yellow .ls-pro-table .ant-table-tbody tr:nth-of-type(odd) {
|
|
470
482
|
background-color: #fcfaf7;
|
|
471
483
|
}
|
|
@@ -2488,6 +2500,9 @@ html {
|
|
|
2488
2500
|
.ls-pro-table .resizable-th:hover .resizable-th-handle {
|
|
2489
2501
|
visibility: visible;
|
|
2490
2502
|
}
|
|
2503
|
+
.ls-pro-table .ant-table-cell.ant-table-selection-column {
|
|
2504
|
+
text-overflow: inherit !important;
|
|
2505
|
+
}
|
|
2491
2506
|
.theme-yellow .ls-pro-table .ant-table-tbody tr:nth-of-type(odd) {
|
|
2492
2507
|
background-color: #fcfaf7;
|
|
2493
2508
|
}
|