@flatbiz/antd 3.0.2 → 3.0.4
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/cjs/index.css +26 -5
- package/cjs/index.js +1 -1
- package/cjs/index.js.map +1 -1
- package/index.d.ts +76 -2
- package/package.json +3 -3
package/cjs/index.css
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
--
|
|
2
|
+
--fa-color-primary: #1677ff;
|
|
3
|
+
--fa-secondary: #1677ff;
|
|
4
|
+
--fa-warning: #ff8f1f;
|
|
5
|
+
--fa-danger: #ff3141;
|
|
6
|
+
--fa-success: #00b578;
|
|
3
7
|
}
|
|
4
8
|
|
|
5
9
|
.num-ff {
|
|
@@ -65,6 +69,11 @@ ul {
|
|
|
65
69
|
transform: translate(-50%, -50%);
|
|
66
70
|
}
|
|
67
71
|
|
|
72
|
+
.dialog-modal .ant-modal-body {
|
|
73
|
+
max-height: calc(100vh - 150px);
|
|
74
|
+
overflow: scroll;
|
|
75
|
+
}
|
|
76
|
+
|
|
68
77
|
.drawer-wraper .ant-drawer-header {
|
|
69
78
|
padding: 12px 14px;
|
|
70
79
|
}
|
|
@@ -201,12 +210,18 @@ ul {
|
|
|
201
210
|
cursor: pointer;
|
|
202
211
|
}
|
|
203
212
|
|
|
213
|
+
.editable-table {
|
|
214
|
+
padding-bottom: 15px;
|
|
215
|
+
}
|
|
204
216
|
.editable-table .ant-form-item {
|
|
205
217
|
margin: 0 !important;
|
|
206
218
|
}
|
|
207
219
|
.editable-table .editable-text-view.ant-typography {
|
|
208
220
|
margin-bottom: 0;
|
|
209
221
|
}
|
|
222
|
+
.editable-input-number-form-item .ant-input-number {
|
|
223
|
+
width: 100%;
|
|
224
|
+
}
|
|
210
225
|
|
|
211
226
|
.v-editor-wrapper {
|
|
212
227
|
width: 100%;
|
|
@@ -252,6 +267,7 @@ ul {
|
|
|
252
267
|
.v-label-value-layout .ant-descriptions-item-label {
|
|
253
268
|
width: var(--v-label-value-layout-lWidth);
|
|
254
269
|
color: rgba(0, 0, 0, 0.45);
|
|
270
|
+
flex-shrink: 0;
|
|
255
271
|
}
|
|
256
272
|
.v-label-value-layout .ant-descriptions-item {
|
|
257
273
|
padding-bottom: 8px;
|
|
@@ -499,7 +515,7 @@ ul {
|
|
|
499
515
|
.simple-layout .simple-layout-content > .ant-row:nth-last-child(1) .ant-upload-list {
|
|
500
516
|
padding-bottom: 15px;
|
|
501
517
|
}
|
|
502
|
-
.simple-layout .simple-layout-content > .ant-descriptions:nth-last-child(1) {
|
|
518
|
+
.simple-layout .simple-layout-content > .ant-descriptions:not(.ant-descriptions-bordered):nth-last-child(1) {
|
|
503
519
|
margin-bottom: -10px;
|
|
504
520
|
}
|
|
505
521
|
.simple-layout .v-tree-wrapper-tree {
|
|
@@ -511,12 +527,13 @@ ul {
|
|
|
511
527
|
.simple-layout-title-sign::before {
|
|
512
528
|
content: '';
|
|
513
529
|
position: absolute;
|
|
514
|
-
top:
|
|
530
|
+
top: 50%;
|
|
515
531
|
left: 0;
|
|
516
|
-
|
|
532
|
+
height: 14px;
|
|
517
533
|
width: 3px;
|
|
518
|
-
background: var(--
|
|
534
|
+
background: var(--fa-color-primary);
|
|
519
535
|
border-radius: 3px;
|
|
536
|
+
margin-top: -7px;
|
|
520
537
|
}
|
|
521
538
|
.simple-layout-title {
|
|
522
539
|
color: rgba(0, 0, 0, 0.85);
|
|
@@ -553,6 +570,10 @@ ul {
|
|
|
553
570
|
margin-top: 0;
|
|
554
571
|
padding: 0 0 15px 0;
|
|
555
572
|
}
|
|
573
|
+
.simple-layout-title-extra-space {
|
|
574
|
+
width: 100%;
|
|
575
|
+
justify-content: space-between;
|
|
576
|
+
}
|
|
556
577
|
|
|
557
578
|
.tree-selector-wrapper-empty {
|
|
558
579
|
margin: 8px 0;
|