ls-pro-common 1.0.77 → 1.0.79
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 +44 -2
- package/dist/common.js +1 -1
- package/dist/common.min.css +44 -2
- package/dist/common.min.js +1 -1
- package/package.json +3 -3
package/dist/common.css
CHANGED
|
@@ -297,7 +297,6 @@ a:hover {
|
|
|
297
297
|
}
|
|
298
298
|
.ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container div.ant-table-body {
|
|
299
299
|
flex: 1;
|
|
300
|
-
overflow: auto !important;
|
|
301
300
|
}
|
|
302
301
|
.ant-pro-table-srcoll .ant-table-placeholder td {
|
|
303
302
|
border-bottom: none;
|
|
@@ -314,6 +313,19 @@ a:hover {
|
|
|
314
313
|
padding: 10px 5px;
|
|
315
314
|
white-space: nowrap;
|
|
316
315
|
text-overflow: ellipsis;
|
|
316
|
+
}
|
|
317
|
+
.ant-table.ant-table-small .ant-table-title:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last),
|
|
318
|
+
.ant-table.ant-table-small .ant-table-footer:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last),
|
|
319
|
+
.ant-table.ant-table-small .ant-table-thead > tr > th:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last),
|
|
320
|
+
.ant-table.ant-table-small .ant-table-tbody > tr > td:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last),
|
|
321
|
+
.ant-table.ant-table-small tfoot > tr > th:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last),
|
|
322
|
+
.ant-table.ant-table-small tfoot > tr > td:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last),
|
|
323
|
+
.ant-table.ant-table-small .ant-table-title:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last),
|
|
324
|
+
.ant-table.ant-table-small .ant-table-footer:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last),
|
|
325
|
+
.ant-table.ant-table-small .ant-table-thead > tr > th:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last),
|
|
326
|
+
.ant-table.ant-table-small .ant-table-tbody > tr > td:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last),
|
|
327
|
+
.ant-table.ant-table-small tfoot > tr > th:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last),
|
|
328
|
+
.ant-table.ant-table-small tfoot > tr > td:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last) {
|
|
317
329
|
overflow: hidden;
|
|
318
330
|
}
|
|
319
331
|
.ant-table.ant-table-small .ant-table-title:first-child,
|
|
@@ -417,13 +429,16 @@ a:hover {
|
|
|
417
429
|
.ls-pro-table .ant-table-thead tr th {
|
|
418
430
|
background-color: #f5f9ff;
|
|
419
431
|
}
|
|
432
|
+
.ls-pro-table .resizable-th,
|
|
420
433
|
.ls-pro-table .react-resizable {
|
|
421
434
|
position: relative;
|
|
422
435
|
}
|
|
436
|
+
.ls-pro-table .resizable-th::before,
|
|
423
437
|
.ls-pro-table .react-resizable::before {
|
|
424
438
|
height: 0 !important;
|
|
425
439
|
width: 0 !important;
|
|
426
440
|
}
|
|
441
|
+
.ls-pro-table .resizable-th-handle,
|
|
427
442
|
.ls-pro-table .react-resizable-handle {
|
|
428
443
|
cursor: col-resize;
|
|
429
444
|
border-left: solid 1px rgba(0, 0, 0, 0.12);
|
|
@@ -435,6 +450,12 @@ a:hover {
|
|
|
435
450
|
transition: background-color 0.3s;
|
|
436
451
|
width: 3px;
|
|
437
452
|
}
|
|
453
|
+
.ls-pro-table .resizable-th .resizable-th-handle {
|
|
454
|
+
visibility: hidden;
|
|
455
|
+
}
|
|
456
|
+
.ls-pro-table .resizable-th:hover .resizable-th-handle {
|
|
457
|
+
visibility: visible;
|
|
458
|
+
}
|
|
438
459
|
.theme-yellow .ls-pro-table .ant-table-tbody tr:nth-of-type(odd) {
|
|
439
460
|
background-color: #fcfaf7;
|
|
440
461
|
}
|
|
@@ -2298,7 +2319,6 @@ html {
|
|
|
2298
2319
|
}
|
|
2299
2320
|
.ant-pro-table-srcoll .ant-card .ant-table-wrapper .ant-spin-container .ant-table .ant-table-container div.ant-table-body {
|
|
2300
2321
|
flex: 1;
|
|
2301
|
-
overflow: auto !important;
|
|
2302
2322
|
}
|
|
2303
2323
|
.ant-pro-table-srcoll .ant-table-placeholder td {
|
|
2304
2324
|
border-bottom: none;
|
|
@@ -2315,6 +2335,19 @@ html {
|
|
|
2315
2335
|
padding: 10px 5px;
|
|
2316
2336
|
white-space: nowrap;
|
|
2317
2337
|
text-overflow: ellipsis;
|
|
2338
|
+
}
|
|
2339
|
+
.ant-table.ant-table-small .ant-table-title:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last),
|
|
2340
|
+
.ant-table.ant-table-small .ant-table-footer:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last),
|
|
2341
|
+
.ant-table.ant-table-small .ant-table-thead > tr > th:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last),
|
|
2342
|
+
.ant-table.ant-table-small .ant-table-tbody > tr > td:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last),
|
|
2343
|
+
.ant-table.ant-table-small tfoot > tr > th:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last),
|
|
2344
|
+
.ant-table.ant-table-small tfoot > tr > td:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last),
|
|
2345
|
+
.ant-table.ant-table-small .ant-table-title:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last),
|
|
2346
|
+
.ant-table.ant-table-small .ant-table-footer:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last),
|
|
2347
|
+
.ant-table.ant-table-small .ant-table-thead > tr > th:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last),
|
|
2348
|
+
.ant-table.ant-table-small .ant-table-tbody > tr > td:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last),
|
|
2349
|
+
.ant-table.ant-table-small tfoot > tr > th:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last),
|
|
2350
|
+
.ant-table.ant-table-small tfoot > tr > td:not(.ant-table-cell-fix-right-first, .ant-table-cell-fix-left-last) {
|
|
2318
2351
|
overflow: hidden;
|
|
2319
2352
|
}
|
|
2320
2353
|
.ant-table.ant-table-small .ant-table-title:first-child,
|
|
@@ -2418,13 +2451,16 @@ html {
|
|
|
2418
2451
|
.ls-pro-table .ant-table-thead tr th {
|
|
2419
2452
|
background-color: #f5f9ff;
|
|
2420
2453
|
}
|
|
2454
|
+
.ls-pro-table .resizable-th,
|
|
2421
2455
|
.ls-pro-table .react-resizable {
|
|
2422
2456
|
position: relative;
|
|
2423
2457
|
}
|
|
2458
|
+
.ls-pro-table .resizable-th::before,
|
|
2424
2459
|
.ls-pro-table .react-resizable::before {
|
|
2425
2460
|
height: 0 !important;
|
|
2426
2461
|
width: 0 !important;
|
|
2427
2462
|
}
|
|
2463
|
+
.ls-pro-table .resizable-th-handle,
|
|
2428
2464
|
.ls-pro-table .react-resizable-handle {
|
|
2429
2465
|
cursor: col-resize;
|
|
2430
2466
|
border-left: solid 1px rgba(0, 0, 0, 0.12);
|
|
@@ -2436,6 +2472,12 @@ html {
|
|
|
2436
2472
|
transition: background-color 0.3s;
|
|
2437
2473
|
width: 3px;
|
|
2438
2474
|
}
|
|
2475
|
+
.ls-pro-table .resizable-th .resizable-th-handle {
|
|
2476
|
+
visibility: hidden;
|
|
2477
|
+
}
|
|
2478
|
+
.ls-pro-table .resizable-th:hover .resizable-th-handle {
|
|
2479
|
+
visibility: visible;
|
|
2480
|
+
}
|
|
2439
2481
|
.theme-yellow .ls-pro-table .ant-table-tbody tr:nth-of-type(odd) {
|
|
2440
2482
|
background-color: #fcfaf7;
|
|
2441
2483
|
}
|