ls-pro-common 3.0.60 → 3.0.62
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 +207 -111
- package/dist/common.js +1 -1
- package/dist/common.min.css +207 -111
- package/dist/common.min.js +1 -1
- package/es/components/InputMultiLine.d.ts +20 -14
- package/es/components/InputMultiLine.js +80 -64
- package/es/components/InputTable.d.ts +40 -38
- package/es/components/InputTable.js +43 -20
- package/es/components/TagCheck.d.ts +2 -0
- package/es/components/TagCheck.js +7 -5
- package/es/components/antd-custom.less +2 -2
- package/es/components/common.less +80 -81
- package/lib/components/InputMultiLine.d.ts +20 -14
- package/lib/components/InputMultiLine.js +80 -64
- package/lib/components/InputTable.d.ts +40 -38
- package/lib/components/InputTable.js +43 -20
- package/lib/components/TagCheck.d.ts +2 -0
- package/lib/components/TagCheck.js +7 -5
- package/lib/components/antd-custom.less +2 -2
- package/lib/components/common.less +80 -81
- package/package.json +3 -3
package/dist/common.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
body {
|
|
2
|
-
--bg-color: #
|
|
3
|
-
--ant-primary-color: #
|
|
2
|
+
--bg-color: #f9fafb;
|
|
3
|
+
--ant-primary-color: #1869ed;
|
|
4
4
|
--ant-primary-color-hover: #418efa;
|
|
5
5
|
--ant-primary-color-active: #0a4cc7;
|
|
6
6
|
--ant-primary-color-outline: rgba(24, 105, 237, 0.4);
|
|
@@ -9,7 +9,7 @@ body {
|
|
|
9
9
|
--ant-primary-3: #94c8ff;
|
|
10
10
|
--ant-primary-4: #6baeff;
|
|
11
11
|
--ant-primary-5: #418efa;
|
|
12
|
-
--ant-primary-6: #
|
|
12
|
+
--ant-primary-6: #1869ed;
|
|
13
13
|
--ant-primary-7: #0a4cc7;
|
|
14
14
|
--ant-primary-color-deprecated-pure: #bed5fa;
|
|
15
15
|
--ant-primary-color-deprecated-l-35: #bed5fa;
|
|
@@ -37,7 +37,7 @@ body {
|
|
|
37
37
|
--ant-warning-color-outline: rgba(250, 173, 20, 0.2);
|
|
38
38
|
--ant-warning-color-deprecated-bg: #fffbe6;
|
|
39
39
|
--ant-warning-color-deprecated-border: #ffe58f;
|
|
40
|
-
--ant-info-color: #
|
|
40
|
+
--ant-info-color: #1869ed;
|
|
41
41
|
--ant-info-color-deprecated-bg: #e6f4ff;
|
|
42
42
|
--ant-info-color-deprecated-border: #94c8ff;
|
|
43
43
|
}
|
|
@@ -118,13 +118,13 @@ body.theme-yellow .ant-pro-table-alert-info-content a:active {
|
|
|
118
118
|
.dtl-layout {
|
|
119
119
|
position: absolute;
|
|
120
120
|
top: 0;
|
|
121
|
-
left: 0;
|
|
122
121
|
right: 0;
|
|
123
122
|
bottom: 0;
|
|
124
|
-
|
|
123
|
+
left: 0;
|
|
124
|
+
z-index: 50;
|
|
125
125
|
display: flex;
|
|
126
126
|
flex-direction: column;
|
|
127
|
-
|
|
127
|
+
background: var(--bg-color, #f9fafb);
|
|
128
128
|
}
|
|
129
129
|
.dtl-layout .dtl-header {
|
|
130
130
|
display: flex;
|
|
@@ -133,17 +133,17 @@ body.theme-yellow .ant-pro-table-alert-info-content a:active {
|
|
|
133
133
|
background: #fff;
|
|
134
134
|
}
|
|
135
135
|
.dtl-layout .dtl-header .dtl-title {
|
|
136
|
-
font-size: 16px;
|
|
137
|
-
font-weight: 700;
|
|
138
136
|
position: relative;
|
|
137
|
+
font-weight: 700;
|
|
138
|
+
font-size: 16px;
|
|
139
139
|
}
|
|
140
140
|
.dtl-layout .dtl-header .dtl-btns {
|
|
141
141
|
flex: 1;
|
|
142
142
|
text-align: right;
|
|
143
143
|
}
|
|
144
144
|
.dtl-layout .dtl-body {
|
|
145
|
-
height: 0;
|
|
146
145
|
flex: 1;
|
|
146
|
+
height: 0;
|
|
147
147
|
overflow: auto;
|
|
148
148
|
}
|
|
149
149
|
.dtl-layout .dtl-flex {
|
|
@@ -170,37 +170,37 @@ body.theme-yellow .ant-pro-table-alert-info-content a:active {
|
|
|
170
170
|
.page404 {
|
|
171
171
|
width: 100%;
|
|
172
172
|
height: 100%;
|
|
173
|
-
text-align: center;
|
|
174
173
|
padding-top: 10%;
|
|
175
|
-
font-size: 15px;
|
|
176
|
-
font-weight: 600;
|
|
177
174
|
color: gray;
|
|
175
|
+
font-weight: 600;
|
|
176
|
+
font-size: 15px;
|
|
177
|
+
text-align: center;
|
|
178
178
|
background-color: #fff;
|
|
179
179
|
}
|
|
180
180
|
.page404 img {
|
|
181
|
-
vertical-align: bottom;
|
|
182
181
|
padding-right: 5px;
|
|
182
|
+
vertical-align: bottom;
|
|
183
183
|
}
|
|
184
184
|
.loading {
|
|
185
|
-
height: 100%;
|
|
186
|
-
width: 100%;
|
|
187
185
|
position: absolute;
|
|
188
186
|
display: flex;
|
|
189
187
|
align-items: center;
|
|
190
188
|
justify-content: center;
|
|
189
|
+
width: 100%;
|
|
190
|
+
height: 100%;
|
|
191
191
|
background: #fff;
|
|
192
192
|
}
|
|
193
193
|
#myloading {
|
|
194
194
|
position: fixed;
|
|
195
195
|
top: 0;
|
|
196
|
-
left: 0;
|
|
197
|
-
bottom: 0;
|
|
198
196
|
right: 0;
|
|
197
|
+
bottom: 0;
|
|
198
|
+
left: 0;
|
|
199
199
|
z-index: 9999;
|
|
200
200
|
display: flex;
|
|
201
201
|
align-items: center;
|
|
202
|
-
background-color: rgba(226, 227, 231, 0.35);
|
|
203
202
|
justify-content: center;
|
|
203
|
+
background-color: rgba(226, 227, 231, 0.35);
|
|
204
204
|
}
|
|
205
205
|
#myloading .load-text {
|
|
206
206
|
padding: 4px 20px;
|
|
@@ -225,17 +225,17 @@ a:hover {
|
|
|
225
225
|
.image-selector .ant-upload-select .img-wrapper .clear-btn,
|
|
226
226
|
.icon-selector .ant-upload-select .img-wrapper .clear-btn {
|
|
227
227
|
position: absolute;
|
|
228
|
-
left: 0;
|
|
229
228
|
top: 0;
|
|
230
|
-
|
|
231
|
-
height: 100%;
|
|
232
|
-
background: rgba(199, 202, 212, 0.9);
|
|
229
|
+
left: 0;
|
|
233
230
|
display: flex;
|
|
231
|
+
display: none;
|
|
234
232
|
align-items: flex-start;
|
|
233
|
+
justify-content: end;
|
|
234
|
+
width: 100%;
|
|
235
|
+
height: 100%;
|
|
235
236
|
padding: 4px;
|
|
236
237
|
color: #1f4265;
|
|
237
|
-
|
|
238
|
-
display: none;
|
|
238
|
+
background: rgba(199, 202, 212, 0.9);
|
|
239
239
|
}
|
|
240
240
|
.image-selector .ant-upload-select .img-wrapper:hover .clear-btn,
|
|
241
241
|
.icon-selector .ant-upload-select .img-wrapper:hover .clear-btn {
|
|
@@ -256,12 +256,12 @@ a:hover {
|
|
|
256
256
|
}
|
|
257
257
|
.image-selector .ant-modal-body,
|
|
258
258
|
.icon-selector .ant-modal-body {
|
|
259
|
-
padding: 8px;
|
|
260
259
|
max-height: calc(100vh - 180px);
|
|
260
|
+
padding: 8px;
|
|
261
261
|
overflow-y: auto;
|
|
262
262
|
}
|
|
263
263
|
.description-card {
|
|
264
|
-
border: solid 1px #
|
|
264
|
+
border: solid 1px #eaeef2;
|
|
265
265
|
}
|
|
266
266
|
.description-card.ant-pro-card {
|
|
267
267
|
box-shadow: none;
|
|
@@ -269,8 +269,8 @@ a:hover {
|
|
|
269
269
|
.description-card .btn-expand {
|
|
270
270
|
margin: auto;
|
|
271
271
|
margin-left: 20px;
|
|
272
|
+
color: #8c8c8c;
|
|
272
273
|
font-size: 13px;
|
|
273
|
-
color: #8C8C8C;
|
|
274
274
|
}
|
|
275
275
|
.description-card .btn-expand :hover {
|
|
276
276
|
color: var(--ant-primary-color);
|
|
@@ -278,14 +278,14 @@ a:hover {
|
|
|
278
278
|
.description-card .ant-pro-card-header {
|
|
279
279
|
height: 38px;
|
|
280
280
|
padding: 12px;
|
|
281
|
-
background-color: #
|
|
281
|
+
background-color: #f4f7fd;
|
|
282
282
|
border-radius: 8px 8px 0 0;
|
|
283
283
|
}
|
|
284
284
|
.description-card .ant-pro-card-body {
|
|
285
285
|
padding: 20px 12px;
|
|
286
286
|
}
|
|
287
287
|
.description-card .ant-pro-card-header-border {
|
|
288
|
-
border-bottom: 1px solid #
|
|
288
|
+
border-bottom: 1px solid #eaeef2;
|
|
289
289
|
}
|
|
290
290
|
.description-card .ant-descriptions-row > td,
|
|
291
291
|
.description-card .ant-descriptions-row > th {
|
|
@@ -295,21 +295,21 @@ a:hover {
|
|
|
295
295
|
background: #f6fafe;
|
|
296
296
|
}
|
|
297
297
|
.ls-group-tip {
|
|
298
|
-
display: flex;
|
|
299
298
|
position: relative;
|
|
300
|
-
|
|
299
|
+
display: flex;
|
|
301
300
|
align-items: center;
|
|
302
|
-
|
|
301
|
+
width: 100%;
|
|
303
302
|
padding-bottom: 12px;
|
|
303
|
+
background: #fff;
|
|
304
304
|
}
|
|
305
305
|
.ls-group-tip .ls-group-divider {
|
|
306
306
|
height: 14px;
|
|
307
307
|
border-right: 2px solid var(--ant-primary-color);
|
|
308
308
|
}
|
|
309
309
|
.ls-group-tip .ls-group-text {
|
|
310
|
-
font-size: 14px;
|
|
311
|
-
color: #181818;
|
|
312
310
|
padding-left: 8px;
|
|
311
|
+
color: #181818;
|
|
312
|
+
font-size: 14px;
|
|
313
313
|
}
|
|
314
314
|
.tag-check {
|
|
315
315
|
display: flex;
|
|
@@ -317,63 +317,76 @@ a:hover {
|
|
|
317
317
|
gap: 5px;
|
|
318
318
|
}
|
|
319
319
|
.tag-check .ant-tag-checkable {
|
|
320
|
+
position: relative;
|
|
321
|
+
margin-right: 0px;
|
|
320
322
|
background-color: #efefef;
|
|
321
323
|
border-color: #efefef;
|
|
322
|
-
margin-right: 0px;
|
|
323
|
-
position: relative;
|
|
324
324
|
}
|
|
325
325
|
.tag-check .ant-tag-checkable-checked {
|
|
326
|
-
border-color: var(--ant-primary-color);
|
|
327
326
|
color: var(--ant-primary-color);
|
|
328
327
|
background-color: var(--ant-primary-1);
|
|
328
|
+
border-color: var(--ant-primary-color);
|
|
329
329
|
}
|
|
330
330
|
.tag-check .ant-tag-checkable-checked::after {
|
|
331
|
-
content: '';
|
|
332
331
|
position: absolute;
|
|
333
|
-
width: 0;
|
|
334
|
-
height: 0;
|
|
335
332
|
right: 0;
|
|
336
333
|
bottom: 0;
|
|
337
|
-
|
|
338
|
-
|
|
334
|
+
width: 0;
|
|
335
|
+
height: 0;
|
|
339
336
|
border-color: transparent;
|
|
337
|
+
border-style: solid;
|
|
338
|
+
border-width: 4px;
|
|
340
339
|
border-right-color: var(--ant-primary-color);
|
|
341
340
|
border-bottom-color: var(--ant-primary-color);
|
|
341
|
+
content: '';
|
|
342
342
|
}
|
|
343
343
|
.ant-pro-table-list-toolbar-title .ls-group-tip {
|
|
344
344
|
padding-bottom: 0;
|
|
345
345
|
}
|
|
346
346
|
.ls-input-table .ant-pro-table-search {
|
|
347
|
-
|
|
347
|
+
margin-bottom: 0 !important;
|
|
348
348
|
padding: 0 !important;
|
|
349
|
+
border-bottom: 1px solid #e7e8e9;
|
|
350
|
+
border-radius: 0px !important;
|
|
351
|
+
box-shadow: none !important;
|
|
349
352
|
}
|
|
350
353
|
.ls-input-table .ant-pro-table-list-toolbar {
|
|
351
|
-
|
|
352
|
-
|
|
354
|
+
min-height: 35px;
|
|
355
|
+
padding: 0 !important;
|
|
356
|
+
line-height: 35px;
|
|
357
|
+
}
|
|
358
|
+
.ls-input-table .ant-pro-table-list-toolbar .ant-pro-table-list-toolbar-container {
|
|
359
|
+
padding-bottom: 0 !important;
|
|
360
|
+
}
|
|
361
|
+
.ls-input-table .ant-pro-table-list-toolbar .ant-pro-table-list-toolbar-title {
|
|
362
|
+
font-size: 14px !important;
|
|
363
|
+
}
|
|
364
|
+
.ls-input-table .ant-form:not(.ant-form-large, .ant-form-sm) .ant-form-item {
|
|
365
|
+
margin-bottom: 6px !important;
|
|
353
366
|
}
|
|
354
367
|
.ls-area-cascaded-box {
|
|
355
|
-
width: 600px;
|
|
356
368
|
display: flex;
|
|
357
369
|
flex-direction: column;
|
|
370
|
+
width: 600px;
|
|
358
371
|
transition: all 0.3s;
|
|
359
372
|
}
|
|
360
373
|
.ls-area-cascaded-box .ls-area-cascaded-header {
|
|
361
|
-
width: 100%;
|
|
362
|
-
padding: 2px 0 6px;
|
|
363
|
-
border-bottom: 1px solid #f0f0f0;
|
|
364
374
|
display: flex;
|
|
365
375
|
flex-direction: row;
|
|
366
376
|
justify-content: space-around;
|
|
367
377
|
justify-content: center;
|
|
378
|
+
width: 100%;
|
|
379
|
+
padding: 2px 0 6px;
|
|
380
|
+
border-bottom: 1px solid #f0f0f0;
|
|
368
381
|
}
|
|
369
382
|
.ls-area-cascaded-box .ls-area-cascaded-header .ls-word-box-display {
|
|
370
383
|
margin: 0 10px;
|
|
371
|
-
font-size: 14px;
|
|
372
384
|
font-weight: 100;
|
|
385
|
+
font-size: 14px;
|
|
373
386
|
}
|
|
374
387
|
.ls-area-cascaded-box .ls-area-cascaded-header .ls-word-box-display button {
|
|
375
|
-
border: none;
|
|
376
388
|
background-color: var(--ant-primary-2, #f0f9ff);
|
|
389
|
+
border: none;
|
|
377
390
|
}
|
|
378
391
|
.ls-area-cascaded-box .ls-area-cascaded-header .ls-word-box-display button[disabled] {
|
|
379
392
|
background-color: #fafafa !important;
|
|
@@ -384,8 +397,8 @@ a:hover {
|
|
|
384
397
|
}
|
|
385
398
|
.ls-area-cascaded-box .ls-area-cascaded-header .ls-word-box-display .ls-myself-select-title-style {
|
|
386
399
|
color: var(--ant-primary-color, #459adc);
|
|
387
|
-
font-size: 14px;
|
|
388
400
|
font-weight: 600;
|
|
401
|
+
font-size: 14px;
|
|
389
402
|
transition: all 0.3s;
|
|
390
403
|
}
|
|
391
404
|
.ls-area-cascaded-box .ls-area-cascaded-header .ls-icon-box-display {
|
|
@@ -393,24 +406,24 @@ a:hover {
|
|
|
393
406
|
align-items: center;
|
|
394
407
|
}
|
|
395
408
|
.ls-area-cascaded-box .ls-area-cascaded-body {
|
|
396
|
-
width: 100%;
|
|
397
|
-
min-height: 100px;
|
|
398
|
-
max-height: 350px;
|
|
399
|
-
overflow: auto;
|
|
400
|
-
padding: 8px 12px 4px;
|
|
401
409
|
display: grid;
|
|
402
410
|
grid-template-columns: repeat(4, 1fr);
|
|
403
411
|
gap: 4px;
|
|
404
|
-
justify-content: start;
|
|
405
412
|
align-content: flex-start;
|
|
406
413
|
align-items: center;
|
|
414
|
+
justify-content: start;
|
|
415
|
+
width: 100%;
|
|
416
|
+
min-height: 100px;
|
|
417
|
+
max-height: 350px;
|
|
418
|
+
padding: 8px 12px 4px;
|
|
419
|
+
overflow: auto;
|
|
407
420
|
}
|
|
408
421
|
.ls-area-cascaded-box .ls-area-cascaded-body .ls-area-cascaded-span {
|
|
409
|
-
text-align: center;
|
|
410
422
|
padding: 6px 10px;
|
|
411
423
|
overflow: hidden;
|
|
412
|
-
text-overflow: ellipsis;
|
|
413
424
|
white-space: nowrap;
|
|
425
|
+
text-align: center;
|
|
426
|
+
text-overflow: ellipsis;
|
|
414
427
|
cursor: pointer;
|
|
415
428
|
}
|
|
416
429
|
.ls-area-cascaded-box .ls-area-cascaded-body .ls-area-cascaded-span.ls-area-selected,
|
|
@@ -551,13 +564,13 @@ a:hover {
|
|
|
551
564
|
}
|
|
552
565
|
.ant-btn-dangerous {
|
|
553
566
|
color: #f5222d;
|
|
554
|
-
background-color: #
|
|
567
|
+
background-color: #fff1f0;
|
|
555
568
|
border-color: transparent;
|
|
556
569
|
}
|
|
557
570
|
.ant-btn-dangerous:hover,
|
|
558
571
|
.ant-btn-dangerous:focus {
|
|
559
572
|
color: #f5222d;
|
|
560
|
-
background-color: #
|
|
573
|
+
background-color: #ffccc7;
|
|
561
574
|
border-color: transparent;
|
|
562
575
|
}
|
|
563
576
|
.ant-btn-dangerous:active {
|
|
@@ -819,16 +832,19 @@ a:hover {
|
|
|
819
832
|
.ant-pro-table .ant-card-body {
|
|
820
833
|
padding: 6px 20px;
|
|
821
834
|
}
|
|
835
|
+
.cell-selected {
|
|
836
|
+
background-color: #f9e4c9 !important;
|
|
837
|
+
}
|
|
822
838
|
.ant-pro-table-srcoll {
|
|
823
|
-
width: 100%;
|
|
824
|
-
height: 100%;
|
|
825
839
|
display: flex;
|
|
826
840
|
flex-direction: column;
|
|
841
|
+
width: 100%;
|
|
842
|
+
height: 100%;
|
|
827
843
|
}
|
|
828
844
|
.ant-pro-table-srcoll .ant-checkbox-checked::after {
|
|
829
|
-
content: none;
|
|
830
845
|
animation: none !important;
|
|
831
846
|
animation-fill-mode: none !important;
|
|
847
|
+
content: none;
|
|
832
848
|
}
|
|
833
849
|
.ant-pro-table-srcoll .ant-checkbox-inner,
|
|
834
850
|
.ant-pro-table-srcoll .ant-checkbox-inner::after,
|
|
@@ -839,21 +855,21 @@ a:hover {
|
|
|
839
855
|
transition: none !important;
|
|
840
856
|
}
|
|
841
857
|
.ant-pro-table-srcoll .ant-table-summary .total-cell-label {
|
|
842
|
-
padding-left: 0 !important;
|
|
843
858
|
padding-right: 0 !important;
|
|
859
|
+
padding-left: 0 !important;
|
|
844
860
|
text-align: right;
|
|
845
861
|
}
|
|
846
862
|
.ant-pro-table-srcoll .ant-card {
|
|
847
863
|
flex: 1;
|
|
848
864
|
height: 0;
|
|
849
|
-
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
|
|
850
|
-
border-radius: 8px;
|
|
851
865
|
overflow: visible;
|
|
866
|
+
border-radius: 8px;
|
|
867
|
+
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
|
|
852
868
|
}
|
|
853
869
|
.ant-pro-table-srcoll .ant-card .ant-card-body {
|
|
854
|
-
height: 100%;
|
|
855
870
|
display: flex;
|
|
856
871
|
flex-direction: column;
|
|
872
|
+
height: 100%;
|
|
857
873
|
overflow: visible;
|
|
858
874
|
}
|
|
859
875
|
.ant-pro-table-srcoll .ant-card .ant-table-wrapper {
|
|
@@ -876,16 +892,16 @@ a:hover {
|
|
|
876
892
|
height: 0;
|
|
877
893
|
}
|
|
878
894
|
.ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container {
|
|
879
|
-
height: 100%;
|
|
880
895
|
display: flex;
|
|
881
896
|
flex-direction: column;
|
|
897
|
+
height: 100%;
|
|
882
898
|
}
|
|
883
899
|
.ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header {
|
|
884
900
|
border-radius: 4px 4px 0 0;
|
|
885
901
|
}
|
|
886
902
|
.ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container div.ant-table-body {
|
|
887
|
-
flex: 1;
|
|
888
903
|
position: relative;
|
|
904
|
+
flex: 1;
|
|
889
905
|
}
|
|
890
906
|
.ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container::before,
|
|
891
907
|
.ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container::after {
|
|
@@ -903,22 +919,22 @@ a:hover {
|
|
|
903
919
|
}
|
|
904
920
|
.ant-pro-table-srcoll .resizable-th-handle,
|
|
905
921
|
.ant-pro-table-srcoll .react-resizable-handle {
|
|
906
|
-
cursor: col-resize;
|
|
907
|
-
border-left: solid 2px rgba(0, 0, 0, 0.12);
|
|
908
|
-
height: 1.6em;
|
|
909
922
|
position: absolute;
|
|
910
|
-
right: 0px;
|
|
911
923
|
top: 50%;
|
|
924
|
+
right: 0px;
|
|
925
|
+
width: 3px;
|
|
926
|
+
height: 1.6em;
|
|
927
|
+
border-left: solid 2px rgba(0, 0, 0, 0.12);
|
|
912
928
|
transform: translateY(-50%);
|
|
929
|
+
cursor: col-resize;
|
|
913
930
|
transition: background-color 0.3s;
|
|
914
|
-
width: 3px;
|
|
915
931
|
}
|
|
916
932
|
.ant-pro-table-srcoll .resizable-th .resizable-th-handle {
|
|
917
933
|
visibility: hidden;
|
|
918
934
|
}
|
|
919
935
|
.ant-pro-table-srcoll .resizable-th:hover .resizable-th-handle {
|
|
920
|
-
visibility: visible;
|
|
921
936
|
z-index: 10;
|
|
937
|
+
visibility: visible;
|
|
922
938
|
}
|
|
923
939
|
.ant-pro-table-srcoll .ant-table-cell.ant-table-selection-column {
|
|
924
940
|
text-overflow: inherit !important;
|
|
@@ -991,7 +1007,7 @@ a:hover {
|
|
|
991
1007
|
text-overflow: unset;
|
|
992
1008
|
}
|
|
993
1009
|
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-thead > tr > th {
|
|
994
|
-
background-color: #
|
|
1010
|
+
background-color: #f4f7fd;
|
|
995
1011
|
border-bottom: none;
|
|
996
1012
|
transition: none;
|
|
997
1013
|
}
|
|
@@ -1001,8 +1017,8 @@ a:hover {
|
|
|
1001
1017
|
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-tbody > tr > td,
|
|
1002
1018
|
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > th,
|
|
1003
1019
|
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > td {
|
|
1004
|
-
padding: 5px 10px;
|
|
1005
1020
|
height: 32px;
|
|
1021
|
+
padding: 5px 10px;
|
|
1006
1022
|
font-size: 13px;
|
|
1007
1023
|
}
|
|
1008
1024
|
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-title .total-label,
|
|
@@ -1052,9 +1068,9 @@ a:hover {
|
|
|
1052
1068
|
margin: 8px 0;
|
|
1053
1069
|
}
|
|
1054
1070
|
.ls-pro-table-mini .ant-pagination-item-active {
|
|
1055
|
-
background: #
|
|
1056
|
-
border-radius: 4px;
|
|
1071
|
+
background: #e4eefa;
|
|
1057
1072
|
border-color: transparent;
|
|
1073
|
+
border-radius: 4px;
|
|
1058
1074
|
}
|
|
1059
1075
|
.ls-pro-table .ant-table-tbody tr:nth-of-type(odd) {
|
|
1060
1076
|
background-color: #f7fafc;
|
|
@@ -1079,7 +1095,7 @@ a:hover {
|
|
|
1079
1095
|
.ls-pro-table .ant-table-tbody > tr.ant-table-row-current > td,
|
|
1080
1096
|
.ls-pro-table .ant-table-tbody > tr.ant-table-row-selected > td,
|
|
1081
1097
|
.ls-pro-table .ant-table-tbody > tr.ant-table-row:hover > td {
|
|
1082
|
-
background-color: #
|
|
1098
|
+
background-color: #e6f5ff;
|
|
1083
1099
|
}
|
|
1084
1100
|
.ls-pro-table .ant-table-tbody .ant-table-column-sort {
|
|
1085
1101
|
background: inherit;
|
|
@@ -1101,16 +1117,19 @@ a:hover {
|
|
|
1101
1117
|
.theme-yellow .ls-pro-table .ant-table-tbody > tr.ant-table-row:hover > td {
|
|
1102
1118
|
background-color: #ffedd9;
|
|
1103
1119
|
}
|
|
1120
|
+
.theme-yellow .cell-selected {
|
|
1121
|
+
background-color: #e6f4ff !important;
|
|
1122
|
+
}
|
|
1104
1123
|
.ant-pro-card-body .ant-pro-table .ant-card {
|
|
1105
|
-
box-shadow: none;
|
|
1106
1124
|
border-radius: 0;
|
|
1125
|
+
box-shadow: none;
|
|
1107
1126
|
}
|
|
1108
1127
|
.ant-pro-card-body .ant-pro-table .ant-card-body {
|
|
1109
1128
|
padding: 0 !important;
|
|
1110
1129
|
}
|
|
1111
1130
|
.ant-modal-body .ant-pro-table .ant-card {
|
|
1112
|
-
box-shadow: none;
|
|
1113
1131
|
padding: 0;
|
|
1132
|
+
box-shadow: none;
|
|
1114
1133
|
}
|
|
1115
1134
|
.ant-modal-body .ant-pro-table .ant-card-body {
|
|
1116
1135
|
padding: 0;
|
|
@@ -2829,10 +2848,31 @@ html {
|
|
|
2829
2848
|
.search-setting .ant-tree-treenode:hover {
|
|
2830
2849
|
background-color: #f5f5f5;
|
|
2831
2850
|
}
|
|
2851
|
+
.search-modal-share {
|
|
2852
|
+
display: flex;
|
|
2853
|
+
min-height: 250px;
|
|
2854
|
+
max-height: 400px;
|
|
2855
|
+
overflow: auto;
|
|
2856
|
+
}
|
|
2857
|
+
.search-modal-share .modal-share-list {
|
|
2858
|
+
width: 200px;
|
|
2859
|
+
padding-top: 10px;
|
|
2860
|
+
line-height: 35px;
|
|
2861
|
+
border-right: 1px solid #eeeeee;
|
|
2862
|
+
}
|
|
2863
|
+
.search-modal-share .modal-share-item {
|
|
2864
|
+
padding-left: 20px;
|
|
2865
|
+
}
|
|
2866
|
+
.search-modal-share .modal-share-user {
|
|
2867
|
+
flex: 1;
|
|
2868
|
+
width: 0;
|
|
2869
|
+
padding: 10px 0 0 10px;
|
|
2870
|
+
line-height: 35px;
|
|
2871
|
+
}
|
|
2832
2872
|
.search-modal-body {
|
|
2833
2873
|
display: flex;
|
|
2834
|
-
min-height:
|
|
2835
|
-
max-height:
|
|
2874
|
+
min-height: 200px;
|
|
2875
|
+
max-height: 400px;
|
|
2836
2876
|
}
|
|
2837
2877
|
.search-modal-body .body-left {
|
|
2838
2878
|
width: 200px;
|
|
@@ -2959,6 +2999,7 @@ html {
|
|
|
2959
2999
|
|
|
2960
3000
|
.ant-pro-table-alert {
|
|
2961
3001
|
margin-left: 16px;
|
|
3002
|
+
white-space: nowrap;
|
|
2962
3003
|
}
|
|
2963
3004
|
.ant-pro-table-alert .ant-alert.ant-alert-no-icon {
|
|
2964
3005
|
height: 32px;
|
|
@@ -2974,15 +3015,24 @@ html {
|
|
|
2974
3015
|
.ant-pro-table-alert-info-content {
|
|
2975
3016
|
flex: 1;
|
|
2976
3017
|
}
|
|
2977
|
-
.ant-pro-table-alert-info-content
|
|
3018
|
+
.ant-pro-table-alert-info-content .number {
|
|
2978
3019
|
display: inline-block;
|
|
2979
|
-
width:
|
|
3020
|
+
width: 32px;
|
|
2980
3021
|
text-align: center;
|
|
2981
3022
|
}
|
|
2982
3023
|
.ant-pro-table-alert-info-option {
|
|
2983
3024
|
min-width: 48px;
|
|
2984
3025
|
padding-left: 16px;
|
|
2985
3026
|
}
|
|
3027
|
+
.ant-table-selected-tag {
|
|
3028
|
+
justify-content: flex-start;
|
|
3029
|
+
width: 450px;
|
|
3030
|
+
height: 240px;
|
|
3031
|
+
overflow: auto;
|
|
3032
|
+
}
|
|
3033
|
+
.ant-table-selected-tag .ant-tag {
|
|
3034
|
+
margin-bottom: 8px;
|
|
3035
|
+
}
|
|
2986
3036
|
|
|
2987
3037
|
.pro-table-tooltip-text span {
|
|
2988
3038
|
color: #fff;
|
|
@@ -3020,16 +3070,19 @@ html {
|
|
|
3020
3070
|
.ant-pro-table .ant-card-body {
|
|
3021
3071
|
padding: 6px 20px;
|
|
3022
3072
|
}
|
|
3073
|
+
.cell-selected {
|
|
3074
|
+
background-color: #f9e4c9 !important;
|
|
3075
|
+
}
|
|
3023
3076
|
.ant-pro-table-srcoll {
|
|
3024
|
-
width: 100%;
|
|
3025
|
-
height: 100%;
|
|
3026
3077
|
display: flex;
|
|
3027
3078
|
flex-direction: column;
|
|
3079
|
+
width: 100%;
|
|
3080
|
+
height: 100%;
|
|
3028
3081
|
}
|
|
3029
3082
|
.ant-pro-table-srcoll .ant-checkbox-checked::after {
|
|
3030
|
-
content: none;
|
|
3031
3083
|
animation: none !important;
|
|
3032
3084
|
animation-fill-mode: none !important;
|
|
3085
|
+
content: none;
|
|
3033
3086
|
}
|
|
3034
3087
|
.ant-pro-table-srcoll .ant-checkbox-inner,
|
|
3035
3088
|
.ant-pro-table-srcoll .ant-checkbox-inner::after,
|
|
@@ -3040,21 +3093,21 @@ html {
|
|
|
3040
3093
|
transition: none !important;
|
|
3041
3094
|
}
|
|
3042
3095
|
.ant-pro-table-srcoll .ant-table-summary .total-cell-label {
|
|
3043
|
-
padding-left: 0 !important;
|
|
3044
3096
|
padding-right: 0 !important;
|
|
3097
|
+
padding-left: 0 !important;
|
|
3045
3098
|
text-align: right;
|
|
3046
3099
|
}
|
|
3047
3100
|
.ant-pro-table-srcoll .ant-card {
|
|
3048
3101
|
flex: 1;
|
|
3049
3102
|
height: 0;
|
|
3050
|
-
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
|
|
3051
|
-
border-radius: 8px;
|
|
3052
3103
|
overflow: visible;
|
|
3104
|
+
border-radius: 8px;
|
|
3105
|
+
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
|
|
3053
3106
|
}
|
|
3054
3107
|
.ant-pro-table-srcoll .ant-card .ant-card-body {
|
|
3055
|
-
height: 100%;
|
|
3056
3108
|
display: flex;
|
|
3057
3109
|
flex-direction: column;
|
|
3110
|
+
height: 100%;
|
|
3058
3111
|
overflow: visible;
|
|
3059
3112
|
}
|
|
3060
3113
|
.ant-pro-table-srcoll .ant-card .ant-table-wrapper {
|
|
@@ -3077,16 +3130,16 @@ html {
|
|
|
3077
3130
|
height: 0;
|
|
3078
3131
|
}
|
|
3079
3132
|
.ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container {
|
|
3080
|
-
height: 100%;
|
|
3081
3133
|
display: flex;
|
|
3082
3134
|
flex-direction: column;
|
|
3135
|
+
height: 100%;
|
|
3083
3136
|
}
|
|
3084
3137
|
.ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header {
|
|
3085
3138
|
border-radius: 4px 4px 0 0;
|
|
3086
3139
|
}
|
|
3087
3140
|
.ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container div.ant-table-body {
|
|
3088
|
-
flex: 1;
|
|
3089
3141
|
position: relative;
|
|
3142
|
+
flex: 1;
|
|
3090
3143
|
}
|
|
3091
3144
|
.ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container::before,
|
|
3092
3145
|
.ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container::after {
|
|
@@ -3104,22 +3157,22 @@ html {
|
|
|
3104
3157
|
}
|
|
3105
3158
|
.ant-pro-table-srcoll .resizable-th-handle,
|
|
3106
3159
|
.ant-pro-table-srcoll .react-resizable-handle {
|
|
3107
|
-
cursor: col-resize;
|
|
3108
|
-
border-left: solid 2px rgba(0, 0, 0, 0.12);
|
|
3109
|
-
height: 1.6em;
|
|
3110
3160
|
position: absolute;
|
|
3111
|
-
right: 0px;
|
|
3112
3161
|
top: 50%;
|
|
3162
|
+
right: 0px;
|
|
3163
|
+
width: 3px;
|
|
3164
|
+
height: 1.6em;
|
|
3165
|
+
border-left: solid 2px rgba(0, 0, 0, 0.12);
|
|
3113
3166
|
transform: translateY(-50%);
|
|
3167
|
+
cursor: col-resize;
|
|
3114
3168
|
transition: background-color 0.3s;
|
|
3115
|
-
width: 3px;
|
|
3116
3169
|
}
|
|
3117
3170
|
.ant-pro-table-srcoll .resizable-th .resizable-th-handle {
|
|
3118
3171
|
visibility: hidden;
|
|
3119
3172
|
}
|
|
3120
3173
|
.ant-pro-table-srcoll .resizable-th:hover .resizable-th-handle {
|
|
3121
|
-
visibility: visible;
|
|
3122
3174
|
z-index: 10;
|
|
3175
|
+
visibility: visible;
|
|
3123
3176
|
}
|
|
3124
3177
|
.ant-pro-table-srcoll .ant-table-cell.ant-table-selection-column {
|
|
3125
3178
|
text-overflow: inherit !important;
|
|
@@ -3192,7 +3245,7 @@ html {
|
|
|
3192
3245
|
text-overflow: unset;
|
|
3193
3246
|
}
|
|
3194
3247
|
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-thead > tr > th {
|
|
3195
|
-
background-color: #
|
|
3248
|
+
background-color: #f4f7fd;
|
|
3196
3249
|
border-bottom: none;
|
|
3197
3250
|
transition: none;
|
|
3198
3251
|
}
|
|
@@ -3202,8 +3255,8 @@ html {
|
|
|
3202
3255
|
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-tbody > tr > td,
|
|
3203
3256
|
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > th,
|
|
3204
3257
|
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > td {
|
|
3205
|
-
padding: 5px 10px;
|
|
3206
3258
|
height: 32px;
|
|
3259
|
+
padding: 5px 10px;
|
|
3207
3260
|
font-size: 13px;
|
|
3208
3261
|
}
|
|
3209
3262
|
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-title .total-label,
|
|
@@ -3253,9 +3306,9 @@ html {
|
|
|
3253
3306
|
margin: 8px 0;
|
|
3254
3307
|
}
|
|
3255
3308
|
.ls-pro-table-mini .ant-pagination-item-active {
|
|
3256
|
-
background: #
|
|
3257
|
-
border-radius: 4px;
|
|
3309
|
+
background: #e4eefa;
|
|
3258
3310
|
border-color: transparent;
|
|
3311
|
+
border-radius: 4px;
|
|
3259
3312
|
}
|
|
3260
3313
|
.ls-pro-table .ant-table-tbody tr:nth-of-type(odd) {
|
|
3261
3314
|
background-color: #f7fafc;
|
|
@@ -3280,7 +3333,7 @@ html {
|
|
|
3280
3333
|
.ls-pro-table .ant-table-tbody > tr.ant-table-row-current > td,
|
|
3281
3334
|
.ls-pro-table .ant-table-tbody > tr.ant-table-row-selected > td,
|
|
3282
3335
|
.ls-pro-table .ant-table-tbody > tr.ant-table-row:hover > td {
|
|
3283
|
-
background-color: #
|
|
3336
|
+
background-color: #e6f5ff;
|
|
3284
3337
|
}
|
|
3285
3338
|
.ls-pro-table .ant-table-tbody .ant-table-column-sort {
|
|
3286
3339
|
background: inherit;
|
|
@@ -3302,16 +3355,19 @@ html {
|
|
|
3302
3355
|
.theme-yellow .ls-pro-table .ant-table-tbody > tr.ant-table-row:hover > td {
|
|
3303
3356
|
background-color: #ffedd9;
|
|
3304
3357
|
}
|
|
3358
|
+
.theme-yellow .cell-selected {
|
|
3359
|
+
background-color: #e6f4ff !important;
|
|
3360
|
+
}
|
|
3305
3361
|
.ant-pro-card-body .ant-pro-table .ant-card {
|
|
3306
|
-
box-shadow: none;
|
|
3307
3362
|
border-radius: 0;
|
|
3363
|
+
box-shadow: none;
|
|
3308
3364
|
}
|
|
3309
3365
|
.ant-pro-card-body .ant-pro-table .ant-card-body {
|
|
3310
3366
|
padding: 0 !important;
|
|
3311
3367
|
}
|
|
3312
3368
|
.ant-modal-body .ant-pro-table .ant-card {
|
|
3313
|
-
box-shadow: none;
|
|
3314
3369
|
padding: 0;
|
|
3370
|
+
box-shadow: none;
|
|
3315
3371
|
}
|
|
3316
3372
|
.ant-modal-body .ant-pro-table .ant-card-body {
|
|
3317
3373
|
padding: 0;
|
|
@@ -3408,6 +3464,9 @@ html {
|
|
|
3408
3464
|
justify-content: space-between;
|
|
3409
3465
|
height: 32px;
|
|
3410
3466
|
}
|
|
3467
|
+
.ant-pro-table-column-setting-overlay {
|
|
3468
|
+
position: relative;
|
|
3469
|
+
}
|
|
3411
3470
|
.ant-pro-table-column-setting-overlay .ant-popover-inner-content {
|
|
3412
3471
|
display: flex;
|
|
3413
3472
|
width: 500px;
|
|
@@ -3454,6 +3513,43 @@ html {
|
|
|
3454
3513
|
.ant-pro-table-column-setting-overlay .my-icon-remove:hover {
|
|
3455
3514
|
color: var(--ant-error-color, #ff4d4f);
|
|
3456
3515
|
}
|
|
3516
|
+
.ant-pro-table-column-setting-overlay .column-setting-share {
|
|
3517
|
+
position: absolute;
|
|
3518
|
+
top: 10px;
|
|
3519
|
+
right: 0;
|
|
3520
|
+
bottom: 0;
|
|
3521
|
+
left: 0;
|
|
3522
|
+
display: flex;
|
|
3523
|
+
flex-direction: column;
|
|
3524
|
+
background-color: #fff;
|
|
3525
|
+
}
|
|
3526
|
+
.ant-pro-table-column-setting-overlay .column-setting-share .share-header {
|
|
3527
|
+
display: flex;
|
|
3528
|
+
align-items: center;
|
|
3529
|
+
justify-content: space-between;
|
|
3530
|
+
height: 40px;
|
|
3531
|
+
}
|
|
3532
|
+
.ant-pro-table-column-setting-overlay .column-setting-share .share-body {
|
|
3533
|
+
display: flex;
|
|
3534
|
+
flex: 1;
|
|
3535
|
+
padding: 0 20px;
|
|
3536
|
+
overflow: auto;
|
|
3537
|
+
}
|
|
3538
|
+
.ant-pro-table-column-setting-overlay .column-setting-share .share-body .share-list {
|
|
3539
|
+
width: 200px;
|
|
3540
|
+
padding-top: 10px;
|
|
3541
|
+
line-height: 35px;
|
|
3542
|
+
border-right: 1px solid #eeeeee;
|
|
3543
|
+
}
|
|
3544
|
+
.ant-pro-table-column-setting-overlay .column-setting-share .share-body .share-item {
|
|
3545
|
+
padding-left: 20px;
|
|
3546
|
+
}
|
|
3547
|
+
.ant-pro-table-column-setting-overlay .column-setting-share .share-body .share-user {
|
|
3548
|
+
flex: 1;
|
|
3549
|
+
width: 0;
|
|
3550
|
+
padding: 10px 0 0 10px;
|
|
3551
|
+
line-height: 35px;
|
|
3552
|
+
}
|
|
3457
3553
|
.ant-pro-table-column-setting-nosave .ant-popover-inner-content {
|
|
3458
3554
|
width: 300px;
|
|
3459
3555
|
}
|