ls-pro-common 3.0.61 → 3.0.63
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 +215 -111
- package/dist/common.js +1 -1
- package/dist/common.min.css +215 -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,20 +1117,27 @@ 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;
|
|
1117
1136
|
}
|
|
1137
|
+
.ant-cell-selected ::selection {
|
|
1138
|
+
color: inherit;
|
|
1139
|
+
background-color: inherit;
|
|
1140
|
+
}
|
|
1118
1141
|
@keyframes turn {
|
|
1119
1142
|
0% {
|
|
1120
1143
|
transform: rotate(0deg);
|
|
@@ -2829,10 +2852,31 @@ html {
|
|
|
2829
2852
|
.search-setting .ant-tree-treenode:hover {
|
|
2830
2853
|
background-color: #f5f5f5;
|
|
2831
2854
|
}
|
|
2855
|
+
.search-modal-share {
|
|
2856
|
+
display: flex;
|
|
2857
|
+
min-height: 250px;
|
|
2858
|
+
max-height: 400px;
|
|
2859
|
+
overflow: auto;
|
|
2860
|
+
}
|
|
2861
|
+
.search-modal-share .modal-share-list {
|
|
2862
|
+
width: 200px;
|
|
2863
|
+
padding-top: 10px;
|
|
2864
|
+
line-height: 35px;
|
|
2865
|
+
border-right: 1px solid #eeeeee;
|
|
2866
|
+
}
|
|
2867
|
+
.search-modal-share .modal-share-item {
|
|
2868
|
+
padding-left: 20px;
|
|
2869
|
+
}
|
|
2870
|
+
.search-modal-share .modal-share-user {
|
|
2871
|
+
flex: 1;
|
|
2872
|
+
width: 0;
|
|
2873
|
+
padding: 10px 0 0 10px;
|
|
2874
|
+
line-height: 35px;
|
|
2875
|
+
}
|
|
2832
2876
|
.search-modal-body {
|
|
2833
2877
|
display: flex;
|
|
2834
|
-
min-height:
|
|
2835
|
-
max-height:
|
|
2878
|
+
min-height: 200px;
|
|
2879
|
+
max-height: 400px;
|
|
2836
2880
|
}
|
|
2837
2881
|
.search-modal-body .body-left {
|
|
2838
2882
|
width: 200px;
|
|
@@ -2959,6 +3003,7 @@ html {
|
|
|
2959
3003
|
|
|
2960
3004
|
.ant-pro-table-alert {
|
|
2961
3005
|
margin-left: 16px;
|
|
3006
|
+
white-space: nowrap;
|
|
2962
3007
|
}
|
|
2963
3008
|
.ant-pro-table-alert .ant-alert.ant-alert-no-icon {
|
|
2964
3009
|
height: 32px;
|
|
@@ -2974,15 +3019,24 @@ html {
|
|
|
2974
3019
|
.ant-pro-table-alert-info-content {
|
|
2975
3020
|
flex: 1;
|
|
2976
3021
|
}
|
|
2977
|
-
.ant-pro-table-alert-info-content
|
|
3022
|
+
.ant-pro-table-alert-info-content .number {
|
|
2978
3023
|
display: inline-block;
|
|
2979
|
-
width:
|
|
3024
|
+
width: 32px;
|
|
2980
3025
|
text-align: center;
|
|
2981
3026
|
}
|
|
2982
3027
|
.ant-pro-table-alert-info-option {
|
|
2983
3028
|
min-width: 48px;
|
|
2984
3029
|
padding-left: 16px;
|
|
2985
3030
|
}
|
|
3031
|
+
.ant-table-selected-tag {
|
|
3032
|
+
justify-content: flex-start;
|
|
3033
|
+
width: 450px;
|
|
3034
|
+
height: 240px;
|
|
3035
|
+
overflow: auto;
|
|
3036
|
+
}
|
|
3037
|
+
.ant-table-selected-tag .ant-tag {
|
|
3038
|
+
margin-bottom: 8px;
|
|
3039
|
+
}
|
|
2986
3040
|
|
|
2987
3041
|
.pro-table-tooltip-text span {
|
|
2988
3042
|
color: #fff;
|
|
@@ -3020,16 +3074,19 @@ html {
|
|
|
3020
3074
|
.ant-pro-table .ant-card-body {
|
|
3021
3075
|
padding: 6px 20px;
|
|
3022
3076
|
}
|
|
3077
|
+
.cell-selected {
|
|
3078
|
+
background-color: #f9e4c9 !important;
|
|
3079
|
+
}
|
|
3023
3080
|
.ant-pro-table-srcoll {
|
|
3024
|
-
width: 100%;
|
|
3025
|
-
height: 100%;
|
|
3026
3081
|
display: flex;
|
|
3027
3082
|
flex-direction: column;
|
|
3083
|
+
width: 100%;
|
|
3084
|
+
height: 100%;
|
|
3028
3085
|
}
|
|
3029
3086
|
.ant-pro-table-srcoll .ant-checkbox-checked::after {
|
|
3030
|
-
content: none;
|
|
3031
3087
|
animation: none !important;
|
|
3032
3088
|
animation-fill-mode: none !important;
|
|
3089
|
+
content: none;
|
|
3033
3090
|
}
|
|
3034
3091
|
.ant-pro-table-srcoll .ant-checkbox-inner,
|
|
3035
3092
|
.ant-pro-table-srcoll .ant-checkbox-inner::after,
|
|
@@ -3040,21 +3097,21 @@ html {
|
|
|
3040
3097
|
transition: none !important;
|
|
3041
3098
|
}
|
|
3042
3099
|
.ant-pro-table-srcoll .ant-table-summary .total-cell-label {
|
|
3043
|
-
padding-left: 0 !important;
|
|
3044
3100
|
padding-right: 0 !important;
|
|
3101
|
+
padding-left: 0 !important;
|
|
3045
3102
|
text-align: right;
|
|
3046
3103
|
}
|
|
3047
3104
|
.ant-pro-table-srcoll .ant-card {
|
|
3048
3105
|
flex: 1;
|
|
3049
3106
|
height: 0;
|
|
3050
|
-
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
|
|
3051
|
-
border-radius: 8px;
|
|
3052
3107
|
overflow: visible;
|
|
3108
|
+
border-radius: 8px;
|
|
3109
|
+
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05);
|
|
3053
3110
|
}
|
|
3054
3111
|
.ant-pro-table-srcoll .ant-card .ant-card-body {
|
|
3055
|
-
height: 100%;
|
|
3056
3112
|
display: flex;
|
|
3057
3113
|
flex-direction: column;
|
|
3114
|
+
height: 100%;
|
|
3058
3115
|
overflow: visible;
|
|
3059
3116
|
}
|
|
3060
3117
|
.ant-pro-table-srcoll .ant-card .ant-table-wrapper {
|
|
@@ -3077,16 +3134,16 @@ html {
|
|
|
3077
3134
|
height: 0;
|
|
3078
3135
|
}
|
|
3079
3136
|
.ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container {
|
|
3080
|
-
height: 100%;
|
|
3081
3137
|
display: flex;
|
|
3082
3138
|
flex-direction: column;
|
|
3139
|
+
height: 100%;
|
|
3083
3140
|
}
|
|
3084
3141
|
.ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container .ant-table-header {
|
|
3085
3142
|
border-radius: 4px 4px 0 0;
|
|
3086
3143
|
}
|
|
3087
3144
|
.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
3145
|
position: relative;
|
|
3146
|
+
flex: 1;
|
|
3090
3147
|
}
|
|
3091
3148
|
.ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container::before,
|
|
3092
3149
|
.ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container::after {
|
|
@@ -3104,22 +3161,22 @@ html {
|
|
|
3104
3161
|
}
|
|
3105
3162
|
.ant-pro-table-srcoll .resizable-th-handle,
|
|
3106
3163
|
.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
3164
|
position: absolute;
|
|
3111
|
-
right: 0px;
|
|
3112
3165
|
top: 50%;
|
|
3166
|
+
right: 0px;
|
|
3167
|
+
width: 3px;
|
|
3168
|
+
height: 1.6em;
|
|
3169
|
+
border-left: solid 2px rgba(0, 0, 0, 0.12);
|
|
3113
3170
|
transform: translateY(-50%);
|
|
3171
|
+
cursor: col-resize;
|
|
3114
3172
|
transition: background-color 0.3s;
|
|
3115
|
-
width: 3px;
|
|
3116
3173
|
}
|
|
3117
3174
|
.ant-pro-table-srcoll .resizable-th .resizable-th-handle {
|
|
3118
3175
|
visibility: hidden;
|
|
3119
3176
|
}
|
|
3120
3177
|
.ant-pro-table-srcoll .resizable-th:hover .resizable-th-handle {
|
|
3121
|
-
visibility: visible;
|
|
3122
3178
|
z-index: 10;
|
|
3179
|
+
visibility: visible;
|
|
3123
3180
|
}
|
|
3124
3181
|
.ant-pro-table-srcoll .ant-table-cell.ant-table-selection-column {
|
|
3125
3182
|
text-overflow: inherit !important;
|
|
@@ -3192,7 +3249,7 @@ html {
|
|
|
3192
3249
|
text-overflow: unset;
|
|
3193
3250
|
}
|
|
3194
3251
|
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-thead > tr > th {
|
|
3195
|
-
background-color: #
|
|
3252
|
+
background-color: #f4f7fd;
|
|
3196
3253
|
border-bottom: none;
|
|
3197
3254
|
transition: none;
|
|
3198
3255
|
}
|
|
@@ -3202,8 +3259,8 @@ html {
|
|
|
3202
3259
|
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-tbody > tr > td,
|
|
3203
3260
|
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > th,
|
|
3204
3261
|
.ls-pro-table-mini .ant-table.ant-table-small tfoot > tr > td {
|
|
3205
|
-
padding: 5px 10px;
|
|
3206
3262
|
height: 32px;
|
|
3263
|
+
padding: 5px 10px;
|
|
3207
3264
|
font-size: 13px;
|
|
3208
3265
|
}
|
|
3209
3266
|
.ls-pro-table-mini .ant-table.ant-table-small .ant-table-title .total-label,
|
|
@@ -3253,9 +3310,9 @@ html {
|
|
|
3253
3310
|
margin: 8px 0;
|
|
3254
3311
|
}
|
|
3255
3312
|
.ls-pro-table-mini .ant-pagination-item-active {
|
|
3256
|
-
background: #
|
|
3257
|
-
border-radius: 4px;
|
|
3313
|
+
background: #e4eefa;
|
|
3258
3314
|
border-color: transparent;
|
|
3315
|
+
border-radius: 4px;
|
|
3259
3316
|
}
|
|
3260
3317
|
.ls-pro-table .ant-table-tbody tr:nth-of-type(odd) {
|
|
3261
3318
|
background-color: #f7fafc;
|
|
@@ -3280,7 +3337,7 @@ html {
|
|
|
3280
3337
|
.ls-pro-table .ant-table-tbody > tr.ant-table-row-current > td,
|
|
3281
3338
|
.ls-pro-table .ant-table-tbody > tr.ant-table-row-selected > td,
|
|
3282
3339
|
.ls-pro-table .ant-table-tbody > tr.ant-table-row:hover > td {
|
|
3283
|
-
background-color: #
|
|
3340
|
+
background-color: #e6f5ff;
|
|
3284
3341
|
}
|
|
3285
3342
|
.ls-pro-table .ant-table-tbody .ant-table-column-sort {
|
|
3286
3343
|
background: inherit;
|
|
@@ -3302,20 +3359,27 @@ html {
|
|
|
3302
3359
|
.theme-yellow .ls-pro-table .ant-table-tbody > tr.ant-table-row:hover > td {
|
|
3303
3360
|
background-color: #ffedd9;
|
|
3304
3361
|
}
|
|
3362
|
+
.theme-yellow .cell-selected {
|
|
3363
|
+
background-color: #e6f4ff !important;
|
|
3364
|
+
}
|
|
3305
3365
|
.ant-pro-card-body .ant-pro-table .ant-card {
|
|
3306
|
-
box-shadow: none;
|
|
3307
3366
|
border-radius: 0;
|
|
3367
|
+
box-shadow: none;
|
|
3308
3368
|
}
|
|
3309
3369
|
.ant-pro-card-body .ant-pro-table .ant-card-body {
|
|
3310
3370
|
padding: 0 !important;
|
|
3311
3371
|
}
|
|
3312
3372
|
.ant-modal-body .ant-pro-table .ant-card {
|
|
3313
|
-
box-shadow: none;
|
|
3314
3373
|
padding: 0;
|
|
3374
|
+
box-shadow: none;
|
|
3315
3375
|
}
|
|
3316
3376
|
.ant-modal-body .ant-pro-table .ant-card-body {
|
|
3317
3377
|
padding: 0;
|
|
3318
3378
|
}
|
|
3379
|
+
.ant-cell-selected ::selection {
|
|
3380
|
+
color: inherit;
|
|
3381
|
+
background-color: inherit;
|
|
3382
|
+
}
|
|
3319
3383
|
@keyframes turn {
|
|
3320
3384
|
0% {
|
|
3321
3385
|
transform: rotate(0deg);
|
|
@@ -3408,6 +3472,9 @@ html {
|
|
|
3408
3472
|
justify-content: space-between;
|
|
3409
3473
|
height: 32px;
|
|
3410
3474
|
}
|
|
3475
|
+
.ant-pro-table-column-setting-overlay {
|
|
3476
|
+
position: relative;
|
|
3477
|
+
}
|
|
3411
3478
|
.ant-pro-table-column-setting-overlay .ant-popover-inner-content {
|
|
3412
3479
|
display: flex;
|
|
3413
3480
|
width: 500px;
|
|
@@ -3454,6 +3521,43 @@ html {
|
|
|
3454
3521
|
.ant-pro-table-column-setting-overlay .my-icon-remove:hover {
|
|
3455
3522
|
color: var(--ant-error-color, #ff4d4f);
|
|
3456
3523
|
}
|
|
3524
|
+
.ant-pro-table-column-setting-overlay .column-setting-share {
|
|
3525
|
+
position: absolute;
|
|
3526
|
+
top: 10px;
|
|
3527
|
+
right: 0;
|
|
3528
|
+
bottom: 0;
|
|
3529
|
+
left: 0;
|
|
3530
|
+
display: flex;
|
|
3531
|
+
flex-direction: column;
|
|
3532
|
+
background-color: #fff;
|
|
3533
|
+
}
|
|
3534
|
+
.ant-pro-table-column-setting-overlay .column-setting-share .share-header {
|
|
3535
|
+
display: flex;
|
|
3536
|
+
align-items: center;
|
|
3537
|
+
justify-content: space-between;
|
|
3538
|
+
height: 40px;
|
|
3539
|
+
}
|
|
3540
|
+
.ant-pro-table-column-setting-overlay .column-setting-share .share-body {
|
|
3541
|
+
display: flex;
|
|
3542
|
+
flex: 1;
|
|
3543
|
+
padding: 0 20px;
|
|
3544
|
+
overflow: auto;
|
|
3545
|
+
}
|
|
3546
|
+
.ant-pro-table-column-setting-overlay .column-setting-share .share-body .share-list {
|
|
3547
|
+
width: 200px;
|
|
3548
|
+
padding-top: 10px;
|
|
3549
|
+
line-height: 35px;
|
|
3550
|
+
border-right: 1px solid #eeeeee;
|
|
3551
|
+
}
|
|
3552
|
+
.ant-pro-table-column-setting-overlay .column-setting-share .share-body .share-item {
|
|
3553
|
+
padding-left: 20px;
|
|
3554
|
+
}
|
|
3555
|
+
.ant-pro-table-column-setting-overlay .column-setting-share .share-body .share-user {
|
|
3556
|
+
flex: 1;
|
|
3557
|
+
width: 0;
|
|
3558
|
+
padding: 10px 0 0 10px;
|
|
3559
|
+
line-height: 35px;
|
|
3560
|
+
}
|
|
3457
3561
|
.ant-pro-table-column-setting-nosave .ant-popover-inner-content {
|
|
3458
3562
|
width: 300px;
|
|
3459
3563
|
}
|