@cloudtower/eagle 0.17.12 → 0.17.13
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/components/Pagination/index.d.ts +1 -0
- package/dist/components/SimplePagination/index.d.ts +4 -0
- package/dist/esm/index.js +72 -3
- package/dist/esm/stats1.html +1 -1
- package/dist/spec/base.d.ts +8 -0
- package/dist/style.css +747 -737
- package/dist/umd/index.js +72 -2
- package/dist/umd/stats1.html +1 -1
- package/package.json +4 -3
package/dist/style.css
CHANGED
|
@@ -1614,75 +1614,6 @@ input[type=submit] {
|
|
|
1614
1614
|
cursor: pointer;
|
|
1615
1615
|
}
|
|
1616
1616
|
|
|
1617
|
-
.f18bxw7l {
|
|
1618
|
-
font-size: 13px;
|
|
1619
|
-
line-height: 20px;
|
|
1620
|
-
color: #f0483e;
|
|
1621
|
-
margin-top: -4px;
|
|
1622
|
-
margin-bottom: 8px;
|
|
1623
|
-
}
|
|
1624
|
-
|
|
1625
|
-
.bpq0js6 {
|
|
1626
|
-
padding: 4px 11px;
|
|
1627
|
-
}
|
|
1628
|
-
|
|
1629
|
-
.b15sn34c {
|
|
1630
|
-
white-space: nowrap;
|
|
1631
|
-
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
1632
|
-
}
|
|
1633
|
-
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
1634
|
-
--color: #0080ff;
|
|
1635
|
-
}
|
|
1636
|
-
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
|
|
1637
|
-
--color: #0080ff;
|
|
1638
|
-
}
|
|
1639
|
-
.b15sn34c > .ant-btn:not(:only-child) + .ant-btn {
|
|
1640
|
-
margin-left: 1px;
|
|
1641
|
-
}
|
|
1642
|
-
.b15sn34c > .ant-btn:not(:only-child):first-child {
|
|
1643
|
-
border-top-right-radius: 0;
|
|
1644
|
-
border-bottom-right-radius: 0;
|
|
1645
|
-
}
|
|
1646
|
-
.b15sn34c > .ant-btn:not(:only-child):last-child {
|
|
1647
|
-
border-top-left-radius: 0;
|
|
1648
|
-
border-bottom-left-radius: 0;
|
|
1649
|
-
}
|
|
1650
|
-
.b15sn34c > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
1651
|
-
border-radius: unset;
|
|
1652
|
-
}
|
|
1653
|
-
|
|
1654
|
-
.fde5mpd {
|
|
1655
|
-
width: 100%;
|
|
1656
|
-
height: 100%;
|
|
1657
|
-
min-height: 124px;
|
|
1658
|
-
display: flex;
|
|
1659
|
-
flex-direction: column;
|
|
1660
|
-
justify-content: center;
|
|
1661
|
-
align-items: center;
|
|
1662
|
-
}
|
|
1663
|
-
.fde5mpd .error-text {
|
|
1664
|
-
color: rgba(10, 37, 85, 0.6);
|
|
1665
|
-
margin-bottom: 16px;
|
|
1666
|
-
font-size: 18px;
|
|
1667
|
-
}
|
|
1668
|
-
|
|
1669
|
-
.i1mrf09m {
|
|
1670
|
-
display: inline-flex;
|
|
1671
|
-
align-items: center;
|
|
1672
|
-
}
|
|
1673
|
-
.i1mrf09m .icon-inner {
|
|
1674
|
-
display: inline-flex;
|
|
1675
|
-
align-items: center;
|
|
1676
|
-
justify-content: center;
|
|
1677
|
-
}
|
|
1678
|
-
.i1mrf09m .icon-inner + span,
|
|
1679
|
-
.i1mrf09m span + .icon-inner.suffix {
|
|
1680
|
-
margin-left: 4px;
|
|
1681
|
-
}
|
|
1682
|
-
.i1mrf09m.is-rotate img {
|
|
1683
|
-
animation: rotate 680ms linear infinite;
|
|
1684
|
-
}
|
|
1685
|
-
|
|
1686
1617
|
.buj61ew.ant-btn {
|
|
1687
1618
|
height: 32px;
|
|
1688
1619
|
border-radius: 6px;
|
|
@@ -1931,13 +1862,73 @@ input[type=submit] {
|
|
|
1931
1862
|
padding: 0;
|
|
1932
1863
|
}
|
|
1933
1864
|
|
|
1934
|
-
.
|
|
1935
|
-
|
|
1865
|
+
.f18bxw7l {
|
|
1866
|
+
font-size: 13px;
|
|
1867
|
+
line-height: 20px;
|
|
1868
|
+
color: #f0483e;
|
|
1869
|
+
margin-top: -4px;
|
|
1870
|
+
margin-bottom: 8px;
|
|
1936
1871
|
}
|
|
1937
1872
|
|
|
1938
|
-
.
|
|
1939
|
-
|
|
1940
|
-
|
|
1873
|
+
.i1mrf09m {
|
|
1874
|
+
display: inline-flex;
|
|
1875
|
+
align-items: center;
|
|
1876
|
+
}
|
|
1877
|
+
.i1mrf09m .icon-inner {
|
|
1878
|
+
display: inline-flex;
|
|
1879
|
+
align-items: center;
|
|
1880
|
+
justify-content: center;
|
|
1881
|
+
}
|
|
1882
|
+
.i1mrf09m .icon-inner + span,
|
|
1883
|
+
.i1mrf09m span + .icon-inner.suffix {
|
|
1884
|
+
margin-left: 4px;
|
|
1885
|
+
}
|
|
1886
|
+
.i1mrf09m.is-rotate img {
|
|
1887
|
+
animation: rotate 680ms linear infinite;
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
.bpq0js6 {
|
|
1891
|
+
padding: 4px 11px;
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
.b15sn34c {
|
|
1895
|
+
white-space: nowrap;
|
|
1896
|
+
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
1897
|
+
}
|
|
1898
|
+
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
1899
|
+
--color: #0080ff;
|
|
1900
|
+
}
|
|
1901
|
+
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
|
|
1902
|
+
--color: #0080ff;
|
|
1903
|
+
}
|
|
1904
|
+
.b15sn34c > .ant-btn:not(:only-child) + .ant-btn {
|
|
1905
|
+
margin-left: 1px;
|
|
1906
|
+
}
|
|
1907
|
+
.b15sn34c > .ant-btn:not(:only-child):first-child {
|
|
1908
|
+
border-top-right-radius: 0;
|
|
1909
|
+
border-bottom-right-radius: 0;
|
|
1910
|
+
}
|
|
1911
|
+
.b15sn34c > .ant-btn:not(:only-child):last-child {
|
|
1912
|
+
border-top-left-radius: 0;
|
|
1913
|
+
border-bottom-left-radius: 0;
|
|
1914
|
+
}
|
|
1915
|
+
.b15sn34c > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
1916
|
+
border-radius: unset;
|
|
1917
|
+
}
|
|
1918
|
+
|
|
1919
|
+
.fde5mpd {
|
|
1920
|
+
width: 100%;
|
|
1921
|
+
height: 100%;
|
|
1922
|
+
min-height: 124px;
|
|
1923
|
+
display: flex;
|
|
1924
|
+
flex-direction: column;
|
|
1925
|
+
justify-content: center;
|
|
1926
|
+
align-items: center;
|
|
1927
|
+
}
|
|
1928
|
+
.fde5mpd .error-text {
|
|
1929
|
+
color: rgba(10, 37, 85, 0.6);
|
|
1930
|
+
margin-bottom: 16px;
|
|
1931
|
+
font-size: 18px;
|
|
1941
1932
|
}
|
|
1942
1933
|
|
|
1943
1934
|
.k5vyv6v input, .k5vyv6v.input-tags {
|
|
@@ -2371,200 +2362,361 @@ input.r1cwjuew.ant-input {
|
|
|
2371
2362
|
border-bottom-left-radius: 0;
|
|
2372
2363
|
}
|
|
2373
2364
|
|
|
2374
|
-
.
|
|
2375
|
-
|
|
2376
|
-
justify-content: space-between;
|
|
2377
|
-
align-items: center;
|
|
2378
|
-
padding: 10px 0;
|
|
2379
|
-
color: rgba(44, 56, 82, 0.6);
|
|
2380
|
-
font-size: 12px;
|
|
2381
|
-
line-height: 24px;
|
|
2365
|
+
.t1upn1sz {
|
|
2366
|
+
height: 100%;
|
|
2382
2367
|
}
|
|
2383
|
-
|
|
2384
|
-
|
|
2368
|
+
|
|
2369
|
+
.tta5kd2 {
|
|
2370
|
+
height: 100%;
|
|
2385
2371
|
}
|
|
2386
|
-
.
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
border-radius: 6px;
|
|
2390
|
-
cursor: pointer;
|
|
2391
|
-
transition: all 0.3s ease;
|
|
2372
|
+
.tta5kd2.empty-table .ant-table-content {
|
|
2373
|
+
overflow: visible !important;
|
|
2374
|
+
height: 100%;
|
|
2392
2375
|
}
|
|
2393
|
-
.
|
|
2394
|
-
|
|
2395
|
-
color: #0080ff;
|
|
2376
|
+
.tta5kd2.empty-table .ant-table-content .ant-table-tbody .ant-table-placeholder td {
|
|
2377
|
+
height: 100%;
|
|
2396
2378
|
}
|
|
2397
|
-
.
|
|
2398
|
-
|
|
2379
|
+
.tta5kd2.empty-table .ant-table-content table {
|
|
2380
|
+
width: 100% !important;
|
|
2381
|
+
height: 100%;
|
|
2399
2382
|
}
|
|
2400
|
-
.
|
|
2401
|
-
|
|
2402
|
-
align-items: center;
|
|
2403
|
-
color: #0080ff;
|
|
2404
|
-
font-weight: bold;
|
|
2383
|
+
.tta5kd2.empty-table .ant-table-content table .ant-table-placeholder .ant-table-expanded-row-fixed {
|
|
2384
|
+
padding: 15px 0;
|
|
2405
2385
|
}
|
|
2406
|
-
.
|
|
2407
|
-
|
|
2386
|
+
.tta5kd2.empty-table .ant-table-content table thead.ant-table-thead {
|
|
2387
|
+
display: none;
|
|
2408
2388
|
}
|
|
2409
|
-
.
|
|
2410
|
-
|
|
2411
|
-
padding: 0 8px;
|
|
2389
|
+
.tta5kd2 .active-row td:nth-child(1) {
|
|
2390
|
+
font-weight: 700;
|
|
2412
2391
|
}
|
|
2413
|
-
.
|
|
2414
|
-
|
|
2415
|
-
color: #0080ff;
|
|
2392
|
+
.tta5kd2.has-selection .active-row td:nth-child(2) {
|
|
2393
|
+
font-weight: 700;
|
|
2416
2394
|
}
|
|
2417
|
-
.
|
|
2418
|
-
|
|
2395
|
+
.tta5kd2 .ant-spin-nested-loading {
|
|
2396
|
+
height: 100%;
|
|
2419
2397
|
}
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
overflow-y: auto;
|
|
2398
|
+
.tta5kd2 .ant-spin-nested-loading .ant-spin-container {
|
|
2399
|
+
height: 100%;
|
|
2400
|
+
overflow: visible;
|
|
2424
2401
|
}
|
|
2425
|
-
.
|
|
2426
|
-
|
|
2427
|
-
font-size: 12px;
|
|
2428
|
-
line-height: 18px;
|
|
2402
|
+
.tta5kd2 .ant-spin-nested-loading .ant-spin {
|
|
2403
|
+
max-height: none;
|
|
2429
2404
|
}
|
|
2430
|
-
|
|
2431
|
-
.
|
|
2432
|
-
|
|
2433
|
-
height: 24px;
|
|
2434
|
-
background: rgba(172, 186, 211, 0.6);
|
|
2435
|
-
overflow: hidden;
|
|
2405
|
+
.tta5kd2.table-init-loading .ant-spin-blur thead,
|
|
2406
|
+
.tta5kd2.table-init-loading .ant-spin-blur tbody {
|
|
2407
|
+
display: none;
|
|
2436
2408
|
}
|
|
2437
|
-
.
|
|
2438
|
-
|
|
2409
|
+
.tta5kd2 td.ant-table-column-sort {
|
|
2410
|
+
background: transparent;
|
|
2439
2411
|
}
|
|
2440
|
-
.
|
|
2441
|
-
|
|
2442
|
-
|
|
2412
|
+
.tta5kd2 td.ant-table-cell-fix-left,
|
|
2413
|
+
.tta5kd2 td.ant-table-cell-fix-right {
|
|
2414
|
+
background: #fff;
|
|
2415
|
+
padding: 0 !important;
|
|
2443
2416
|
}
|
|
2444
|
-
.
|
|
2445
|
-
|
|
2446
|
-
|
|
2417
|
+
.tta5kd2 td.ant-table-cell-fix-left .ant-table-cell-content,
|
|
2418
|
+
.tta5kd2 td.ant-table-cell-fix-right .ant-table-cell-content {
|
|
2419
|
+
display: flex;
|
|
2420
|
+
align-items: center;
|
|
2421
|
+
height: 100%;
|
|
2422
|
+
padding: 8px;
|
|
2447
2423
|
}
|
|
2448
|
-
.
|
|
2449
|
-
|
|
2450
|
-
|
|
2424
|
+
.tta5kd2 td.ant-table-cell-fix-left .ant-table-cell-content > span,
|
|
2425
|
+
.tta5kd2 td.ant-table-cell-fix-right .ant-table-cell-content > span {
|
|
2426
|
+
overflow: hidden;
|
|
2427
|
+
text-overflow: ellipsis;
|
|
2428
|
+
width: 100%;
|
|
2451
2429
|
}
|
|
2452
|
-
.
|
|
2453
|
-
|
|
2454
|
-
transition-delay: 120ms;
|
|
2430
|
+
.tta5kd2 .ant-table-container {
|
|
2431
|
+
height: 100%;
|
|
2455
2432
|
}
|
|
2456
|
-
.
|
|
2457
|
-
|
|
2458
|
-
width: 14px;
|
|
2459
|
-
top: 1px;
|
|
2460
|
-
left: 1px;
|
|
2433
|
+
.tta5kd2 .ant-table-container::before, .tta5kd2 .ant-table-container::after {
|
|
2434
|
+
box-shadow: none !important;
|
|
2461
2435
|
}
|
|
2462
|
-
.
|
|
2463
|
-
|
|
2464
|
-
|
|
2436
|
+
.tta5kd2 .ant-table {
|
|
2437
|
+
border-radius: 0px;
|
|
2438
|
+
border-left: none;
|
|
2439
|
+
border-right: none;
|
|
2440
|
+
border-bottom: none;
|
|
2441
|
+
height: 100%;
|
|
2442
|
+
font-size: 12px;
|
|
2443
|
+
background: transparent;
|
|
2465
2444
|
}
|
|
2466
|
-
.
|
|
2467
|
-
|
|
2445
|
+
.tta5kd2 .ant-table .ant-table-header {
|
|
2446
|
+
position: relative;
|
|
2447
|
+
z-index: 3;
|
|
2448
|
+
border-bottom: 1px solid rgba(211, 218, 235, 0.6);
|
|
2449
|
+
margin-bottom: -1px;
|
|
2468
2450
|
}
|
|
2469
|
-
.
|
|
2470
|
-
|
|
2451
|
+
.tta5kd2 .ant-table .time-wrapper .data,
|
|
2452
|
+
.tta5kd2 .ant-table .value {
|
|
2453
|
+
color: #2d3a56;
|
|
2471
2454
|
}
|
|
2472
|
-
.
|
|
2473
|
-
|
|
2455
|
+
.tta5kd2 .ant-table .time-wrapper .time,
|
|
2456
|
+
.tta5kd2 .ant-table .unit {
|
|
2457
|
+
color: rgba(44, 56, 82, 0.6);
|
|
2474
2458
|
}
|
|
2475
|
-
.
|
|
2476
|
-
|
|
2459
|
+
.tta5kd2 .ant-table .ant-table-selection {
|
|
2460
|
+
text-align: center;
|
|
2477
2461
|
}
|
|
2478
|
-
.
|
|
2479
|
-
|
|
2462
|
+
.tta5kd2 .ant-table .ant-table-tbody > tr.ant-table-row-selected td {
|
|
2463
|
+
background: #fff;
|
|
2480
2464
|
}
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2465
|
+
.tta5kd2 .ant-table .anticon-setting {
|
|
2466
|
+
cursor: pointer;
|
|
2467
|
+
position: absolute;
|
|
2468
|
+
top: 50%;
|
|
2469
|
+
right: 12px;
|
|
2470
|
+
transform: translateY(-50%);
|
|
2484
2471
|
}
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2472
|
+
.tta5kd2 .ant-table.ant-table-ping-left .ant-table-cell-fix-left-last::after {
|
|
2473
|
+
box-shadow: none;
|
|
2474
|
+
width: 1px;
|
|
2475
|
+
background: rgba(213, 219, 227, 0.6);
|
|
2489
2476
|
}
|
|
2490
|
-
.
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
overflow: visible;
|
|
2477
|
+
.tta5kd2 .ant-table.ant-table-ping-right .ant-table-cell-fix-right-first::after {
|
|
2478
|
+
box-shadow: none;
|
|
2479
|
+
width: 1px;
|
|
2480
|
+
background: rgba(213, 219, 227, 0.6);
|
|
2495
2481
|
}
|
|
2496
|
-
.
|
|
2497
|
-
|
|
2482
|
+
.tta5kd2 .ant-table .ant-table-tbody {
|
|
2483
|
+
position: relative;
|
|
2498
2484
|
}
|
|
2499
|
-
.
|
|
2500
|
-
|
|
2501
|
-
|
|
2485
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td {
|
|
2486
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
2487
|
+
border-bottom: 1px solid white;
|
|
2488
|
+
height: 40px;
|
|
2489
|
+
vertical-align: middle;
|
|
2490
|
+
transition: background 0ms;
|
|
2491
|
+
color: #00122e;
|
|
2502
2492
|
}
|
|
2503
|
-
.
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2493
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td.header-hover {
|
|
2494
|
+
background: #f2f5fa;
|
|
2495
|
+
border-bottom-color: #f2f5fa;
|
|
2496
|
+
}
|
|
2497
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link {
|
|
2498
|
+
height: auto;
|
|
2499
|
+
color: #00122e;
|
|
2509
2500
|
font-size: 12px;
|
|
2510
|
-
|
|
2501
|
+
text-align: left;
|
|
2502
|
+
transition: none;
|
|
2503
|
+
overflow: hidden;
|
|
2504
|
+
text-overflow: ellipsis;
|
|
2505
|
+
white-space: nowrap;
|
|
2511
2506
|
}
|
|
2512
|
-
.
|
|
2513
|
-
|
|
2507
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link:hover {
|
|
2508
|
+
color: #0096ff;
|
|
2514
2509
|
}
|
|
2515
|
-
.
|
|
2516
|
-
|
|
2510
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link > span {
|
|
2511
|
+
overflow: hidden;
|
|
2512
|
+
text-overflow: ellipsis;
|
|
2513
|
+
width: 100%;
|
|
2514
|
+
vertical-align: middle;
|
|
2517
2515
|
}
|
|
2518
|
-
.
|
|
2519
|
-
|
|
2516
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td.cell_status {
|
|
2517
|
+
line-height: 0px;
|
|
2520
2518
|
}
|
|
2521
|
-
.
|
|
2522
|
-
|
|
2519
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover + tr td {
|
|
2520
|
+
border-top-color: transparent;
|
|
2523
2521
|
}
|
|
2524
|
-
.
|
|
2525
|
-
|
|
2522
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td {
|
|
2523
|
+
background: rgba(225, 230, 241, 0.6);
|
|
2524
|
+
border-color: transparent transparent white;
|
|
2526
2525
|
}
|
|
2527
|
-
.
|
|
2526
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child {
|
|
2527
|
+
border-radius: 8px 0 0 8px;
|
|
2528
|
+
}
|
|
2529
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child .ant-table-cell-content {
|
|
2530
|
+
border-radius: 8px 0 0 8px;
|
|
2531
|
+
}
|
|
2532
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child::before {
|
|
2528
2533
|
content: "";
|
|
2529
|
-
width:
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
top: 0;
|
|
2534
|
-
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
2535
|
-
right: -21px;
|
|
2536
|
-
z-index: 2;
|
|
2534
|
+
width: 4px;
|
|
2535
|
+
top: -1px;
|
|
2536
|
+
bottom: -1px;
|
|
2537
|
+
background: white;
|
|
2537
2538
|
}
|
|
2538
|
-
.
|
|
2539
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child {
|
|
2540
|
+
border-radius: 0 8px 8px 0;
|
|
2541
|
+
}
|
|
2542
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ {
|
|
2543
|
+
border-radius: 0;
|
|
2544
|
+
background: white;
|
|
2545
|
+
border-top: none;
|
|
2546
|
+
}
|
|
2547
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ > * {
|
|
2548
|
+
border-top: 1px solid transparent;
|
|
2549
|
+
border-radius: 0 8px 8px 0;
|
|
2550
|
+
background: rgba(225, 230, 241, 0.6);
|
|
2551
|
+
}
|
|
2552
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right {
|
|
2553
|
+
background: white;
|
|
2554
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
2555
|
+
}
|
|
2556
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right .ant-table-cell-content {
|
|
2557
|
+
display: flex;
|
|
2558
|
+
align-items: center;
|
|
2559
|
+
height: 100%;
|
|
2560
|
+
background: rgba(225, 230, 241, 0.6);
|
|
2561
|
+
}
|
|
2562
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left {
|
|
2563
|
+
background: white;
|
|
2564
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
2565
|
+
}
|
|
2566
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left .ant-table-cell-content {
|
|
2567
|
+
display: flex;
|
|
2568
|
+
align-items: center;
|
|
2569
|
+
height: 100%;
|
|
2570
|
+
background: rgba(225, 230, 241, 0.6);
|
|
2571
|
+
}
|
|
2572
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row:last-child td {
|
|
2573
|
+
border-bottom: 1px solid rgba(211, 218, 235, 0.6);
|
|
2574
|
+
}
|
|
2575
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row {
|
|
2576
|
+
box-shadow: inset 0px 0px 0 2px rgba(0, 136, 255, 0.1);
|
|
2577
|
+
border-radius: 8px;
|
|
2578
|
+
}
|
|
2579
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row + tr td {
|
|
2580
|
+
border-top-color: white;
|
|
2581
|
+
}
|
|
2582
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td {
|
|
2583
|
+
background: rgba(0, 136, 255, 0.1);
|
|
2584
|
+
border-bottom-color: transparent;
|
|
2585
|
+
border-top-color: transparent;
|
|
2586
|
+
}
|
|
2587
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td:first-child {
|
|
2588
|
+
border-radius: 8px 0 0 8px;
|
|
2589
|
+
}
|
|
2590
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td:last-child {
|
|
2591
|
+
border-radius: 0 8px 8px 0;
|
|
2592
|
+
}
|
|
2593
|
+
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td:hover {
|
|
2594
|
+
background: rgba(0, 136, 255, 0.1);
|
|
2595
|
+
}
|
|
2596
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th {
|
|
2597
|
+
background: #fff;
|
|
2598
|
+
font-weight: 400;
|
|
2599
|
+
position: relative;
|
|
2600
|
+
border-bottom: none;
|
|
2601
|
+
color: #00122e;
|
|
2602
|
+
transition: none;
|
|
2603
|
+
padding: 15px 8px 15px 8px;
|
|
2604
|
+
}
|
|
2605
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th:not(:last-child):after {
|
|
2539
2606
|
content: "";
|
|
2540
|
-
width:
|
|
2541
|
-
height: 0;
|
|
2542
|
-
border: 13px solid transparent;
|
|
2543
|
-
position: absolute;
|
|
2607
|
+
width: 1px;
|
|
2544
2608
|
top: 0;
|
|
2545
|
-
|
|
2546
|
-
|
|
2609
|
+
bottom: 0;
|
|
2610
|
+
background: rgba(211, 218, 235, 0.6);
|
|
2611
|
+
position: absolute;
|
|
2612
|
+
right: 0;
|
|
2547
2613
|
}
|
|
2548
|
-
.
|
|
2549
|
-
|
|
2614
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.is-blank {
|
|
2615
|
+
padding: unset;
|
|
2550
2616
|
}
|
|
2551
|
-
.
|
|
2552
|
-
|
|
2617
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.is-blank:after {
|
|
2618
|
+
display: none;
|
|
2553
2619
|
}
|
|
2554
|
-
.
|
|
2555
|
-
|
|
2620
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-cell-ellipsis.ant-table-column-has-sorters .ant-table-column-sorters {
|
|
2621
|
+
width: 100%;
|
|
2622
|
+
overflow: hidden;
|
|
2623
|
+
white-space: nowrap;
|
|
2624
|
+
text-overflow: ellipsis;
|
|
2556
2625
|
}
|
|
2557
|
-
.
|
|
2558
|
-
|
|
2559
|
-
|
|
2626
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-cell-ellipsis.ant-table-column-has-sorters .ant-table-column-sorters > span {
|
|
2627
|
+
overflow: hidden;
|
|
2628
|
+
text-overflow: ellipsis;
|
|
2560
2629
|
}
|
|
2561
|
-
.
|
|
2562
|
-
|
|
2563
|
-
color: rgba(44, 56, 82, 0.6);
|
|
2630
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters {
|
|
2631
|
+
padding: 15px 28px 15px 8px;
|
|
2564
2632
|
}
|
|
2565
|
-
.
|
|
2633
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters {
|
|
2566
2634
|
padding: 0;
|
|
2567
2635
|
}
|
|
2636
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon {
|
|
2637
|
+
position: absolute;
|
|
2638
|
+
right: 10px;
|
|
2639
|
+
top: 50%;
|
|
2640
|
+
transform: translateY(-50%);
|
|
2641
|
+
height: 16px;
|
|
2642
|
+
display: none;
|
|
2643
|
+
transition: transform 320ms ease;
|
|
2644
|
+
}
|
|
2645
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon.descend {
|
|
2646
|
+
display: block;
|
|
2647
|
+
transform: translateY(-50%) rotateX(180deg);
|
|
2648
|
+
}
|
|
2649
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon.ascend {
|
|
2650
|
+
display: block;
|
|
2651
|
+
}
|
|
2652
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorter {
|
|
2653
|
+
display: none;
|
|
2654
|
+
}
|
|
2655
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.descend {
|
|
2656
|
+
transform: translateY(-50%);
|
|
2657
|
+
}
|
|
2658
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.ascend {
|
|
2659
|
+
transform: translateY(-50%) rotateX(180deg);
|
|
2660
|
+
}
|
|
2661
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) {
|
|
2662
|
+
background: #f2f5fa;
|
|
2663
|
+
}
|
|
2664
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) .ant-table-column-sorters .order-icon {
|
|
2665
|
+
display: block;
|
|
2666
|
+
}
|
|
2667
|
+
.tta5kd2 .ant-table .ant-table-selection-column {
|
|
2668
|
+
padding: 0 !important;
|
|
2669
|
+
}
|
|
2670
|
+
.tta5kd2 .ant-table .ant-table-selection-column .ant-checkbox-wrapper {
|
|
2671
|
+
position: absolute;
|
|
2672
|
+
left: 50%;
|
|
2673
|
+
top: 50%;
|
|
2674
|
+
transform: translate(-50%, -50%);
|
|
2675
|
+
}
|
|
2676
|
+
.tta5kd2 .ant-table .ant-table-selection-column:after {
|
|
2677
|
+
display: none;
|
|
2678
|
+
}
|
|
2679
|
+
.tta5kd2 .ant-table .ant-table-hide-scrollbar {
|
|
2680
|
+
background: #fff;
|
|
2681
|
+
}
|
|
2682
|
+
.tta5kd2 .ant-table .ant-table-placeholder {
|
|
2683
|
+
background: inherit;
|
|
2684
|
+
}
|
|
2685
|
+
.tta5kd2 .ant-table .ant-table-placeholder td {
|
|
2686
|
+
position: static;
|
|
2687
|
+
border: none;
|
|
2688
|
+
background: inherit !important;
|
|
2689
|
+
height: 100px;
|
|
2690
|
+
vertical-align: middle;
|
|
2691
|
+
}
|
|
2692
|
+
.tta5kd2 .ant-table .ant-table-placeholder .table-default-empty,
|
|
2693
|
+
.tta5kd2 .ant-table .ant-table-placeholder .ant-table-expanded-row-fixed {
|
|
2694
|
+
font-weight: bold;
|
|
2695
|
+
font-size: 20px;
|
|
2696
|
+
color: rgba(10, 37, 85, 0.6);
|
|
2697
|
+
}
|
|
2698
|
+
.tta5kd2 .ant-table td.cell__action_ {
|
|
2699
|
+
padding: 0 !important;
|
|
2700
|
+
position: relative;
|
|
2701
|
+
background: #fff;
|
|
2702
|
+
}
|
|
2703
|
+
.tta5kd2 .ant-table td.cell__action_ > * {
|
|
2704
|
+
height: 100%;
|
|
2705
|
+
display: flex;
|
|
2706
|
+
align-items: center;
|
|
2707
|
+
justify-content: flex-end;
|
|
2708
|
+
padding-right: 8px;
|
|
2709
|
+
}
|
|
2710
|
+
.tta5kd2 .ant-table td.cell__action_ .menu-button {
|
|
2711
|
+
width: 24px;
|
|
2712
|
+
height: 24px;
|
|
2713
|
+
cursor: pointer;
|
|
2714
|
+
justify-content: center;
|
|
2715
|
+
border-radius: 4px;
|
|
2716
|
+
}
|
|
2717
|
+
.tta5kd2 .ant-table td.cell__action_ .menu-button:hover {
|
|
2718
|
+
background: #fff;
|
|
2719
|
+
}
|
|
2568
2720
|
|
|
2569
2721
|
.cz04yix {
|
|
2570
2722
|
display: flex;
|
|
@@ -3025,10 +3177,6 @@ input.r1cwjuew.ant-input {
|
|
|
3025
3177
|
color: rgba(0, 21, 64, 0.3);
|
|
3026
3178
|
}
|
|
3027
3179
|
|
|
3028
|
-
.i1e4sgug {
|
|
3029
|
-
display: inline-block;
|
|
3030
|
-
}
|
|
3031
|
-
|
|
3032
3180
|
.rxbeqvl.ant-radio-wrapper {
|
|
3033
3181
|
display: inline-flex;
|
|
3034
3182
|
align-items: baseline;
|
|
@@ -3171,6 +3319,127 @@ input.r1cwjuew.ant-input {
|
|
|
3171
3319
|
width: 36px;
|
|
3172
3320
|
}
|
|
3173
3321
|
|
|
3322
|
+
.s34f1qb.ant-switch {
|
|
3323
|
+
min-width: 40px;
|
|
3324
|
+
height: 24px;
|
|
3325
|
+
background: rgba(172, 186, 211, 0.6);
|
|
3326
|
+
overflow: hidden;
|
|
3327
|
+
}
|
|
3328
|
+
.s34f1qb.ant-switch:focus {
|
|
3329
|
+
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
3330
|
+
}
|
|
3331
|
+
.s34f1qb.ant-switch-small {
|
|
3332
|
+
min-width: 26px;
|
|
3333
|
+
height: 16px;
|
|
3334
|
+
}
|
|
3335
|
+
.s34f1qb.ant-switch-large {
|
|
3336
|
+
min-width: 52px;
|
|
3337
|
+
height: 32px;
|
|
3338
|
+
}
|
|
3339
|
+
.s34f1qb.ant-switch .ant-switch-handle {
|
|
3340
|
+
height: 20px;
|
|
3341
|
+
width: 20px;
|
|
3342
|
+
}
|
|
3343
|
+
.s34f1qb.ant-switch .ant-switch-handle::before {
|
|
3344
|
+
border-radius: 10px;
|
|
3345
|
+
transition-delay: 120ms;
|
|
3346
|
+
}
|
|
3347
|
+
.s34f1qb.ant-switch-small .ant-switch-handle {
|
|
3348
|
+
height: 14px;
|
|
3349
|
+
width: 14px;
|
|
3350
|
+
top: 1px;
|
|
3351
|
+
left: 1px;
|
|
3352
|
+
}
|
|
3353
|
+
.s34f1qb.ant-switch-large .ant-switch-handle {
|
|
3354
|
+
height: 28px;
|
|
3355
|
+
width: 28px;
|
|
3356
|
+
}
|
|
3357
|
+
.s34f1qb.ant-switch-large .ant-switch-handle::before {
|
|
3358
|
+
border-radius: 14px;
|
|
3359
|
+
}
|
|
3360
|
+
.s34f1qb.ant-switch-checked {
|
|
3361
|
+
background-color: #00ba5d;
|
|
3362
|
+
}
|
|
3363
|
+
.s34f1qb.ant-switch-checked .ant-switch-handle {
|
|
3364
|
+
left: calc(100% - 20px - 2px);
|
|
3365
|
+
}
|
|
3366
|
+
.s34f1qb.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
3367
|
+
left: calc(100% - 14px - 1px);
|
|
3368
|
+
}
|
|
3369
|
+
.s34f1qb.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
3370
|
+
left: calc(100% - 28px - 2px);
|
|
3371
|
+
}
|
|
3372
|
+
|
|
3373
|
+
.c1to9vb9 {
|
|
3374
|
+
margin-left: 5px;
|
|
3375
|
+
}
|
|
3376
|
+
|
|
3377
|
+
.obf05yr {
|
|
3378
|
+
display: inline-block;
|
|
3379
|
+
}
|
|
3380
|
+
|
|
3381
|
+
.hsms1n6 {
|
|
3382
|
+
visibility: hidden;
|
|
3383
|
+
position: absolute;
|
|
3384
|
+
}
|
|
3385
|
+
|
|
3386
|
+
.p12gwtiw {
|
|
3387
|
+
display: flex;
|
|
3388
|
+
justify-content: space-between;
|
|
3389
|
+
align-items: center;
|
|
3390
|
+
padding: 10px 0;
|
|
3391
|
+
color: rgba(44, 56, 82, 0.6);
|
|
3392
|
+
font-size: 12px;
|
|
3393
|
+
line-height: 24px;
|
|
3394
|
+
}
|
|
3395
|
+
.p12gwtiw .pagination-left {
|
|
3396
|
+
padding: 2px 8px;
|
|
3397
|
+
}
|
|
3398
|
+
.p12gwtiw .dropdown-trigger {
|
|
3399
|
+
display: flex;
|
|
3400
|
+
align-items: center;
|
|
3401
|
+
border-radius: 6px;
|
|
3402
|
+
cursor: pointer;
|
|
3403
|
+
transition: all 0.3s ease;
|
|
3404
|
+
}
|
|
3405
|
+
.p12gwtiw .dropdown-trigger:hover {
|
|
3406
|
+
background: rgba(211, 218, 235, 0.6);
|
|
3407
|
+
color: #0080ff;
|
|
3408
|
+
}
|
|
3409
|
+
.p12gwtiw .dropdown-trigger .icon-inner {
|
|
3410
|
+
margin-left: 4px;
|
|
3411
|
+
}
|
|
3412
|
+
.p12gwtiw .pagination-right {
|
|
3413
|
+
display: flex;
|
|
3414
|
+
align-items: center;
|
|
3415
|
+
color: #0080ff;
|
|
3416
|
+
font-weight: bold;
|
|
3417
|
+
}
|
|
3418
|
+
.p12gwtiw .pagination-right .icon-inner {
|
|
3419
|
+
margin-left: 4px;
|
|
3420
|
+
}
|
|
3421
|
+
.p12gwtiw .pagination-right .prev-btn,
|
|
3422
|
+
.p12gwtiw .pagination-right .next-btn {
|
|
3423
|
+
padding: 0 8px;
|
|
3424
|
+
}
|
|
3425
|
+
.p12gwtiw .pagination-right .prev-btn > span,
|
|
3426
|
+
.p12gwtiw .pagination-right .next-btn > span {
|
|
3427
|
+
color: #0080ff;
|
|
3428
|
+
}
|
|
3429
|
+
.p12gwtiw .pagination-right .next-btn .icon-inner {
|
|
3430
|
+
transform: rotate(180deg);
|
|
3431
|
+
}
|
|
3432
|
+
|
|
3433
|
+
.d1bnu0in.ant-dropdown .ant-dropdown-menu {
|
|
3434
|
+
max-height: calc(100vh - 128px);
|
|
3435
|
+
overflow-y: auto;
|
|
3436
|
+
}
|
|
3437
|
+
.d1bnu0in.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
|
|
3438
|
+
padding: 4px 20px;
|
|
3439
|
+
font-size: 12px;
|
|
3440
|
+
line-height: 18px;
|
|
3441
|
+
}
|
|
3442
|
+
|
|
3174
3443
|
.d6j0lbj {
|
|
3175
3444
|
font-family: Inter;
|
|
3176
3445
|
font-style: normal;
|
|
@@ -3646,360 +3915,339 @@ input.r1cwjuew.ant-input {
|
|
|
3646
3915
|
line-height: 12px;
|
|
3647
3916
|
}
|
|
3648
3917
|
|
|
3649
|
-
.
|
|
3650
|
-
|
|
3918
|
+
.i1e4sgug {
|
|
3919
|
+
display: inline-block;
|
|
3651
3920
|
}
|
|
3652
3921
|
|
|
3653
|
-
.
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
.tta5kd2.empty-table .ant-table-content {
|
|
3657
|
-
overflow: visible !important;
|
|
3658
|
-
height: 100%;
|
|
3659
|
-
}
|
|
3660
|
-
.tta5kd2.empty-table .ant-table-content .ant-table-tbody .ant-table-placeholder td {
|
|
3661
|
-
height: 100%;
|
|
3662
|
-
}
|
|
3663
|
-
.tta5kd2.empty-table .ant-table-content table {
|
|
3664
|
-
width: 100% !important;
|
|
3665
|
-
height: 100%;
|
|
3922
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal {
|
|
3923
|
+
flex-direction: row;
|
|
3924
|
+
justify-content: stretch;
|
|
3666
3925
|
}
|
|
3667
|
-
.
|
|
3668
|
-
padding:
|
|
3926
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
|
|
3927
|
+
padding: 0;
|
|
3928
|
+
margin-right: 4px;
|
|
3929
|
+
flex: 1;
|
|
3930
|
+
overflow: visible;
|
|
3669
3931
|
}
|
|
3670
|
-
.
|
|
3932
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-tail, .s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-icon {
|
|
3671
3933
|
display: none;
|
|
3672
3934
|
}
|
|
3673
|
-
.
|
|
3674
|
-
|
|
3675
|
-
|
|
3676
|
-
.tta5kd2.has-selection .active-row td:nth-child(2) {
|
|
3677
|
-
font-weight: 700;
|
|
3678
|
-
}
|
|
3679
|
-
.tta5kd2 .ant-spin-nested-loading {
|
|
3680
|
-
height: 100%;
|
|
3935
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
|
|
3936
|
+
width: 100%;
|
|
3937
|
+
min-height: unset;
|
|
3681
3938
|
}
|
|
3682
|
-
.
|
|
3683
|
-
height:
|
|
3684
|
-
|
|
3939
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
|
|
3940
|
+
height: 26px;
|
|
3941
|
+
line-height: 26px;
|
|
3942
|
+
width: 100%;
|
|
3943
|
+
text-align: center;
|
|
3944
|
+
padding: 0;
|
|
3945
|
+
font-size: 12px;
|
|
3946
|
+
font-weight: normal;
|
|
3685
3947
|
}
|
|
3686
|
-
.
|
|
3687
|
-
|
|
3948
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
|
|
3949
|
+
margin-right: 10px;
|
|
3688
3950
|
}
|
|
3689
|
-
.
|
|
3690
|
-
.tta5kd2.table-init-loading .ant-spin-blur tbody {
|
|
3951
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
|
|
3691
3952
|
display: none;
|
|
3692
3953
|
}
|
|
3693
|
-
.
|
|
3694
|
-
|
|
3954
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
|
|
3955
|
+
border-radius: 4px 0 0 4px;
|
|
3695
3956
|
}
|
|
3696
|
-
.
|
|
3697
|
-
|
|
3698
|
-
background: #fff;
|
|
3699
|
-
padding: 0 !important;
|
|
3957
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
|
|
3958
|
+
margin-right: 0;
|
|
3700
3959
|
}
|
|
3701
|
-
.
|
|
3702
|
-
|
|
3703
|
-
display: flex;
|
|
3704
|
-
align-items: center;
|
|
3705
|
-
height: 100%;
|
|
3706
|
-
padding: 8px;
|
|
3960
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
|
|
3961
|
+
border-radius: 0 4px 4px 0;
|
|
3707
3962
|
}
|
|
3708
|
-
.
|
|
3709
|
-
|
|
3710
|
-
|
|
3711
|
-
|
|
3712
|
-
|
|
3963
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child)::after {
|
|
3964
|
+
content: "";
|
|
3965
|
+
width: 0;
|
|
3966
|
+
height: 0;
|
|
3967
|
+
border: 13px solid transparent;
|
|
3968
|
+
position: absolute;
|
|
3969
|
+
top: 0;
|
|
3970
|
+
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
3971
|
+
right: -21px;
|
|
3972
|
+
z-index: 2;
|
|
3713
3973
|
}
|
|
3714
|
-
.
|
|
3715
|
-
|
|
3974
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child)::before {
|
|
3975
|
+
content: "";
|
|
3976
|
+
width: 0;
|
|
3977
|
+
height: 0;
|
|
3978
|
+
border: 13px solid transparent;
|
|
3979
|
+
position: absolute;
|
|
3980
|
+
top: 0;
|
|
3981
|
+
border-left: 8px solid #fff;
|
|
3982
|
+
left: 0;
|
|
3716
3983
|
}
|
|
3717
|
-
.
|
|
3718
|
-
|
|
3984
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
|
|
3985
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
3719
3986
|
}
|
|
3720
|
-
.
|
|
3721
|
-
border-
|
|
3722
|
-
border-left: none;
|
|
3723
|
-
border-right: none;
|
|
3724
|
-
border-bottom: none;
|
|
3725
|
-
height: 100%;
|
|
3726
|
-
font-size: 12px;
|
|
3727
|
-
background: transparent;
|
|
3987
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
|
|
3988
|
+
border-left-color: rgba(0, 136, 255, 0.1) !important;
|
|
3728
3989
|
}
|
|
3729
|
-
.
|
|
3730
|
-
|
|
3731
|
-
z-index: 3;
|
|
3732
|
-
border-bottom: 1px solid rgba(211, 218, 235, 0.6);
|
|
3733
|
-
margin-bottom: -1px;
|
|
3990
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-title {
|
|
3991
|
+
color: #005ed1;
|
|
3734
3992
|
}
|
|
3735
|
-
.
|
|
3736
|
-
.
|
|
3737
|
-
color:
|
|
3993
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
|
|
3994
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
|
|
3995
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
3738
3996
|
}
|
|
3739
|
-
.
|
|
3740
|
-
.
|
|
3997
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-title,
|
|
3998
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-title {
|
|
3741
3999
|
color: rgba(44, 56, 82, 0.6);
|
|
3742
4000
|
}
|
|
3743
|
-
.
|
|
3744
|
-
|
|
3745
|
-
}
|
|
3746
|
-
.tta5kd2 .ant-table .ant-table-tbody > tr.ant-table-row-selected td {
|
|
3747
|
-
background: #fff;
|
|
3748
|
-
}
|
|
3749
|
-
.tta5kd2 .ant-table .anticon-setting {
|
|
3750
|
-
cursor: pointer;
|
|
3751
|
-
position: absolute;
|
|
3752
|
-
top: 50%;
|
|
3753
|
-
right: 12px;
|
|
3754
|
-
transform: translateY(-50%);
|
|
3755
|
-
}
|
|
3756
|
-
.tta5kd2 .ant-table.ant-table-ping-left .ant-table-cell-fix-left-last::after {
|
|
3757
|
-
box-shadow: none;
|
|
3758
|
-
width: 1px;
|
|
3759
|
-
background: rgba(213, 219, 227, 0.6);
|
|
4001
|
+
.s3mgie3 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
|
|
4002
|
+
padding: 0;
|
|
3760
4003
|
}
|
|
3761
|
-
|
|
3762
|
-
|
|
3763
|
-
|
|
3764
|
-
|
|
4004
|
+
|
|
4005
|
+
.igz4le8 {
|
|
4006
|
+
height: 24px;
|
|
4007
|
+
width: 56px !important;
|
|
4008
|
+
margin-right: 4px;
|
|
3765
4009
|
}
|
|
3766
|
-
|
|
3767
|
-
|
|
4010
|
+
|
|
4011
|
+
.c1riexje {
|
|
4012
|
+
color: rgba(44, 56, 82, 0.6);
|
|
3768
4013
|
}
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
|
|
3772
|
-
height: 40px;
|
|
3773
|
-
vertical-align: middle;
|
|
3774
|
-
transition: background 0ms;
|
|
3775
|
-
color: #00122e;
|
|
4014
|
+
|
|
4015
|
+
.at4ovwe .ant-input-number-handler-wrap {
|
|
4016
|
+
display: var(--at4ovwe-0);
|
|
3776
4017
|
}
|
|
3777
|
-
.
|
|
3778
|
-
|
|
3779
|
-
|
|
4018
|
+
.at4ovwe .ant-input-number-input-wrap {
|
|
4019
|
+
padding: 5px 12px;
|
|
4020
|
+
display: inline-flex;
|
|
4021
|
+
line-height: 1.5715;
|
|
4022
|
+
height: 100%;
|
|
4023
|
+
width: 100%;
|
|
3780
4024
|
}
|
|
3781
|
-
.
|
|
3782
|
-
|
|
3783
|
-
|
|
3784
|
-
|
|
3785
|
-
|
|
3786
|
-
|
|
3787
|
-
|
|
3788
|
-
text-overflow: ellipsis;
|
|
3789
|
-
white-space: nowrap;
|
|
4025
|
+
.at4ovwe .ant-input-number-input-wrap::after {
|
|
4026
|
+
content: var(--at4ovwe-1);
|
|
4027
|
+
display: var(--at4ovwe-2);
|
|
4028
|
+
flex: none;
|
|
4029
|
+
align-items: center;
|
|
4030
|
+
margin-left: 4px;
|
|
4031
|
+
color: rgba(44, 56, 82, 0.6);
|
|
3790
4032
|
}
|
|
3791
|
-
.
|
|
3792
|
-
|
|
4033
|
+
.at4ovwe .ant-input-number-input-wrap::before {
|
|
4034
|
+
content: var(--at4ovwe-3);
|
|
4035
|
+
display: var(--at4ovwe-4);
|
|
4036
|
+
flex: none;
|
|
4037
|
+
align-items: center;
|
|
4038
|
+
margin-right: 4px;
|
|
4039
|
+
cursor: auto;
|
|
4040
|
+
color: rgba(44, 56, 82, 0.6);
|
|
3793
4041
|
}
|
|
3794
|
-
.
|
|
3795
|
-
overflow: hidden;
|
|
3796
|
-
text-overflow: ellipsis;
|
|
4042
|
+
.at4ovwe.ant-input-number {
|
|
3797
4043
|
width: 100%;
|
|
3798
|
-
|
|
3799
|
-
}
|
|
3800
|
-
.tta5kd2 .ant-table .ant-table-tbody .ant-table-row td.cell_status {
|
|
3801
|
-
line-height: 0px;
|
|
4044
|
+
border-radius: 6px;
|
|
3802
4045
|
}
|
|
3803
|
-
.
|
|
3804
|
-
border-
|
|
4046
|
+
.at4ovwe.ant-input-number:not([disabled]):focus, .at4ovwe.ant-input-number:not([disabled]):active, .at4ovwe.ant-input-number:not([disabled]).ant-input-number-focused {
|
|
4047
|
+
border-color: #0096ff;
|
|
4048
|
+
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
3805
4049
|
}
|
|
3806
|
-
.
|
|
3807
|
-
|
|
3808
|
-
|
|
4050
|
+
.at4ovwe.ant-input-number.error:not([disabled]):hover, .at4ovwe.ant-input-number.error:not([disabled]).ant-input-number-focused {
|
|
4051
|
+
border-color: #e75a3a;
|
|
4052
|
+
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
3809
4053
|
}
|
|
3810
|
-
.
|
|
3811
|
-
|
|
4054
|
+
.at4ovwe .ant-input-number-input {
|
|
4055
|
+
padding: 0;
|
|
4056
|
+
margin: 0;
|
|
4057
|
+
height: auto;
|
|
4058
|
+
font-size: inherit;
|
|
3812
4059
|
}
|
|
3813
|
-
|
|
3814
|
-
|
|
4060
|
+
|
|
4061
|
+
.t1xo8w88 {
|
|
4062
|
+
height: 100%;
|
|
3815
4063
|
}
|
|
3816
|
-
.
|
|
3817
|
-
|
|
3818
|
-
|
|
3819
|
-
|
|
3820
|
-
bottom: -1px;
|
|
3821
|
-
background: white;
|
|
4064
|
+
.t1xo8w88 .table-loading-item {
|
|
4065
|
+
padding: 12px 4px;
|
|
4066
|
+
border-bottom: 1px solid rgba(204, 212, 227, 0.18);
|
|
4067
|
+
display: flex;
|
|
3822
4068
|
}
|
|
3823
|
-
.
|
|
3824
|
-
|
|
4069
|
+
.t1xo8w88 .table-loading-item > * {
|
|
4070
|
+
height: 16px;
|
|
4071
|
+
margin: 4px;
|
|
4072
|
+
background: rgba(204, 212, 227, 0.18);
|
|
4073
|
+
border-radius: 2px;
|
|
3825
4074
|
}
|
|
3826
|
-
.
|
|
3827
|
-
|
|
3828
|
-
background: white;
|
|
3829
|
-
border-top: none;
|
|
4075
|
+
.t1xo8w88 .table-loading-item .checkbox-loading {
|
|
4076
|
+
width: 16px;
|
|
3830
4077
|
}
|
|
3831
|
-
.
|
|
3832
|
-
|
|
3833
|
-
border-radius: 0 8px 8px 0;
|
|
3834
|
-
background: rgba(225, 230, 241, 0.6);
|
|
4078
|
+
.t1xo8w88 .table-loading-item .td-loading {
|
|
4079
|
+
flex: 1;
|
|
3835
4080
|
}
|
|
3836
|
-
.
|
|
3837
|
-
|
|
3838
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
4081
|
+
.t1xo8w88 :nth-child(1) {
|
|
4082
|
+
padding: 8px 4px;
|
|
3839
4083
|
}
|
|
3840
|
-
.
|
|
3841
|
-
|
|
3842
|
-
align-items: center;
|
|
3843
|
-
height: 100%;
|
|
3844
|
-
background: rgba(225, 230, 241, 0.6);
|
|
4084
|
+
.t1xo8w88 :nth-child(1) > * {
|
|
4085
|
+
background: rgba(107, 125, 153, 0.18);
|
|
3845
4086
|
}
|
|
3846
|
-
.
|
|
3847
|
-
background:
|
|
3848
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
4087
|
+
.t1xo8w88 :nth-child(1) > * {
|
|
4088
|
+
background: rgba(163, 180, 204, 0.18);
|
|
3849
4089
|
}
|
|
3850
|
-
|
|
3851
|
-
|
|
3852
|
-
|
|
3853
|
-
|
|
3854
|
-
|
|
4090
|
+
|
|
4091
|
+
.ams5nbq {
|
|
4092
|
+
position: absolute;
|
|
4093
|
+
top: 0;
|
|
4094
|
+
left: 0;
|
|
4095
|
+
bottom: 0;
|
|
4096
|
+
width: 1px;
|
|
4097
|
+
background: #0080ff;
|
|
4098
|
+
transform: translateX(-9999px);
|
|
4099
|
+
z-index: 999;
|
|
3855
4100
|
}
|
|
3856
|
-
.
|
|
3857
|
-
|
|
4101
|
+
.ams5nbq::before {
|
|
4102
|
+
content: "";
|
|
4103
|
+
position: absolute;
|
|
4104
|
+
height: 34px;
|
|
4105
|
+
width: 3px;
|
|
4106
|
+
top: 0;
|
|
4107
|
+
left: -1px;
|
|
4108
|
+
background: #0080ff;
|
|
3858
4109
|
}
|
|
3859
|
-
|
|
3860
|
-
|
|
3861
|
-
|
|
4110
|
+
|
|
4111
|
+
.t1cs4awq {
|
|
4112
|
+
background: white;
|
|
3862
4113
|
}
|
|
3863
|
-
.
|
|
3864
|
-
|
|
4114
|
+
.t1cs4awq .insert-left-tip,
|
|
4115
|
+
.t1cs4awq .insert-right-tip {
|
|
4116
|
+
display: none;
|
|
4117
|
+
position: absolute;
|
|
4118
|
+
top: 0;
|
|
4119
|
+
bottom: 0;
|
|
4120
|
+
width: 4px;
|
|
4121
|
+
background: rgba(0, 0, 255, 0.5);
|
|
3865
4122
|
}
|
|
3866
|
-
.
|
|
3867
|
-
|
|
3868
|
-
border-bottom-color: transparent;
|
|
3869
|
-
border-top-color: transparent;
|
|
4123
|
+
.t1cs4awq .insert-left-tip {
|
|
4124
|
+
left: 0px;
|
|
3870
4125
|
}
|
|
3871
|
-
.
|
|
3872
|
-
|
|
4126
|
+
.t1cs4awq .insert-right-tip {
|
|
4127
|
+
right: 0px;
|
|
3873
4128
|
}
|
|
3874
|
-
.
|
|
3875
|
-
|
|
4129
|
+
.t1cs4awq.on-dragenter-left .insert-left-tip {
|
|
4130
|
+
display: block;
|
|
3876
4131
|
}
|
|
3877
|
-
.
|
|
3878
|
-
|
|
4132
|
+
.t1cs4awq.on-dragenter-right .insert-right-tip {
|
|
4133
|
+
display: block;
|
|
3879
4134
|
}
|
|
3880
|
-
|
|
4135
|
+
|
|
4136
|
+
.d1h5z4k4.ant-dropdown {
|
|
3881
4137
|
background: #fff;
|
|
3882
|
-
|
|
3883
|
-
|
|
3884
|
-
border-
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
padding: 15px 8px 15px 8px;
|
|
4138
|
+
border: 1px solid #dfe4eb;
|
|
4139
|
+
box-shadow: 0px 8px 16px rgba(129, 138, 153, 0.18), 0px 0px 4px rgba(235, 239, 245, 0.6);
|
|
4140
|
+
border-radius: 3px;
|
|
4141
|
+
max-height: 400px;
|
|
4142
|
+
overflow: auto;
|
|
3888
4143
|
}
|
|
3889
|
-
.
|
|
3890
|
-
|
|
3891
|
-
|
|
3892
|
-
top: 0;
|
|
3893
|
-
bottom: 0;
|
|
3894
|
-
background: rgba(211, 218, 235, 0.6);
|
|
3895
|
-
position: absolute;
|
|
3896
|
-
right: 0;
|
|
4144
|
+
.d1h5z4k4.ant-dropdown::-webkit-scrollbar {
|
|
4145
|
+
width: 0px;
|
|
4146
|
+
background: transparent;
|
|
3897
4147
|
}
|
|
3898
|
-
.
|
|
3899
|
-
|
|
4148
|
+
.d1h5z4k4.ant-dropdown .ant-checkbox-wrapper {
|
|
4149
|
+
margin-right: 20px;
|
|
3900
4150
|
}
|
|
3901
|
-
|
|
3902
|
-
|
|
4151
|
+
|
|
4152
|
+
.t1g3macx {
|
|
4153
|
+
font-size: 12px;
|
|
4154
|
+
line-height: 18px;
|
|
4155
|
+
color: rgba(129, 138, 153, 0.6);
|
|
4156
|
+
margin: 8px 0 10px 12px;
|
|
3903
4157
|
}
|
|
3904
|
-
|
|
4158
|
+
|
|
4159
|
+
.cvabzd6 {
|
|
3905
4160
|
width: 100%;
|
|
3906
|
-
overflow: hidden;
|
|
3907
|
-
white-space: nowrap;
|
|
3908
|
-
text-overflow: ellipsis;
|
|
3909
|
-
}
|
|
3910
|
-
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-cell-ellipsis.ant-table-column-has-sorters .ant-table-column-sorters > span {
|
|
3911
|
-
overflow: hidden;
|
|
3912
|
-
text-overflow: ellipsis;
|
|
3913
4161
|
}
|
|
3914
|
-
.
|
|
3915
|
-
|
|
4162
|
+
.cvabzd6 .column-checkbox-item {
|
|
4163
|
+
display: flex;
|
|
4164
|
+
align-items: center;
|
|
4165
|
+
justify-content: space-between;
|
|
4166
|
+
position: relative;
|
|
3916
4167
|
}
|
|
3917
|
-
.
|
|
3918
|
-
|
|
4168
|
+
.cvabzd6 .column-checkbox-item:hover {
|
|
4169
|
+
background: rgba(0, 128, 255, 0.1);
|
|
3919
4170
|
}
|
|
3920
|
-
.
|
|
4171
|
+
.cvabzd6 .column-checkbox-item.on-dragenter-top:before, .cvabzd6 .column-checkbox-item.on-dragenter-bottom:before {
|
|
4172
|
+
content: " ";
|
|
3921
4173
|
position: absolute;
|
|
3922
|
-
|
|
3923
|
-
|
|
3924
|
-
|
|
3925
|
-
|
|
3926
|
-
display: none;
|
|
3927
|
-
transition: transform 320ms ease;
|
|
3928
|
-
}
|
|
3929
|
-
.tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon.descend {
|
|
3930
|
-
display: block;
|
|
3931
|
-
transform: translateY(-50%) rotateX(180deg);
|
|
4174
|
+
left: 0;
|
|
4175
|
+
right: 0;
|
|
4176
|
+
height: 4px;
|
|
4177
|
+
background: rgba(0, 128, 255, 0.6);
|
|
3932
4178
|
}
|
|
3933
|
-
.
|
|
3934
|
-
|
|
4179
|
+
.cvabzd6 .column-checkbox-item.on-dragenter-top:before {
|
|
4180
|
+
top: 0;
|
|
3935
4181
|
}
|
|
3936
|
-
.
|
|
3937
|
-
|
|
4182
|
+
.cvabzd6 .column-checkbox-item.on-dragenter-bottom:before {
|
|
4183
|
+
bottom: 0;
|
|
3938
4184
|
}
|
|
3939
|
-
.
|
|
3940
|
-
|
|
4185
|
+
.cvabzd6 .column-checkbox-item .ant-checkbox-wrapper {
|
|
4186
|
+
padding: 6px 0px 6px 12px;
|
|
4187
|
+
flex: 1;
|
|
3941
4188
|
}
|
|
3942
|
-
.
|
|
3943
|
-
|
|
4189
|
+
.cvabzd6 .column-checkbox-item .ant-checkbox-wrapper .ant-checkbox + span {
|
|
4190
|
+
color: #2d3a56;
|
|
3944
4191
|
}
|
|
3945
|
-
.
|
|
3946
|
-
|
|
4192
|
+
.cvabzd6 .column-checkbox-item .ant-checkbox-wrapper.ant-checkbox-wrapper-disabled .ant-checkbox + span {
|
|
4193
|
+
opacity: 0.4;
|
|
3947
4194
|
}
|
|
3948
|
-
.
|
|
3949
|
-
|
|
4195
|
+
.cvabzd6 .column-checkbox-item .point-group {
|
|
4196
|
+
position: relative;
|
|
4197
|
+
width: 6px;
|
|
4198
|
+
height: 14px;
|
|
4199
|
+
padding-right: 15px;
|
|
4200
|
+
cursor: pointer;
|
|
3950
4201
|
}
|
|
3951
|
-
.
|
|
3952
|
-
|
|
4202
|
+
.cvabzd6 .column-checkbox-item .point-group:hover i {
|
|
4203
|
+
background: #0080ff;
|
|
3953
4204
|
}
|
|
3954
|
-
.
|
|
4205
|
+
.cvabzd6 .column-checkbox-item .point-group i {
|
|
3955
4206
|
position: absolute;
|
|
3956
|
-
|
|
3957
|
-
|
|
3958
|
-
|
|
4207
|
+
width: 2px;
|
|
4208
|
+
height: 2px;
|
|
4209
|
+
border-radius: 1px;
|
|
4210
|
+
background: #6b7d99;
|
|
3959
4211
|
}
|
|
3960
|
-
.
|
|
3961
|
-
|
|
4212
|
+
.cvabzd6 .column-checkbox-item .point-group i:nth-child(1) {
|
|
4213
|
+
top: 0;
|
|
4214
|
+
left: 0;
|
|
3962
4215
|
}
|
|
3963
|
-
.
|
|
3964
|
-
|
|
4216
|
+
.cvabzd6 .column-checkbox-item .point-group i:nth-child(2) {
|
|
4217
|
+
top: 0px;
|
|
4218
|
+
left: 4px;
|
|
3965
4219
|
}
|
|
3966
|
-
.
|
|
3967
|
-
|
|
4220
|
+
.cvabzd6 .column-checkbox-item .point-group i:nth-child(3) {
|
|
4221
|
+
top: 4px;
|
|
4222
|
+
left: 0;
|
|
3968
4223
|
}
|
|
3969
|
-
.
|
|
3970
|
-
|
|
3971
|
-
|
|
3972
|
-
background: inherit !important;
|
|
3973
|
-
height: 100px;
|
|
3974
|
-
vertical-align: middle;
|
|
4224
|
+
.cvabzd6 .column-checkbox-item .point-group i:nth-child(4) {
|
|
4225
|
+
top: 4px;
|
|
4226
|
+
left: 4px;
|
|
3975
4227
|
}
|
|
3976
|
-
.
|
|
3977
|
-
|
|
3978
|
-
|
|
3979
|
-
font-size: 20px;
|
|
3980
|
-
color: rgba(10, 37, 85, 0.6);
|
|
4228
|
+
.cvabzd6 .column-checkbox-item .point-group i:nth-child(5) {
|
|
4229
|
+
top: 8px;
|
|
4230
|
+
left: 0px;
|
|
3981
4231
|
}
|
|
3982
|
-
.
|
|
3983
|
-
|
|
3984
|
-
|
|
3985
|
-
background: #fff;
|
|
4232
|
+
.cvabzd6 .column-checkbox-item .point-group i:nth-child(6) {
|
|
4233
|
+
top: 8px;
|
|
4234
|
+
left: 4px;
|
|
3986
4235
|
}
|
|
3987
|
-
.
|
|
3988
|
-
|
|
3989
|
-
|
|
3990
|
-
align-items: center;
|
|
3991
|
-
justify-content: flex-end;
|
|
3992
|
-
padding-right: 8px;
|
|
4236
|
+
.cvabzd6 .column-checkbox-item .point-group i:nth-child(7) {
|
|
4237
|
+
top: 12px;
|
|
4238
|
+
left: 0px;
|
|
3993
4239
|
}
|
|
3994
|
-
.
|
|
3995
|
-
|
|
3996
|
-
|
|
3997
|
-
cursor: pointer;
|
|
3998
|
-
justify-content: center;
|
|
3999
|
-
border-radius: 4px;
|
|
4240
|
+
.cvabzd6 .column-checkbox-item .point-group i:nth-child(8) {
|
|
4241
|
+
top: 12px;
|
|
4242
|
+
left: 4px;
|
|
4000
4243
|
}
|
|
4001
|
-
|
|
4002
|
-
|
|
4244
|
+
|
|
4245
|
+
.asgcu6r {
|
|
4246
|
+
height: 32px;
|
|
4247
|
+
}
|
|
4248
|
+
|
|
4249
|
+
.c1iwxchl .ant-checkbox.ant-checkbox-checked::after {
|
|
4250
|
+
display: none;
|
|
4003
4251
|
}
|
|
4004
4252
|
|
|
4005
4253
|
.f1l3ttbt {
|
|
@@ -4166,242 +4414,4 @@ input.r1cwjuew.ant-input {
|
|
|
4166
4414
|
.t1kgldps .column-value {
|
|
4167
4415
|
color: #fff;
|
|
4168
4416
|
margin-left: 8px;
|
|
4169
|
-
}
|
|
4170
|
-
|
|
4171
|
-
.at4ovwe .ant-input-number-handler-wrap {
|
|
4172
|
-
display: var(--at4ovwe-0);
|
|
4173
|
-
}
|
|
4174
|
-
.at4ovwe .ant-input-number-input-wrap {
|
|
4175
|
-
padding: 5px 12px;
|
|
4176
|
-
display: inline-flex;
|
|
4177
|
-
line-height: 1.5715;
|
|
4178
|
-
height: 100%;
|
|
4179
|
-
width: 100%;
|
|
4180
|
-
}
|
|
4181
|
-
.at4ovwe .ant-input-number-input-wrap::after {
|
|
4182
|
-
content: var(--at4ovwe-1);
|
|
4183
|
-
display: var(--at4ovwe-2);
|
|
4184
|
-
flex: none;
|
|
4185
|
-
align-items: center;
|
|
4186
|
-
margin-left: 4px;
|
|
4187
|
-
color: rgba(44, 56, 82, 0.6);
|
|
4188
|
-
}
|
|
4189
|
-
.at4ovwe .ant-input-number-input-wrap::before {
|
|
4190
|
-
content: var(--at4ovwe-3);
|
|
4191
|
-
display: var(--at4ovwe-4);
|
|
4192
|
-
flex: none;
|
|
4193
|
-
align-items: center;
|
|
4194
|
-
margin-right: 4px;
|
|
4195
|
-
cursor: auto;
|
|
4196
|
-
color: rgba(44, 56, 82, 0.6);
|
|
4197
|
-
}
|
|
4198
|
-
.at4ovwe.ant-input-number {
|
|
4199
|
-
width: 100%;
|
|
4200
|
-
border-radius: 6px;
|
|
4201
|
-
}
|
|
4202
|
-
.at4ovwe.ant-input-number:not([disabled]):focus, .at4ovwe.ant-input-number:not([disabled]):active, .at4ovwe.ant-input-number:not([disabled]).ant-input-number-focused {
|
|
4203
|
-
border-color: #0096ff;
|
|
4204
|
-
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
4205
|
-
}
|
|
4206
|
-
.at4ovwe.ant-input-number.error:not([disabled]):hover, .at4ovwe.ant-input-number.error:not([disabled]).ant-input-number-focused {
|
|
4207
|
-
border-color: #e75a3a;
|
|
4208
|
-
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
4209
|
-
}
|
|
4210
|
-
.at4ovwe .ant-input-number-input {
|
|
4211
|
-
padding: 0;
|
|
4212
|
-
margin: 0;
|
|
4213
|
-
height: auto;
|
|
4214
|
-
font-size: inherit;
|
|
4215
|
-
}
|
|
4216
|
-
|
|
4217
|
-
.d1h5z4k4.ant-dropdown {
|
|
4218
|
-
background: #fff;
|
|
4219
|
-
border: 1px solid #dfe4eb;
|
|
4220
|
-
box-shadow: 0px 8px 16px rgba(129, 138, 153, 0.18), 0px 0px 4px rgba(235, 239, 245, 0.6);
|
|
4221
|
-
border-radius: 3px;
|
|
4222
|
-
max-height: 400px;
|
|
4223
|
-
overflow: auto;
|
|
4224
|
-
}
|
|
4225
|
-
.d1h5z4k4.ant-dropdown::-webkit-scrollbar {
|
|
4226
|
-
width: 0px;
|
|
4227
|
-
background: transparent;
|
|
4228
|
-
}
|
|
4229
|
-
.d1h5z4k4.ant-dropdown .ant-checkbox-wrapper {
|
|
4230
|
-
margin-right: 20px;
|
|
4231
|
-
}
|
|
4232
|
-
|
|
4233
|
-
.t1g3macx {
|
|
4234
|
-
font-size: 12px;
|
|
4235
|
-
line-height: 18px;
|
|
4236
|
-
color: rgba(129, 138, 153, 0.6);
|
|
4237
|
-
margin: 8px 0 10px 12px;
|
|
4238
|
-
}
|
|
4239
|
-
|
|
4240
|
-
.cvabzd6 {
|
|
4241
|
-
width: 100%;
|
|
4242
|
-
}
|
|
4243
|
-
.cvabzd6 .column-checkbox-item {
|
|
4244
|
-
display: flex;
|
|
4245
|
-
align-items: center;
|
|
4246
|
-
justify-content: space-between;
|
|
4247
|
-
position: relative;
|
|
4248
|
-
}
|
|
4249
|
-
.cvabzd6 .column-checkbox-item:hover {
|
|
4250
|
-
background: rgba(0, 128, 255, 0.1);
|
|
4251
|
-
}
|
|
4252
|
-
.cvabzd6 .column-checkbox-item.on-dragenter-top:before, .cvabzd6 .column-checkbox-item.on-dragenter-bottom:before {
|
|
4253
|
-
content: " ";
|
|
4254
|
-
position: absolute;
|
|
4255
|
-
left: 0;
|
|
4256
|
-
right: 0;
|
|
4257
|
-
height: 4px;
|
|
4258
|
-
background: rgba(0, 128, 255, 0.6);
|
|
4259
|
-
}
|
|
4260
|
-
.cvabzd6 .column-checkbox-item.on-dragenter-top:before {
|
|
4261
|
-
top: 0;
|
|
4262
|
-
}
|
|
4263
|
-
.cvabzd6 .column-checkbox-item.on-dragenter-bottom:before {
|
|
4264
|
-
bottom: 0;
|
|
4265
|
-
}
|
|
4266
|
-
.cvabzd6 .column-checkbox-item .ant-checkbox-wrapper {
|
|
4267
|
-
padding: 6px 0px 6px 12px;
|
|
4268
|
-
flex: 1;
|
|
4269
|
-
}
|
|
4270
|
-
.cvabzd6 .column-checkbox-item .ant-checkbox-wrapper .ant-checkbox + span {
|
|
4271
|
-
color: #2d3a56;
|
|
4272
|
-
}
|
|
4273
|
-
.cvabzd6 .column-checkbox-item .ant-checkbox-wrapper.ant-checkbox-wrapper-disabled .ant-checkbox + span {
|
|
4274
|
-
opacity: 0.4;
|
|
4275
|
-
}
|
|
4276
|
-
.cvabzd6 .column-checkbox-item .point-group {
|
|
4277
|
-
position: relative;
|
|
4278
|
-
width: 6px;
|
|
4279
|
-
height: 14px;
|
|
4280
|
-
padding-right: 15px;
|
|
4281
|
-
cursor: pointer;
|
|
4282
|
-
}
|
|
4283
|
-
.cvabzd6 .column-checkbox-item .point-group:hover i {
|
|
4284
|
-
background: #0080ff;
|
|
4285
|
-
}
|
|
4286
|
-
.cvabzd6 .column-checkbox-item .point-group i {
|
|
4287
|
-
position: absolute;
|
|
4288
|
-
width: 2px;
|
|
4289
|
-
height: 2px;
|
|
4290
|
-
border-radius: 1px;
|
|
4291
|
-
background: #6b7d99;
|
|
4292
|
-
}
|
|
4293
|
-
.cvabzd6 .column-checkbox-item .point-group i:nth-child(1) {
|
|
4294
|
-
top: 0;
|
|
4295
|
-
left: 0;
|
|
4296
|
-
}
|
|
4297
|
-
.cvabzd6 .column-checkbox-item .point-group i:nth-child(2) {
|
|
4298
|
-
top: 0px;
|
|
4299
|
-
left: 4px;
|
|
4300
|
-
}
|
|
4301
|
-
.cvabzd6 .column-checkbox-item .point-group i:nth-child(3) {
|
|
4302
|
-
top: 4px;
|
|
4303
|
-
left: 0;
|
|
4304
|
-
}
|
|
4305
|
-
.cvabzd6 .column-checkbox-item .point-group i:nth-child(4) {
|
|
4306
|
-
top: 4px;
|
|
4307
|
-
left: 4px;
|
|
4308
|
-
}
|
|
4309
|
-
.cvabzd6 .column-checkbox-item .point-group i:nth-child(5) {
|
|
4310
|
-
top: 8px;
|
|
4311
|
-
left: 0px;
|
|
4312
|
-
}
|
|
4313
|
-
.cvabzd6 .column-checkbox-item .point-group i:nth-child(6) {
|
|
4314
|
-
top: 8px;
|
|
4315
|
-
left: 4px;
|
|
4316
|
-
}
|
|
4317
|
-
.cvabzd6 .column-checkbox-item .point-group i:nth-child(7) {
|
|
4318
|
-
top: 12px;
|
|
4319
|
-
left: 0px;
|
|
4320
|
-
}
|
|
4321
|
-
.cvabzd6 .column-checkbox-item .point-group i:nth-child(8) {
|
|
4322
|
-
top: 12px;
|
|
4323
|
-
left: 4px;
|
|
4324
|
-
}
|
|
4325
|
-
|
|
4326
|
-
.t1xo8w88 {
|
|
4327
|
-
height: 100%;
|
|
4328
|
-
}
|
|
4329
|
-
.t1xo8w88 .table-loading-item {
|
|
4330
|
-
padding: 12px 4px;
|
|
4331
|
-
border-bottom: 1px solid rgba(204, 212, 227, 0.18);
|
|
4332
|
-
display: flex;
|
|
4333
|
-
}
|
|
4334
|
-
.t1xo8w88 .table-loading-item > * {
|
|
4335
|
-
height: 16px;
|
|
4336
|
-
margin: 4px;
|
|
4337
|
-
background: rgba(204, 212, 227, 0.18);
|
|
4338
|
-
border-radius: 2px;
|
|
4339
|
-
}
|
|
4340
|
-
.t1xo8w88 .table-loading-item .checkbox-loading {
|
|
4341
|
-
width: 16px;
|
|
4342
|
-
}
|
|
4343
|
-
.t1xo8w88 .table-loading-item .td-loading {
|
|
4344
|
-
flex: 1;
|
|
4345
|
-
}
|
|
4346
|
-
.t1xo8w88 :nth-child(1) {
|
|
4347
|
-
padding: 8px 4px;
|
|
4348
|
-
}
|
|
4349
|
-
.t1xo8w88 :nth-child(1) > * {
|
|
4350
|
-
background: rgba(107, 125, 153, 0.18);
|
|
4351
|
-
}
|
|
4352
|
-
.t1xo8w88 :nth-child(1) > * {
|
|
4353
|
-
background: rgba(163, 180, 204, 0.18);
|
|
4354
|
-
}
|
|
4355
|
-
|
|
4356
|
-
.ams5nbq {
|
|
4357
|
-
position: absolute;
|
|
4358
|
-
top: 0;
|
|
4359
|
-
left: 0;
|
|
4360
|
-
bottom: 0;
|
|
4361
|
-
width: 1px;
|
|
4362
|
-
background: #0080ff;
|
|
4363
|
-
transform: translateX(-9999px);
|
|
4364
|
-
z-index: 999;
|
|
4365
|
-
}
|
|
4366
|
-
.ams5nbq::before {
|
|
4367
|
-
content: "";
|
|
4368
|
-
position: absolute;
|
|
4369
|
-
height: 34px;
|
|
4370
|
-
width: 3px;
|
|
4371
|
-
top: 0;
|
|
4372
|
-
left: -1px;
|
|
4373
|
-
background: #0080ff;
|
|
4374
|
-
}
|
|
4375
|
-
|
|
4376
|
-
.asgcu6r {
|
|
4377
|
-
height: 32px;
|
|
4378
|
-
}
|
|
4379
|
-
|
|
4380
|
-
.c1iwxchl .ant-checkbox.ant-checkbox-checked::after {
|
|
4381
|
-
display: none;
|
|
4382
|
-
}
|
|
4383
|
-
|
|
4384
|
-
.t1cs4awq {
|
|
4385
|
-
background: white;
|
|
4386
|
-
}
|
|
4387
|
-
.t1cs4awq .insert-left-tip,
|
|
4388
|
-
.t1cs4awq .insert-right-tip {
|
|
4389
|
-
display: none;
|
|
4390
|
-
position: absolute;
|
|
4391
|
-
top: 0;
|
|
4392
|
-
bottom: 0;
|
|
4393
|
-
width: 4px;
|
|
4394
|
-
background: rgba(0, 0, 255, 0.5);
|
|
4395
|
-
}
|
|
4396
|
-
.t1cs4awq .insert-left-tip {
|
|
4397
|
-
left: 0px;
|
|
4398
|
-
}
|
|
4399
|
-
.t1cs4awq .insert-right-tip {
|
|
4400
|
-
right: 0px;
|
|
4401
|
-
}
|
|
4402
|
-
.t1cs4awq.on-dragenter-left .insert-left-tip {
|
|
4403
|
-
display: block;
|
|
4404
|
-
}
|
|
4405
|
-
.t1cs4awq.on-dragenter-right .insert-right-tip {
|
|
4406
|
-
display: block;
|
|
4407
4417
|
}
|