@cloudtower/eagle 0.35.6 → 0.35.8
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/cjs/core/Duration/index.js +78 -0
- package/dist/cjs/core/index.js +15 -12
- package/dist/cjs/hooks/useFormatDuration.js +35 -0
- package/dist/cjs/index.js +247 -245
- package/dist/cjs/stats1.html +1 -1
- package/dist/cjs/utils/formatDuration.js +67 -0
- package/dist/components.css +1506 -1506
- package/dist/esm/core/Duration/index.js +72 -0
- package/dist/esm/core/index.js +4 -2
- package/dist/esm/hooks/useFormatDuration.js +33 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/stats1.html +1 -1
- package/dist/esm/utils/formatDuration.js +65 -0
- package/dist/linaria.merged.scss +1897 -1897
- package/dist/src/core/Duration/duration.type.d.ts +42 -0
- package/dist/src/core/Duration/index.d.ts +4 -0
- package/dist/src/core/index.d.ts +4 -0
- package/dist/src/coreX/Copy/CopyButton.d.ts +5 -0
- package/dist/src/coreX/Copy/CopyButton.type.d.ts +8 -0
- package/dist/src/coreX/Copy/CopyTooltip.d.ts +5 -0
- package/dist/src/coreX/Copy/CopyTooltip.typs.d.ts +16 -0
- package/dist/src/coreX/Copy/index.d.ts +2 -0
- package/dist/src/coreX/index.d.ts +1 -0
- package/dist/src/hooks/__tests__/useFormatDuration.test.d.ts +1 -0
- package/dist/src/hooks/index.d.ts +1 -0
- package/dist/src/hooks/useFormatDuration.d.ts +31 -0
- package/dist/src/utils/__test__/formatDuration.spec.d.ts +1 -0
- package/dist/src/utils/formatDuration.d.ts +28 -0
- package/dist/src/utils/index.d.ts +1 -0
- package/dist/stories/docs/core/Duration.stories.d.ts +88 -0
- package/dist/stories/docs/coreX/Copy/CopyButton.stories.d.ts +66 -0
- package/dist/stories/docs/coreX/Copy/CopyTooltip.stories.d.ts +66 -0
- package/dist/style.css +1506 -1506
- package/package.json +6 -4
package/dist/components.css
CHANGED
|
@@ -1445,35 +1445,6 @@ html body {
|
|
|
1445
1445
|
justify-content: center;
|
|
1446
1446
|
}
|
|
1447
1447
|
|
|
1448
|
-
.E_b1nip9bk {
|
|
1449
|
-
padding: 4px 11px;
|
|
1450
|
-
}
|
|
1451
|
-
|
|
1452
|
-
.E_bqamoqe {
|
|
1453
|
-
white-space: nowrap;
|
|
1454
|
-
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
1455
|
-
}
|
|
1456
|
-
.E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
1457
|
-
--color: #0080ff;
|
|
1458
|
-
}
|
|
1459
|
-
.E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
|
|
1460
|
-
--color: #0080ff;
|
|
1461
|
-
}
|
|
1462
|
-
.E_bqamoqe > .ant-btn:not(:only-child) + .ant-btn {
|
|
1463
|
-
margin-left: 1px;
|
|
1464
|
-
}
|
|
1465
|
-
.E_bqamoqe > .ant-btn:not(:only-child):first-child {
|
|
1466
|
-
border-top-right-radius: 0;
|
|
1467
|
-
border-bottom-right-radius: 0;
|
|
1468
|
-
}
|
|
1469
|
-
.E_bqamoqe > .ant-btn:not(:only-child):last-child {
|
|
1470
|
-
border-top-left-radius: 0;
|
|
1471
|
-
border-bottom-left-radius: 0;
|
|
1472
|
-
}
|
|
1473
|
-
.E_bqamoqe > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
1474
|
-
border-radius: unset;
|
|
1475
|
-
}
|
|
1476
|
-
|
|
1477
1448
|
.E_d133fzv0 .ant-dropdown-menu-item-group .ant-dropdown-menu-item-group-title {
|
|
1478
1449
|
padding: 4px 8px 0 8px;
|
|
1479
1450
|
color: rgba(44, 56, 82, 0.6);
|
|
@@ -1592,6 +1563,35 @@ html body {
|
|
|
1592
1563
|
width: 102px;
|
|
1593
1564
|
}
|
|
1594
1565
|
|
|
1566
|
+
.E_b1nip9bk {
|
|
1567
|
+
padding: 4px 11px;
|
|
1568
|
+
}
|
|
1569
|
+
|
|
1570
|
+
.E_bqamoqe {
|
|
1571
|
+
white-space: nowrap;
|
|
1572
|
+
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
1573
|
+
}
|
|
1574
|
+
.E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
1575
|
+
--color: #0080ff;
|
|
1576
|
+
}
|
|
1577
|
+
.E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
|
|
1578
|
+
--color: #0080ff;
|
|
1579
|
+
}
|
|
1580
|
+
.E_bqamoqe > .ant-btn:not(:only-child) + .ant-btn {
|
|
1581
|
+
margin-left: 1px;
|
|
1582
|
+
}
|
|
1583
|
+
.E_bqamoqe > .ant-btn:not(:only-child):first-child {
|
|
1584
|
+
border-top-right-radius: 0;
|
|
1585
|
+
border-bottom-right-radius: 0;
|
|
1586
|
+
}
|
|
1587
|
+
.E_bqamoqe > .ant-btn:not(:only-child):last-child {
|
|
1588
|
+
border-top-left-radius: 0;
|
|
1589
|
+
border-bottom-left-radius: 0;
|
|
1590
|
+
}
|
|
1591
|
+
.E_bqamoqe > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
1592
|
+
border-radius: unset;
|
|
1593
|
+
}
|
|
1594
|
+
|
|
1595
1595
|
.E_fzh9mnb {
|
|
1596
1596
|
width: 100%;
|
|
1597
1597
|
height: 100%;
|
|
@@ -1659,42 +1659,6 @@ html body {
|
|
|
1659
1659
|
animation: rotate 680ms linear infinite;
|
|
1660
1660
|
}
|
|
1661
1661
|
|
|
1662
|
-
.E_atcz0kf .ant-input-suffix {
|
|
1663
|
-
margin-left: 8px;
|
|
1664
|
-
}
|
|
1665
|
-
.E_atcz0kf.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
|
|
1666
|
-
padding: 2px 7px 2px 12px;
|
|
1667
|
-
}
|
|
1668
|
-
|
|
1669
|
-
.E_i1inqkme {
|
|
1670
|
-
height: 18px;
|
|
1671
|
-
line-height: 18px;
|
|
1672
|
-
padding: 0 4px;
|
|
1673
|
-
border-radius: 4px;
|
|
1674
|
-
background: rgba(235, 239, 245, 0.6);
|
|
1675
|
-
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
1676
|
-
display: flex;
|
|
1677
|
-
align-items: center;
|
|
1678
|
-
white-space: nowrap;
|
|
1679
|
-
margin-right: 4px;
|
|
1680
|
-
}
|
|
1681
|
-
|
|
1682
|
-
.E_itxley7.ant-input-group.ant-input-group-compact {
|
|
1683
|
-
display: flex;
|
|
1684
|
-
}
|
|
1685
|
-
.E_itxley7.ant-input-group.ant-input-group-compact > *:first-child, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-select:first-child > .ant-select-selector, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-calendar-picker:first-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:first-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-cascader-picker:first-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-mention-wrapper:first-child .ant-mention-editor, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-time-picker:first-child .ant-time-picker-input {
|
|
1686
|
-
border-bottom-left-radius: 5px;
|
|
1687
|
-
border-top-left-radius: 5px;
|
|
1688
|
-
}
|
|
1689
|
-
.E_itxley7.ant-input-group.ant-input-group-compact > *:last-child, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selector, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-calendar-picker:last-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:last-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-cascader-picker:last-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-cascader-picker-focused:last-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-mention-wrapper:last-child .ant-mention-editor, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-time-picker:last-child .ant-time-picker-input {
|
|
1690
|
-
border-bottom-right-radius: 5px;
|
|
1691
|
-
border-top-right-radius: 5px;
|
|
1692
|
-
}
|
|
1693
|
-
|
|
1694
|
-
.E_sx1bpnu .ant-input-sm {
|
|
1695
|
-
line-height: 18px;
|
|
1696
|
-
}
|
|
1697
|
-
|
|
1698
1662
|
.E_a1wfy30z .ant-input-number-handler-wrap {
|
|
1699
1663
|
display: var(--a1wfy30z-0);
|
|
1700
1664
|
}
|
|
@@ -1726,6 +1690,42 @@ html body {
|
|
|
1726
1690
|
font-size: inherit;
|
|
1727
1691
|
}
|
|
1728
1692
|
|
|
1693
|
+
.E_atcz0kf .ant-input-suffix {
|
|
1694
|
+
margin-left: 8px;
|
|
1695
|
+
}
|
|
1696
|
+
.E_atcz0kf.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
|
|
1697
|
+
padding: 2px 7px 2px 12px;
|
|
1698
|
+
}
|
|
1699
|
+
|
|
1700
|
+
.E_itxley7.ant-input-group.ant-input-group-compact {
|
|
1701
|
+
display: flex;
|
|
1702
|
+
}
|
|
1703
|
+
.E_itxley7.ant-input-group.ant-input-group-compact > *:first-child, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-select:first-child > .ant-select-selector, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-calendar-picker:first-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:first-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-cascader-picker:first-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-mention-wrapper:first-child .ant-mention-editor, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-time-picker:first-child .ant-time-picker-input {
|
|
1704
|
+
border-bottom-left-radius: 5px;
|
|
1705
|
+
border-top-left-radius: 5px;
|
|
1706
|
+
}
|
|
1707
|
+
.E_itxley7.ant-input-group.ant-input-group-compact > *:last-child, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-select:last-child > .ant-select-selector, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-calendar-picker:last-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-select-auto-complete:last-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-cascader-picker:last-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-cascader-picker-focused:last-child .ant-input, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-mention-wrapper:last-child .ant-mention-editor, .E_itxley7.ant-input-group.ant-input-group-compact > .ant-time-picker:last-child .ant-time-picker-input {
|
|
1708
|
+
border-bottom-right-radius: 5px;
|
|
1709
|
+
border-top-right-radius: 5px;
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1712
|
+
.E_sx1bpnu .ant-input-sm {
|
|
1713
|
+
line-height: 18px;
|
|
1714
|
+
}
|
|
1715
|
+
|
|
1716
|
+
.E_i1inqkme {
|
|
1717
|
+
height: 18px;
|
|
1718
|
+
line-height: 18px;
|
|
1719
|
+
padding: 0 4px;
|
|
1720
|
+
border-radius: 4px;
|
|
1721
|
+
background: rgba(235, 239, 245, 0.6);
|
|
1722
|
+
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
1723
|
+
display: flex;
|
|
1724
|
+
align-items: center;
|
|
1725
|
+
white-space: nowrap;
|
|
1726
|
+
margin-right: 4px;
|
|
1727
|
+
}
|
|
1728
|
+
|
|
1729
1729
|
.E_ai7qkf2 .ant-input-number-handler-wrap {
|
|
1730
1730
|
display: var(--ai7qkf2-0);
|
|
1731
1731
|
}
|
|
@@ -1786,6 +1786,16 @@ html body {
|
|
|
1786
1786
|
padding: 2px 8px;
|
|
1787
1787
|
}
|
|
1788
1788
|
|
|
1789
|
+
.E_ivqqkzv {
|
|
1790
|
+
height: 24px;
|
|
1791
|
+
width: 56px !important;
|
|
1792
|
+
margin-right: 4px;
|
|
1793
|
+
}
|
|
1794
|
+
|
|
1795
|
+
.E_c1wk4q29 {
|
|
1796
|
+
color: rgba(44, 56, 82, 0.6);
|
|
1797
|
+
}
|
|
1798
|
+
|
|
1789
1799
|
.E_owd0kml {
|
|
1790
1800
|
display: inline-block;
|
|
1791
1801
|
}
|
|
@@ -1795,6 +1805,63 @@ html body {
|
|
|
1795
1805
|
position: absolute;
|
|
1796
1806
|
}
|
|
1797
1807
|
|
|
1808
|
+
.E_phljevk {
|
|
1809
|
+
display: flex;
|
|
1810
|
+
justify-content: space-between;
|
|
1811
|
+
align-items: center;
|
|
1812
|
+
padding: 10px 0;
|
|
1813
|
+
color: rgba(44, 56, 82, 0.6);
|
|
1814
|
+
font-size: 12px;
|
|
1815
|
+
line-height: 24px;
|
|
1816
|
+
}
|
|
1817
|
+
.E_phljevk .pagination-left {
|
|
1818
|
+
padding: 2px 8px;
|
|
1819
|
+
}
|
|
1820
|
+
.E_phljevk .dropdown-trigger {
|
|
1821
|
+
display: flex;
|
|
1822
|
+
align-items: center;
|
|
1823
|
+
border-radius: 6px;
|
|
1824
|
+
cursor: pointer;
|
|
1825
|
+
transition: all 0.3s ease;
|
|
1826
|
+
}
|
|
1827
|
+
.E_phljevk .dropdown-trigger:hover {
|
|
1828
|
+
background: rgba(211, 218, 235, 0.6);
|
|
1829
|
+
color: #0080ff;
|
|
1830
|
+
}
|
|
1831
|
+
.E_phljevk .dropdown-trigger .icon-inner {
|
|
1832
|
+
margin-left: 4px;
|
|
1833
|
+
}
|
|
1834
|
+
.E_phljevk .pagination-right {
|
|
1835
|
+
display: flex;
|
|
1836
|
+
align-items: center;
|
|
1837
|
+
color: #0080ff;
|
|
1838
|
+
font-weight: bold;
|
|
1839
|
+
}
|
|
1840
|
+
.E_phljevk .pagination-right .icon-inner {
|
|
1841
|
+
margin-left: 4px;
|
|
1842
|
+
}
|
|
1843
|
+
.E_phljevk .pagination-right .prev-btn,
|
|
1844
|
+
.E_phljevk .pagination-right .next-btn {
|
|
1845
|
+
padding: 0 8px;
|
|
1846
|
+
}
|
|
1847
|
+
.E_phljevk .pagination-right .prev-btn > span,
|
|
1848
|
+
.E_phljevk .pagination-right .next-btn > span {
|
|
1849
|
+
color: #0080ff;
|
|
1850
|
+
}
|
|
1851
|
+
.E_phljevk .pagination-right .next-btn .icon-inner {
|
|
1852
|
+
transform: rotate(180deg);
|
|
1853
|
+
}
|
|
1854
|
+
|
|
1855
|
+
.E_d12rtyeg.ant-dropdown .ant-dropdown-menu {
|
|
1856
|
+
max-height: calc(100vh - 128px);
|
|
1857
|
+
overflow-y: auto;
|
|
1858
|
+
}
|
|
1859
|
+
.E_d12rtyeg.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
|
|
1860
|
+
padding: 4px 20px;
|
|
1861
|
+
font-size: 12px;
|
|
1862
|
+
line-height: 18px;
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1798
1865
|
.E_rapgekc.ant-radio-wrapper {
|
|
1799
1866
|
display: inline-flex;
|
|
1800
1867
|
align-items: baseline;
|
|
@@ -1941,83 +2008,42 @@ html body {
|
|
|
1941
2008
|
width: 36px;
|
|
1942
2009
|
}
|
|
1943
2010
|
|
|
1944
|
-
.
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
2011
|
+
.E_i11gg7mj .ant-input-prefix {
|
|
2012
|
+
margin-right: 8px;
|
|
2013
|
+
}
|
|
2014
|
+
.E_i11gg7mj .ant-input-suffix {
|
|
2015
|
+
margin-left: 8px;
|
|
1948
2016
|
}
|
|
1949
2017
|
|
|
1950
|
-
.
|
|
1951
|
-
color:
|
|
2018
|
+
.E_cc368xp {
|
|
2019
|
+
color: #00122e;
|
|
2020
|
+
border-right: 1px solid rgba(172, 186, 211, 0.6);
|
|
2021
|
+
margin-right: 8px;
|
|
2022
|
+
padding-right: 8px;
|
|
1952
2023
|
}
|
|
1953
2024
|
|
|
1954
|
-
.
|
|
2025
|
+
.E_i11o6xqj {
|
|
1955
2026
|
display: flex;
|
|
1956
|
-
|
|
1957
|
-
align-items: center;
|
|
1958
|
-
padding: 10px 0;
|
|
1959
|
-
color: rgba(44, 56, 82, 0.6);
|
|
1960
|
-
font-size: 12px;
|
|
1961
|
-
line-height: 24px;
|
|
1962
|
-
}
|
|
1963
|
-
.E_phljevk .pagination-left {
|
|
1964
|
-
padding: 2px 8px;
|
|
2027
|
+
gap: 4px;
|
|
1965
2028
|
}
|
|
1966
|
-
.
|
|
1967
|
-
display: flex;
|
|
1968
|
-
align-items: center;
|
|
1969
|
-
border-radius: 6px;
|
|
2029
|
+
.E_i11o6xqj .icon-wrapper {
|
|
1970
2030
|
cursor: pointer;
|
|
1971
|
-
transition: all 0.3s ease;
|
|
1972
|
-
}
|
|
1973
|
-
.E_phljevk .dropdown-trigger:hover {
|
|
1974
|
-
background: rgba(211, 218, 235, 0.6);
|
|
1975
|
-
color: #0080ff;
|
|
1976
2031
|
}
|
|
1977
|
-
|
|
1978
|
-
|
|
2032
|
+
|
|
2033
|
+
.E_d19ruhdj.icon-wrapper {
|
|
2034
|
+
cursor: not-allowed;
|
|
1979
2035
|
}
|
|
1980
|
-
|
|
2036
|
+
|
|
2037
|
+
.E_c1bus5hc {
|
|
2038
|
+
--color: white;
|
|
2039
|
+
height: 14px;
|
|
2040
|
+
width: 14px;
|
|
2041
|
+
border-radius: 50%;
|
|
2042
|
+
flex-shrink: 0;
|
|
1981
2043
|
display: flex;
|
|
1982
2044
|
align-items: center;
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
}
|
|
1986
|
-
.E_phljevk .pagination-right .icon-inner {
|
|
1987
|
-
margin-left: 4px;
|
|
1988
|
-
}
|
|
1989
|
-
.E_phljevk .pagination-right .prev-btn,
|
|
1990
|
-
.E_phljevk .pagination-right .next-btn {
|
|
1991
|
-
padding: 0 8px;
|
|
1992
|
-
}
|
|
1993
|
-
.E_phljevk .pagination-right .prev-btn > span,
|
|
1994
|
-
.E_phljevk .pagination-right .next-btn > span {
|
|
1995
|
-
color: #0080ff;
|
|
1996
|
-
}
|
|
1997
|
-
.E_phljevk .pagination-right .next-btn .icon-inner {
|
|
1998
|
-
transform: rotate(180deg);
|
|
1999
|
-
}
|
|
2000
|
-
|
|
2001
|
-
.E_d12rtyeg.ant-dropdown .ant-dropdown-menu {
|
|
2002
|
-
max-height: calc(100vh - 128px);
|
|
2003
|
-
overflow-y: auto;
|
|
2004
|
-
}
|
|
2005
|
-
.E_d12rtyeg.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
|
|
2006
|
-
padding: 4px 20px;
|
|
2007
|
-
font-size: 12px;
|
|
2008
|
-
line-height: 18px;
|
|
2009
|
-
}
|
|
2010
|
-
|
|
2011
|
-
.E_c1bus5hc {
|
|
2012
|
-
--color: white;
|
|
2013
|
-
height: 14px;
|
|
2014
|
-
width: 14px;
|
|
2015
|
-
border-radius: 50%;
|
|
2016
|
-
flex-shrink: 0;
|
|
2017
|
-
display: flex;
|
|
2018
|
-
align-items: center;
|
|
2019
|
-
justify-content: center;
|
|
2020
|
-
border: 1px solid var(--color);
|
|
2045
|
+
justify-content: center;
|
|
2046
|
+
border: 1px solid var(--color);
|
|
2021
2047
|
}
|
|
2022
2048
|
.E_c1bus5hc .circle-inner {
|
|
2023
2049
|
position: relative;
|
|
@@ -2048,87 +2074,6 @@ html body {
|
|
|
2048
2074
|
transform: rotate(0deg);
|
|
2049
2075
|
}
|
|
2050
2076
|
|
|
2051
|
-
.E_i11gg7mj .ant-input-prefix {
|
|
2052
|
-
margin-right: 8px;
|
|
2053
|
-
}
|
|
2054
|
-
.E_i11gg7mj .ant-input-suffix {
|
|
2055
|
-
margin-left: 8px;
|
|
2056
|
-
}
|
|
2057
|
-
|
|
2058
|
-
.E_cc368xp {
|
|
2059
|
-
color: #00122e;
|
|
2060
|
-
border-right: 1px solid rgba(172, 186, 211, 0.6);
|
|
2061
|
-
margin-right: 8px;
|
|
2062
|
-
padding-right: 8px;
|
|
2063
|
-
}
|
|
2064
|
-
|
|
2065
|
-
.E_i11o6xqj {
|
|
2066
|
-
display: flex;
|
|
2067
|
-
gap: 4px;
|
|
2068
|
-
}
|
|
2069
|
-
.E_i11o6xqj .icon-wrapper {
|
|
2070
|
-
cursor: pointer;
|
|
2071
|
-
}
|
|
2072
|
-
|
|
2073
|
-
.E_d19ruhdj.icon-wrapper {
|
|
2074
|
-
cursor: not-allowed;
|
|
2075
|
-
}
|
|
2076
|
-
|
|
2077
|
-
.E_s1dizucg.ant-switch {
|
|
2078
|
-
min-width: 40px;
|
|
2079
|
-
height: 24px;
|
|
2080
|
-
background: rgba(172, 186, 211, 0.6);
|
|
2081
|
-
overflow: hidden;
|
|
2082
|
-
}
|
|
2083
|
-
.E_s1dizucg.ant-switch:focus {
|
|
2084
|
-
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
2085
|
-
}
|
|
2086
|
-
.E_s1dizucg.ant-switch-small {
|
|
2087
|
-
min-width: 26px;
|
|
2088
|
-
height: 16px;
|
|
2089
|
-
}
|
|
2090
|
-
.E_s1dizucg.ant-switch-large {
|
|
2091
|
-
min-width: 52px;
|
|
2092
|
-
height: 32px;
|
|
2093
|
-
}
|
|
2094
|
-
.E_s1dizucg.ant-switch .ant-switch-handle {
|
|
2095
|
-
height: 20px;
|
|
2096
|
-
width: 20px;
|
|
2097
|
-
}
|
|
2098
|
-
.E_s1dizucg.ant-switch .ant-switch-handle::before {
|
|
2099
|
-
border-radius: 10px;
|
|
2100
|
-
transition-delay: 120ms;
|
|
2101
|
-
}
|
|
2102
|
-
.E_s1dizucg.ant-switch-small .ant-switch-handle {
|
|
2103
|
-
height: 14px;
|
|
2104
|
-
width: 14px;
|
|
2105
|
-
top: 1px;
|
|
2106
|
-
left: 1px;
|
|
2107
|
-
}
|
|
2108
|
-
.E_s1dizucg.ant-switch-large .ant-switch-handle {
|
|
2109
|
-
height: 28px;
|
|
2110
|
-
width: 28px;
|
|
2111
|
-
}
|
|
2112
|
-
.E_s1dizucg.ant-switch-large .ant-switch-handle::before {
|
|
2113
|
-
border-radius: 14px;
|
|
2114
|
-
}
|
|
2115
|
-
.E_s1dizucg.ant-switch-checked {
|
|
2116
|
-
background-color: #00ba5d;
|
|
2117
|
-
}
|
|
2118
|
-
.E_s1dizucg.ant-switch-checked .ant-switch-handle {
|
|
2119
|
-
left: calc(100% - 20px - 2px);
|
|
2120
|
-
}
|
|
2121
|
-
.E_s1dizucg.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
2122
|
-
left: calc(100% - 14px - 1px);
|
|
2123
|
-
}
|
|
2124
|
-
.E_s1dizucg.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
2125
|
-
left: calc(100% - 28px - 2px);
|
|
2126
|
-
}
|
|
2127
|
-
|
|
2128
|
-
.E_c1up6e3y {
|
|
2129
|
-
margin-left: 5px;
|
|
2130
|
-
}
|
|
2131
|
-
|
|
2132
2077
|
.E_cnujxq2 {
|
|
2133
2078
|
display: flex;
|
|
2134
2079
|
flex-direction: column;
|
|
@@ -2819,57 +2764,63 @@ input.E_rf8rlle.ant-input {
|
|
|
2819
2764
|
color: rgba(44, 56, 82, 0.7490196078);
|
|
2820
2765
|
}
|
|
2821
2766
|
|
|
2822
|
-
.
|
|
2823
|
-
|
|
2824
|
-
align-items: center;
|
|
2825
|
-
justify-content: center;
|
|
2826
|
-
color: #fff;
|
|
2827
|
-
font-weight: bold;
|
|
2828
|
-
font-size: 12px;
|
|
2829
|
-
width: 24px;
|
|
2767
|
+
.E_s1dizucg.ant-switch {
|
|
2768
|
+
min-width: 40px;
|
|
2830
2769
|
height: 24px;
|
|
2831
|
-
|
|
2832
|
-
|
|
2770
|
+
background: rgba(172, 186, 211, 0.6);
|
|
2771
|
+
overflow: hidden;
|
|
2833
2772
|
}
|
|
2834
|
-
.
|
|
2835
|
-
|
|
2836
|
-
cursor: pointer;
|
|
2837
|
-
width: 56px;
|
|
2838
|
-
height: 40px;
|
|
2839
|
-
display: inline-flex;
|
|
2840
|
-
align-items: center;
|
|
2841
|
-
justify-content: center;
|
|
2842
|
-
border-radius: 6px;
|
|
2773
|
+
.E_s1dizucg.ant-switch:focus {
|
|
2774
|
+
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
2843
2775
|
}
|
|
2844
|
-
.
|
|
2845
|
-
|
|
2776
|
+
.E_s1dizucg.ant-switch-small {
|
|
2777
|
+
min-width: 26px;
|
|
2778
|
+
height: 16px;
|
|
2846
2779
|
}
|
|
2847
|
-
.
|
|
2848
|
-
|
|
2849
|
-
|
|
2780
|
+
.E_s1dizucg.ant-switch-large {
|
|
2781
|
+
min-width: 52px;
|
|
2782
|
+
height: 32px;
|
|
2850
2783
|
}
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
|
|
2784
|
+
.E_s1dizucg.ant-switch .ant-switch-handle {
|
|
2785
|
+
height: 20px;
|
|
2786
|
+
width: 20px;
|
|
2854
2787
|
}
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2788
|
+
.E_s1dizucg.ant-switch .ant-switch-handle::before {
|
|
2789
|
+
border-radius: 10px;
|
|
2790
|
+
transition-delay: 120ms;
|
|
2858
2791
|
}
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2792
|
+
.E_s1dizucg.ant-switch-small .ant-switch-handle {
|
|
2793
|
+
height: 14px;
|
|
2794
|
+
width: 14px;
|
|
2795
|
+
top: 1px;
|
|
2796
|
+
left: 1px;
|
|
2862
2797
|
}
|
|
2863
|
-
|
|
2864
|
-
|
|
2865
|
-
|
|
2798
|
+
.E_s1dizucg.ant-switch-large .ant-switch-handle {
|
|
2799
|
+
height: 28px;
|
|
2800
|
+
width: 28px;
|
|
2866
2801
|
}
|
|
2867
|
-
.
|
|
2868
|
-
|
|
2869
|
-
border-radius: 4px;
|
|
2802
|
+
.E_s1dizucg.ant-switch-large .ant-switch-handle::before {
|
|
2803
|
+
border-radius: 14px;
|
|
2870
2804
|
}
|
|
2871
|
-
.
|
|
2872
|
-
|
|
2805
|
+
.E_s1dizucg.ant-switch-checked {
|
|
2806
|
+
background-color: #00ba5d;
|
|
2807
|
+
}
|
|
2808
|
+
.E_s1dizucg.ant-switch-checked .ant-switch-handle {
|
|
2809
|
+
left: calc(100% - 20px - 2px);
|
|
2810
|
+
}
|
|
2811
|
+
.E_s1dizucg.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
2812
|
+
left: calc(100% - 14px - 1px);
|
|
2813
|
+
}
|
|
2814
|
+
.E_s1dizucg.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
2815
|
+
left: calc(100% - 28px - 2px);
|
|
2816
|
+
}
|
|
2817
|
+
|
|
2818
|
+
.E_c1up6e3y {
|
|
2819
|
+
margin-left: 5px;
|
|
2820
|
+
}
|
|
2821
|
+
|
|
2822
|
+
.E_tju3gfj .date {
|
|
2823
|
+
margin-right: 4px;
|
|
2873
2824
|
}
|
|
2874
2825
|
|
|
2875
2826
|
.E_s1dni7lo {
|
|
@@ -2953,52 +2904,149 @@ input.E_rf8rlle.ant-input {
|
|
|
2953
2904
|
opacity: 0;
|
|
2954
2905
|
}
|
|
2955
2906
|
|
|
2956
|
-
.
|
|
2957
|
-
|
|
2958
|
-
|
|
2959
|
-
font-weight: bold;
|
|
2960
|
-
font-size: 32px;
|
|
2961
|
-
line-height: 40px;
|
|
2907
|
+
.E_s1sck0th {
|
|
2908
|
+
padding: 0 8px;
|
|
2909
|
+
border-radius: 4px;
|
|
2962
2910
|
}
|
|
2963
2911
|
|
|
2964
|
-
.
|
|
2965
|
-
|
|
2966
|
-
|
|
2967
|
-
font-weight: bold;
|
|
2968
|
-
font-size: 24px;
|
|
2969
|
-
line-height: 32px;
|
|
2912
|
+
.E_m855nr1 {
|
|
2913
|
+
padding: 2px 8px;
|
|
2914
|
+
border-radius: 3px;
|
|
2970
2915
|
}
|
|
2971
2916
|
|
|
2972
|
-
.
|
|
2973
|
-
|
|
2974
|
-
|
|
2975
|
-
font-weight: normal;
|
|
2976
|
-
font-size: 32px;
|
|
2977
|
-
line-height: 40px;
|
|
2917
|
+
.E_l1270xpg {
|
|
2918
|
+
padding: 3px 8px;
|
|
2919
|
+
border-radius: 2px;
|
|
2978
2920
|
}
|
|
2979
2921
|
|
|
2980
|
-
.
|
|
2981
|
-
|
|
2982
|
-
font-style: normal;
|
|
2983
|
-
font-weight: bold;
|
|
2984
|
-
font-size: 20px;
|
|
2985
|
-
line-height: 24px;
|
|
2922
|
+
.E_t14rextb.ant-tag:hover {
|
|
2923
|
+
opacity: unset;
|
|
2986
2924
|
}
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
line-height: 24px;
|
|
2925
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
|
|
2926
|
+
margin: 0;
|
|
2927
|
+
margin-right: 8px;
|
|
2928
|
+
display: inline-flex;
|
|
2929
|
+
align-items: center;
|
|
2930
|
+
border: none;
|
|
2994
2931
|
}
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
|
|
2932
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
|
|
2933
|
+
width: 16px;
|
|
2934
|
+
height: 16px;
|
|
2935
|
+
color: inherit;
|
|
2936
|
+
margin-left: 4px;
|
|
2937
|
+
opacity: 0.6;
|
|
2938
|
+
display: inline-flex;
|
|
2939
|
+
}
|
|
2940
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
|
|
2941
|
+
opacity: 1;
|
|
2942
|
+
}
|
|
2943
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
|
|
2944
|
+
color: #0080ff;
|
|
2945
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
2946
|
+
}
|
|
2947
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
|
|
2948
|
+
color: #f0483e;
|
|
2949
|
+
background-color: rgba(255, 74, 74, 0.1);
|
|
2950
|
+
}
|
|
2951
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
2952
|
+
color: #e07f00;
|
|
2953
|
+
background-color: rgba(255, 187, 0, 0.1);
|
|
2954
|
+
}
|
|
2955
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
2956
|
+
color: #008f4c;
|
|
2957
|
+
background-color: rgba(30, 201, 127, 0.1);
|
|
2958
|
+
}
|
|
2959
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
|
|
2960
|
+
color: #1d326c;
|
|
2961
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
2962
|
+
}
|
|
2963
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
|
|
2964
|
+
color: #7E41FF;
|
|
2965
|
+
background-color: rgba(126, 65, 255, 0.1);
|
|
2966
|
+
}
|
|
2967
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
2968
|
+
color: #fff;
|
|
2969
|
+
}
|
|
2970
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
|
|
2971
|
+
background-color: #f0483e;
|
|
2972
|
+
}
|
|
2973
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
|
|
2974
|
+
background-color: #fea008;
|
|
2975
|
+
}
|
|
2976
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
|
|
2977
|
+
background-color: #00ba5d;
|
|
2978
|
+
}
|
|
2979
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
2980
|
+
background-color: #0080ff;
|
|
2981
|
+
}
|
|
2982
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
2983
|
+
background-color: #6b7d99;
|
|
2984
|
+
}
|
|
2985
|
+
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-purple {
|
|
2986
|
+
background-color: #7E41FF;
|
|
2987
|
+
}
|
|
2988
|
+
|
|
2989
|
+
.E_iq1gosr {
|
|
2990
|
+
display: inline-block;
|
|
2991
|
+
}
|
|
2992
|
+
|
|
2993
|
+
.E_t1m2x205 .ant-tooltip-arrow {
|
|
2994
|
+
display: none;
|
|
2995
|
+
}
|
|
2996
|
+
.E_t1m2x205 .ant-tooltip-inner {
|
|
2997
|
+
background: rgba(23, 38, 64, 0.8);
|
|
2998
|
+
border-radius: 4px;
|
|
2999
|
+
}
|
|
3000
|
+
.E_t1m2x205 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
|
|
3001
|
+
visibility: hidden;
|
|
3002
|
+
}
|
|
3003
|
+
|
|
3004
|
+
.E_dsnbhzf {
|
|
3005
|
+
font-family: Inter;
|
|
3006
|
+
font-style: normal;
|
|
3007
|
+
font-weight: bold;
|
|
3008
|
+
font-size: 32px;
|
|
3009
|
+
line-height: 40px;
|
|
3010
|
+
}
|
|
3011
|
+
|
|
3012
|
+
.E_d1mvo22k {
|
|
3013
|
+
font-family: Inter;
|
|
3014
|
+
font-style: normal;
|
|
3015
|
+
font-weight: bold;
|
|
3016
|
+
font-size: 24px;
|
|
3017
|
+
line-height: 32px;
|
|
3018
|
+
}
|
|
3019
|
+
|
|
3020
|
+
.E_d1b444tr {
|
|
3021
|
+
font-family: Inter;
|
|
3022
|
+
font-style: normal;
|
|
3023
|
+
font-weight: normal;
|
|
3024
|
+
font-size: 32px;
|
|
3025
|
+
line-height: 40px;
|
|
3026
|
+
}
|
|
3027
|
+
|
|
3028
|
+
.E_dvs0kue {
|
|
3029
|
+
font-family: Inter;
|
|
3030
|
+
font-style: normal;
|
|
3031
|
+
font-weight: bold;
|
|
3032
|
+
font-size: 20px;
|
|
3033
|
+
line-height: 24px;
|
|
3034
|
+
}
|
|
3035
|
+
|
|
3036
|
+
.E_d1hcbfcq {
|
|
3037
|
+
font-family: Inter;
|
|
3038
|
+
font-style: normal;
|
|
3039
|
+
font-weight: normal;
|
|
3040
|
+
font-size: 20px;
|
|
3041
|
+
line-height: 24px;
|
|
3042
|
+
}
|
|
3043
|
+
|
|
3044
|
+
.E_d1cz922v {
|
|
3045
|
+
font-family: Inter;
|
|
3046
|
+
font-style: normal;
|
|
3047
|
+
font-weight: bold;
|
|
3048
|
+
font-size: 18px;
|
|
3049
|
+
line-height: 22px;
|
|
3002
3050
|
}
|
|
3003
3051
|
|
|
3004
3052
|
.E_d3nzbrm {
|
|
@@ -3428,86 +3476,45 @@ input.E_rf8rlle.ant-input {
|
|
|
3428
3476
|
line-height: 12px;
|
|
3429
3477
|
}
|
|
3430
3478
|
|
|
3431
|
-
.
|
|
3432
|
-
|
|
3433
|
-
border-radius: 4px;
|
|
3434
|
-
}
|
|
3435
|
-
|
|
3436
|
-
.E_m855nr1 {
|
|
3437
|
-
padding: 2px 8px;
|
|
3438
|
-
border-radius: 3px;
|
|
3439
|
-
}
|
|
3440
|
-
|
|
3441
|
-
.E_l1270xpg {
|
|
3442
|
-
padding: 3px 8px;
|
|
3443
|
-
border-radius: 2px;
|
|
3479
|
+
.E_m196gn1d {
|
|
3480
|
+
min-width: 1280px;
|
|
3444
3481
|
}
|
|
3445
3482
|
|
|
3446
|
-
.
|
|
3447
|
-
opacity: unset;
|
|
3448
|
-
}
|
|
3449
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
|
|
3450
|
-
margin: 0;
|
|
3451
|
-
margin-right: 8px;
|
|
3483
|
+
.E_a1b5xrg3 .user-icon-inner {
|
|
3452
3484
|
display: inline-flex;
|
|
3453
3485
|
align-items: center;
|
|
3454
|
-
|
|
3455
|
-
}
|
|
3456
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
|
|
3457
|
-
width: 16px;
|
|
3458
|
-
height: 16px;
|
|
3459
|
-
color: inherit;
|
|
3460
|
-
margin-left: 4px;
|
|
3461
|
-
opacity: 0.6;
|
|
3462
|
-
display: inline-flex;
|
|
3463
|
-
}
|
|
3464
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
|
|
3465
|
-
opacity: 1;
|
|
3466
|
-
}
|
|
3467
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
|
|
3468
|
-
color: #0080ff;
|
|
3469
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
3470
|
-
}
|
|
3471
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
|
|
3472
|
-
color: #f0483e;
|
|
3473
|
-
background-color: rgba(255, 74, 74, 0.1);
|
|
3474
|
-
}
|
|
3475
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
3476
|
-
color: #e07f00;
|
|
3477
|
-
background-color: rgba(255, 187, 0, 0.1);
|
|
3478
|
-
}
|
|
3479
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
3480
|
-
color: #008f4c;
|
|
3481
|
-
background-color: rgba(30, 201, 127, 0.1);
|
|
3482
|
-
}
|
|
3483
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
|
|
3484
|
-
color: #1d326c;
|
|
3485
|
-
background-color: rgba(225, 230, 241, 0.6);
|
|
3486
|
-
}
|
|
3487
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-purple {
|
|
3488
|
-
color: #7E41FF;
|
|
3489
|
-
background-color: rgba(126, 65, 255, 0.1);
|
|
3490
|
-
}
|
|
3491
|
-
.E_t14rextb.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
3486
|
+
justify-content: center;
|
|
3492
3487
|
color: #fff;
|
|
3488
|
+
font-weight: bold;
|
|
3489
|
+
font-size: 12px;
|
|
3490
|
+
width: 24px;
|
|
3491
|
+
height: 24px;
|
|
3492
|
+
border-radius: 50%;
|
|
3493
|
+
background: var(--a1b5xrg3-0);
|
|
3493
3494
|
}
|
|
3494
|
-
.
|
|
3495
|
-
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
|
|
3495
|
+
.E_a1b5xrg3.btn-item {
|
|
3496
|
+
transition: all 160ms ease;
|
|
3497
|
+
cursor: pointer;
|
|
3498
|
+
width: 56px;
|
|
3499
|
+
height: 40px;
|
|
3500
|
+
display: inline-flex;
|
|
3501
|
+
align-items: center;
|
|
3502
|
+
justify-content: center;
|
|
3503
|
+
border-radius: 6px;
|
|
3499
3504
|
}
|
|
3500
|
-
.
|
|
3501
|
-
|
|
3505
|
+
.E_a1b5xrg3.btn-item:hover {
|
|
3506
|
+
box-shadow: 0px 0px 20px rgba(107, 125, 153, 0.18), 0px 25px 80px rgba(45, 58, 86, 0.3);
|
|
3502
3507
|
}
|
|
3503
|
-
.
|
|
3504
|
-
|
|
3508
|
+
.E_a1b5xrg3.btn-item:active {
|
|
3509
|
+
transform: translateY(2px);
|
|
3510
|
+
transition: all 320ms ease;
|
|
3505
3511
|
}
|
|
3506
|
-
|
|
3507
|
-
|
|
3512
|
+
|
|
3513
|
+
.E_c1yyuluq {
|
|
3514
|
+
border-radius: 8px;
|
|
3508
3515
|
}
|
|
3509
|
-
.
|
|
3510
|
-
|
|
3516
|
+
.E_c1yyuluq .ant-card-body {
|
|
3517
|
+
padding: 20px 24px 24px 24px;
|
|
3511
3518
|
}
|
|
3512
3519
|
|
|
3513
3520
|
.E_ccrbeuz .ant-collapse-item {
|
|
@@ -3532,13 +3539,6 @@ input.E_rf8rlle.ant-input {
|
|
|
3532
3539
|
cursor: default;
|
|
3533
3540
|
}
|
|
3534
3541
|
|
|
3535
|
-
.E_c1yyuluq {
|
|
3536
|
-
border-radius: 8px;
|
|
3537
|
-
}
|
|
3538
|
-
.E_c1yyuluq .ant-card-body {
|
|
3539
|
-
padding: 20px 24px 24px 24px;
|
|
3540
|
-
}
|
|
3541
|
-
|
|
3542
3542
|
.E_b1lj76ty {
|
|
3543
3543
|
width: 100%;
|
|
3544
3544
|
height: 100%;
|
|
@@ -3576,92 +3576,34 @@ input.E_rf8rlle.ant-input {
|
|
|
3576
3576
|
margin-top: 8px;
|
|
3577
3577
|
}
|
|
3578
3578
|
|
|
3579
|
-
.
|
|
3580
|
-
|
|
3581
|
-
width: 24px;
|
|
3582
|
-
border-radius: 6px;
|
|
3583
|
-
padding: 4px;
|
|
3579
|
+
.E_hrhfj7c {
|
|
3580
|
+
display: none;
|
|
3584
3581
|
}
|
|
3585
|
-
|
|
3586
|
-
|
|
3582
|
+
|
|
3583
|
+
.E_dt9qoak .bottom {
|
|
3584
|
+
color: rgba(44, 56, 82, 0.75);
|
|
3587
3585
|
}
|
|
3588
|
-
.
|
|
3589
|
-
|
|
3586
|
+
.E_dt9qoak .left {
|
|
3587
|
+
min-width: 0;
|
|
3590
3588
|
}
|
|
3591
3589
|
|
|
3592
|
-
.
|
|
3590
|
+
.E_crhnxq5 {
|
|
3591
|
+
display: flex;
|
|
3592
|
+
flex-direction: row;
|
|
3593
|
+
justify-content: space-between;
|
|
3594
|
+
}
|
|
3595
|
+
.E_crhnxq5 .label {
|
|
3596
|
+
color: rgba(44, 56, 82, 0.6);
|
|
3597
|
+
font-weight: 400;
|
|
3598
|
+
}
|
|
3599
|
+
|
|
3600
|
+
.E_c1iq43vd {
|
|
3593
3601
|
display: flex;
|
|
3602
|
+
flex-direction: column;
|
|
3603
|
+
justify-content: center;
|
|
3594
3604
|
align-items: center;
|
|
3595
|
-
|
|
3596
|
-
|
|
3597
|
-
height: 24px;
|
|
3598
|
-
width: 24px;
|
|
3599
|
-
border-radius: 20px;
|
|
3600
|
-
color: #0080ff;
|
|
3601
|
-
background: rgba(0, 136, 255, 0.1);
|
|
3602
|
-
display: flex;
|
|
3603
|
-
align-items: center;
|
|
3604
|
-
justify-content: center;
|
|
3605
|
-
margin-right: 6px;
|
|
3606
|
-
}
|
|
3607
|
-
|
|
3608
|
-
.E_m5foqp8.medium {
|
|
3609
|
-
--footer-height: 96px;
|
|
3610
|
-
--modal-content-width: 720px;
|
|
3611
|
-
--modal-content-min-height: 200px;
|
|
3612
|
-
--modal-header-padding: 40px 60px 8px;
|
|
3613
|
-
--modal-content-padding-top: 24px;
|
|
3614
|
-
--modal-content-padding-bottom: 32px;
|
|
3615
|
-
--modal-content-padding-x: 60px;
|
|
3616
|
-
--modal-footer-padding: 0 60px;
|
|
3617
|
-
}
|
|
3618
|
-
.E_m5foqp8.medium.content-full.ant-modal {
|
|
3619
|
-
height: calc(100vh - 80px);
|
|
3620
|
-
width: calc(100vw - 160px);
|
|
3621
|
-
}
|
|
3622
|
-
.E_m5foqp8.medium.content-full.ant-modal .ant-modal-content {
|
|
3623
|
-
width: 100%;
|
|
3624
|
-
height: 100%;
|
|
3625
|
-
max-width: unset;
|
|
3626
|
-
max-height: unset;
|
|
3627
|
-
display: flex;
|
|
3628
|
-
flex-direction: column;
|
|
3629
|
-
}
|
|
3630
|
-
.E_m5foqp8.medium.content-full.ant-modal .ant-modal-body {
|
|
3631
|
-
flex: 1;
|
|
3632
|
-
}
|
|
3633
|
-
.E_m5foqp8.medium .initializing-title {
|
|
3634
|
-
height: 32px;
|
|
3635
|
-
}
|
|
3636
|
-
|
|
3637
|
-
.E_hrhfj7c {
|
|
3638
|
-
display: none;
|
|
3639
|
-
}
|
|
3640
|
-
|
|
3641
|
-
.E_dt9qoak .bottom {
|
|
3642
|
-
color: rgba(44, 56, 82, 0.75);
|
|
3643
|
-
}
|
|
3644
|
-
.E_dt9qoak .left {
|
|
3645
|
-
min-width: 0;
|
|
3646
|
-
}
|
|
3647
|
-
|
|
3648
|
-
.E_crhnxq5 {
|
|
3649
|
-
display: flex;
|
|
3650
|
-
flex-direction: row;
|
|
3651
|
-
justify-content: space-between;
|
|
3652
|
-
}
|
|
3653
|
-
.E_crhnxq5 .label {
|
|
3654
|
-
color: rgba(44, 56, 82, 0.6);
|
|
3655
|
-
font-weight: 400;
|
|
3656
|
-
}
|
|
3657
|
-
|
|
3658
|
-
.E_c1iq43vd {
|
|
3659
|
-
display: flex;
|
|
3660
|
-
flex-direction: column;
|
|
3661
|
-
justify-content: center;
|
|
3662
|
-
align-items: center;
|
|
3663
|
-
height: 240px;
|
|
3664
|
-
width: 432px;
|
|
3605
|
+
height: 240px;
|
|
3606
|
+
width: 432px;
|
|
3665
3607
|
}
|
|
3666
3608
|
|
|
3667
3609
|
.E_c1h2v0a8.ant-input-affix-wrapper {
|
|
@@ -3853,6 +3795,19 @@ input.E_rf8rlle.ant-input {
|
|
|
3853
3795
|
font-size: 14px;
|
|
3854
3796
|
}
|
|
3855
3797
|
|
|
3798
|
+
.E_suhck3k {
|
|
3799
|
+
height: 24px;
|
|
3800
|
+
width: 24px;
|
|
3801
|
+
border-radius: 6px;
|
|
3802
|
+
padding: 4px;
|
|
3803
|
+
}
|
|
3804
|
+
.E_suhck3k:hover {
|
|
3805
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
3806
|
+
}
|
|
3807
|
+
.E_suhck3k:hover svg path {
|
|
3808
|
+
fill: blue;
|
|
3809
|
+
}
|
|
3810
|
+
|
|
3856
3811
|
.E_s17wv897.ant-select, .E_s17wv897.ant-select div.ant-select-selector {
|
|
3857
3812
|
border-radius: 6px;
|
|
3858
3813
|
}
|
|
@@ -3910,6 +3865,51 @@ input.E_rf8rlle.ant-input {
|
|
|
3910
3865
|
transform: rotate(180deg);
|
|
3911
3866
|
}
|
|
3912
3867
|
|
|
3868
|
+
.E_ryby9ds {
|
|
3869
|
+
display: flex;
|
|
3870
|
+
align-items: center;
|
|
3871
|
+
}
|
|
3872
|
+
.E_ryby9ds .order {
|
|
3873
|
+
height: 24px;
|
|
3874
|
+
width: 24px;
|
|
3875
|
+
border-radius: 20px;
|
|
3876
|
+
color: #0080ff;
|
|
3877
|
+
background: rgba(0, 136, 255, 0.1);
|
|
3878
|
+
display: flex;
|
|
3879
|
+
align-items: center;
|
|
3880
|
+
justify-content: center;
|
|
3881
|
+
margin-right: 6px;
|
|
3882
|
+
}
|
|
3883
|
+
|
|
3884
|
+
.E_m5foqp8.medium {
|
|
3885
|
+
--footer-height: 96px;
|
|
3886
|
+
--modal-content-width: 720px;
|
|
3887
|
+
--modal-content-min-height: 200px;
|
|
3888
|
+
--modal-header-padding: 40px 60px 8px;
|
|
3889
|
+
--modal-content-padding-top: 24px;
|
|
3890
|
+
--modal-content-padding-bottom: 32px;
|
|
3891
|
+
--modal-content-padding-x: 60px;
|
|
3892
|
+
--modal-footer-padding: 0 60px;
|
|
3893
|
+
}
|
|
3894
|
+
.E_m5foqp8.medium.content-full.ant-modal {
|
|
3895
|
+
height: calc(100vh - 80px);
|
|
3896
|
+
width: calc(100vw - 160px);
|
|
3897
|
+
}
|
|
3898
|
+
.E_m5foqp8.medium.content-full.ant-modal .ant-modal-content {
|
|
3899
|
+
width: 100%;
|
|
3900
|
+
height: 100%;
|
|
3901
|
+
max-width: unset;
|
|
3902
|
+
max-height: unset;
|
|
3903
|
+
display: flex;
|
|
3904
|
+
flex-direction: column;
|
|
3905
|
+
}
|
|
3906
|
+
.E_m5foqp8.medium.content-full.ant-modal .ant-modal-body {
|
|
3907
|
+
flex: 1;
|
|
3908
|
+
}
|
|
3909
|
+
.E_m5foqp8.medium .initializing-title {
|
|
3910
|
+
height: 32px;
|
|
3911
|
+
}
|
|
3912
|
+
|
|
3913
3913
|
.E_s4ivdfu.ant-select .ant-select-selection-placeholder {
|
|
3914
3914
|
opacity: 1;
|
|
3915
3915
|
}
|
|
@@ -4538,342 +4538,199 @@ input.E_rf8rlle.ant-input {
|
|
|
4538
4538
|
opacity: 0.5;
|
|
4539
4539
|
}
|
|
4540
4540
|
|
|
4541
|
-
.
|
|
4542
|
-
|
|
4543
|
-
|
|
4544
|
-
|
|
4545
|
-
|
|
4546
|
-
|
|
4547
|
-
height: 22px;
|
|
4548
|
-
display: flex;
|
|
4549
|
-
align-items: center;
|
|
4550
|
-
top: 0;
|
|
4551
|
-
}
|
|
4552
|
-
.E_ckui4s7 .ant-checkbox-checked::after {
|
|
4553
|
-
border: none;
|
|
4541
|
+
button.E_l48ei06.ant-btn,
|
|
4542
|
+
button.E_l48ei06.ant-btn.ant-btn-sm,
|
|
4543
|
+
button.E_l48ei06.ant-btn.ant-btn-lg {
|
|
4544
|
+
font-size: 12px;
|
|
4545
|
+
line-height: 18px;
|
|
4546
|
+
height: 18px;
|
|
4554
4547
|
}
|
|
4555
|
-
|
|
4556
|
-
|
|
4548
|
+
|
|
4549
|
+
button.E_l48ei06 {
|
|
4550
|
+
color: #0080FF;
|
|
4551
|
+
height: unset;
|
|
4557
4552
|
}
|
|
4558
|
-
.
|
|
4559
|
-
|
|
4553
|
+
button.E_l48ei06 .button-prefix-icon {
|
|
4554
|
+
margin-right: 4px;
|
|
4560
4555
|
}
|
|
4561
|
-
.
|
|
4562
|
-
|
|
4556
|
+
button.E_l48ei06 .button-suffix-icon {
|
|
4557
|
+
margin-left: 4px;
|
|
4563
4558
|
}
|
|
4564
|
-
.
|
|
4565
|
-
|
|
4559
|
+
button.E_l48ei06:hover, button.E_l48ei06.__pseudo-states-hover {
|
|
4560
|
+
color: #009DFF;
|
|
4566
4561
|
}
|
|
4567
|
-
.
|
|
4568
|
-
|
|
4569
|
-
height: 2px;
|
|
4570
|
-
width: 10px;
|
|
4571
|
-
border-radius: 2px;
|
|
4562
|
+
button.E_l48ei06:active, button.E_l48ei06.__pseudo-states-active {
|
|
4563
|
+
color: #005ED1;
|
|
4572
4564
|
}
|
|
4573
|
-
.
|
|
4574
|
-
|
|
4565
|
+
button.E_l48ei06.ui-kit-link-disabled {
|
|
4566
|
+
color: #0080FF;
|
|
4575
4567
|
}
|
|
4576
|
-
.
|
|
4577
|
-
|
|
4578
|
-
border-color: rgba(107, 128, 167, 0.6) !important;
|
|
4568
|
+
button.E_l48ei06.ui-kit-link-primary {
|
|
4569
|
+
color: #00122E;
|
|
4579
4570
|
}
|
|
4580
|
-
.
|
|
4581
|
-
|
|
4571
|
+
button.E_l48ei06.ui-kit-link-primary:hover, button.E_l48ei06.ui-kit-link-primary.__pseudo-states-hover {
|
|
4572
|
+
color: #0080FF;
|
|
4582
4573
|
}
|
|
4583
|
-
.
|
|
4584
|
-
|
|
4574
|
+
button.E_l48ei06.ui-kit-link-primary:active, button.E_l48ei06.ui-kit-link-primary.__pseudo-states-active {
|
|
4575
|
+
color: #005ED1;
|
|
4585
4576
|
}
|
|
4586
|
-
.
|
|
4587
|
-
|
|
4577
|
+
button.E_l48ei06.ui-kit-link-primary.ui-kit-link-disabled {
|
|
4578
|
+
color: #00122E;
|
|
4588
4579
|
}
|
|
4589
|
-
.
|
|
4590
|
-
|
|
4591
|
-
margin-left: 12px;
|
|
4592
|
-
color: #2d3a56;
|
|
4580
|
+
button.E_l48ei06.ui-kit-link-secondary {
|
|
4581
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
4593
4582
|
}
|
|
4594
|
-
.
|
|
4595
|
-
|
|
4596
|
-
color: rgba(44, 56, 82, 0.6);
|
|
4583
|
+
button.E_l48ei06.ui-kit-link-secondary:hover, button.E_l48ei06.ui-kit-link-secondary.__pseudo-states-hover {
|
|
4584
|
+
color: #0080FF;
|
|
4597
4585
|
}
|
|
4598
|
-
.
|
|
4599
|
-
|
|
4586
|
+
button.E_l48ei06.ui-kit-link-secondary:active, button.E_l48ei06.ui-kit-link-secondary.__pseudo-states-active {
|
|
4587
|
+
color: #005ED1;
|
|
4600
4588
|
}
|
|
4601
|
-
.
|
|
4602
|
-
|
|
4589
|
+
button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
4590
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
4603
4591
|
}
|
|
4604
4592
|
|
|
4605
|
-
.
|
|
4606
|
-
|
|
4607
|
-
|
|
4593
|
+
.E_l1ucdodl {
|
|
4594
|
+
margin: 0;
|
|
4595
|
+
border-radius: 20px;
|
|
4596
|
+
padding: 2px 10px;
|
|
4597
|
+
height: 22px;
|
|
4608
4598
|
display: flex;
|
|
4609
|
-
justify-content: space-between;
|
|
4610
4599
|
align-items: center;
|
|
4611
4600
|
}
|
|
4612
|
-
.
|
|
4613
|
-
|
|
4601
|
+
.E_l1ucdodl.ui-kit-status-legend.on-tint {
|
|
4602
|
+
color: #FFFFFF;
|
|
4614
4603
|
}
|
|
4615
|
-
.
|
|
4604
|
+
.E_l1ucdodl.tag-hover {
|
|
4616
4605
|
cursor: pointer;
|
|
4606
|
+
}
|
|
4607
|
+
.E_l1ucdodl.ui-kit-status-legend {
|
|
4617
4608
|
color: #00122e;
|
|
4618
4609
|
}
|
|
4619
|
-
.
|
|
4620
|
-
|
|
4621
|
-
font-weight: 600;
|
|
4610
|
+
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-icon {
|
|
4611
|
+
margin-right: 6px;
|
|
4622
4612
|
}
|
|
4623
|
-
.
|
|
4624
|
-
|
|
4613
|
+
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number {
|
|
4614
|
+
margin-left: 8px;
|
|
4615
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4625
4616
|
}
|
|
4626
|
-
.
|
|
4627
|
-
|
|
4628
|
-
line-height: 18px;
|
|
4617
|
+
.E_l1ucdodl.ui-kit-status-legend .ui-kit-status-legend-number.ui-kit-status-legend-number.on-tint {
|
|
4618
|
+
color: #FFFFFF;
|
|
4629
4619
|
}
|
|
4630
|
-
.
|
|
4631
|
-
|
|
4632
|
-
align-items: center;
|
|
4633
|
-
user-select: none;
|
|
4634
|
-
flex-grow: 1;
|
|
4635
|
-
font-size: 12px;
|
|
4636
|
-
line-height: 18px;
|
|
4637
|
-
color: #2d3a56;
|
|
4638
|
-
font-weight: 700;
|
|
4620
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-blue .ui-kit-status-legend-icon {
|
|
4621
|
+
background-color: #0080ff;
|
|
4639
4622
|
}
|
|
4640
|
-
.
|
|
4641
|
-
|
|
4642
|
-
margin-right: 2px;
|
|
4643
|
-
}
|
|
4644
|
-
|
|
4645
|
-
.E_t1tbywr9 {
|
|
4646
|
-
width: 100%;
|
|
4647
|
-
flex: 1;
|
|
4648
|
-
display: flex;
|
|
4649
|
-
flex-direction: column;
|
|
4650
|
-
}
|
|
4651
|
-
.E_t1tbywr9.medium .tab-bar {
|
|
4652
|
-
height: 32px;
|
|
4653
|
-
}
|
|
4654
|
-
.E_t1tbywr9.medium .tab-bar .common-tab-bar {
|
|
4655
|
-
height: 32px;
|
|
4656
|
-
}
|
|
4657
|
-
.E_t1tbywr9.medium .tab-bar .common-tab-bar .tab-item-title {
|
|
4658
|
-
height: 32px;
|
|
4659
|
-
border-top-left-radius: 6px;
|
|
4660
|
-
border-top-right-radius: 6px;
|
|
4661
|
-
padding-right: 16px;
|
|
4662
|
-
padding-left: 16px;
|
|
4663
|
-
font-size: 16px;
|
|
4664
|
-
}
|
|
4665
|
-
.E_t1tbywr9.small .tab-bar {
|
|
4666
|
-
height: 24px;
|
|
4667
|
-
}
|
|
4668
|
-
.E_t1tbywr9.small .tab-bar .common-tab-bar {
|
|
4669
|
-
height: 24px;
|
|
4670
|
-
}
|
|
4671
|
-
.E_t1tbywr9.small .tab-bar .common-tab-bar .tab-item-title {
|
|
4672
|
-
height: 24px;
|
|
4673
|
-
border-top-left-radius: 4px;
|
|
4674
|
-
border-top-right-radius: 4px;
|
|
4675
|
-
padding-right: 12px;
|
|
4676
|
-
padding-left: 12px;
|
|
4677
|
-
font-size: 14px;
|
|
4678
|
-
}
|
|
4679
|
-
.E_t1tbywr9 .tab-bar {
|
|
4680
|
-
max-width: 100%;
|
|
4681
|
-
display: flex;
|
|
4682
|
-
place-items: center;
|
|
4683
|
-
border-bottom: 1px solid rgba(211, 218, 235, 0.6);
|
|
4684
|
-
}
|
|
4685
|
-
.E_t1tbywr9 .tab-bar .common-tab-bar {
|
|
4686
|
-
overflow: hidden;
|
|
4687
|
-
display: flex;
|
|
4688
|
-
place-items: center;
|
|
4689
|
-
}
|
|
4690
|
-
.E_t1tbywr9 .tab-bar .common-tab-bar .tab-item-title:first-child:not(.__selected):not(:hover) {
|
|
4691
|
-
padding-left: 0px;
|
|
4623
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-red .ui-kit-status-legend-icon {
|
|
4624
|
+
background-color: #f0483e;
|
|
4692
4625
|
}
|
|
4693
|
-
.
|
|
4694
|
-
|
|
4695
|
-
position: relative;
|
|
4626
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-yellow .ui-kit-status-legend-icon {
|
|
4627
|
+
background-color: #fea008;
|
|
4696
4628
|
}
|
|
4697
|
-
.
|
|
4698
|
-
|
|
4699
|
-
width: 1px;
|
|
4700
|
-
height: 24px;
|
|
4701
|
-
background: rgba(172, 186, 211, 0.6);
|
|
4702
|
-
position: absolute;
|
|
4703
|
-
left: -6px;
|
|
4704
|
-
top: 50%;
|
|
4705
|
-
transform: translateY(-50%);
|
|
4629
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-green .ui-kit-status-legend-icon {
|
|
4630
|
+
background-color: #00ba5d;
|
|
4706
4631
|
}
|
|
4707
|
-
.
|
|
4708
|
-
|
|
4709
|
-
display: flex;
|
|
4710
|
-
place-items: center;
|
|
4711
|
-
cursor: pointer;
|
|
4712
|
-
color: rgba(44, 56, 82, 0.75);
|
|
4713
|
-
transition: color 100ms ease-out, background-color 100ms ease-out, padding-left 320ms ease 80ms;
|
|
4632
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-gray .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
|
|
4633
|
+
background-color: #6b7d99;
|
|
4714
4634
|
}
|
|
4715
|
-
.
|
|
4716
|
-
|
|
4717
|
-
color: #0080ff;
|
|
4718
|
-
background: rgba(0, 136, 255, 0.1607843137);
|
|
4635
|
+
.E_l1ucdodl.ui-kit-status-legend.eagle-legend-purple .ui-kit-status-legend-icon:not(.ui-kit-status-legend-icon-loading) {
|
|
4636
|
+
background-color: #7E41FF;
|
|
4719
4637
|
}
|
|
4720
|
-
|
|
4721
|
-
|
|
4638
|
+
|
|
4639
|
+
.E_s1qj66nc {
|
|
4640
|
+
width: 8px;
|
|
4641
|
+
height: 8px;
|
|
4642
|
+
border-radius: 50%;
|
|
4643
|
+
display: inline-block;
|
|
4722
4644
|
}
|
|
4723
|
-
|
|
4724
|
-
|
|
4725
|
-
|
|
4726
|
-
|
|
4645
|
+
|
|
4646
|
+
.E_s5x1boq {
|
|
4647
|
+
width: 8px;
|
|
4648
|
+
height: 8px;
|
|
4727
4649
|
border-radius: 2px;
|
|
4728
|
-
|
|
4729
|
-
}
|
|
4730
|
-
.E_t1tbywr9 .tab-bar .tab-item-title.more.__selected.tab-title-text {
|
|
4731
|
-
margin-left: 8px;
|
|
4732
|
-
}
|
|
4733
|
-
.E_t1tbywr9 .tab-bar .tab-item-title.__selected {
|
|
4734
|
-
padding-left: 16px;
|
|
4735
|
-
background: rgba(0, 136, 255, 0.1);
|
|
4736
|
-
color: #0080ff;
|
|
4737
|
-
}
|
|
4738
|
-
.E_t1tbywr9 .tab-bar .tab-item-title.__hidden {
|
|
4739
|
-
display: none;
|
|
4650
|
+
display: inline-block;
|
|
4740
4651
|
}
|
|
4741
4652
|
|
|
4742
|
-
.
|
|
4743
|
-
color:
|
|
4744
|
-
background: rgba(211, 218, 235, 0.6);
|
|
4653
|
+
.E_c1xm185 {
|
|
4654
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4745
4655
|
}
|
|
4746
4656
|
|
|
4747
|
-
.
|
|
4748
|
-
cursor: default;
|
|
4749
|
-
}
|
|
4750
|
-
.E_m19lu3v .menu-wrapper {
|
|
4751
|
-
min-width: 160px;
|
|
4752
|
-
max-width: 400px;
|
|
4753
|
-
padding: 6px;
|
|
4754
|
-
background: #fff;
|
|
4755
|
-
box-shadow: 0px 0px 10px rgba(107, 125, 153, 0.18), 0px 12px 40px rgba(45, 58, 86, 0.3);
|
|
4756
|
-
border-radius: 8px;
|
|
4757
|
-
max-height: calc(100vh - 250px);
|
|
4758
|
-
overflow: auto;
|
|
4759
|
-
}
|
|
4760
|
-
.E_m19lu3v .menu-wrapper .tab-menu-item {
|
|
4761
|
-
display: flex;
|
|
4762
|
-
place-items: center;
|
|
4763
|
-
width: var(--itemWidth);
|
|
4764
|
-
}
|
|
4765
|
-
.E_m19lu3v .menu-wrapper .tab-menu-item + .tab-menu-item {
|
|
4766
|
-
margin-top: 8px;
|
|
4767
|
-
}
|
|
4768
|
-
.E_m19lu3v .menu-wrapper .tab-menu-item.__selected {
|
|
4769
|
-
padding: 6px;
|
|
4770
|
-
background: rgba(0, 136, 255, 0.1);
|
|
4771
|
-
color: #0080ff;
|
|
4772
|
-
}
|
|
4773
|
-
.E_m19lu3v .menu-wrapper .tab-menu-item.__selectedE_l1fbkbzo {
|
|
4774
|
-
font-family: Inter;
|
|
4775
|
-
font-style: normal;
|
|
4776
|
-
font-weight: bold !important;
|
|
4777
|
-
}
|
|
4778
|
-
.E_m19lu3v .menu-wrapper .tab-menu-item.ant-dropdown-menu-item {
|
|
4779
|
-
padding: 5px 12px;
|
|
4780
|
-
border-radius: 4px;
|
|
4781
|
-
}
|
|
4782
|
-
.E_m19lu3v .menu-wrapper .tab-menu-item.ant-dropdown-menu-item:not(.ant-dropdown-menu-item-disabled):hover {
|
|
4783
|
-
color: #0080ff;
|
|
4784
|
-
background: rgba(211, 218, 235, 0.6);
|
|
4785
|
-
}
|
|
4786
|
-
.E_m19lu3v .menu-wrapper .tab-menu-item-text {
|
|
4787
|
-
text-align: left;
|
|
4657
|
+
.E_c1x5l5qc {
|
|
4788
4658
|
flex: 1;
|
|
4789
|
-
overflow: hidden;
|
|
4790
|
-
text-overflow: ellipsis;
|
|
4791
|
-
white-space: nowrap;
|
|
4792
4659
|
}
|
|
4793
4660
|
|
|
4794
|
-
.
|
|
4795
|
-
margin:
|
|
4796
|
-
|
|
4797
|
-
|
|
4798
|
-
height:
|
|
4799
|
-
margin-right: 3px;
|
|
4661
|
+
.E_sddwhm6 {
|
|
4662
|
+
margin: 0;
|
|
4663
|
+
border-radius: 20px;
|
|
4664
|
+
padding: 2px 10px;
|
|
4665
|
+
height: 22px;
|
|
4800
4666
|
}
|
|
4801
|
-
.
|
|
4802
|
-
|
|
4803
|
-
height: 16px;
|
|
4667
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white {
|
|
4668
|
+
background-color: rgba(237, 241, 250, 0.6) !important;
|
|
4804
4669
|
}
|
|
4805
|
-
|
|
4806
|
-
.
|
|
4807
|
-
box-shadow: 0px 0.119595px 0.438513px rgba(129, 138, 153, 0.14), 0px 0.271728px 0.996336px rgba(129, 138, 153, 0.106447), 0px 0.472931px 1.73408px rgba(129, 138, 153, 0.0912224), 0px 0.751293px 2.75474px rgba(129, 138, 153, 0.0799253), 0px 1.15919px 4.25036px rgba(129, 138, 153, 0.07), 0px 1.80882px 6.63236px rgba(129, 138, 153, 0.0600747), 0px 3.00293px 11.0107px rgba(129, 138, 153, 0.0487776), 0px 6px 22px rgba(129, 138, 153, 0.0335534);
|
|
4670
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white.__pseudo-states-hover {
|
|
4671
|
+
background-color: rgba(225, 230, 241, 0.6) !important;
|
|
4808
4672
|
}
|
|
4809
|
-
|
|
4810
|
-
|
|
4811
|
-
border-radius: 8px;
|
|
4812
|
-
background-color: white;
|
|
4673
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule {
|
|
4674
|
+
color: #00122e;
|
|
4813
4675
|
}
|
|
4814
|
-
.
|
|
4815
|
-
|
|
4676
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-icon {
|
|
4677
|
+
margin-right: 6px;
|
|
4816
4678
|
}
|
|
4817
|
-
.
|
|
4818
|
-
|
|
4819
|
-
|
|
4820
|
-
transform: translateY(-4px);
|
|
4679
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-number {
|
|
4680
|
+
margin-left: 8px;
|
|
4681
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4821
4682
|
}
|
|
4822
|
-
|
|
4823
|
-
.
|
|
4824
|
-
padding: 0 12px 14px 12px;
|
|
4683
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue {
|
|
4684
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
4825
4685
|
}
|
|
4826
|
-
|
|
4827
|
-
|
|
4828
|
-
button.E_l48ei06.ant-btn.ant-btn-sm,
|
|
4829
|
-
button.E_l48ei06.ant-btn.ant-btn-lg {
|
|
4830
|
-
font-size: 12px;
|
|
4831
|
-
line-height: 18px;
|
|
4832
|
-
height: 18px;
|
|
4686
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue .ui-kit-status-capsule-icon {
|
|
4687
|
+
background-color: #0080ff;
|
|
4833
4688
|
}
|
|
4834
|
-
|
|
4835
|
-
|
|
4836
|
-
color: #0080FF;
|
|
4837
|
-
height: unset;
|
|
4689
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue.__pseudo-states-hover {
|
|
4690
|
+
background-color: rgba(0, 136, 255, 0.16);
|
|
4838
4691
|
}
|
|
4839
|
-
|
|
4840
|
-
|
|
4692
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red {
|
|
4693
|
+
background-color: rgba(255, 74, 74, 0.1);
|
|
4841
4694
|
}
|
|
4842
|
-
|
|
4843
|
-
|
|
4695
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red .ui-kit-status-capsule-icon {
|
|
4696
|
+
background-color: #f0483e;
|
|
4844
4697
|
}
|
|
4845
|
-
|
|
4846
|
-
color:
|
|
4698
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red.__pseudo-states-hover {
|
|
4699
|
+
background-color: rgba(255, 74, 74, 0.16);
|
|
4847
4700
|
}
|
|
4848
|
-
|
|
4849
|
-
color:
|
|
4701
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow {
|
|
4702
|
+
background-color: rgba(254, 160, 8, 0.1);
|
|
4850
4703
|
}
|
|
4851
|
-
|
|
4852
|
-
color: #
|
|
4704
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow .ui-kit-status-capsule-icon {
|
|
4705
|
+
background-color: #fea008;
|
|
4853
4706
|
}
|
|
4854
|
-
|
|
4855
|
-
color:
|
|
4707
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow.__pseudo-states-hover {
|
|
4708
|
+
background-color: rgba(255, 187, 0, 0.16);
|
|
4856
4709
|
}
|
|
4857
|
-
|
|
4858
|
-
color:
|
|
4710
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green {
|
|
4711
|
+
background-color: rgba(30, 201, 127, 0.1);
|
|
4859
4712
|
}
|
|
4860
|
-
|
|
4861
|
-
color: #
|
|
4713
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green .ui-kit-status-capsule-icon {
|
|
4714
|
+
background-color: #00ba5d;
|
|
4862
4715
|
}
|
|
4863
|
-
|
|
4864
|
-
color:
|
|
4716
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green.__pseudo-states-hover {
|
|
4717
|
+
background-color: rgba(30, 201, 127, 0.16);
|
|
4865
4718
|
}
|
|
4866
|
-
|
|
4867
|
-
color: rgba(
|
|
4719
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray {
|
|
4720
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
4868
4721
|
}
|
|
4869
|
-
|
|
4870
|
-
color: #
|
|
4722
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray .ui-kit-status-capsule-icon:not(.ui-kit-status-capsule-icon-loading) {
|
|
4723
|
+
background-color: #6b7d99;
|
|
4871
4724
|
}
|
|
4872
|
-
|
|
4873
|
-
color:
|
|
4725
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray.__pseudo-states-hover {
|
|
4726
|
+
background-color: rgba(211, 218, 235, 0.6);
|
|
4874
4727
|
}
|
|
4875
|
-
|
|
4876
|
-
|
|
4728
|
+
|
|
4729
|
+
.E_satwmqm {
|
|
4730
|
+
width: 8px;
|
|
4731
|
+
height: 8px;
|
|
4732
|
+
border-radius: 50%;
|
|
4733
|
+
display: inline-block;
|
|
4877
4734
|
}
|
|
4878
4735
|
|
|
4879
4736
|
.E_tc97u5y {
|
|
@@ -5247,196 +5104,112 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
5247
5104
|
background: #fff;
|
|
5248
5105
|
}
|
|
5249
5106
|
|
|
5250
|
-
.
|
|
5251
|
-
|
|
5252
|
-
|
|
5253
|
-
|
|
5107
|
+
.E_ckui4s7 {
|
|
5108
|
+
color: #2d3a56;
|
|
5109
|
+
line-height: 22px;
|
|
5110
|
+
display: inline-flex;
|
|
5111
|
+
}
|
|
5112
|
+
.E_ckui4s7 .ant-checkbox {
|
|
5254
5113
|
height: 22px;
|
|
5255
5114
|
display: flex;
|
|
5256
5115
|
align-items: center;
|
|
5116
|
+
top: 0;
|
|
5257
5117
|
}
|
|
5258
|
-
.
|
|
5259
|
-
|
|
5260
|
-
}
|
|
5261
|
-
.E_l1ucdodl.tag-hover {
|
|
5262
|
-
cursor: pointer;
|
|
5263
|
-
}
|
|
5264
|
-
.E_l1ucdodl.ui-kit-status-legend {
|
|
5265
|
-
color: #00122e;
|
|
5118
|
+
.E_ckui4s7 .ant-checkbox-checked::after {
|
|
5119
|
+
border: none;
|
|
5266
5120
|
}
|
|
5267
|
-
.
|
|
5268
|
-
|
|
5121
|
+
.E_ckui4s7.ant-checkbox-wrapper:hover .ant-checkbox-inner, .E_ckui4s7.ant-checkbox-wrapper.__pseudo-states-hover .ant-checkbox-inner, .E_ckui4s7 .ant-checkbox:hover .ant-checkbox-inner {
|
|
5122
|
+
border-color: #0080ff;
|
|
5269
5123
|
}
|
|
5270
|
-
.
|
|
5271
|
-
|
|
5272
|
-
color: rgba(44, 56, 82, 0.6);
|
|
5124
|
+
.E_ckui4s7 .ant-checkbox .ant-checkbox-inner {
|
|
5125
|
+
border: 1px solid rgba(107, 128, 167, 0.6);
|
|
5273
5126
|
}
|
|
5274
|
-
.
|
|
5275
|
-
|
|
5127
|
+
.E_ckui4s7 .ant-checkbox.ant-checkbox-checked .ant-checkbox-inner, .E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
5128
|
+
border: 1px solid #0080ff;
|
|
5276
5129
|
}
|
|
5277
|
-
.
|
|
5278
|
-
background
|
|
5130
|
+
.E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
5131
|
+
background: #0080ff;
|
|
5279
5132
|
}
|
|
5280
|
-
.
|
|
5281
|
-
background-color: #
|
|
5133
|
+
.E_ckui4s7 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner:after {
|
|
5134
|
+
background-color: #fff;
|
|
5135
|
+
height: 2px;
|
|
5136
|
+
width: 10px;
|
|
5137
|
+
border-radius: 2px;
|
|
5282
5138
|
}
|
|
5283
|
-
.
|
|
5284
|
-
|
|
5139
|
+
.E_ckui4s7.ant-checkbox-wrapper-disabled {
|
|
5140
|
+
opacity: 0.5;
|
|
5285
5141
|
}
|
|
5286
|
-
.
|
|
5287
|
-
background
|
|
5142
|
+
.E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled .ant-checkbox-inner {
|
|
5143
|
+
background: rgba(211, 218, 235, 0.6);
|
|
5144
|
+
border-color: rgba(107, 128, 167, 0.6) !important;
|
|
5288
5145
|
}
|
|
5289
|
-
.
|
|
5290
|
-
|
|
5146
|
+
.E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after {
|
|
5147
|
+
border-color: #2d3a56;
|
|
5291
5148
|
}
|
|
5292
|
-
.
|
|
5293
|
-
background
|
|
5149
|
+
.E_ckui4s7.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-indeterminate .ant-checkbox-inner:after {
|
|
5150
|
+
background: #2d3a56;
|
|
5294
5151
|
}
|
|
5295
|
-
|
|
5296
|
-
|
|
5297
|
-
width: 8px;
|
|
5298
|
-
height: 8px;
|
|
5299
|
-
border-radius: 50%;
|
|
5300
|
-
display: inline-block;
|
|
5152
|
+
.E_ckui4s7 .ant-checkbox + span, .E_ckui4s7 .ant-checkbox-disabled + span {
|
|
5153
|
+
padding: 0;
|
|
5301
5154
|
}
|
|
5302
|
-
|
|
5303
|
-
.E_s5x1boq {
|
|
5304
|
-
width: 8px;
|
|
5305
|
-
height: 8px;
|
|
5306
|
-
border-radius: 2px;
|
|
5155
|
+
.E_ckui4s7 .ant-checkbox + span .main, .E_ckui4s7 .ant-checkbox-disabled + span .main {
|
|
5307
5156
|
display: inline-block;
|
|
5157
|
+
margin-left: 12px;
|
|
5158
|
+
color: #2d3a56;
|
|
5308
5159
|
}
|
|
5309
|
-
|
|
5310
|
-
|
|
5160
|
+
.E_ckui4s7 .ant-checkbox + span .sub, .E_ckui4s7 .ant-checkbox-disabled + span .sub {
|
|
5161
|
+
margin-left: 28px;
|
|
5311
5162
|
color: rgba(44, 56, 82, 0.6);
|
|
5312
5163
|
}
|
|
5313
|
-
|
|
5314
|
-
.E_c1x5l5qc {
|
|
5315
|
-
flex: 1;
|
|
5316
|
-
}
|
|
5317
|
-
|
|
5318
|
-
.E_sddwhm6 {
|
|
5319
|
-
margin: 0;
|
|
5320
|
-
border-radius: 20px;
|
|
5321
|
-
padding: 2px 10px;
|
|
5322
|
-
height: 22px;
|
|
5323
|
-
}
|
|
5324
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white {
|
|
5325
|
-
background-color: rgba(237, 241, 250, 0.6) !important;
|
|
5326
|
-
}
|
|
5327
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white.__pseudo-states-hover {
|
|
5328
|
-
background-color: rgba(225, 230, 241, 0.6) !important;
|
|
5329
|
-
}
|
|
5330
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule {
|
|
5331
|
-
color: #00122e;
|
|
5332
|
-
}
|
|
5333
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-icon {
|
|
5334
|
-
margin-right: 6px;
|
|
5335
|
-
}
|
|
5336
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-number {
|
|
5164
|
+
.E_ckui4s7.compact .ant-checkbox + span .main, .E_ckui4s7.compact .ant-checkbox-disabled + span .main {
|
|
5337
5165
|
margin-left: 8px;
|
|
5338
|
-
color: rgba(44, 56, 82, 0.6);
|
|
5339
|
-
}
|
|
5340
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue {
|
|
5341
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
5342
|
-
}
|
|
5343
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue .ui-kit-status-capsule-icon {
|
|
5344
|
-
background-color: #0080ff;
|
|
5345
5166
|
}
|
|
5346
|
-
.
|
|
5347
|
-
|
|
5348
|
-
}
|
|
5349
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red {
|
|
5350
|
-
background-color: rgba(255, 74, 74, 0.1);
|
|
5351
|
-
}
|
|
5352
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red .ui-kit-status-capsule-icon {
|
|
5353
|
-
background-color: #f0483e;
|
|
5354
|
-
}
|
|
5355
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red.__pseudo-states-hover {
|
|
5356
|
-
background-color: rgba(255, 74, 74, 0.16);
|
|
5357
|
-
}
|
|
5358
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow {
|
|
5359
|
-
background-color: rgba(254, 160, 8, 0.1);
|
|
5360
|
-
}
|
|
5361
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow .ui-kit-status-capsule-icon {
|
|
5362
|
-
background-color: #fea008;
|
|
5363
|
-
}
|
|
5364
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow.__pseudo-states-hover {
|
|
5365
|
-
background-color: rgba(255, 187, 0, 0.16);
|
|
5167
|
+
.E_ckui4s7.compact .ant-checkbox + span .sub, .E_ckui4s7.compact .ant-checkbox-disabled + span .sub {
|
|
5168
|
+
margin-left: 24px;
|
|
5366
5169
|
}
|
|
5367
|
-
|
|
5368
|
-
|
|
5170
|
+
|
|
5171
|
+
.E_c1yd35n {
|
|
5172
|
+
padding: 0 12px 14px 12px;
|
|
5369
5173
|
}
|
|
5370
|
-
|
|
5371
|
-
|
|
5174
|
+
|
|
5175
|
+
.E_c1kghdax {
|
|
5176
|
+
color: #2d3a56;
|
|
5177
|
+
padding: 7px 12px;
|
|
5178
|
+
display: flex;
|
|
5179
|
+
justify-content: space-between;
|
|
5180
|
+
align-items: center;
|
|
5372
5181
|
}
|
|
5373
|
-
.
|
|
5374
|
-
|
|
5182
|
+
.E_c1kghdax.has-arrow {
|
|
5183
|
+
padding-left: 10px;
|
|
5375
5184
|
}
|
|
5376
|
-
.
|
|
5377
|
-
|
|
5185
|
+
.E_c1kghdax.has-arrow .title-wrapper {
|
|
5186
|
+
cursor: pointer;
|
|
5187
|
+
color: #00122e;
|
|
5378
5188
|
}
|
|
5379
|
-
.
|
|
5380
|
-
|
|
5189
|
+
.E_c1kghdax.has-arrow .title-wrapper.is-open {
|
|
5190
|
+
color: #2d3a56;
|
|
5191
|
+
font-weight: 600;
|
|
5381
5192
|
}
|
|
5382
|
-
.
|
|
5383
|
-
|
|
5193
|
+
.E_c1kghdax.has-arrow .title-wrapper.is-open .collapse-arrow {
|
|
5194
|
+
transform: rotate(90deg);
|
|
5384
5195
|
}
|
|
5385
|
-
|
|
5386
|
-
|
|
5387
|
-
|
|
5388
|
-
height: 8px;
|
|
5389
|
-
border-radius: 50%;
|
|
5390
|
-
display: inline-block;
|
|
5196
|
+
.E_c1kghdax .sub-info {
|
|
5197
|
+
font-size: 12px;
|
|
5198
|
+
line-height: 18px;
|
|
5391
5199
|
}
|
|
5392
|
-
|
|
5393
|
-
.E_lht19u8 {
|
|
5394
|
-
width: 64px;
|
|
5395
|
-
height: 64px;
|
|
5200
|
+
.E_c1kghdax .title-wrapper {
|
|
5396
5201
|
display: flex;
|
|
5397
5202
|
align-items: center;
|
|
5398
|
-
|
|
5399
|
-
|
|
5400
|
-
|
|
5401
|
-
|
|
5402
|
-
|
|
5403
|
-
|
|
5404
|
-
position: absolute;
|
|
5405
|
-
width: 5px;
|
|
5406
|
-
height: 48px;
|
|
5407
|
-
left: 9.33px;
|
|
5408
|
-
top: 40.5px;
|
|
5409
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
5410
|
-
border-radius: 5px;
|
|
5411
|
-
transform: rotate(-128deg);
|
|
5412
|
-
transform-origin: top left;
|
|
5413
|
-
animation: loading-indicator1 1100ms ease-out infinite;
|
|
5414
|
-
}
|
|
5415
|
-
|
|
5416
|
-
.E_ll4n94n {
|
|
5417
|
-
position: absolute;
|
|
5418
|
-
width: 5px;
|
|
5419
|
-
height: 48px;
|
|
5420
|
-
left: 40.8px;
|
|
5421
|
-
top: 8.4px;
|
|
5422
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
5423
|
-
border-radius: 5px;
|
|
5424
|
-
transform: rotate(-8deg);
|
|
5425
|
-
transform-origin: top left;
|
|
5426
|
-
animation: loading-indicator2 1100ms ease-out infinite;
|
|
5203
|
+
user-select: none;
|
|
5204
|
+
flex-grow: 1;
|
|
5205
|
+
font-size: 12px;
|
|
5206
|
+
line-height: 18px;
|
|
5207
|
+
color: #2d3a56;
|
|
5208
|
+
font-weight: 700;
|
|
5427
5209
|
}
|
|
5428
|
-
|
|
5429
|
-
|
|
5430
|
-
|
|
5431
|
-
width: 5px;
|
|
5432
|
-
height: 48px;
|
|
5433
|
-
left: 52.9px;
|
|
5434
|
-
top: 51.8px;
|
|
5435
|
-
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
5436
|
-
border-radius: 5px;
|
|
5437
|
-
transform: rotate(112deg);
|
|
5438
|
-
transform-origin: top left;
|
|
5439
|
-
animation: loading-indicator3 1100ms ease-out infinite;
|
|
5210
|
+
.E_c1kghdax .collapse-arrow {
|
|
5211
|
+
transition: all 50ms ease-out 0ms;
|
|
5212
|
+
margin-right: 2px;
|
|
5440
5213
|
}
|
|
5441
5214
|
|
|
5442
5215
|
.E_m11nzl2x {
|
|
@@ -5599,59 +5372,286 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
5599
5372
|
.E_lqeaosa .metric-toolbar .metric-extra .info-item + .info-item {
|
|
5600
5373
|
margin-left: 10px;
|
|
5601
5374
|
}
|
|
5602
|
-
.E_lqeaosa .metric-toolbar .metric-extra .menu-trigger {
|
|
5603
|
-
margin-left: 10px;
|
|
5375
|
+
.E_lqeaosa .metric-toolbar .metric-extra .menu-trigger {
|
|
5376
|
+
margin-left: 10px;
|
|
5377
|
+
cursor: pointer;
|
|
5378
|
+
}
|
|
5379
|
+
.E_lqeaosa .recharts-xAxis {
|
|
5380
|
+
font-size: 12px;
|
|
5381
|
+
}
|
|
5382
|
+
.E_lqeaosa .pointer-wrapper {
|
|
5383
|
+
position: absolute;
|
|
5384
|
+
bottom: 10px;
|
|
5385
|
+
padding: 0 8px;
|
|
5386
|
+
font-size: 12px;
|
|
5387
|
+
color: #fff;
|
|
5388
|
+
transform: translateX(-50%);
|
|
5389
|
+
}
|
|
5390
|
+
|
|
5391
|
+
.E_t2pr38p {
|
|
5392
|
+
min-width: 200px;
|
|
5393
|
+
background-color: rgba(23, 38, 64, 0.8);
|
|
5394
|
+
border-radius: 4px;
|
|
5395
|
+
box-shadow: 0px 1px 4px 0px rgba(29, 50, 108, 0.6);
|
|
5396
|
+
padding: 8px;
|
|
5397
|
+
}
|
|
5398
|
+
|
|
5399
|
+
.E_tecdsj7 {
|
|
5400
|
+
display: flex;
|
|
5401
|
+
align-items: center;
|
|
5402
|
+
background-color: unset;
|
|
5403
|
+
color: #FFFFFF;
|
|
5404
|
+
justify-content: space-between;
|
|
5405
|
+
font-size: 12px;
|
|
5406
|
+
padding-top: 6px;
|
|
5407
|
+
}
|
|
5408
|
+
.E_tecdsj7:first-child {
|
|
5409
|
+
padding-top: 3px;
|
|
5410
|
+
}
|
|
5411
|
+
.E_tecdsj7:last-child {
|
|
5412
|
+
padding-bottom: 3px;
|
|
5413
|
+
}
|
|
5414
|
+
.E_tecdsj7 .column-value {
|
|
5415
|
+
color: #FFFFFF;
|
|
5416
|
+
margin-left: 8px;
|
|
5417
|
+
}
|
|
5418
|
+
|
|
5419
|
+
.E_ljhvvia {
|
|
5420
|
+
display: inline-block;
|
|
5421
|
+
height: 8px;
|
|
5422
|
+
width: 8px;
|
|
5423
|
+
margin-right: 8px;
|
|
5424
|
+
border-radius: 2px;
|
|
5425
|
+
}
|
|
5426
|
+
.E_ljhvvia.borderd {
|
|
5427
|
+
border: 1px solid #fff;
|
|
5428
|
+
}
|
|
5429
|
+
|
|
5430
|
+
.E_t1tbywr9 {
|
|
5431
|
+
width: 100%;
|
|
5432
|
+
flex: 1;
|
|
5433
|
+
display: flex;
|
|
5434
|
+
flex-direction: column;
|
|
5435
|
+
}
|
|
5436
|
+
.E_t1tbywr9.medium .tab-bar {
|
|
5437
|
+
height: 32px;
|
|
5438
|
+
}
|
|
5439
|
+
.E_t1tbywr9.medium .tab-bar .common-tab-bar {
|
|
5440
|
+
height: 32px;
|
|
5441
|
+
}
|
|
5442
|
+
.E_t1tbywr9.medium .tab-bar .common-tab-bar .tab-item-title {
|
|
5443
|
+
height: 32px;
|
|
5444
|
+
border-top-left-radius: 6px;
|
|
5445
|
+
border-top-right-radius: 6px;
|
|
5446
|
+
padding-right: 16px;
|
|
5447
|
+
padding-left: 16px;
|
|
5448
|
+
font-size: 16px;
|
|
5449
|
+
}
|
|
5450
|
+
.E_t1tbywr9.small .tab-bar {
|
|
5451
|
+
height: 24px;
|
|
5452
|
+
}
|
|
5453
|
+
.E_t1tbywr9.small .tab-bar .common-tab-bar {
|
|
5454
|
+
height: 24px;
|
|
5455
|
+
}
|
|
5456
|
+
.E_t1tbywr9.small .tab-bar .common-tab-bar .tab-item-title {
|
|
5457
|
+
height: 24px;
|
|
5458
|
+
border-top-left-radius: 4px;
|
|
5459
|
+
border-top-right-radius: 4px;
|
|
5460
|
+
padding-right: 12px;
|
|
5461
|
+
padding-left: 12px;
|
|
5462
|
+
font-size: 14px;
|
|
5463
|
+
}
|
|
5464
|
+
.E_t1tbywr9 .tab-bar {
|
|
5465
|
+
max-width: 100%;
|
|
5466
|
+
display: flex;
|
|
5467
|
+
place-items: center;
|
|
5468
|
+
border-bottom: 1px solid rgba(211, 218, 235, 0.6);
|
|
5469
|
+
}
|
|
5470
|
+
.E_t1tbywr9 .tab-bar .common-tab-bar {
|
|
5471
|
+
overflow: hidden;
|
|
5472
|
+
display: flex;
|
|
5473
|
+
place-items: center;
|
|
5474
|
+
}
|
|
5475
|
+
.E_t1tbywr9 .tab-bar .common-tab-bar .tab-item-title:first-child:not(.__selected):not(:hover) {
|
|
5476
|
+
padding-left: 0px;
|
|
5477
|
+
}
|
|
5478
|
+
.E_t1tbywr9 .tab-bar .common-tab-bar + .tab-item-title {
|
|
5479
|
+
margin-left: 12px;
|
|
5480
|
+
position: relative;
|
|
5481
|
+
}
|
|
5482
|
+
.E_t1tbywr9 .tab-bar .common-tab-bar + .tab-item-title::before {
|
|
5483
|
+
content: "";
|
|
5484
|
+
width: 1px;
|
|
5485
|
+
height: 24px;
|
|
5486
|
+
background: rgba(172, 186, 211, 0.6);
|
|
5487
|
+
position: absolute;
|
|
5488
|
+
left: -6px;
|
|
5489
|
+
top: 50%;
|
|
5490
|
+
transform: translateY(-50%);
|
|
5491
|
+
}
|
|
5492
|
+
.E_t1tbywr9 .tab-bar .tab-item-title {
|
|
5493
|
+
flex-shrink: 0;
|
|
5494
|
+
display: flex;
|
|
5495
|
+
place-items: center;
|
|
5496
|
+
cursor: pointer;
|
|
5497
|
+
color: rgba(44, 56, 82, 0.75);
|
|
5498
|
+
transition: color 100ms ease-out, background-color 100ms ease-out, padding-left 320ms ease 80ms;
|
|
5499
|
+
}
|
|
5500
|
+
.E_t1tbywr9 .tab-bar .tab-item-title:hover {
|
|
5501
|
+
padding-left: 16px;
|
|
5502
|
+
color: #0080ff;
|
|
5503
|
+
background: rgba(0, 136, 255, 0.1607843137);
|
|
5504
|
+
}
|
|
5505
|
+
.E_t1tbywr9 .tab-bar .tab-item-title + .tab-item-title {
|
|
5506
|
+
margin-left: 2px;
|
|
5507
|
+
}
|
|
5508
|
+
.E_t1tbywr9 .tab-bar .tab-item-title.more:not(.__selected) {
|
|
5509
|
+
width: 16px;
|
|
5510
|
+
height: 16px;
|
|
5511
|
+
padding: 0;
|
|
5512
|
+
border-radius: 2px;
|
|
5513
|
+
margin-left: 8px;
|
|
5514
|
+
}
|
|
5515
|
+
.E_t1tbywr9 .tab-bar .tab-item-title.more.__selected.tab-title-text {
|
|
5516
|
+
margin-left: 8px;
|
|
5517
|
+
}
|
|
5518
|
+
.E_t1tbywr9 .tab-bar .tab-item-title.__selected {
|
|
5519
|
+
padding-left: 16px;
|
|
5520
|
+
background: rgba(0, 136, 255, 0.1);
|
|
5521
|
+
color: #0080ff;
|
|
5522
|
+
}
|
|
5523
|
+
.E_t1tbywr9 .tab-bar .tab-item-title.__hidden {
|
|
5524
|
+
display: none;
|
|
5525
|
+
}
|
|
5526
|
+
|
|
5527
|
+
.E_ti12z2.ant-dropdown-open {
|
|
5528
|
+
color: #0080ff;
|
|
5529
|
+
background: rgba(211, 218, 235, 0.6);
|
|
5530
|
+
}
|
|
5531
|
+
|
|
5532
|
+
.E_m19lu3v {
|
|
5533
|
+
cursor: default;
|
|
5534
|
+
}
|
|
5535
|
+
.E_m19lu3v .menu-wrapper {
|
|
5536
|
+
min-width: 160px;
|
|
5537
|
+
max-width: 400px;
|
|
5538
|
+
padding: 6px;
|
|
5539
|
+
background: #fff;
|
|
5540
|
+
box-shadow: 0px 0px 10px rgba(107, 125, 153, 0.18), 0px 12px 40px rgba(45, 58, 86, 0.3);
|
|
5541
|
+
border-radius: 8px;
|
|
5542
|
+
max-height: calc(100vh - 250px);
|
|
5543
|
+
overflow: auto;
|
|
5544
|
+
}
|
|
5545
|
+
.E_m19lu3v .menu-wrapper .tab-menu-item {
|
|
5546
|
+
display: flex;
|
|
5547
|
+
place-items: center;
|
|
5548
|
+
width: var(--itemWidth);
|
|
5549
|
+
}
|
|
5550
|
+
.E_m19lu3v .menu-wrapper .tab-menu-item + .tab-menu-item {
|
|
5551
|
+
margin-top: 8px;
|
|
5552
|
+
}
|
|
5553
|
+
.E_m19lu3v .menu-wrapper .tab-menu-item.__selected {
|
|
5554
|
+
padding: 6px;
|
|
5555
|
+
background: rgba(0, 136, 255, 0.1);
|
|
5556
|
+
color: #0080ff;
|
|
5557
|
+
}
|
|
5558
|
+
.E_m19lu3v .menu-wrapper .tab-menu-item.__selectedE_l1fbkbzo {
|
|
5559
|
+
font-family: Inter;
|
|
5560
|
+
font-style: normal;
|
|
5561
|
+
font-weight: bold !important;
|
|
5562
|
+
}
|
|
5563
|
+
.E_m19lu3v .menu-wrapper .tab-menu-item.ant-dropdown-menu-item {
|
|
5564
|
+
padding: 5px 12px;
|
|
5565
|
+
border-radius: 4px;
|
|
5566
|
+
}
|
|
5567
|
+
.E_m19lu3v .menu-wrapper .tab-menu-item.ant-dropdown-menu-item:not(.ant-dropdown-menu-item-disabled):hover {
|
|
5568
|
+
color: #0080ff;
|
|
5569
|
+
background: rgba(211, 218, 235, 0.6);
|
|
5570
|
+
}
|
|
5571
|
+
.E_m19lu3v .menu-wrapper .tab-menu-item-text {
|
|
5572
|
+
text-align: left;
|
|
5573
|
+
flex: 1;
|
|
5574
|
+
overflow: hidden;
|
|
5575
|
+
text-overflow: ellipsis;
|
|
5576
|
+
white-space: nowrap;
|
|
5577
|
+
}
|
|
5578
|
+
|
|
5579
|
+
.E_i1bmwe2m {
|
|
5580
|
+
margin: auto;
|
|
5604
5581
|
cursor: pointer;
|
|
5582
|
+
line-height: normal;
|
|
5583
|
+
height: 16px;
|
|
5584
|
+
margin-right: 3px;
|
|
5605
5585
|
}
|
|
5606
|
-
.
|
|
5607
|
-
|
|
5586
|
+
.E_i1bmwe2m .icon-inner {
|
|
5587
|
+
display: block;
|
|
5588
|
+
height: 16px;
|
|
5608
5589
|
}
|
|
5609
|
-
|
|
5610
|
-
|
|
5611
|
-
|
|
5612
|
-
padding: 0 8px;
|
|
5613
|
-
font-size: 12px;
|
|
5614
|
-
color: #fff;
|
|
5615
|
-
transform: translateX(-50%);
|
|
5590
|
+
|
|
5591
|
+
.E_b14q2gmw {
|
|
5592
|
+
box-shadow: 0px 0.119595px 0.438513px rgba(129, 138, 153, 0.14), 0px 0.271728px 0.996336px rgba(129, 138, 153, 0.106447), 0px 0.472931px 1.73408px rgba(129, 138, 153, 0.0912224), 0px 0.751293px 2.75474px rgba(129, 138, 153, 0.0799253), 0px 1.15919px 4.25036px rgba(129, 138, 153, 0.07), 0px 1.80882px 6.63236px rgba(129, 138, 153, 0.0600747), 0px 3.00293px 11.0107px rgba(129, 138, 153, 0.0487776), 0px 6px 22px rgba(129, 138, 153, 0.0335534);
|
|
5616
5593
|
}
|
|
5617
5594
|
|
|
5618
|
-
.
|
|
5619
|
-
|
|
5620
|
-
background-color:
|
|
5621
|
-
|
|
5622
|
-
|
|
5623
|
-
|
|
5595
|
+
.E_c1eym6el {
|
|
5596
|
+
border-radius: 8px;
|
|
5597
|
+
background-color: white;
|
|
5598
|
+
}
|
|
5599
|
+
.E_c1eym6el.hoverable {
|
|
5600
|
+
cursor: pointer;
|
|
5601
|
+
}
|
|
5602
|
+
.E_c1eym6el.hoverable:hover {
|
|
5603
|
+
transition: all 200ms ease;
|
|
5604
|
+
box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
|
|
5605
|
+
transform: translateY(-4px);
|
|
5624
5606
|
}
|
|
5625
5607
|
|
|
5626
|
-
.
|
|
5608
|
+
.E_lht19u8 {
|
|
5609
|
+
width: 64px;
|
|
5610
|
+
height: 64px;
|
|
5627
5611
|
display: flex;
|
|
5628
5612
|
align-items: center;
|
|
5629
|
-
|
|
5630
|
-
|
|
5631
|
-
|
|
5632
|
-
font-size: 12px;
|
|
5633
|
-
padding-top: 6px;
|
|
5634
|
-
}
|
|
5635
|
-
.E_tecdsj7:first-child {
|
|
5636
|
-
padding-top: 3px;
|
|
5637
|
-
}
|
|
5638
|
-
.E_tecdsj7:last-child {
|
|
5639
|
-
padding-bottom: 3px;
|
|
5613
|
+
justify-content: center;
|
|
5614
|
+
position: relative;
|
|
5615
|
+
opacity: 0.2;
|
|
5640
5616
|
}
|
|
5641
|
-
|
|
5642
|
-
|
|
5643
|
-
|
|
5617
|
+
|
|
5618
|
+
.E_lk3gkp4 {
|
|
5619
|
+
position: absolute;
|
|
5620
|
+
width: 5px;
|
|
5621
|
+
height: 48px;
|
|
5622
|
+
left: 9.33px;
|
|
5623
|
+
top: 40.5px;
|
|
5624
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
5625
|
+
border-radius: 5px;
|
|
5626
|
+
transform: rotate(-128deg);
|
|
5627
|
+
transform-origin: top left;
|
|
5628
|
+
animation: loading-indicator1 1100ms ease-out infinite;
|
|
5644
5629
|
}
|
|
5645
5630
|
|
|
5646
|
-
.
|
|
5647
|
-
|
|
5648
|
-
|
|
5649
|
-
|
|
5650
|
-
|
|
5651
|
-
|
|
5631
|
+
.E_ll4n94n {
|
|
5632
|
+
position: absolute;
|
|
5633
|
+
width: 5px;
|
|
5634
|
+
height: 48px;
|
|
5635
|
+
left: 40.8px;
|
|
5636
|
+
top: 8.4px;
|
|
5637
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
5638
|
+
border-radius: 5px;
|
|
5639
|
+
transform: rotate(-8deg);
|
|
5640
|
+
transform-origin: top left;
|
|
5641
|
+
animation: loading-indicator2 1100ms ease-out infinite;
|
|
5652
5642
|
}
|
|
5653
|
-
|
|
5654
|
-
|
|
5643
|
+
|
|
5644
|
+
.E_l17lbdo6 {
|
|
5645
|
+
position: absolute;
|
|
5646
|
+
width: 5px;
|
|
5647
|
+
height: 48px;
|
|
5648
|
+
left: 52.9px;
|
|
5649
|
+
top: 51.8px;
|
|
5650
|
+
background: linear-gradient(180deg, #0080ff 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
5651
|
+
border-radius: 5px;
|
|
5652
|
+
transform: rotate(112deg);
|
|
5653
|
+
transform-origin: top left;
|
|
5654
|
+
animation: loading-indicator3 1100ms ease-out infinite;
|
|
5655
5655
|
}
|
|
5656
5656
|
|
|
5657
5657
|
.E_msn7nxt {
|
|
@@ -5815,15 +5815,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
5815
5815
|
margin-left: 8px;
|
|
5816
5816
|
}
|
|
5817
5817
|
|
|
5818
|
-
.E_w7ob4th.outside-tag {
|
|
5819
|
-
padding-left: 0;
|
|
5820
|
-
}
|
|
5821
|
-
.E_w7ob4th.outside-tag .inside-tag {
|
|
5822
|
-
border-radius: 4px 0 0 4px;
|
|
5823
|
-
padding-right: 4px;
|
|
5824
|
-
margin-right: 4px;
|
|
5825
|
-
}
|
|
5826
|
-
|
|
5827
5818
|
.E_sjob3jg {
|
|
5828
5819
|
--item-min-width: 60px;
|
|
5829
5820
|
}
|
|
@@ -6019,60 +6010,13 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
6019
6010
|
justify-content: center;
|
|
6020
6011
|
}
|
|
6021
6012
|
|
|
6022
|
-
.
|
|
6023
|
-
|
|
6024
|
-
display: flex;
|
|
6025
|
-
gap: 8px;
|
|
6026
|
-
padding: 8px 0;
|
|
6027
|
-
display: flex;
|
|
6028
|
-
justify-content: center;
|
|
6029
|
-
white-space: pre-wrap;
|
|
6030
|
-
align-items: center;
|
|
6031
|
-
}
|
|
6032
|
-
.E_bpgac8u .dashed-btn {
|
|
6033
|
-
border-bottom: 1px solid white;
|
|
6034
|
-
cursor: pointer;
|
|
6035
|
-
}
|
|
6036
|
-
|
|
6037
|
-
.E_envn4g3 {
|
|
6038
|
-
background: #F0483E;
|
|
6039
|
-
}
|
|
6040
|
-
|
|
6041
|
-
.E_i12w18eu {
|
|
6042
|
-
background: #0080FF;
|
|
6043
|
-
}
|
|
6044
|
-
|
|
6045
|
-
.E_wujsnt4 {
|
|
6046
|
-
background-color: #E07F00;
|
|
6047
|
-
}
|
|
6048
|
-
|
|
6049
|
-
.E_slr2ynn {
|
|
6050
|
-
padding: 0 8px;
|
|
6051
|
-
height: 18px;
|
|
6052
|
-
}
|
|
6053
|
-
|
|
6054
|
-
.E_m140wbb6 {
|
|
6055
|
-
padding: 2px 8px;
|
|
6056
|
-
height: 24px;
|
|
6057
|
-
}
|
|
6058
|
-
|
|
6059
|
-
.E_t1fozc1i {
|
|
6060
|
-
margin: 0;
|
|
6013
|
+
.E_w7ob4th.outside-tag {
|
|
6014
|
+
padding-left: 0;
|
|
6061
6015
|
}
|
|
6062
|
-
|
|
6063
|
-
|
|
6016
|
+
.E_w7ob4th.outside-tag .inside-tag {
|
|
6017
|
+
border-radius: 4px 0 0 4px;
|
|
6018
|
+
padding-right: 4px;
|
|
6064
6019
|
margin-right: 4px;
|
|
6065
|
-
height: 16px;
|
|
6066
|
-
}
|
|
6067
|
-
|
|
6068
|
-
.E_n1afl31m.ant-tag.ant-tag-gray {
|
|
6069
|
-
font-weight: 700;
|
|
6070
|
-
color: #00122e;
|
|
6071
|
-
background-color: rgba(237, 241, 250, 0.6);
|
|
6072
|
-
border: 1px solid rgba(211, 218, 235, 0.6);
|
|
6073
|
-
word-break: break-all;
|
|
6074
|
-
display: inline;
|
|
6075
|
-
white-space: normal;
|
|
6076
6020
|
}
|
|
6077
6021
|
|
|
6078
6022
|
.E_t1dtlqs1 {
|
|
@@ -6271,6 +6215,35 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
6271
6215
|
margin-right: 8px;
|
|
6272
6216
|
}
|
|
6273
6217
|
|
|
6218
|
+
.E_slr2ynn {
|
|
6219
|
+
padding: 0 8px;
|
|
6220
|
+
height: 18px;
|
|
6221
|
+
}
|
|
6222
|
+
|
|
6223
|
+
.E_m140wbb6 {
|
|
6224
|
+
padding: 2px 8px;
|
|
6225
|
+
height: 24px;
|
|
6226
|
+
}
|
|
6227
|
+
|
|
6228
|
+
.E_t1fozc1i {
|
|
6229
|
+
margin: 0;
|
|
6230
|
+
}
|
|
6231
|
+
|
|
6232
|
+
.E_i1vxv4ln {
|
|
6233
|
+
margin-right: 4px;
|
|
6234
|
+
height: 16px;
|
|
6235
|
+
}
|
|
6236
|
+
|
|
6237
|
+
.E_n1afl31m.ant-tag.ant-tag-gray {
|
|
6238
|
+
font-weight: 700;
|
|
6239
|
+
color: #00122e;
|
|
6240
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
6241
|
+
border: 1px solid rgba(211, 218, 235, 0.6);
|
|
6242
|
+
word-break: break-all;
|
|
6243
|
+
display: inline;
|
|
6244
|
+
white-space: normal;
|
|
6245
|
+
}
|
|
6246
|
+
|
|
6274
6247
|
.E_i1g85yz3 {
|
|
6275
6248
|
margin-right: 4px;
|
|
6276
6249
|
height: 16px;
|
|
@@ -6306,56 +6279,35 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
6306
6279
|
background: rgba(163, 180, 204, 0.18);
|
|
6307
6280
|
}
|
|
6308
6281
|
|
|
6309
|
-
.
|
|
6310
|
-
color: #
|
|
6311
|
-
|
|
6312
|
-
|
|
6313
|
-
|
|
6314
|
-
|
|
6315
|
-
|
|
6316
|
-
|
|
6317
|
-
|
|
6318
|
-
.E_t59qhqp .ant-timeline-item {
|
|
6319
|
-
margin-bottom: 16px;
|
|
6320
|
-
padding-bottom: 0px;
|
|
6321
|
-
}
|
|
6322
|
-
.E_t59qhqp .ant-timeline-item-last,
|
|
6323
|
-
.E_t59qhqp .compact.ant-timeline-item-last {
|
|
6324
|
-
margin-bottom: 0;
|
|
6325
|
-
}
|
|
6326
|
-
.E_t59qhqp .compact.ant-timeline-item {
|
|
6327
|
-
margin-bottom: 12px;
|
|
6282
|
+
.E_bpgac8u {
|
|
6283
|
+
color: #FFFFFF;
|
|
6284
|
+
display: flex;
|
|
6285
|
+
gap: 8px;
|
|
6286
|
+
padding: 8px 0;
|
|
6287
|
+
display: flex;
|
|
6288
|
+
justify-content: center;
|
|
6289
|
+
white-space: pre-wrap;
|
|
6290
|
+
align-items: center;
|
|
6328
6291
|
}
|
|
6329
|
-
.
|
|
6330
|
-
|
|
6292
|
+
.E_bpgac8u .dashed-btn {
|
|
6293
|
+
border-bottom: 1px solid white;
|
|
6294
|
+
cursor: pointer;
|
|
6331
6295
|
}
|
|
6332
6296
|
|
|
6333
|
-
.
|
|
6334
|
-
|
|
6335
|
-
}
|
|
6336
|
-
.E_t2e44lg .item-time {
|
|
6337
|
-
display: flex;
|
|
6338
|
-
flex-direction: column;
|
|
6339
|
-
gap: 4px;
|
|
6340
|
-
margin-top: 4px;
|
|
6341
|
-
}
|
|
6342
|
-
.E_t2e44lg:last-child .ant-timeline-item-content {
|
|
6343
|
-
padding-bottom: 0;
|
|
6297
|
+
.E_envn4g3 {
|
|
6298
|
+
background: #F0483E;
|
|
6344
6299
|
}
|
|
6345
6300
|
|
|
6346
|
-
.
|
|
6347
|
-
|
|
6348
|
-
flex-direction: column;
|
|
6349
|
-
align-items: center;
|
|
6350
|
-
justify-content: center;
|
|
6301
|
+
.E_i12w18eu {
|
|
6302
|
+
background: #0080FF;
|
|
6351
6303
|
}
|
|
6352
6304
|
|
|
6353
|
-
.
|
|
6354
|
-
color:
|
|
6305
|
+
.E_wujsnt4 {
|
|
6306
|
+
background-color: #E07F00;
|
|
6355
6307
|
}
|
|
6356
6308
|
|
|
6357
|
-
.
|
|
6358
|
-
color: #
|
|
6309
|
+
.E_b1jaupqb {
|
|
6310
|
+
color: #F0483E;
|
|
6359
6311
|
}
|
|
6360
6312
|
|
|
6361
6313
|
.E_icab5o7 {
|
|
@@ -6555,6 +6507,54 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
6555
6507
|
font-weight: bold;
|
|
6556
6508
|
}
|
|
6557
6509
|
|
|
6510
|
+
.E_t59qhqp {
|
|
6511
|
+
padding: 0px;
|
|
6512
|
+
padding-top: 5px;
|
|
6513
|
+
padding-left: 5px;
|
|
6514
|
+
}
|
|
6515
|
+
.E_t59qhqp .ant-timeline-item {
|
|
6516
|
+
margin-bottom: 16px;
|
|
6517
|
+
padding-bottom: 0px;
|
|
6518
|
+
}
|
|
6519
|
+
.E_t59qhqp .ant-timeline-item-last,
|
|
6520
|
+
.E_t59qhqp .compact.ant-timeline-item-last {
|
|
6521
|
+
margin-bottom: 0;
|
|
6522
|
+
}
|
|
6523
|
+
.E_t59qhqp .compact.ant-timeline-item {
|
|
6524
|
+
margin-bottom: 12px;
|
|
6525
|
+
}
|
|
6526
|
+
.E_t59qhqp .info-action {
|
|
6527
|
+
align-self: baseline;
|
|
6528
|
+
}
|
|
6529
|
+
|
|
6530
|
+
.E_t2e44lg .ant-timeline-item-content {
|
|
6531
|
+
margin-left: 18px;
|
|
6532
|
+
}
|
|
6533
|
+
.E_t2e44lg .item-time {
|
|
6534
|
+
display: flex;
|
|
6535
|
+
flex-direction: column;
|
|
6536
|
+
gap: 4px;
|
|
6537
|
+
margin-top: 4px;
|
|
6538
|
+
}
|
|
6539
|
+
.E_t2e44lg:last-child .ant-timeline-item-content {
|
|
6540
|
+
padding-bottom: 0;
|
|
6541
|
+
}
|
|
6542
|
+
|
|
6543
|
+
.E_e14ua30y {
|
|
6544
|
+
display: flex;
|
|
6545
|
+
flex-direction: column;
|
|
6546
|
+
align-items: center;
|
|
6547
|
+
justify-content: center;
|
|
6548
|
+
}
|
|
6549
|
+
|
|
6550
|
+
.E_s1ikqzph {
|
|
6551
|
+
color: rgba(44, 56, 82, 0.7490196078);
|
|
6552
|
+
}
|
|
6553
|
+
|
|
6554
|
+
.E_i15astnl {
|
|
6555
|
+
color: #00122E;
|
|
6556
|
+
}
|
|
6557
|
+
|
|
6558
6558
|
.E_dxyv8bv {
|
|
6559
6559
|
--footer-height: 80px;
|
|
6560
6560
|
--modal-content-width: 492px;
|
|
@@ -6811,15 +6811,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
6811
6811
|
color: #fff;
|
|
6812
6812
|
}
|
|
6813
6813
|
|
|
6814
|
-
.E_a9y3flr {
|
|
6815
|
-
margin-left: 8px;
|
|
6816
|
-
}
|
|
6817
|
-
|
|
6818
|
-
.E_a1njc627 {
|
|
6819
|
-
font-size: 12px;
|
|
6820
|
-
color: #00122e;
|
|
6821
|
-
}
|
|
6822
|
-
|
|
6823
6814
|
.E_f16blduf.ant-form-item {
|
|
6824
6815
|
margin-bottom: 0;
|
|
6825
6816
|
}
|
|
@@ -6839,6 +6830,15 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
6839
6830
|
display: block;
|
|
6840
6831
|
}
|
|
6841
6832
|
|
|
6833
|
+
.E_a9y3flr {
|
|
6834
|
+
margin-left: 8px;
|
|
6835
|
+
}
|
|
6836
|
+
|
|
6837
|
+
.E_a1njc627 {
|
|
6838
|
+
font-size: 12px;
|
|
6839
|
+
color: #00122e;
|
|
6840
|
+
}
|
|
6841
|
+
|
|
6842
6842
|
.E_d1u4ndxc {
|
|
6843
6843
|
color: rgba(44, 56, 82, 0.7490196078);
|
|
6844
6844
|
font-size: 12px;
|
|
@@ -6895,71 +6895,54 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
6895
6895
|
margin-left: 1px;
|
|
6896
6896
|
}
|
|
6897
6897
|
|
|
6898
|
-
.
|
|
6899
|
-
display:
|
|
6900
|
-
|
|
6901
|
-
justify-content: space-between;
|
|
6902
|
-
background: #edf0f7;
|
|
6903
|
-
padding: 8px 12px;
|
|
6904
|
-
position: sticky;
|
|
6905
|
-
top: 0;
|
|
6906
|
-
z-index: 1;
|
|
6907
|
-
margin-bottom: -52px;
|
|
6898
|
+
.E_c18bcrac {
|
|
6899
|
+
display: inline-block;
|
|
6900
|
+
width: 100%;
|
|
6908
6901
|
}
|
|
6909
|
-
.
|
|
6910
|
-
|
|
6911
|
-
align-items: center;
|
|
6912
|
-
font-weight: 700;
|
|
6913
|
-
flex-shrink: 0;
|
|
6902
|
+
.E_c18bcrac .recharts-wrapper {
|
|
6903
|
+
margin-left: 4px;
|
|
6914
6904
|
}
|
|
6915
|
-
|
|
6916
|
-
|
|
6917
|
-
|
|
6918
|
-
width: 32px;
|
|
6919
|
-
height: 32px;
|
|
6920
|
-
border-radius: 50%;
|
|
6921
|
-
justify-content: center;
|
|
6905
|
+
|
|
6906
|
+
.E_cro7kg2 {
|
|
6907
|
+
padding: 4px;
|
|
6922
6908
|
}
|
|
6923
|
-
.
|
|
6924
|
-
|
|
6909
|
+
.E_cro7kg2 .unit {
|
|
6910
|
+
color: white;
|
|
6925
6911
|
}
|
|
6926
|
-
|
|
6927
|
-
|
|
6928
|
-
|
|
6912
|
+
|
|
6913
|
+
.E_c14wcxf0 {
|
|
6914
|
+
display: flex;
|
|
6915
|
+
justify-content: space-between;
|
|
6916
|
+
align-items: center;
|
|
6917
|
+
font-size: 13px;
|
|
6918
|
+
line-height: 24px;
|
|
6919
|
+
color: #cccccc;
|
|
6929
6920
|
white-space: nowrap;
|
|
6930
|
-
text-align: right;
|
|
6931
|
-
position: relative;
|
|
6932
|
-
padding: 4px 0;
|
|
6933
|
-
margin-top: -4px;
|
|
6934
|
-
overflow: hidden;
|
|
6935
|
-
}
|
|
6936
|
-
.E_s1ebs0ra .action-group .sub-menu-delete {
|
|
6937
|
-
transform: translateY(-4px);
|
|
6938
|
-
}
|
|
6939
|
-
.E_s1ebs0ra .action-group button {
|
|
6940
|
-
border: none;
|
|
6941
|
-
}
|
|
6942
|
-
.E_s1ebs0ra .action-group > *:not(:last-child) {
|
|
6943
|
-
margin-right: 8px;
|
|
6944
6921
|
}
|
|
6945
|
-
.
|
|
6946
|
-
margin-right:
|
|
6922
|
+
.E_c14wcxf0 label {
|
|
6923
|
+
margin-right: 32px;
|
|
6947
6924
|
}
|
|
6948
|
-
|
|
6949
|
-
|
|
6950
|
-
|
|
6951
|
-
|
|
6952
|
-
justify-content: center;
|
|
6953
|
-
border-radius: 50%;
|
|
6925
|
+
|
|
6926
|
+
.E_coy29mj.E_c14wcxf0 {
|
|
6927
|
+
font-weight: bold;
|
|
6928
|
+
color: white;
|
|
6954
6929
|
}
|
|
6955
|
-
|
|
6956
|
-
|
|
6930
|
+
|
|
6931
|
+
.E_s11212zy {
|
|
6932
|
+
width: 8px;
|
|
6933
|
+
height: 8px;
|
|
6934
|
+
border-radius: 2px;
|
|
6935
|
+
display: inline-block;
|
|
6936
|
+
background: var(--s11212zy-0);
|
|
6937
|
+
border: 1px solid #fff;
|
|
6938
|
+
box-sizing: content-box;
|
|
6939
|
+
margin-right: 6px;
|
|
6957
6940
|
}
|
|
6958
6941
|
|
|
6959
|
-
.
|
|
6960
|
-
|
|
6961
|
-
|
|
6962
|
-
|
|
6942
|
+
.E_p1lyky6c > :first-child {
|
|
6943
|
+
font-weight: bold;
|
|
6944
|
+
color: white;
|
|
6945
|
+
margin-right: 4px;
|
|
6963
6946
|
}
|
|
6964
6947
|
|
|
6965
6948
|
.E_clm1wy1 {
|
|
@@ -7055,55 +7038,72 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
7055
7038
|
border-radius: 2px;
|
|
7056
7039
|
}
|
|
7057
7040
|
|
|
7058
|
-
.
|
|
7059
|
-
display:
|
|
7060
|
-
|
|
7041
|
+
.E_s1ebs0ra {
|
|
7042
|
+
display: flex;
|
|
7043
|
+
align-items: center;
|
|
7044
|
+
justify-content: space-between;
|
|
7045
|
+
background: #edf0f7;
|
|
7046
|
+
padding: 8px 12px;
|
|
7047
|
+
position: sticky;
|
|
7048
|
+
top: 0;
|
|
7049
|
+
z-index: 1;
|
|
7050
|
+
margin-bottom: -52px;
|
|
7061
7051
|
}
|
|
7062
|
-
.
|
|
7063
|
-
|
|
7052
|
+
.E_s1ebs0ra .select-total {
|
|
7053
|
+
display: flex;
|
|
7054
|
+
align-items: center;
|
|
7055
|
+
font-weight: 700;
|
|
7056
|
+
flex-shrink: 0;
|
|
7064
7057
|
}
|
|
7065
|
-
|
|
7066
|
-
|
|
7067
|
-
|
|
7058
|
+
.E_s1ebs0ra .select-total .icon-wrapper {
|
|
7059
|
+
cursor: pointer;
|
|
7060
|
+
margin-left: 8px;
|
|
7061
|
+
width: 32px;
|
|
7062
|
+
height: 32px;
|
|
7063
|
+
border-radius: 50%;
|
|
7064
|
+
justify-content: center;
|
|
7068
7065
|
}
|
|
7069
|
-
.
|
|
7070
|
-
|
|
7066
|
+
.E_s1ebs0ra .select-total .icon-wrapper:hover {
|
|
7067
|
+
background: rgba(225, 230, 241, 0.6);
|
|
7071
7068
|
}
|
|
7072
|
-
|
|
7073
|
-
|
|
7074
|
-
|
|
7075
|
-
justify-content: space-between;
|
|
7076
|
-
align-items: center;
|
|
7077
|
-
font-size: 13px;
|
|
7078
|
-
line-height: 24px;
|
|
7079
|
-
color: #cccccc;
|
|
7069
|
+
.E_s1ebs0ra .action-group {
|
|
7070
|
+
flex: 1;
|
|
7071
|
+
margin-left: 88px;
|
|
7080
7072
|
white-space: nowrap;
|
|
7073
|
+
text-align: right;
|
|
7074
|
+
position: relative;
|
|
7075
|
+
padding: 4px 0;
|
|
7076
|
+
margin-top: -4px;
|
|
7077
|
+
overflow: hidden;
|
|
7081
7078
|
}
|
|
7082
|
-
.
|
|
7083
|
-
|
|
7079
|
+
.E_s1ebs0ra .action-group .sub-menu-delete {
|
|
7080
|
+
transform: translateY(-4px);
|
|
7084
7081
|
}
|
|
7085
|
-
|
|
7086
|
-
|
|
7087
|
-
font-weight: bold;
|
|
7088
|
-
color: white;
|
|
7082
|
+
.E_s1ebs0ra .action-group button {
|
|
7083
|
+
border: none;
|
|
7089
7084
|
}
|
|
7090
|
-
|
|
7091
|
-
|
|
7092
|
-
width: 8px;
|
|
7093
|
-
height: 8px;
|
|
7094
|
-
border-radius: 2px;
|
|
7095
|
-
display: inline-block;
|
|
7096
|
-
background: var(--s11212zy-0);
|
|
7097
|
-
border: 1px solid #fff;
|
|
7098
|
-
box-sizing: content-box;
|
|
7099
|
-
margin-right: 6px;
|
|
7085
|
+
.E_s1ebs0ra .action-group > *:not(:last-child) {
|
|
7086
|
+
margin-right: 8px;
|
|
7100
7087
|
}
|
|
7101
|
-
|
|
7102
|
-
.E_p1lyky6c > :first-child {
|
|
7103
|
-
font-weight: bold;
|
|
7104
|
-
color: white;
|
|
7088
|
+
.E_s1ebs0ra .action-group > button:last-child {
|
|
7105
7089
|
margin-right: 4px;
|
|
7106
7090
|
}
|
|
7091
|
+
.E_s1ebs0ra .action-group .more-btn {
|
|
7092
|
+
cursor: pointer;
|
|
7093
|
+
width: 32px;
|
|
7094
|
+
height: 32px;
|
|
7095
|
+
justify-content: center;
|
|
7096
|
+
border-radius: 50%;
|
|
7097
|
+
}
|
|
7098
|
+
.E_s1ebs0ra .action-group .more-btn:hover {
|
|
7099
|
+
background: #fff;
|
|
7100
|
+
}
|
|
7101
|
+
|
|
7102
|
+
.E_mzzncgx {
|
|
7103
|
+
display: inline-flex;
|
|
7104
|
+
align-items: center;
|
|
7105
|
+
gap: 4px;
|
|
7106
|
+
}
|
|
7107
7107
|
|
|
7108
7108
|
.E_c1up1pdz {
|
|
7109
7109
|
width: 648px;
|
|
@@ -7255,6 +7255,10 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
7255
7255
|
color: #0080ff;
|
|
7256
7256
|
}
|
|
7257
7257
|
|
|
7258
|
+
span.E_tqjc4ui {
|
|
7259
|
+
margin: 0 2px;
|
|
7260
|
+
}
|
|
7261
|
+
|
|
7258
7262
|
.E_n12mqh7z {
|
|
7259
7263
|
display: flex;
|
|
7260
7264
|
align-items: center;
|
|
@@ -7274,242 +7278,144 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
7274
7278
|
overflow: auto;
|
|
7275
7279
|
}
|
|
7276
7280
|
|
|
7277
|
-
|
|
7278
|
-
|
|
7281
|
+
.E_ou7iq30 {
|
|
7282
|
+
overflow: hidden;
|
|
7283
|
+
text-overflow: ellipsis;
|
|
7279
7284
|
}
|
|
7280
7285
|
|
|
7281
|
-
.
|
|
7282
|
-
|
|
7283
|
-
flex-direction: column;
|
|
7284
|
-
flex: 1;
|
|
7285
|
-
/* FIXME:(yanzhen) do this better */
|
|
7286
|
-
}
|
|
7287
|
-
.E_t160l1cm .tab-bar {
|
|
7288
|
-
flex-shrink: 0;
|
|
7289
|
-
display: flex;
|
|
7290
|
-
border-bottom: 1px solid rgba(172, 186, 211, 0.6);
|
|
7291
|
-
}
|
|
7292
|
-
.E_t160l1cm .tab-content {
|
|
7293
|
-
height: 100%;
|
|
7294
|
-
}
|
|
7295
|
-
.E_t160l1cm .tab-menu-item {
|
|
7296
|
-
margin-right: 2px;
|
|
7297
|
-
padding: 1px 12px;
|
|
7298
|
-
line-height: 24px;
|
|
7299
|
-
height: 24px;
|
|
7300
|
-
color: rgba(44, 56, 82, 0.6);
|
|
7301
|
-
border-radius: 4px 4px 0 0;
|
|
7302
|
-
cursor: pointer;
|
|
7303
|
-
transition: color 100ms ease-out, background-color 100ms ease-out, padding-left 320ms ease 80ms;
|
|
7304
|
-
}
|
|
7305
|
-
.E_t160l1cm .tab-menu-item:first-child {
|
|
7306
|
-
padding-left: 0;
|
|
7307
|
-
}
|
|
7308
|
-
.E_t160l1cm .tab-menu-item:first-child:hover, .E_t160l1cm .tab-menu-item:first-child.tab-menu-item-selected {
|
|
7309
|
-
padding-left: 12px;
|
|
7310
|
-
}
|
|
7311
|
-
.E_t160l1cm .tab-menu-item:hover {
|
|
7312
|
-
color: #0080ff;
|
|
7313
|
-
background: rgba(211, 218, 235, 0.6);
|
|
7314
|
-
}
|
|
7315
|
-
.E_t160l1cm .tab-menu-item:hover .expand-arrow path {
|
|
7316
|
-
fill: #0080ff;
|
|
7317
|
-
}
|
|
7318
|
-
.E_t160l1cm .tab-menu-item:active {
|
|
7319
|
-
background: rgba(192, 203, 224, 0.6);
|
|
7320
|
-
}
|
|
7321
|
-
.E_t160l1cm .tab-menu-item.ant-dropdown-open {
|
|
7322
|
-
color: #0080ff;
|
|
7323
|
-
background: rgba(211, 218, 235, 0.6);
|
|
7324
|
-
}
|
|
7325
|
-
.E_t160l1cm .tab-menu-item.ant-dropdown-open:active {
|
|
7326
|
-
background: rgba(192, 203, 224, 0.6);
|
|
7327
|
-
}
|
|
7328
|
-
.E_t160l1cm .tab-menu-item.ant-dropdown-open.tab-menu-item-selected {
|
|
7329
|
-
background: rgba(0, 128, 255, 0.16);
|
|
7330
|
-
}
|
|
7331
|
-
.E_t160l1cm .tab-menu-item.ant-dropdown-open .expand-arrow path {
|
|
7332
|
-
fill: #0080ff;
|
|
7286
|
+
.E_s1tui002 {
|
|
7287
|
+
white-space: nowrap;
|
|
7333
7288
|
}
|
|
7334
|
-
|
|
7335
|
-
|
|
7336
|
-
|
|
7289
|
+
|
|
7290
|
+
.E_mxrc2zg {
|
|
7291
|
+
display: -webkit-box;
|
|
7292
|
+
-webkit-line-clamp: var(--mxrc2zg-0);
|
|
7293
|
+
-webkit-box-orient: vertical;
|
|
7294
|
+
word-break: break-all;
|
|
7337
7295
|
}
|
|
7338
|
-
|
|
7339
|
-
|
|
7296
|
+
|
|
7297
|
+
.E_t1vv6d68 .ant-tooltip-arrow {
|
|
7298
|
+
display: none;
|
|
7340
7299
|
}
|
|
7341
|
-
.
|
|
7342
|
-
|
|
7300
|
+
.E_t1vv6d68 .ant-tooltip-inner {
|
|
7301
|
+
background: rgba(23, 38, 64, 0.8);
|
|
7302
|
+
border-radius: 4px;
|
|
7343
7303
|
}
|
|
7344
|
-
.
|
|
7345
|
-
|
|
7346
|
-
height: 22px;
|
|
7304
|
+
.E_t1vv6d68 .ant-tooltip-inner:has(.eagle-ellipsis-content) {
|
|
7305
|
+
visibility: hidden;
|
|
7347
7306
|
}
|
|
7348
|
-
|
|
7349
|
-
|
|
7307
|
+
|
|
7308
|
+
.E_s1at6qmn.ant-layout-sider {
|
|
7309
|
+
background: #edf0f7;
|
|
7310
|
+
padding: 32px 8px;
|
|
7311
|
+
overflow: auto;
|
|
7350
7312
|
}
|
|
7351
|
-
.
|
|
7352
|
-
padding: 0;
|
|
7313
|
+
.E_s1at6qmn .ant-layout-sider-children {
|
|
7353
7314
|
display: flex;
|
|
7354
|
-
|
|
7355
|
-
|
|
7356
|
-
}
|
|
7357
|
-
.E_t160l1cm .tab-menu-item-group .main-title {
|
|
7358
|
-
opacity: 0;
|
|
7359
|
-
max-width: 0;
|
|
7360
|
-
transition: max-width 320ms ease, opacity 240ms ease;
|
|
7315
|
+
flex-direction: column;
|
|
7316
|
+
justify-content: space-between;
|
|
7361
7317
|
}
|
|
7362
|
-
.
|
|
7363
|
-
padding: 1px 12px;
|
|
7364
|
-
position: relative;
|
|
7318
|
+
.E_s1at6qmn footer {
|
|
7365
7319
|
display: flex;
|
|
7366
7320
|
}
|
|
7367
|
-
.
|
|
7368
|
-
|
|
7369
|
-
position: absolute;
|
|
7370
|
-
top: 50%;
|
|
7371
|
-
left: 0;
|
|
7372
|
-
transform: translate(-50%, -50%);
|
|
7373
|
-
transition: opacity 100ms linear;
|
|
7374
|
-
fill: rgba(0, 128, 255, 0.2);
|
|
7375
|
-
}
|
|
7376
|
-
.E_t160l1cm .tab-menu-item-group.tab-menu-item-selected {
|
|
7377
|
-
color: #0080ff;
|
|
7378
|
-
}
|
|
7379
|
-
.E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .main-title {
|
|
7380
|
-
padding: 1px 12px;
|
|
7381
|
-
display: inline-block;
|
|
7382
|
-
opacity: 1;
|
|
7383
|
-
max-width: 160px;
|
|
7384
|
-
}
|
|
7385
|
-
.E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title {
|
|
7386
|
-
padding: 1px 12px;
|
|
7387
|
-
color: #005ed1;
|
|
7388
|
-
}
|
|
7389
|
-
.E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
|
|
7390
|
-
opacity: 1;
|
|
7391
|
-
}
|
|
7392
|
-
.E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:hover .sub-title, .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:active .sub-title {
|
|
7393
|
-
background: rgba(0, 128, 255, 0.16);
|
|
7394
|
-
}
|
|
7395
|
-
.E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:hover .sub-title > .slash-arrow, .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:active .sub-title > .slash-arrow {
|
|
7396
|
-
opacity: 0;
|
|
7321
|
+
.E_s1at6qmn .ant-menu {
|
|
7322
|
+
background: #edf0f7;
|
|
7397
7323
|
}
|
|
7398
|
-
.
|
|
7399
|
-
|
|
7400
|
-
|
|
7401
|
-
|
|
7324
|
+
.E_s1at6qmn .ant-menu a {
|
|
7325
|
+
color: #00122e;
|
|
7326
|
+
width: 180px;
|
|
7327
|
+
overflow: hidden;
|
|
7328
|
+
text-overflow: ellipsis;
|
|
7402
7329
|
}
|
|
7403
|
-
.
|
|
7404
|
-
|
|
7330
|
+
.E_s1at6qmn .ant-menu-vertical {
|
|
7331
|
+
margin-bottom: 24px;
|
|
7405
7332
|
}
|
|
7406
|
-
.
|
|
7407
|
-
|
|
7333
|
+
.E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item {
|
|
7334
|
+
margin: 0;
|
|
7408
7335
|
}
|
|
7409
|
-
.
|
|
7410
|
-
|
|
7411
|
-
|
|
7336
|
+
.E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title {
|
|
7337
|
+
font-size: 12px;
|
|
7338
|
+
padding: 0 8px 4px;
|
|
7339
|
+
line-height: 18px;
|
|
7412
7340
|
}
|
|
7413
|
-
.
|
|
7341
|
+
.E_s1at6qmn .ant-menu-vertical .ant-menu-item-group .ant-menu-item-group-title:empty {
|
|
7414
7342
|
padding: 0;
|
|
7415
7343
|
}
|
|
7416
|
-
.
|
|
7417
|
-
padding:
|
|
7418
|
-
}
|
|
7419
|
-
.E_t160l1cm .tab-menu-item-medium.tab-menu-item-group.tab-menu-item-selected .sub-title, .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group.tab-menu-item-selected .main-title {
|
|
7420
|
-
padding: 4px 16px;
|
|
7421
|
-
}
|
|
7422
|
-
.E_t160l1cm .tab-menu-item-light:hover, .E_t160l1cm .tab-menu-item-light:active {
|
|
7423
|
-
background: #fff;
|
|
7424
|
-
}
|
|
7425
|
-
.E_t160l1cm .tab-menu-item-light:active {
|
|
7426
|
-
color: #005ed1;
|
|
7344
|
+
.E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child) {
|
|
7345
|
+
padding-bottom: 24px;
|
|
7427
7346
|
}
|
|
7428
|
-
.
|
|
7429
|
-
|
|
7430
|
-
|
|
7347
|
+
.E_s1at6qmn .ant-menu-vertical .ant-menu-item-group:not(:last-child).split {
|
|
7348
|
+
margin-bottom: 24px;
|
|
7349
|
+
border-bottom: 1px solid rgba(211, 218, 235, 0.6);
|
|
7431
7350
|
}
|
|
7432
|
-
.
|
|
7433
|
-
|
|
7351
|
+
.E_s1at6qmn .ant-menu-vertical .ant-menu-item {
|
|
7352
|
+
transition: none;
|
|
7353
|
+
display: flex;
|
|
7354
|
+
align-items: center;
|
|
7355
|
+
height: 32px;
|
|
7356
|
+
line-height: 22px;
|
|
7357
|
+
padding: 0 8px;
|
|
7434
7358
|
}
|
|
7435
|
-
.
|
|
7436
|
-
|
|
7359
|
+
.E_s1at6qmn .ant-menu-vertical .ant-menu-item > .icon-wrapper {
|
|
7360
|
+
margin-right: 12px;
|
|
7437
7361
|
}
|
|
7438
|
-
.
|
|
7439
|
-
|
|
7362
|
+
.E_s1at6qmn .ant-menu-vertical .ant-menu-item:not(:last-child) {
|
|
7363
|
+
margin: 0;
|
|
7364
|
+
margin-bottom: 2px;
|
|
7440
7365
|
}
|
|
7441
|
-
.
|
|
7442
|
-
|
|
7366
|
+
.E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected {
|
|
7367
|
+
background: linear-gradient(90deg, #0080ff 0%, #005ed1 100%);
|
|
7368
|
+
box-shadow: 0px 1px 2px rgba(184, 192, 204, 0.6);
|
|
7369
|
+
border-radius: 6px;
|
|
7370
|
+
color: #fff;
|
|
7443
7371
|
}
|
|
7444
|
-
.
|
|
7445
|
-
|
|
7446
|
-
display: flex;
|
|
7447
|
-
flex-direction: column;
|
|
7372
|
+
.E_s1at6qmn .ant-menu-vertical .ant-menu-item.ant-menu-item-selected a {
|
|
7373
|
+
color: #fff;
|
|
7448
7374
|
}
|
|
7449
|
-
.
|
|
7450
|
-
|
|
7375
|
+
.E_s1at6qmn .ant-menu-vertical .ant-menu-item:not(.ant-menu-item-selected).ant-menu-item:hover, .E_s1at6qmn .ant-menu-vertical .ant-menu-item:not(.ant-menu-item-selected).ant-menu-item-active {
|
|
7376
|
+
background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
|
|
7377
|
+
box-shadow: 0px 0px 4px rgba(235, 239, 245, 0.6), 0px 8px 16px rgba(129, 138, 153, 0.18);
|
|
7378
|
+
border-radius: 6px;
|
|
7451
7379
|
}
|
|
7452
7380
|
|
|
7453
|
-
.
|
|
7454
|
-
|
|
7455
|
-
|
|
7456
|
-
}
|
|
7457
|
-
.E_t14npdqr.ant-dropdown .ant-dropdown-menu {
|
|
7458
|
-
border: 1px solid #0080ff;
|
|
7459
|
-
padding: 0;
|
|
7381
|
+
.E_s1wu0lms .ant-menu-item-group-title {
|
|
7382
|
+
white-space: nowrap;
|
|
7383
|
+
transition: all 0s;
|
|
7460
7384
|
}
|
|
7461
|
-
.
|
|
7462
|
-
|
|
7463
|
-
height: 32px;
|
|
7464
|
-
line-height: 32px;
|
|
7465
|
-
font-size: 13px;
|
|
7466
|
-
padding: 0 10px;
|
|
7467
|
-
display: block;
|
|
7385
|
+
.E_s1wu0lms.shrink {
|
|
7386
|
+
transition: all 0s;
|
|
7468
7387
|
overflow: hidden;
|
|
7469
|
-
text-overflow: ellipsis;
|
|
7470
|
-
white-space: nowrap;
|
|
7471
7388
|
}
|
|
7472
|
-
.
|
|
7473
|
-
|
|
7474
|
-
height: 1px;
|
|
7475
|
-
width: calc(100% + 10px);
|
|
7476
|
-
background: rgba(172, 186, 211, 0.6);
|
|
7477
|
-
display: block;
|
|
7389
|
+
.E_s1wu0lms.shrink .ant-menu-item-group-title {
|
|
7390
|
+
visibility: hidden;
|
|
7478
7391
|
}
|
|
7479
|
-
.
|
|
7480
|
-
|
|
7481
|
-
|
|
7392
|
+
.E_s1wu0lms.shrink .ant-menu-item {
|
|
7393
|
+
width: 36px;
|
|
7394
|
+
padding: 0 6px;
|
|
7482
7395
|
}
|
|
7483
7396
|
|
|
7484
|
-
.
|
|
7397
|
+
.E_n1ugzfva {
|
|
7485
7398
|
display: flex;
|
|
7486
|
-
|
|
7487
|
-
|
|
7399
|
+
place-items: center;
|
|
7400
|
+
width: 100% !important;
|
|
7488
7401
|
}
|
|
7489
|
-
|
|
7490
|
-
.
|
|
7491
|
-
|
|
7492
|
-
align-items: center;
|
|
7493
|
-
width: calc(100% - 40px);
|
|
7402
|
+
.E_n1ugzfva[disabled] {
|
|
7403
|
+
color: rgba(0, 0, 0, 0.25) !important;
|
|
7404
|
+
opacity: 1 !important;
|
|
7494
7405
|
}
|
|
7495
|
-
.
|
|
7496
|
-
display: inline-block;
|
|
7406
|
+
.E_n1ugzfva.ant-btn {
|
|
7497
7407
|
width: 100%;
|
|
7408
|
+
color: #00122e;
|
|
7498
7409
|
}
|
|
7499
|
-
|
|
7500
|
-
|
|
7501
|
-
min-width: 40px;
|
|
7502
|
-
}
|
|
7503
|
-
.E_u1p8acpn .unit {
|
|
7504
|
-
color: #00122e !important;
|
|
7505
|
-
}
|
|
7506
|
-
|
|
7507
|
-
.E_s1iv0tp1 .enabled-switch {
|
|
7508
|
-
display: flex;
|
|
7509
|
-
align-items: center;
|
|
7410
|
+
.E_n1ugzfva .icon-wrapper {
|
|
7411
|
+
margin-right: 12px;
|
|
7510
7412
|
}
|
|
7511
|
-
.
|
|
7512
|
-
|
|
7413
|
+
.E_n1ugzfva .link-title {
|
|
7414
|
+
flex: 1;
|
|
7415
|
+
overflow: hidden;
|
|
7416
|
+
white-space: nowrap;
|
|
7417
|
+
text-overflow: ellipsis;
|
|
7418
|
+
text-align: left;
|
|
7513
7419
|
}
|
|
7514
7420
|
|
|
7515
7421
|
.E_t1sqg15u {
|
|
@@ -7618,144 +7524,238 @@ span.E_tqjc4ui {
|
|
|
7618
7524
|
color: rgba(44, 56, 82, 0.75);
|
|
7619
7525
|
}
|
|
7620
7526
|
|
|
7621
|
-
.
|
|
7622
|
-
|
|
7623
|
-
|
|
7527
|
+
.E_s1iv0tp1 .enabled-switch {
|
|
7528
|
+
display: flex;
|
|
7529
|
+
align-items: center;
|
|
7624
7530
|
}
|
|
7625
|
-
|
|
7626
|
-
|
|
7627
|
-
white-space: nowrap;
|
|
7531
|
+
.E_s1iv0tp1 .enabled-text {
|
|
7532
|
+
margin-right: 8px;
|
|
7628
7533
|
}
|
|
7629
7534
|
|
|
7630
|
-
.
|
|
7631
|
-
display:
|
|
7632
|
-
-
|
|
7633
|
-
-
|
|
7634
|
-
word-break: break-all;
|
|
7535
|
+
.E_wg1tsps {
|
|
7536
|
+
display: flex;
|
|
7537
|
+
align-items: center;
|
|
7538
|
+
justify-content: flex-end;
|
|
7635
7539
|
}
|
|
7636
7540
|
|
|
7637
|
-
.
|
|
7638
|
-
display:
|
|
7639
|
-
|
|
7640
|
-
|
|
7641
|
-
background: rgba(23, 38, 64, 0.8);
|
|
7642
|
-
border-radius: 4px;
|
|
7541
|
+
.E_b1ctd5xy {
|
|
7542
|
+
display: flex;
|
|
7543
|
+
align-items: center;
|
|
7544
|
+
width: calc(100% - 40px);
|
|
7643
7545
|
}
|
|
7644
|
-
.
|
|
7645
|
-
|
|
7546
|
+
.E_b1ctd5xy .chart {
|
|
7547
|
+
display: inline-block;
|
|
7548
|
+
width: 100%;
|
|
7646
7549
|
}
|
|
7647
7550
|
|
|
7648
|
-
.
|
|
7649
|
-
|
|
7650
|
-
padding: 32px 8px;
|
|
7651
|
-
overflow: auto;
|
|
7551
|
+
.E_u1p8acpn {
|
|
7552
|
+
min-width: 40px;
|
|
7652
7553
|
}
|
|
7653
|
-
.
|
|
7554
|
+
.E_u1p8acpn .unit {
|
|
7555
|
+
color: #00122e !important;
|
|
7556
|
+
}
|
|
7557
|
+
|
|
7558
|
+
.E_t160l1cm {
|
|
7654
7559
|
display: flex;
|
|
7655
7560
|
flex-direction: column;
|
|
7656
|
-
|
|
7561
|
+
flex: 1;
|
|
7562
|
+
/* FIXME:(yanzhen) do this better */
|
|
7657
7563
|
}
|
|
7658
|
-
.
|
|
7564
|
+
.E_t160l1cm .tab-bar {
|
|
7565
|
+
flex-shrink: 0;
|
|
7659
7566
|
display: flex;
|
|
7567
|
+
border-bottom: 1px solid rgba(172, 186, 211, 0.6);
|
|
7660
7568
|
}
|
|
7661
|
-
.
|
|
7662
|
-
|
|
7569
|
+
.E_t160l1cm .tab-content {
|
|
7570
|
+
height: 100%;
|
|
7663
7571
|
}
|
|
7664
|
-
.
|
|
7665
|
-
|
|
7666
|
-
|
|
7667
|
-
|
|
7668
|
-
|
|
7572
|
+
.E_t160l1cm .tab-menu-item {
|
|
7573
|
+
margin-right: 2px;
|
|
7574
|
+
padding: 1px 12px;
|
|
7575
|
+
line-height: 24px;
|
|
7576
|
+
height: 24px;
|
|
7577
|
+
color: rgba(44, 56, 82, 0.6);
|
|
7578
|
+
border-radius: 4px 4px 0 0;
|
|
7579
|
+
cursor: pointer;
|
|
7580
|
+
transition: color 100ms ease-out, background-color 100ms ease-out, padding-left 320ms ease 80ms;
|
|
7669
7581
|
}
|
|
7670
|
-
.
|
|
7671
|
-
|
|
7582
|
+
.E_t160l1cm .tab-menu-item:first-child {
|
|
7583
|
+
padding-left: 0;
|
|
7672
7584
|
}
|
|
7673
|
-
.
|
|
7674
|
-
|
|
7585
|
+
.E_t160l1cm .tab-menu-item:first-child:hover, .E_t160l1cm .tab-menu-item:first-child.tab-menu-item-selected {
|
|
7586
|
+
padding-left: 12px;
|
|
7675
7587
|
}
|
|
7676
|
-
.
|
|
7677
|
-
|
|
7678
|
-
|
|
7679
|
-
line-height: 18px;
|
|
7588
|
+
.E_t160l1cm .tab-menu-item:hover {
|
|
7589
|
+
color: #0080ff;
|
|
7590
|
+
background: rgba(211, 218, 235, 0.6);
|
|
7680
7591
|
}
|
|
7681
|
-
.
|
|
7682
|
-
|
|
7592
|
+
.E_t160l1cm .tab-menu-item:hover .expand-arrow path {
|
|
7593
|
+
fill: #0080ff;
|
|
7683
7594
|
}
|
|
7684
|
-
.
|
|
7685
|
-
|
|
7595
|
+
.E_t160l1cm .tab-menu-item:active {
|
|
7596
|
+
background: rgba(192, 203, 224, 0.6);
|
|
7686
7597
|
}
|
|
7687
|
-
.
|
|
7688
|
-
|
|
7689
|
-
|
|
7598
|
+
.E_t160l1cm .tab-menu-item.ant-dropdown-open {
|
|
7599
|
+
color: #0080ff;
|
|
7600
|
+
background: rgba(211, 218, 235, 0.6);
|
|
7690
7601
|
}
|
|
7691
|
-
.
|
|
7692
|
-
|
|
7602
|
+
.E_t160l1cm .tab-menu-item.ant-dropdown-open:active {
|
|
7603
|
+
background: rgba(192, 203, 224, 0.6);
|
|
7604
|
+
}
|
|
7605
|
+
.E_t160l1cm .tab-menu-item.ant-dropdown-open.tab-menu-item-selected {
|
|
7606
|
+
background: rgba(0, 128, 255, 0.16);
|
|
7607
|
+
}
|
|
7608
|
+
.E_t160l1cm .tab-menu-item.ant-dropdown-open .expand-arrow path {
|
|
7609
|
+
fill: #0080ff;
|
|
7610
|
+
}
|
|
7611
|
+
.E_t160l1cm .tab-menu-item.tab-menu-item-selected {
|
|
7612
|
+
color: #0080ff;
|
|
7613
|
+
background: rgba(0, 128, 255, 0.1);
|
|
7614
|
+
}
|
|
7615
|
+
.E_t160l1cm .tab-menu-item.tab-menu-item-selected:hover {
|
|
7616
|
+
background: rgba(0, 128, 255, 0.16);
|
|
7617
|
+
}
|
|
7618
|
+
.E_t160l1cm .tab-menu-item.tab-menu-item-selected .expand-arrow path {
|
|
7619
|
+
fill: #1d326c;
|
|
7620
|
+
}
|
|
7621
|
+
.E_t160l1cm .tab-menu-item .expand-arrow {
|
|
7622
|
+
margin-left: 8px;
|
|
7623
|
+
height: 22px;
|
|
7624
|
+
}
|
|
7625
|
+
.E_t160l1cm .tab-menu-item .expand-arrow path {
|
|
7626
|
+
fill: rgba(44, 56, 82, 0.6);
|
|
7627
|
+
}
|
|
7628
|
+
.E_t160l1cm .tab-menu-item-group {
|
|
7629
|
+
padding: 0;
|
|
7693
7630
|
display: flex;
|
|
7694
7631
|
align-items: center;
|
|
7632
|
+
overflow: hidden;
|
|
7633
|
+
}
|
|
7634
|
+
.E_t160l1cm .tab-menu-item-group .main-title {
|
|
7635
|
+
opacity: 0;
|
|
7636
|
+
max-width: 0;
|
|
7637
|
+
transition: max-width 320ms ease, opacity 240ms ease;
|
|
7638
|
+
}
|
|
7639
|
+
.E_t160l1cm .tab-menu-item-group .sub-title {
|
|
7640
|
+
padding: 1px 12px;
|
|
7641
|
+
position: relative;
|
|
7642
|
+
display: flex;
|
|
7643
|
+
}
|
|
7644
|
+
.E_t160l1cm .tab-menu-item-group .sub-title > .slash-arrow {
|
|
7645
|
+
opacity: 0;
|
|
7646
|
+
position: absolute;
|
|
7647
|
+
top: 50%;
|
|
7648
|
+
left: 0;
|
|
7649
|
+
transform: translate(-50%, -50%);
|
|
7650
|
+
transition: opacity 100ms linear;
|
|
7651
|
+
fill: rgba(0, 128, 255, 0.2);
|
|
7652
|
+
}
|
|
7653
|
+
.E_t160l1cm .tab-menu-item-group.tab-menu-item-selected {
|
|
7654
|
+
color: #0080ff;
|
|
7655
|
+
}
|
|
7656
|
+
.E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .main-title {
|
|
7657
|
+
padding: 1px 12px;
|
|
7658
|
+
display: inline-block;
|
|
7659
|
+
opacity: 1;
|
|
7660
|
+
max-width: 160px;
|
|
7661
|
+
}
|
|
7662
|
+
.E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title {
|
|
7663
|
+
padding: 1px 12px;
|
|
7664
|
+
color: #005ed1;
|
|
7665
|
+
}
|
|
7666
|
+
.E_t160l1cm .tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
|
|
7667
|
+
opacity: 1;
|
|
7668
|
+
}
|
|
7669
|
+
.E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:hover .sub-title, .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:active .sub-title {
|
|
7670
|
+
background: rgba(0, 128, 255, 0.16);
|
|
7671
|
+
}
|
|
7672
|
+
.E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:hover .sub-title > .slash-arrow, .E_t160l1cm .tab-menu-item-group.tab-menu-item-selected:active .sub-title > .slash-arrow {
|
|
7673
|
+
opacity: 0;
|
|
7674
|
+
}
|
|
7675
|
+
.E_t160l1cm .tab-menu-item-medium.tab-menu-item {
|
|
7676
|
+
padding: 4px 16px;
|
|
7695
7677
|
height: 32px;
|
|
7696
|
-
|
|
7697
|
-
padding: 0 8px;
|
|
7678
|
+
border-radius: 6px 6px 0 0;
|
|
7698
7679
|
}
|
|
7699
|
-
.
|
|
7700
|
-
|
|
7680
|
+
.E_t160l1cm .tab-menu-item-medium.tab-menu-item:first-child {
|
|
7681
|
+
padding-left: 0;
|
|
7701
7682
|
}
|
|
7702
|
-
.
|
|
7703
|
-
|
|
7704
|
-
margin-bottom: 2px;
|
|
7683
|
+
.E_t160l1cm .tab-menu-item-medium.tab-menu-item:first-child:hover, .E_t160l1cm .tab-menu-item-medium.tab-menu-item.tab-menu-item-selected:first-child {
|
|
7684
|
+
padding-left: 16px;
|
|
7705
7685
|
}
|
|
7706
|
-
.
|
|
7707
|
-
|
|
7708
|
-
|
|
7709
|
-
border-radius: 6px;
|
|
7710
|
-
color: #fff;
|
|
7686
|
+
.E_t160l1cm .tab-menu-item-medium.tab-menu-item .expand-arrow {
|
|
7687
|
+
margin-left: 11px;
|
|
7688
|
+
height: 24px;
|
|
7711
7689
|
}
|
|
7712
|
-
.
|
|
7713
|
-
|
|
7690
|
+
.E_t160l1cm .tab-menu-item-medium.tab-menu-item-group {
|
|
7691
|
+
padding: 0;
|
|
7692
|
+
}
|
|
7693
|
+
.E_t160l1cm .tab-menu-item-medium.tab-menu-item-group .sub-title {
|
|
7694
|
+
padding: 4px 16px;
|
|
7695
|
+
}
|
|
7696
|
+
.E_t160l1cm .tab-menu-item-medium.tab-menu-item-group.tab-menu-item-selected .sub-title, .E_t160l1cm .tab-menu-item-medium.tab-menu-item-group.tab-menu-item-selected .main-title {
|
|
7697
|
+
padding: 4px 16px;
|
|
7698
|
+
}
|
|
7699
|
+
.E_t160l1cm .tab-menu-item-light:hover, .E_t160l1cm .tab-menu-item-light:active {
|
|
7700
|
+
background: #fff;
|
|
7701
|
+
}
|
|
7702
|
+
.E_t160l1cm .tab-menu-item-light:active {
|
|
7703
|
+
color: #005ed1;
|
|
7714
7704
|
}
|
|
7715
|
-
.
|
|
7716
|
-
background:
|
|
7717
|
-
|
|
7718
|
-
border-radius: 6px;
|
|
7705
|
+
.E_t160l1cm .tab-menu-item-light.tab-menu-item.tab-menu-item-selected {
|
|
7706
|
+
background: #fff;
|
|
7707
|
+
color: #1d326c;
|
|
7719
7708
|
}
|
|
7720
|
-
|
|
7721
|
-
|
|
7722
|
-
white-space: nowrap;
|
|
7723
|
-
transition: all 0s;
|
|
7709
|
+
.E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .main-title {
|
|
7710
|
+
color: rgba(45, 58, 86, 0.6);
|
|
7724
7711
|
}
|
|
7725
|
-
.
|
|
7726
|
-
|
|
7727
|
-
overflow: hidden;
|
|
7712
|
+
.E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title {
|
|
7713
|
+
color: #1d326c;
|
|
7728
7714
|
}
|
|
7729
|
-
.
|
|
7730
|
-
|
|
7715
|
+
.E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .slash-arrow {
|
|
7716
|
+
fill: #d8deeb;
|
|
7731
7717
|
}
|
|
7732
|
-
.
|
|
7733
|
-
|
|
7734
|
-
padding: 0 6px;
|
|
7718
|
+
.E_t160l1cm .tab-menu-item-light.tab-menu-item-group.tab-menu-item-selected .sub-title > .expand-arrow path {
|
|
7719
|
+
fill: #1d326c;
|
|
7735
7720
|
}
|
|
7736
|
-
|
|
7737
|
-
|
|
7721
|
+
.E_t160l1cm .tab-content {
|
|
7722
|
+
flex: 1;
|
|
7738
7723
|
display: flex;
|
|
7739
|
-
|
|
7740
|
-
width: 100% !important;
|
|
7724
|
+
flex-direction: column;
|
|
7741
7725
|
}
|
|
7742
|
-
.
|
|
7743
|
-
|
|
7744
|
-
opacity: 1 !important;
|
|
7726
|
+
.E_t160l1cm.is-overview .tab-content {
|
|
7727
|
+
overflow: visible;
|
|
7745
7728
|
}
|
|
7746
|
-
|
|
7747
|
-
|
|
7748
|
-
|
|
7729
|
+
|
|
7730
|
+
.E_t14npdqr {
|
|
7731
|
+
max-width: 240px;
|
|
7732
|
+
animation: none;
|
|
7749
7733
|
}
|
|
7750
|
-
.
|
|
7751
|
-
|
|
7734
|
+
.E_t14npdqr.ant-dropdown .ant-dropdown-menu {
|
|
7735
|
+
border: 1px solid #0080ff;
|
|
7736
|
+
padding: 0;
|
|
7752
7737
|
}
|
|
7753
|
-
.
|
|
7754
|
-
|
|
7738
|
+
.E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
|
|
7739
|
+
margin: 0;
|
|
7740
|
+
height: 32px;
|
|
7741
|
+
line-height: 32px;
|
|
7742
|
+
font-size: 13px;
|
|
7743
|
+
padding: 0 10px;
|
|
7744
|
+
display: block;
|
|
7755
7745
|
overflow: hidden;
|
|
7756
|
-
white-space: nowrap;
|
|
7757
7746
|
text-overflow: ellipsis;
|
|
7758
|
-
|
|
7747
|
+
white-space: nowrap;
|
|
7748
|
+
}
|
|
7749
|
+
.E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item:not(:first-child)::before {
|
|
7750
|
+
content: " ";
|
|
7751
|
+
height: 1px;
|
|
7752
|
+
width: calc(100% + 10px);
|
|
7753
|
+
background: rgba(172, 186, 211, 0.6);
|
|
7754
|
+
display: block;
|
|
7755
|
+
}
|
|
7756
|
+
.E_t14npdqr.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item.ant-dropdown-menu-item-selected {
|
|
7757
|
+
color: #0080ff;
|
|
7758
|
+
background: transparent;
|
|
7759
7759
|
}
|
|
7760
7760
|
|
|
7761
7761
|
.E_cyms3br {
|
|
@@ -7833,12 +7833,6 @@ span.E_tqjc4ui {
|
|
|
7833
7833
|
justify-content: center;
|
|
7834
7834
|
}
|
|
7835
7835
|
|
|
7836
|
-
.E_h1ol2wl7 {
|
|
7837
|
-
font-weight: bold;
|
|
7838
|
-
background-color: unset;
|
|
7839
|
-
padding: unset;
|
|
7840
|
-
}
|
|
7841
|
-
|
|
7842
7836
|
.E_i5w779o {
|
|
7843
7837
|
padding: 8px 0;
|
|
7844
7838
|
}
|
|
@@ -7943,6 +7937,96 @@ span.E_tqjc4ui {
|
|
|
7943
7937
|
background-image: linear-gradient(211.41deg, #929dad 0%, #d3dbe3 100%);
|
|
7944
7938
|
}
|
|
7945
7939
|
|
|
7940
|
+
.E_h1ol2wl7 {
|
|
7941
|
+
font-weight: bold;
|
|
7942
|
+
background-color: unset;
|
|
7943
|
+
padding: unset;
|
|
7944
|
+
}
|
|
7945
|
+
|
|
7946
|
+
.E_cevhqx7 {
|
|
7947
|
+
color: #00122e;
|
|
7948
|
+
}
|
|
7949
|
+
|
|
7950
|
+
.E_snbqlt4 {
|
|
7951
|
+
margin-top: 8px;
|
|
7952
|
+
color: rgba(44, 56, 82, 0.6);
|
|
7953
|
+
}
|
|
7954
|
+
|
|
7955
|
+
.E_c1ss4prm {
|
|
7956
|
+
color: rgba(44, 56, 82, 0.6);
|
|
7957
|
+
}
|
|
7958
|
+
.E_c1ss4prm:is(ul, ol) {
|
|
7959
|
+
padding-inline-start: 12px;
|
|
7960
|
+
}
|
|
7961
|
+
.E_c1ss4prm li {
|
|
7962
|
+
margin-bottom: 4px;
|
|
7963
|
+
}
|
|
7964
|
+
.E_c1ss4prm li:last-child {
|
|
7965
|
+
margin-bottom: 0;
|
|
7966
|
+
}
|
|
7967
|
+
|
|
7968
|
+
.E_ms3tlei {
|
|
7969
|
+
background: rgba(225, 230, 241, 0.6);
|
|
7970
|
+
padding: 8px;
|
|
7971
|
+
border-radius: 6px;
|
|
7972
|
+
color: rgba(44, 56, 82, 0.6);
|
|
7973
|
+
}
|
|
7974
|
+
.E_ms3tlei .icon-wrapper {
|
|
7975
|
+
margin-top: 1px;
|
|
7976
|
+
margin-right: 4px;
|
|
7977
|
+
}
|
|
7978
|
+
.E_ms3tlei li {
|
|
7979
|
+
margin-bottom: 4px;
|
|
7980
|
+
display: flex;
|
|
7981
|
+
align-items: flex-start;
|
|
7982
|
+
}
|
|
7983
|
+
.E_ms3tlei li:last-child {
|
|
7984
|
+
margin-bottom: 0;
|
|
7985
|
+
}
|
|
7986
|
+
|
|
7987
|
+
.E_du44iy7 {
|
|
7988
|
+
margin-bottom: 4px;
|
|
7989
|
+
}
|
|
7990
|
+
|
|
7991
|
+
.E_p1qmhanr {
|
|
7992
|
+
margin-bottom: 8px;
|
|
7993
|
+
}
|
|
7994
|
+
|
|
7995
|
+
.E_srje1h0 {
|
|
7996
|
+
color: rgba(44, 56, 82, 0.6);
|
|
7997
|
+
margin-bottom: 8px;
|
|
7998
|
+
}
|
|
7999
|
+
|
|
8000
|
+
.E_di3zi7v {
|
|
8001
|
+
height: 1px;
|
|
8002
|
+
background: #e4e9f2;
|
|
8003
|
+
margin: 16px 0;
|
|
8004
|
+
}
|
|
8005
|
+
|
|
8006
|
+
.E_l12xdkhl {
|
|
8007
|
+
width: 64px;
|
|
8008
|
+
height: 64px;
|
|
8009
|
+
max-width: 64px;
|
|
8010
|
+
max-height: 64px;
|
|
8011
|
+
overflow: hidden;
|
|
8012
|
+
display: flex;
|
|
8013
|
+
align-items: center;
|
|
8014
|
+
justify-content: center;
|
|
8015
|
+
position: relative;
|
|
8016
|
+
opacity: 0.6;
|
|
8017
|
+
}
|
|
8018
|
+
.E_l12xdkhl .icon-wrapper {
|
|
8019
|
+
animation: rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite;
|
|
8020
|
+
}
|
|
8021
|
+
@keyframes rotate {
|
|
8022
|
+
from {
|
|
8023
|
+
transform: rotate(0deg);
|
|
8024
|
+
}
|
|
8025
|
+
to {
|
|
8026
|
+
transform: rotate(360deg);
|
|
8027
|
+
}
|
|
8028
|
+
}
|
|
8029
|
+
|
|
7946
8030
|
.E_c1kchka8 {
|
|
7947
8031
|
height: 100%;
|
|
7948
8032
|
width: 100%;
|
|
@@ -8477,88 +8561,4 @@ span.E_tqjc4ui {
|
|
|
8477
8561
|
}
|
|
8478
8562
|
.E_c14ouk5o .col-content .ant-btn.ant-btn-link {
|
|
8479
8563
|
height: auto;
|
|
8480
|
-
}
|
|
8481
|
-
|
|
8482
|
-
.E_c1ss4prm {
|
|
8483
|
-
color: rgba(44, 56, 82, 0.6);
|
|
8484
|
-
}
|
|
8485
|
-
.E_c1ss4prm:is(ul, ol) {
|
|
8486
|
-
padding-inline-start: 12px;
|
|
8487
|
-
}
|
|
8488
|
-
.E_c1ss4prm li {
|
|
8489
|
-
margin-bottom: 4px;
|
|
8490
|
-
}
|
|
8491
|
-
.E_c1ss4prm li:last-child {
|
|
8492
|
-
margin-bottom: 0;
|
|
8493
|
-
}
|
|
8494
|
-
|
|
8495
|
-
.E_ms3tlei {
|
|
8496
|
-
background: rgba(225, 230, 241, 0.6);
|
|
8497
|
-
padding: 8px;
|
|
8498
|
-
border-radius: 6px;
|
|
8499
|
-
color: rgba(44, 56, 82, 0.6);
|
|
8500
|
-
}
|
|
8501
|
-
.E_ms3tlei .icon-wrapper {
|
|
8502
|
-
margin-top: 1px;
|
|
8503
|
-
margin-right: 4px;
|
|
8504
|
-
}
|
|
8505
|
-
.E_ms3tlei li {
|
|
8506
|
-
margin-bottom: 4px;
|
|
8507
|
-
display: flex;
|
|
8508
|
-
align-items: flex-start;
|
|
8509
|
-
}
|
|
8510
|
-
.E_ms3tlei li:last-child {
|
|
8511
|
-
margin-bottom: 0;
|
|
8512
|
-
}
|
|
8513
|
-
|
|
8514
|
-
.E_du44iy7 {
|
|
8515
|
-
margin-bottom: 4px;
|
|
8516
|
-
}
|
|
8517
|
-
|
|
8518
|
-
.E_p1qmhanr {
|
|
8519
|
-
margin-bottom: 8px;
|
|
8520
|
-
}
|
|
8521
|
-
|
|
8522
|
-
.E_srje1h0 {
|
|
8523
|
-
color: rgba(44, 56, 82, 0.6);
|
|
8524
|
-
margin-bottom: 8px;
|
|
8525
|
-
}
|
|
8526
|
-
|
|
8527
|
-
.E_di3zi7v {
|
|
8528
|
-
height: 1px;
|
|
8529
|
-
background: #e4e9f2;
|
|
8530
|
-
margin: 16px 0;
|
|
8531
|
-
}
|
|
8532
|
-
|
|
8533
|
-
.E_cevhqx7 {
|
|
8534
|
-
color: #00122e;
|
|
8535
|
-
}
|
|
8536
|
-
|
|
8537
|
-
.E_snbqlt4 {
|
|
8538
|
-
margin-top: 8px;
|
|
8539
|
-
color: rgba(44, 56, 82, 0.6);
|
|
8540
|
-
}
|
|
8541
|
-
|
|
8542
|
-
.E_l12xdkhl {
|
|
8543
|
-
width: 64px;
|
|
8544
|
-
height: 64px;
|
|
8545
|
-
max-width: 64px;
|
|
8546
|
-
max-height: 64px;
|
|
8547
|
-
overflow: hidden;
|
|
8548
|
-
display: flex;
|
|
8549
|
-
align-items: center;
|
|
8550
|
-
justify-content: center;
|
|
8551
|
-
position: relative;
|
|
8552
|
-
opacity: 0.6;
|
|
8553
|
-
}
|
|
8554
|
-
.E_l12xdkhl .icon-wrapper {
|
|
8555
|
-
animation: rotate 1200ms cubic-bezier(0.33, 0, 0.67, 1) infinite;
|
|
8556
|
-
}
|
|
8557
|
-
@keyframes rotate {
|
|
8558
|
-
from {
|
|
8559
|
-
transform: rotate(0deg);
|
|
8560
|
-
}
|
|
8561
|
-
to {
|
|
8562
|
-
transform: rotate(360deg);
|
|
8563
|
-
}
|
|
8564
8564
|
}
|