@cloudtower/eagle 0.22.14 → 0.22.18

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.
Files changed (27) hide show
  1. package/dist/esm/index.js +216 -15
  2. package/dist/esm/stats1.html +1 -1
  3. package/dist/spec/base.d.ts +7 -0
  4. package/dist/style.css +1258 -1257
  5. package/dist/umd/index.js +218 -17
  6. package/dist/umd/stats1.html +1 -1
  7. package/package.json +7 -6
  8. package/dist/components/BaseIcon/BaseIcon.stories.d.ts +0 -5
  9. package/dist/components/Button/Button.stories.d.ts +0 -18
  10. package/dist/components/Button/HoverableElement.stories.d.ts +0 -5
  11. package/dist/components/Fields/FieldsBoolean/FieldsBoolean.stories.d.ts +0 -5
  12. package/dist/components/Fields/FieldsDateTimeRange/FieldsDateTimeRange.stories.d.ts +0 -11
  13. package/dist/components/Fields/FieldsEnum/FieldsEnum.stories.d.ts +0 -7
  14. package/dist/components/Fields/FieldsInteger/FieldsInteger.stories.d.ts +0 -6
  15. package/dist/components/Fields/FieldsString/FieldsString.stories.d.ts +0 -19
  16. package/dist/components/Fields/FieldsTimePicker/FieldsTimePicker.stories.d.ts +0 -11
  17. package/dist/components/Icon/Icon.stories.d.ts +0 -22
  18. package/dist/components/Input/Input.stories.d.ts +0 -29
  19. package/dist/components/Metric/Metric.stories.d.ts +0 -6
  20. package/dist/components/Modal/Modal.stories.d.ts +0 -5
  21. package/dist/components/SearchInput/SearchInput.stories.d.ts +0 -4
  22. package/dist/components/Select/Select.stories.d.ts +0 -16
  23. package/dist/components/SimplePagination/SimplePagination.stories.d.ts +0 -5
  24. package/dist/components/Space/Space.stories.d.ts +0 -5
  25. package/dist/components/Table/Table.stories.d.ts +0 -9
  26. package/dist/components/TimeZoneSelect/TimeZoneSelect.stories.d.ts +0 -18
  27. package/dist/stories/icons-react.stories.d.ts +0 -5
package/dist/style.css CHANGED
@@ -44,6 +44,14 @@
44
44
  /* dim */
45
45
  /* box shadow */
46
46
  /* fisheye */
47
+ @keyframes rotate {
48
+ from {
49
+ transform: rotate(0deg);
50
+ }
51
+ to {
52
+ transform: rotate(360deg);
53
+ }
54
+ }
47
55
  /* // basic */
48
56
  /* FishEye Color Variables and Functions */
49
57
  /*
@@ -1231,14 +1239,6 @@ body {
1231
1239
  height: 18px;
1232
1240
  }
1233
1241
 
1234
- @keyframes rotate {
1235
- from {
1236
- transform: rotate(0deg);
1237
- }
1238
- to {
1239
- transform: rotate(360deg);
1240
- }
1241
- }
1242
1242
  input:-webkit-autofill,
1243
1243
  input:-webkit-autofill:focus {
1244
1244
  -webkit-box-shadow: 0 0 0 50px white inset !important;
@@ -1597,67 +1597,6 @@ input[type=submit] {
1597
1597
  cursor: pointer;
1598
1598
  }
1599
1599
 
1600
- .fde5mpd {
1601
- width: 100%;
1602
- height: 100%;
1603
- min-height: 124px;
1604
- display: flex;
1605
- flex-direction: column;
1606
- justify-content: center;
1607
- align-items: center;
1608
- }
1609
- .fde5mpd .error-text {
1610
- color: rgba(10, 37, 85, 0.6);
1611
- margin-bottom: 16px;
1612
- font-size: 18px;
1613
- }
1614
-
1615
- .i1mrf09m {
1616
- display: inline-flex;
1617
- align-items: center;
1618
- }
1619
- .i1mrf09m .icon-inner {
1620
- display: inline-flex;
1621
- align-items: center;
1622
- justify-content: center;
1623
- }
1624
- .i1mrf09m .icon-inner + span,
1625
- .i1mrf09m span + .icon-inner.suffix {
1626
- margin-left: 4px;
1627
- }
1628
- .i1mrf09m.is-rotate img {
1629
- animation: rotate 680ms linear infinite;
1630
- }
1631
-
1632
- .bpq0js6 {
1633
- padding: 4px 11px;
1634
- }
1635
-
1636
- .b15sn34c {
1637
- white-space: nowrap;
1638
- filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
1639
- }
1640
- .b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
1641
- --color: #0080ff;
1642
- }
1643
- .b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
1644
- --color: #0080ff;
1645
- }
1646
- .b15sn34c > .ant-btn:not(:only-child) + .ant-btn {
1647
- margin-left: 1px;
1648
- }
1649
- .b15sn34c > .ant-btn:not(:only-child):first-child {
1650
- border-top-right-radius: 0;
1651
- border-bottom-right-radius: 0;
1652
- }
1653
- .b15sn34c > .ant-btn:not(:only-child):last-child {
1654
- border-top-left-radius: 0;
1655
- border-bottom-left-radius: 0;
1656
- }
1657
- .b15sn34c > .ant-btn:not(:only-child):not(:first-child, :last-child) {
1658
- border-radius: unset;
1659
- }
1660
-
1661
1600
  .buj61ew.ant-btn {
1662
1601
  height: 32px;
1663
1602
  border-radius: 6px;
@@ -1906,642 +1845,688 @@ input[type=submit] {
1906
1845
  padding: 0;
1907
1846
  }
1908
1847
 
1909
- .obf05yr {
1910
- display: inline-block;
1848
+ .s1fc623g {
1849
+ width: 430px !important;
1911
1850
  }
1912
1851
 
1913
- .hsms1n6 {
1914
- visibility: hidden;
1915
- position: absolute;
1852
+ .oa3mx0o {
1853
+ display: flex;
1854
+ flex-direction: column;
1916
1855
  }
1917
1856
 
1918
- .rxbeqvl.ant-radio-wrapper {
1919
- display: inline-flex;
1920
- align-items: baseline;
1921
- white-space: pre-wrap;
1857
+ .onr9gzt {
1858
+ display: flex;
1859
+ justify-content: space-between;
1922
1860
  }
1923
- .rxbeqvl.ant-radio-wrapper .ant-radio {
1924
- position: relative;
1925
- top: 3px;
1861
+
1862
+ .oiy0apc {
1863
+ display: flex;
1864
+ color: rgba(44, 56, 82, 0.6);
1926
1865
  }
1927
- .rxbeqvl.ant-radio-wrapper .ant-radio .ant-radio-inner {
1928
- border-color: rgba(107, 128, 167, 0.6);
1866
+
1867
+ .cz04yix {
1868
+ display: flex;
1869
+ flex-direction: column;
1929
1870
  }
1930
- .rxbeqvl.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
1931
- border-color: #0080ff;
1871
+
1872
+ .m1if5j39 {
1873
+ max-width: 1120px;
1874
+ width: 100%;
1875
+ margin: 0 auto;
1876
+ height: 100%;
1932
1877
  }
1933
- .rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
1934
- border-color: #0080ff;
1935
- background: #0080ff;
1878
+
1879
+ .w1vvwdlp {
1880
+ max-width: 1120px;
1881
+ width: 100%;
1882
+ margin: 0 auto;
1883
+ display: flex;
1936
1884
  }
1937
- .rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
1938
- top: 4px;
1939
- left: 4px;
1940
- width: 6px;
1941
- height: 6px;
1942
- background: #fff;
1885
+ .w1vvwdlp .left,
1886
+ .w1vvwdlp .right {
1887
+ flex-grow: 0;
1888
+ flex-shrink: 0;
1889
+ flex-basis: 21%;
1943
1890
  }
1944
- .rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled {
1945
- opacity: 0.5;
1891
+ .w1vvwdlp .left {
1892
+ display: flex;
1893
+ justify-content: flex-end;
1894
+ padding-right: 44px;
1946
1895
  }
1947
- .rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner {
1948
- border-color: rgba(107, 128, 167, 0.6);
1949
- background: rgba(211, 218, 235, 0.6);
1896
+ .w1vvwdlp .right {
1897
+ padding-left: 44px;
1950
1898
  }
1951
- .rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner::after {
1952
- background: #00122e;
1899
+ .w1vvwdlp .middle {
1900
+ margin-bottom: 40px;
1901
+ flex-grow: 0;
1902
+ flex-shrink: 0;
1903
+ flex-basis: 58%;
1953
1904
  }
1954
- .rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled + span {
1955
- color: #00122e;
1956
- opacity: 0.5;
1905
+ .w1vvwdlp .middle .form-base-field {
1906
+ width: 100%;
1957
1907
  }
1958
- .rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled + span .radio-description {
1959
- color: #00122e;
1908
+ .w1vvwdlp .middle .form-base-field .form-base-field {
1909
+ width: auto;
1960
1910
  }
1961
- .rxbeqvl.ant-radio-wrapper .ant-radio + span {
1962
- display: inline-block;
1963
- padding: 0;
1964
- padding-left: 12px;
1911
+ .w1vvwdlp .ant-steps-vertical .ant-steps-item {
1912
+ flex: initial;
1965
1913
  }
1966
- .rxbeqvl.ant-radio-wrapper .ant-radio + span .radio-description {
1967
- margin-bottom: 0;
1968
- white-space: pre-wrap;
1969
- color: rgba(44, 56, 82, 0.6);
1914
+ .w1vvwdlp .ant-steps-item + .ant-steps-item {
1915
+ margin-top: 4px;
1970
1916
  }
1971
- .rxbeqvl.ant-radio-wrapper.compact .ant-radio + span {
1972
- padding-left: 8px;
1917
+ .w1vvwdlp .ant-steps-item-icon,
1918
+ .w1vvwdlp .ant-steps-item-tail {
1919
+ display: none !important;
1973
1920
  }
1974
-
1975
- .r5ie79y .ant-radio-button-wrapper:first-child {
1976
- border-radius: 5px 0 0 5px;
1921
+ .w1vvwdlp .ant-steps-item-container {
1922
+ padding: 0 15px;
1923
+ border-radius: 4px;
1924
+ height: 32px;
1925
+ display: flex;
1926
+ align-items: center;
1977
1927
  }
1978
- .r5ie79y .ant-radio-button-wrapper:last-child {
1979
- border-radius: 0 5px 5px 0;
1928
+ .w1vvwdlp .ant-steps-item-container .ant-steps-item-content {
1929
+ min-height: auto;
1930
+ white-space: nowrap;
1980
1931
  }
1981
-
1982
- .r1f0aqcc {
1983
- color: #00122e;
1984
- border-color: #ccd4e3;
1932
+ .w1vvwdlp .ant-steps-item-description {
1933
+ padding-bottom: 0px;
1985
1934
  }
1986
- .r1f0aqcc:first-child {
1987
- color: #00122e;
1988
- border-color: #a3b4cc;
1935
+ .w1vvwdlp .ant-steps-item-title {
1936
+ font-size: 13px !important;
1937
+ line-height: 20px !important;
1989
1938
  }
1990
- .r1f0aqcc.ant-radio-button-wrapper {
1991
- padding: 0 12px;
1992
- line-height: 32px;
1993
- height: 32px;
1939
+ .w1vvwdlp .ant-steps-item-title .step-index {
1940
+ display: inline-block;
1941
+ text-align: center;
1942
+ width: 13px;
1943
+ margin-right: 12px;
1994
1944
  }
1995
- .r1f0aqcc.ant-radio-button-wrapper > span + span {
1996
- white-space: nowrap;
1945
+ .w1vvwdlp .ant-steps-item-active .ant-steps-item-container {
1946
+ background: rgba(0, 128, 255, 0.1);
1997
1947
  }
1998
- .r1f0aqcc.ant-radio-button-wrapper:not(:first-child)::before {
1999
- background: #ccd4e3;
1948
+ .w1vvwdlp .ant-steps-item-active .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
1949
+ color: #005ed1;
2000
1950
  }
2001
- .r1f0aqcc.ant-radio-button-wrapper-checked:not(:first-child)::before {
2002
- background: #0080ff;
1951
+ .w1vvwdlp .ant-steps-item-finish .ant-steps-item-container {
1952
+ background: rgba(237, 241, 250, 0.6);
2003
1953
  }
2004
- .r1f0aqcc.ant-radio-button-wrapper-disabled:not(:first-child)::before {
2005
- background: #ccd4e3;
2006
- opacity: 0.5;
1954
+ .w1vvwdlp .ant-steps-item-finish .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
1955
+ color: rgba(10, 37, 85, 0.6) !important;
2007
1956
  }
2008
- .r1f0aqcc.ant-radio-button-wrapper-checked:not([class*=" ant-radio-button-wrapper-disabled"]).ant-radio-button-wrapper:first-child {
2009
- border-right-color: #0080ff;
1957
+ .w1vvwdlp .ant-steps-item-disabled {
1958
+ cursor: not-allowed;
2010
1959
  }
2011
- .r1f0aqcc.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
2012
- border-color: #0080ff;
1960
+ .w1vvwdlp .ant-steps-item-disabled .ant-steps-item-container {
1961
+ background: rgba(237, 241, 250, 0.6);
2013
1962
  }
2014
- .r1f0aqcc.ant-radio-button-wrapper-checked {
2015
- background: rgba(0, 136, 255, 0.1);
1963
+ .w1vvwdlp .ant-steps-item-disabled .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
1964
+ color: #2d3a56;
2016
1965
  }
2017
- .r1f0aqcc.ant-radio-button-wrapper-disabled {
2018
- background: rgba(211, 218, 235, 0.6);
2019
- border-color: #ccd4e3;
2020
- opacity: 0.5;
1966
+
1967
+ .h1cuopx7 .ant-modal-header {
1968
+ margin: 0 auto;
1969
+ width: 100%;
1970
+ max-width: 648px;
2021
1971
  }
2022
- .r1f0aqcc.ant-radio-button-wrapper-disabled:hover {
2023
- color: #00122e;
2024
- border-color: #ccd4e3;
1972
+ .h1cuopx7 .ant-modal-header .ant-modal-title {
1973
+ margin-left: 0;
2025
1974
  }
2026
- .r1f0aqcc.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
2027
- color: #00122e;
2028
- border-color: #ccd4e3;
2029
- background: rgba(172, 186, 211, 0.6);
2030
- }
2031
- .r1f0aqcc .ant-radio-button-input {
2032
- margin-right: 8px;
2033
- display: inline;
2034
- border: none;
1975
+ .h1cuopx7 .ant-modal-body {
1976
+ margin: 0 auto;
2035
1977
  padding: 0;
2036
- width: 36px;
2037
- background: transparent;
1978
+ width: 100%;
1979
+ max-width: 648px;
1980
+ overflow: hidden;
2038
1981
  }
2039
- .r1f0aqcc .ant-radio-button-input:focus {
2040
- box-shadow: none;
1982
+ .h1cuopx7 .ant-modal-body .horizontal-steps-wrapper {
1983
+ margin-bottom: 40px;
2041
1984
  }
2042
- .r1f0aqcc .ant-radio-button-input.ant-input-number {
2043
- margin-right: 0;
2044
- width: initial;
2045
- box-shadow: none;
1985
+ .h1cuopx7 .ant-modal-body .horizontal-content-wrapper {
1986
+ height: calc(100vh - 225px);
1987
+ overflow-y: auto;
2046
1988
  }
2047
- .r1f0aqcc .ant-radio-button-input .ant-input-number-handler-wrap {
2048
- display: none;
1989
+ .h1cuopx7 .ant-modal-footer .footer-content {
1990
+ margin: 0 auto;
1991
+ max-width: 648px;
2049
1992
  }
2050
- .r1f0aqcc .ant-radio-button-input .ant-input-number-input-wrap {
2051
- display: inline;
1993
+
1994
+ .h1p6d3y3 .ant-modal-header {
1995
+ margin: 0 auto;
1996
+ width: 100%;
1997
+ max-width: 1024px;
2052
1998
  }
2053
- .r1f0aqcc .ant-radio-button-input .ant-input-number-input-wrap input {
2054
- display: inline;
2055
- margin-right: 8px;
1999
+ .h1p6d3y3 .ant-modal-header .ant-modal-title {
2000
+ margin-left: 0;
2001
+ }
2002
+ .h1p6d3y3 .ant-modal-body {
2003
+ margin: 0 auto;
2056
2004
  padding: 0;
2057
- width: 36px;
2005
+ width: 100%;
2006
+ max-width: 1024px;
2007
+ overflow: hidden;
2008
+ }
2009
+ .h1p6d3y3 .ant-modal-body .horizontal-steps-wrapper {
2010
+ margin-bottom: 40px;
2011
+ }
2012
+ .h1p6d3y3 .ant-modal-body .horizontal-content-wrapper {
2013
+ height: calc(100vh - 225px);
2014
+ overflow-y: auto;
2015
+ }
2016
+ .h1p6d3y3 .ant-modal-footer .footer-content {
2017
+ margin: 0 auto;
2018
+ max-width: 1024px;
2058
2019
  }
2059
2020
 
2060
- .p12gwtiw {
2061
- display: flex;
2062
- justify-content: space-between;
2063
- align-items: center;
2064
- padding: 10px 0;
2065
- color: rgba(44, 56, 82, 0.6);
2066
- font-size: 12px;
2067
- line-height: 24px;
2021
+ .fxgckuk {
2022
+ flex: 1;
2068
2023
  }
2069
- .p12gwtiw .pagination-left {
2070
- padding: 2px 8px;
2024
+ .fxgckuk label {
2025
+ font-size: 13px;
2026
+ line-height: 20px;
2027
+ color: rgba(44, 56, 82, 0.6);
2071
2028
  }
2072
- .p12gwtiw .dropdown-trigger {
2073
- display: flex;
2074
- align-items: center;
2075
- border-radius: 6px;
2076
- cursor: pointer;
2077
- transition: all 0.3s ease;
2029
+ .fxgckuk .title {
2030
+ font-size: 14px;
2031
+ line-height: 20px;
2032
+ color: #2d3a56;
2033
+ margin-bottom: 12px;
2078
2034
  }
2079
- .p12gwtiw .dropdown-trigger:hover {
2080
- background: rgba(211, 218, 235, 0.6);
2081
- color: #0080ff;
2035
+ .fxgckuk.connect-cluster .title {
2036
+ padding-bottom: 26px;
2082
2037
  }
2083
- .p12gwtiw .dropdown-trigger .icon-inner {
2084
- margin-left: 4px;
2038
+
2039
+ .f1d0vek1 {
2040
+ padding: 25px 0 15px 0;
2041
+ border-bottom: 1px solid #e1e5eb;
2042
+ margin-bottom: 16px;
2085
2043
  }
2086
- .p12gwtiw .pagination-right {
2044
+
2045
+ .f4u402y {
2087
2046
  display: flex;
2088
2047
  align-items: center;
2089
- color: #0080ff;
2090
- font-weight: bold;
2091
- }
2092
- .p12gwtiw .pagination-right .icon-inner {
2093
- margin-left: 4px;
2048
+ margin-bottom: 8px;
2094
2049
  }
2095
- .p12gwtiw .pagination-right .prev-btn,
2096
- .p12gwtiw .pagination-right .next-btn {
2097
- padding: 0 8px;
2050
+ .f4u402y > label {
2051
+ width: 216px;
2098
2052
  }
2099
- .p12gwtiw .pagination-right .prev-btn > span,
2100
- .p12gwtiw .pagination-right .next-btn > span {
2101
- color: #0080ff;
2053
+ .f4u402y > label + * {
2054
+ width: 100%;
2102
2055
  }
2103
- .p12gwtiw .pagination-right .next-btn .icon-inner {
2104
- transform: rotate(180deg);
2056
+ .f4u402y .ant-select {
2057
+ width: 100%;
2105
2058
  }
2106
2059
 
2107
- .d1bnu0in.ant-dropdown .ant-dropdown-menu {
2108
- max-height: calc(100vh - 128px);
2109
- overflow-y: auto;
2110
- }
2111
- .d1bnu0in.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
2112
- padding: 4px 20px;
2113
- font-size: 12px;
2114
- line-height: 18px;
2060
+ .e1pldf6v {
2061
+ color: #e75a3a;
2062
+ margin-right: 10px;
2115
2063
  }
2116
2064
 
2117
- .s1fc623g {
2118
- width: 430px !important;
2065
+ .dq0gblh {
2066
+ width: 100%;
2067
+ height: 1px;
2068
+ background: rgba(213, 219, 227, 0.6);
2069
+ margin: 24px 0;
2119
2070
  }
2120
2071
 
2121
- .oa3mx0o {
2072
+ .l1v7sr0n {
2122
2073
  display: flex;
2123
- flex-direction: column;
2074
+ justify-content: center;
2075
+ align-items: center;
2076
+ height: 100%;
2124
2077
  }
2125
2078
 
2126
- .onr9gzt {
2127
- display: flex;
2128
- justify-content: space-between;
2079
+ .d1i4ou6o {
2080
+ display: inline-block;
2081
+ width: 4px;
2082
+ height: 4px;
2083
+ background: #8e9aa9;
2084
+ opacity: 0.4;
2085
+ border-radius: 50%;
2086
+ margin: 0 4px;
2129
2087
  }
2130
2088
 
2131
- .oiy0apc {
2132
- display: flex;
2133
- color: rgba(44, 56, 82, 0.6);
2089
+ .m1jy87hk .ant-modal-header,
2090
+ .m1jy87hk .ant-modal-footer .footer-content {
2091
+ width: 648px;
2092
+ margin: 0 auto;
2134
2093
  }
2135
-
2136
- .s34f1qb.ant-switch {
2137
- min-width: 40px;
2138
- height: 24px;
2139
- background: rgba(172, 186, 211, 0.6);
2140
- overflow: hidden;
2094
+ .m1jy87hk .ant-modal-header {
2095
+ padding: 35px 0 24px;
2096
+ border: none;
2141
2097
  }
2142
- .s34f1qb.ant-switch:focus {
2143
- box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
2098
+ .m1jy87hk .ant-modal-header .ant-modal-title {
2099
+ font-size: 30px;
2144
2100
  }
2145
- .s34f1qb.ant-switch-small {
2146
- min-width: 26px;
2147
- height: 16px;
2101
+ .m1jy87hk .ant-modal-body {
2102
+ padding: 4px 0 2px;
2148
2103
  }
2149
- .s34f1qb.ant-switch-large {
2150
- min-width: 52px;
2151
- height: 32px;
2104
+ .m1jy87hk .ant-modal-footer {
2105
+ border: none;
2152
2106
  }
2153
- .s34f1qb.ant-switch .ant-switch-handle {
2154
- height: 20px;
2155
- width: 20px;
2107
+
2108
+ .ti7fpyu {
2109
+ font-size: 12px;
2110
+ line-height: 18px;
2111
+ font-weight: bold;
2112
+ color: #fff;
2113
+ padding: 0 4px;
2114
+ border-radius: 4px;
2115
+ display: inline-block;
2116
+ background: var(--ti7fpyu-0);
2156
2117
  }
2157
- .s34f1qb.ant-switch .ant-switch-handle::before {
2158
- border-radius: 10px;
2159
- transition-delay: 120ms;
2118
+ .ti7fpyu:not(:first-child) {
2119
+ margin-left: 4px;
2160
2120
  }
2161
- .s34f1qb.ant-switch-small .ant-switch-handle {
2162
- height: 14px;
2163
- width: 14px;
2164
- top: 1px;
2165
- left: 1px;
2121
+
2122
+ .f1rest1f {
2123
+ width: 100%;
2124
+ height: 100%;
2125
+ display: flex;
2126
+ align-items: center;
2127
+ justify-content: center;
2166
2128
  }
2167
- .s34f1qb.ant-switch-large .ant-switch-handle {
2168
- height: 28px;
2169
- width: 28px;
2129
+
2130
+ .n1kbdoln {
2131
+ font-size: 90%;
2132
+ font-weight: bold;
2133
+ background-color: rgba(240, 243, 247, 0.6);
2134
+ padding: 1px 4px 1px;
2135
+ margin-left: 2px;
2136
+ margin-right: 2px;
2137
+ border: 1px solid rgba(213, 219, 227, 0.6);
2138
+ border-radius: 4px;
2170
2139
  }
2171
- .s34f1qb.ant-switch-large .ant-switch-handle::before {
2172
- border-radius: 14px;
2140
+
2141
+ .f1y3gta0.form-item-general {
2142
+ width: 640px;
2173
2143
  }
2174
- .s34f1qb.ant-switch-checked {
2175
- background-color: #00ba5d;
2144
+ .f1y3gta0.form-item-general.form-item + .f1y3gta0.form-item-general.form-item {
2145
+ margin-top: 16px;
2176
2146
  }
2177
- .s34f1qb.ant-switch-checked .ant-switch-handle {
2178
- left: calc(100% - 20px - 2px);
2147
+ .f1y3gta0.form-item-compact {
2148
+ width: 412px;
2179
2149
  }
2180
- .s34f1qb.ant-switch-small.ant-switch-checked .ant-switch-handle {
2181
- left: calc(100% - 14px - 1px);
2150
+ .f1y3gta0.form-item-compact.form-item + .f1y3gta0.form-item-compact.form-item {
2151
+ margin-top: 8px;
2182
2152
  }
2183
- .s34f1qb.ant-switch-large.ant-switch-checked .ant-switch-handle {
2184
- left: calc(100% - 28px - 2px);
2153
+ .f1y3gta0 .form-item {
2154
+ width: auto;
2185
2155
  }
2186
-
2187
- .c1to9vb9 {
2188
- margin-left: 5px;
2189
- }
2190
-
2191
- .t1upn1sz {
2192
- height: 100%;
2193
- }
2194
-
2195
- .tta5kd2 {
2196
- height: 100%;
2197
- }
2198
- .tta5kd2.empty-table .ant-table-content {
2199
- overflow: visible !important;
2200
- height: 100%;
2156
+ .f1y3gta0 .form-item-main {
2157
+ position: relative;
2158
+ display: flex;
2201
2159
  }
2202
- .tta5kd2.empty-table .ant-table-content .ant-table-tbody .ant-table-placeholder td {
2203
- height: 100%;
2160
+ .f1y3gta0 .form-item-extra {
2161
+ margin-top: 4px;
2162
+ width: 100%;
2163
+ padding: 14px;
2164
+ background: #f2f4f6;
2165
+ font-size: 13px;
2166
+ line-height: 1.8;
2167
+ color: #8e9aa9;
2204
2168
  }
2205
- .tta5kd2.empty-table .ant-table-content table {
2206
- width: 100% !important;
2207
- height: 100%;
2169
+ .f1y3gta0 .form-item-label {
2170
+ padding-right: 12px;
2171
+ font-size: 13px;
2172
+ color: rgba(44, 56, 82, 0.6);
2208
2173
  }
2209
- .tta5kd2.empty-table .ant-table-content table .ant-table-placeholder .ant-table-expanded-row-fixed {
2210
- padding: 15px 0;
2174
+ .f1y3gta0 .form-item-label.label-right {
2175
+ text-align: right;
2211
2176
  }
2212
- .tta5kd2.empty-table .ant-table-content table thead.ant-table-thead {
2213
- display: none;
2177
+ .f1y3gta0 .form-item-label,
2178
+ .f1y3gta0 .form-item-control {
2179
+ line-height: 32px;
2214
2180
  }
2215
- .tta5kd2 .active-row td:nth-child(1) {
2216
- font-weight: 700;
2181
+ .f1y3gta0 .form-item-control .form-item-error {
2182
+ line-height: 18px;
2217
2183
  }
2218
- .tta5kd2.has-selection .active-row td:nth-child(2) {
2219
- font-weight: 700;
2184
+ .f1y3gta0 .form-item-children {
2185
+ width: 100%;
2220
2186
  }
2221
- .tta5kd2 .ant-spin-nested-loading {
2222
- height: 100%;
2187
+ .f1y3gta0 .form-item-children > *:only-child.ant-select, .f1y3gta0 .form-item-children > *:only-child.ant-radio-group, .f1y3gta0 .form-item-children > *:only-child.ant-checkbox-group {
2188
+ width: 100%;
2223
2189
  }
2224
- .tta5kd2 .ant-spin-nested-loading .ant-spin-container {
2225
- height: 100%;
2226
- overflow: visible;
2190
+ .f1y3gta0 .form-item-error {
2191
+ color: #e75a3a;
2192
+ height: 0;
2193
+ overflow: hidden;
2227
2194
  }
2228
- .tta5kd2 .ant-spin-nested-loading .ant-spin {
2229
- max-height: none;
2195
+ .f1y3gta0 .form-item-error-enter-done {
2196
+ margin-top: 4px;
2197
+ height: auto;
2198
+ overflow: auto;
2230
2199
  }
2231
- .tta5kd2.table-init-loading .ant-spin-blur thead,
2232
- .tta5kd2.table-init-loading .ant-spin-blur tbody {
2233
- display: none;
2200
+ .f1y3gta0.form-base-field:not(.form-base-field-array) .form-item-control.field-error .form-item-error > input:not(.ant-input),
2201
+ .f1y3gta0.form-base-field:not(.form-base-field-array) .form-item-control.field-error .form-item-error :not(.ant-select) input {
2202
+ border: 1px solid #e75a3a;
2203
+ color: #e75a3a;
2234
2204
  }
2235
- .tta5kd2 td.ant-table-column-sort {
2236
- background: transparent;
2205
+
2206
+ .fujbm7g {
2207
+ color: #2d3a56;
2208
+ font-weight: bold;
2209
+ padding-bottom: 6px;
2210
+ border-bottom: 1px solid rgba(213, 219, 227, 0.6);
2211
+ margin-bottom: 16px;
2237
2212
  }
2238
- .tta5kd2 td.ant-table-cell-fix-left,
2239
- .tta5kd2 td.ant-table-cell-fix-right {
2240
- background: #fff;
2241
- padding: 0 !important;
2213
+ .fujbm7g:not(:first-of-type) {
2214
+ margin-top: 16px;
2242
2215
  }
2243
- .tta5kd2 td.ant-table-cell-fix-left .ant-table-cell-content,
2244
- .tta5kd2 td.ant-table-cell-fix-right .ant-table-cell-content {
2216
+
2217
+ .e5fsw5s {
2218
+ width: 8px;
2219
+ height: 24px;
2245
2220
  display: flex;
2221
+ justify-content: center;
2246
2222
  align-items: center;
2247
- height: 100%;
2248
- padding: 8px;
2249
- }
2250
- .tta5kd2 td.ant-table-cell-fix-left .ant-table-cell-content > span,
2251
- .tta5kd2 td.ant-table-cell-fix-right .ant-table-cell-content > span {
2252
- overflow: hidden;
2253
- text-overflow: ellipsis;
2254
- width: 100%;
2255
- }
2256
- .tta5kd2 .ant-table-container {
2257
- height: 100%;
2258
- }
2259
- .tta5kd2 .ant-table-container::before, .tta5kd2 .ant-table-container::after {
2260
- box-shadow: none !important;
2261
- }
2262
- .tta5kd2 .ant-table {
2263
- border-radius: 0px;
2264
- border-left: none;
2265
- border-right: none;
2266
- border-bottom: none;
2267
- height: 100%;
2268
- font-size: 12px;
2269
- background: transparent;
2223
+ cursor: pointer;
2224
+ transition: all 200ms ease-out 40ms;
2270
2225
  }
2271
- .tta5kd2 .ant-table .ant-table-header {
2226
+ .e5fsw5s:before, .e5fsw5s:after {
2227
+ content: "";
2228
+ width: 1px;
2229
+ height: 6px;
2230
+ border-radius: 1px;
2231
+ background: #ccd4e3;
2272
2232
  position: relative;
2273
- z-index: 3;
2274
- border-bottom: 1px solid rgba(211, 218, 235, 0.6);
2275
- margin-bottom: -1px;
2233
+ right: 2px;
2234
+ transform: rotate(-45deg);
2276
2235
  }
2277
- .tta5kd2 .ant-table .time-wrapper .data,
2278
- .tta5kd2 .ant-table .value {
2279
- color: #2d3a56;
2236
+ .e5fsw5s:after {
2237
+ transform: rotate(45deg);
2238
+ left: 1px;
2280
2239
  }
2281
- .tta5kd2 .ant-table .time-wrapper .time,
2282
- .tta5kd2 .ant-table .unit {
2283
- color: rgba(44, 56, 82, 0.6);
2240
+
2241
+ .w18knsg4.ant-alert-warning {
2242
+ border: 0;
2243
+ background: rgba(255, 187, 0, 0.1);
2244
+ border-radius: 6px;
2284
2245
  }
2285
- .tta5kd2 .ant-table .ant-table-selection {
2286
- text-align: center;
2246
+ .w18knsg4.ant-alert,
2247
+ .w18knsg4 .ant-alert-message {
2248
+ color: #e07f00;
2287
2249
  }
2288
- .tta5kd2 .ant-table .ant-table-tbody > tr.ant-table-row-selected td {
2289
- background: #fff;
2250
+ .w18knsg4.ant-alert .dashed-border-bottom,
2251
+ .w18knsg4 .ant-alert-message .dashed-border-bottom {
2252
+ border-bottom-color: #e07f00;
2290
2253
  }
2291
- .tta5kd2 .ant-table .anticon-setting {
2292
- cursor: pointer;
2293
- position: absolute;
2294
- top: 50%;
2295
- right: 12px;
2296
- transform: translateY(-50%);
2254
+
2255
+ .ng31n2o {
2256
+ display: flex;
2257
+ flex-direction: row;
2258
+ padding: 7px 12px;
2259
+ background: rgba(255, 187, 0, 0.1);
2260
+ border-radius: 6px;
2261
+ color: #e07f00;
2262
+ font-size: 12px;
2263
+ line-height: 18px;
2297
2264
  }
2298
- .tta5kd2 .ant-table.ant-table-ping-left .ant-table-cell-fix-left-last::after {
2299
- box-shadow: none;
2300
- width: 1px;
2301
- background: rgba(213, 219, 227, 0.6);
2265
+ .ng31n2o .icon-wrapper {
2266
+ margin-right: 10px;
2267
+ height: 18px;
2302
2268
  }
2303
- .tta5kd2 .ant-table.ant-table-ping-right .ant-table-cell-fix-right-first::after {
2304
- box-shadow: none;
2305
- width: 1px;
2306
- background: rgba(213, 219, 227, 0.6);
2269
+
2270
+ .n15x5f5y {
2271
+ display: flex;
2272
+ flex-direction: row;
2273
+ padding: 7px 12px;
2274
+ background: rgba(225, 230, 241, 0.6);
2275
+ border-radius: 6px;
2276
+ color: rgba(44, 56, 82, 0.6);
2277
+ font-size: 12px;
2278
+ line-height: 18px;
2307
2279
  }
2308
- .tta5kd2 .ant-table .ant-table-tbody {
2309
- position: relative;
2280
+ .n15x5f5y .icon-wrapper {
2281
+ margin-right: 10px;
2282
+ height: 18px;
2310
2283
  }
2311
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td {
2312
- border-top: 1px solid rgba(211, 218, 235, 0.6);
2313
- border-bottom: 1px solid white;
2314
- height: 40px;
2315
- vertical-align: middle;
2316
- transition: background 0ms;
2317
- color: #00122e;
2284
+
2285
+ .i16ozz3f {
2286
+ display: flex;
2287
+ flex-direction: row;
2288
+ padding: 7px 12px;
2289
+ background: rgba(0, 136, 255, 0.1);
2290
+ border-radius: 6px;
2291
+ color: #005ed1;
2292
+ font-size: 12px;
2293
+ line-height: 18px;
2318
2294
  }
2319
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td.header-hover {
2320
- background: #f2f5fa;
2321
- border-bottom-color: #f2f5fa;
2295
+ .i16ozz3f .icon-wrapper {
2296
+ margin-right: 10px;
2297
+ height: 18px;
2322
2298
  }
2323
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link {
2324
- height: auto;
2325
- color: #00122e;
2299
+
2300
+ .dszu9qr {
2301
+ color: rgba(44, 56, 82, 0.6);
2302
+ margin-top: 5px;
2326
2303
  font-size: 12px;
2327
- text-align: left;
2328
- transition: none;
2329
- overflow: hidden;
2330
- text-overflow: ellipsis;
2331
- white-space: nowrap;
2304
+ line-height: 18px;
2332
2305
  }
2333
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link:hover {
2334
- color: #0096ff;
2306
+
2307
+ .snxzgx {
2308
+ color: #f0483e;
2309
+ font-size: 12px;
2310
+ white-space: pre-wrap;
2335
2311
  }
2336
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link > span {
2337
- overflow: hidden;
2338
- text-overflow: ellipsis;
2339
- width: 100%;
2340
- vertical-align: middle;
2312
+
2313
+ .o1i4orqw {
2314
+ display: flex;
2315
+ align-items: center;
2316
+ justify-content: flex-end;
2341
2317
  }
2342
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td.cell_status {
2343
- line-height: 0px;
2318
+ .o1i4orqw .icon-wrapper {
2319
+ margin-right: 16px;
2344
2320
  }
2345
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover + tr td {
2346
- border-top-color: transparent;
2321
+
2322
+ .t79k8o2 {
2323
+ color: rgba(0, 21, 64, 0.3);
2347
2324
  }
2348
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td {
2349
- background: rgba(225, 230, 241, 0.6);
2350
- border-color: transparent transparent white;
2325
+
2326
+ .ipd9bk.ant-input {
2327
+ padding: 5px 12px;
2328
+ line-height: 20px;
2329
+ color: #2d3a56;
2330
+ border-radius: 6px;
2331
+ border-color: rgba(172, 186, 211, 0.6);
2332
+ transition: height 240ms ease 8ms, border 160ms ease 8ms, box-shadow 160ms ease 8ms;
2351
2333
  }
2352
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child {
2353
- border-radius: 8px 0 0 8px;
2334
+ .ipd9bk.ant-input.ant-input-lg {
2335
+ padding: 8px 16px;
2336
+ line-height: 22px;
2354
2337
  }
2355
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child .ant-table-cell-content {
2356
- border-radius: 8px 0 0 8px;
2338
+ .ipd9bk.ant-input.ant-input-sm {
2339
+ padding: 2px 8px;
2340
+ line-height: 18px;
2357
2341
  }
2358
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child::before {
2359
- content: "";
2360
- width: 4px;
2361
- top: -1px;
2362
- bottom: -1px;
2363
- background: white;
2342
+ .ipd9bk.ant-input:not([disabled]):hover, .ipd9bk.ant-input:not([disabled]).__pseudo-states-hover, .ipd9bk.ant-input-number:not([disabled]):hover, .ipd9bk.ant-input-number:not([disabled]).__pseudo-states-hover {
2343
+ border-color: rgba(107, 128, 167, 0.6);
2344
+ box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
2364
2345
  }
2365
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child {
2366
- border-radius: 0 8px 8px 0;
2346
+ .ipd9bk.ant-input:not([disabled]):active, .ipd9bk.ant-input:not([disabled]):focus, .ipd9bk.ant-input:not([disabled]).__pseudo-states-active, .ipd9bk.ant-input:not([disabled]).__pseudo-states-focus, .ipd9bk.ant-input-number:not([disabled]):active, .ipd9bk.ant-input-number:not([disabled]):focus, .ipd9bk.ant-input-number:not([disabled]).__pseudo-states-active, .ipd9bk.ant-input-number:not([disabled]).__pseudo-states-focus {
2347
+ border-color: #0096ff;
2348
+ box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
2367
2349
  }
2368
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ {
2369
- border-radius: 0;
2370
- background: white;
2371
- border-top: none;
2350
+ .ipd9bk.ant-input.error:not([disabled]), .ipd9bk.ant-picker.error:not([disabled]), .ipd9bk.ant-input-number.error:not([disabled]) {
2351
+ border-color: #e75a3a;
2352
+ color: #e75a3a;
2372
2353
  }
2373
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ > * {
2374
- border-top: 1px solid transparent;
2375
- border-radius: 0 8px 8px 0;
2376
- background: rgba(225, 230, 241, 0.6);
2354
+ .ipd9bk.ant-input.error:not([disabled]):hover, .ipd9bk.ant-input.error:not([disabled]).__pseudo-states-hover, .ipd9bk.ant-picker.error:not([disabled]):hover, .ipd9bk.ant-picker.error:not([disabled]).__pseudo-states-hover, .ipd9bk.ant-input-number.error:not([disabled]):hover, .ipd9bk.ant-input-number.error:not([disabled]).__pseudo-states-hover {
2355
+ border-color: #e75a3a;
2356
+ box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
2377
2357
  }
2378
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right {
2379
- background: white;
2380
- border-top: 1px solid rgba(211, 218, 235, 0.6);
2358
+ .ipd9bk.ant-input.error:not([disabled]):active, .ipd9bk.ant-input.error:not([disabled]):focus, .ipd9bk.ant-input.error:not([disabled]).__pseudo-states-active, .ipd9bk.ant-input.error:not([disabled]).__pseudo-states-focus, .ipd9bk.ant-picker.error:not([disabled]):active, .ipd9bk.ant-picker.error:not([disabled]):focus, .ipd9bk.ant-picker.error:not([disabled]).__pseudo-states-active, .ipd9bk.ant-picker.error:not([disabled]).__pseudo-states-focus, .ipd9bk.ant-input-number.error:not([disabled]):active, .ipd9bk.ant-input-number.error:not([disabled]):focus, .ipd9bk.ant-input-number.error:not([disabled]).__pseudo-states-active, .ipd9bk.ant-input-number.error:not([disabled]).__pseudo-states-focus {
2359
+ border-color: #e75a3a;
2360
+ box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
2381
2361
  }
2382
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right .ant-table-cell-content {
2383
- display: flex;
2384
- align-items: center;
2385
- height: 100%;
2386
- background: rgba(225, 230, 241, 0.6);
2362
+ .ipd9bk.ant-input[disabled], .ipd9bk.ant-input.ant-input-disabled, .ipd9bk.ant-input-number[disabled], .ipd9bk.ant-input-number.ant-input-number-disabled {
2363
+ background: rgba(211, 218, 235, 0.6);
2364
+ color: rgba(0, 21, 64, 0.3);
2365
+ border-color: rgba(172, 186, 211, 0.6);
2387
2366
  }
2388
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left {
2389
- background: white;
2390
- border-top: 1px solid rgba(211, 218, 235, 0.6);
2367
+ .ipd9bk.ant-input-affix-wrapper {
2368
+ padding: 5px 12px;
2369
+ border-radius: 6px;
2370
+ border-color: rgba(172, 186, 211, 0.6);
2371
+ line-height: 20px;
2372
+ color: #2d3a56;
2373
+ transition: height 240ms ease 8ms, border 160ms ease 8ms, box-shadow 160ms ease 8ms;
2391
2374
  }
2392
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left .ant-table-cell-content {
2393
- display: flex;
2394
- align-items: center;
2395
- height: 100%;
2396
- background: rgba(225, 230, 241, 0.6);
2375
+ .ipd9bk.ant-input-affix-wrapper .ant-input-suffix,
2376
+ .ipd9bk.ant-input-affix-wrapper .ant-input-prefix {
2377
+ color: rgba(44, 56, 82, 0.6);
2397
2378
  }
2398
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:last-child td {
2399
- border-bottom: 1px solid rgba(211, 218, 235, 0.6);
2379
+ .ipd9bk.ant-input-affix-wrapper.ant-input-affix-wrapper-lg {
2380
+ padding: 8px 16px;
2381
+ line-height: 22px;
2400
2382
  }
2401
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row {
2402
- box-shadow: inset 0px 0px 0 2px rgba(0, 136, 255, 0.1);
2403
- border-radius: 8px;
2383
+ .ipd9bk.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
2384
+ padding: 2px 8px;
2385
+ line-height: 18px;
2404
2386
  }
2405
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row + tr td {
2406
- border-top-color: white;
2387
+ .ipd9bk.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover, .ipd9bk.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).__pseudo-states-hover {
2388
+ border-color: rgba(107, 128, 167, 0.6);
2389
+ box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
2407
2390
  }
2408
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td {
2409
- background: rgba(0, 136, 255, 0.1);
2410
- border-bottom-color: transparent;
2411
- border-top-color: transparent;
2391
+ .ipd9bk.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):active, .ipd9bk.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):focus, .ipd9bk.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).ant-input-affix-wrapper-focused, .ipd9bk.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).__pseudo-states-active, .ipd9bk.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).__pseudo-states-focus {
2392
+ border-color: #0096ff;
2393
+ box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
2412
2394
  }
2413
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td:first-child {
2414
- border-radius: 8px 0 0 8px;
2395
+ .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled) {
2396
+ border-color: #e75a3a;
2415
2397
  }
2416
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td:last-child {
2417
- border-radius: 0 8px 8px 0;
2398
+ .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled) > .ant-input {
2399
+ color: #e75a3a;
2418
2400
  }
2419
- .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td:hover {
2420
- background: rgba(0, 136, 255, 0.1);
2401
+ .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled):hover, .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).__pseudo-states-hover {
2402
+ border-color: #e75a3a;
2403
+ box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
2421
2404
  }
2422
- .tta5kd2 .ant-table .ant-table-thead > tr > th {
2423
- background: #fff;
2424
- font-weight: 400;
2425
- position: relative;
2426
- border-bottom: none;
2427
- color: #00122e;
2428
- transition: none;
2429
- padding: 15px 8px 15px 8px;
2405
+ .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled):active, .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled):focus, .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).ant-input-affix-wrapper-focused, .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).__pseudo-states-active, .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).__pseudo-states-focus {
2406
+ border-color: #e75a3a;
2407
+ box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
2430
2408
  }
2431
- .tta5kd2 .ant-table .ant-table-thead > tr > th:not(:last-child):after {
2432
- content: "";
2433
- width: 1px;
2434
- top: 0;
2435
- bottom: 0;
2409
+ .ipd9bk.ant-input-affix-wrapper.ant-input-affix-wrapper-disabled {
2436
2410
  background: rgba(211, 218, 235, 0.6);
2437
- position: absolute;
2438
- right: 0;
2411
+ color: rgba(0, 21, 64, 0.3);
2412
+ border-color: rgba(172, 186, 211, 0.6);
2439
2413
  }
2440
- .tta5kd2 .ant-table .ant-table-thead > tr > th.is-blank {
2441
- padding: unset;
2414
+ textarea.ipd9bk.ant-input {
2415
+ transition-property: height;
2416
+ transition-delay: 50ms;
2442
2417
  }
2443
- .tta5kd2 .ant-table .ant-table-thead > tr > th.is-blank:after {
2444
- display: none;
2418
+ textarea.ipd9bk.ant-input.textarea-large {
2419
+ min-height: 40px;
2420
+ height: 40px;
2445
2421
  }
2446
- .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-cell-ellipsis.ant-table-column-has-sorters .ant-table-column-sorters {
2447
- width: 100%;
2448
- overflow: hidden;
2449
- white-space: nowrap;
2450
- text-overflow: ellipsis;
2422
+ textarea.ipd9bk.ant-input.textarea-large:focus {
2423
+ height: 80px;
2451
2424
  }
2452
- .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-cell-ellipsis.ant-table-column-has-sorters .ant-table-column-sorters > span {
2453
- overflow: hidden;
2454
- text-overflow: ellipsis;
2425
+ textarea.ipd9bk.ant-input.textarea-middle {
2426
+ min-height: 32px;
2427
+ height: 32px;
2455
2428
  }
2456
- .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters {
2457
- padding: 15px 28px 15px 8px;
2429
+ textarea.ipd9bk.ant-input.textarea-middle:focus {
2430
+ height: 64px;
2458
2431
  }
2459
- .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters {
2460
- padding: 0;
2432
+ textarea.ipd9bk.ant-input.textarea-small {
2433
+ min-height: 24px;
2434
+ height: 24px;
2461
2435
  }
2462
- .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon {
2463
- position: absolute;
2464
- right: 10px;
2465
- top: 50%;
2466
- transform: translateY(-50%);
2467
- height: 16px;
2468
- display: none;
2469
- transition: transform 320ms ease;
2436
+ textarea.ipd9bk.ant-input.textarea-small:focus {
2437
+ height: 40px;
2470
2438
  }
2471
- .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon.descend {
2472
- display: block;
2473
- transform: translateY(-50%) rotateX(180deg);
2439
+
2440
+ .kypn5o5 input, .kypn5o5.input-tags {
2441
+ border: 1px solid rgba(213, 219, 227, 0.6);
2442
+ border-radius: 4px;
2474
2443
  }
2475
- .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon.ascend {
2476
- display: block;
2444
+ .kypn5o5.input-tags {
2445
+ position: relative;
2446
+ padding: 6px;
2447
+ height: 32px;
2448
+ cursor: pointer;
2449
+ transition: border 150ms;
2450
+ }
2451
+ .kypn5o5.input-tags:hover {
2452
+ border-color: #0080ff;
2453
+ box-shadow: 0 0 0px 2px rgba(0, 128, 255, 0.1);
2454
+ }
2455
+ .kypn5o5.input-tags.kit-input-suffix-wrapper {
2456
+ padding-right: 30px;
2457
+ }
2458
+ .kypn5o5.input-tags .input-tags-inner {
2459
+ display: flex;
2477
2460
  }
2478
- .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorter {
2479
- display: none;
2461
+ .kypn5o5.input-tags .input-tags-inner .tags-overflow-auto {
2462
+ display: flex;
2480
2463
  }
2481
- .tta5kd2 .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.descend {
2464
+ .kypn5o5.input-tags .input-tag-suffix {
2465
+ position: absolute;
2466
+ right: 12px;
2467
+ top: 50%;
2482
2468
  transform: translateY(-50%);
2483
2469
  }
2484
- .tta5kd2 .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.ascend {
2485
- transform: translateY(-50%) rotateX(180deg);
2486
- }
2487
- .tta5kd2 .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) {
2488
- background: #f2f5fa;
2470
+ .kypn5o5.input-tags .input-tag-suffix .anticon-close-circle {
2471
+ color: rgba(0, 0, 0, 0.25);
2472
+ font-size: 12px;
2473
+ cursor: pointer;
2489
2474
  }
2490
- .tta5kd2 .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) .ant-table-column-sorters .order-icon {
2491
- display: block;
2475
+ .kypn5o5.input-tags .input-tag-suffix .anticon-close-circle:hover {
2476
+ color: rgba(0, 0, 0, 0.45);
2492
2477
  }
2493
- .tta5kd2 .ant-table .ant-table-selection-column {
2494
- padding: 0 !important;
2478
+ .kypn5o5.has-focus-indicator {
2479
+ position: relative;
2480
+ overflow: hidden;
2495
2481
  }
2496
- .tta5kd2 .ant-table .ant-table-selection-column .ant-checkbox-wrapper {
2482
+ .kypn5o5.has-focus-indicator .ant-input-prefix {
2497
2483
  position: absolute;
2498
- left: 50%;
2499
2484
  top: 50%;
2500
- transform: translate(-50%, -50%);
2485
+ transform: translateY(-50%);
2486
+ left: -16px;
2487
+ transition: left 150ms ease;
2488
+ opacity: 0;
2501
2489
  }
2502
- .tta5kd2 .ant-table .ant-table-selection-column:after {
2503
- display: none;
2490
+ .kypn5o5.has-focus-indicator.ant-input-affix-wrapper-focused .ant-input-prefix {
2491
+ left: 8px;
2492
+ opacity: 1;
2504
2493
  }
2505
- .tta5kd2 .ant-table .ant-table-hide-scrollbar {
2506
- background: #fff;
2494
+ .kypn5o5.has-focus-indicator input {
2495
+ transition: margin-left 150ms ease;
2496
+ margin-left: 0px;
2507
2497
  }
2508
- .tta5kd2 .ant-table .ant-table-placeholder {
2509
- background: inherit;
2498
+ .kypn5o5.has-focus-indicator input:focus {
2499
+ margin-left: 16px;
2510
2500
  }
2511
- .tta5kd2 .ant-table .ant-table-placeholder td {
2512
- position: static;
2513
- border: none;
2514
- background: inherit !important;
2515
- height: 100px;
2516
- vertical-align: middle;
2501
+
2502
+ input.l1ki27se.ant-input {
2503
+ border-top-right-radius: 0;
2504
+ border-bottom-right-radius: 0;
2517
2505
  }
2518
- .tta5kd2 .ant-table .ant-table-placeholder .table-default-empty,
2519
- .tta5kd2 .ant-table .ant-table-placeholder .ant-table-expanded-row-fixed {
2520
- font-weight: bold;
2521
- font-size: 20px;
2522
- color: rgba(10, 37, 85, 0.6);
2506
+
2507
+ .l1ki27se.ant-input-affix-wrapper {
2508
+ border-top-right-radius: 0;
2509
+ border-bottom-right-radius: 0;
2523
2510
  }
2524
- .tta5kd2 .ant-table td.cell__action_ {
2525
- padding: 0 !important;
2526
- position: relative;
2527
- background: #fff;
2511
+
2512
+ input.rrg1fkn.ant-input {
2513
+ border-top-left-radius: 0;
2514
+ border-bottom-left-radius: 0;
2528
2515
  }
2529
- .tta5kd2 .ant-table td.cell__action_ > * {
2530
- height: 100%;
2531
- display: flex;
2532
- align-items: center;
2533
- justify-content: flex-end;
2534
- padding-right: 8px;
2516
+
2517
+ .rrg1fkn.ant-input-affix-wrapper {
2518
+ border-top-left-radius: 0;
2519
+ border-bottom-left-radius: 0;
2535
2520
  }
2536
- .tta5kd2 .ant-table td.cell__action_ .menu-button {
2537
- width: 24px;
2538
- height: 24px;
2539
- cursor: pointer;
2540
- justify-content: center;
2541
- border-radius: 4px;
2521
+
2522
+ .lgr9b02.ant-select, .lgr9b02.ant-select .ant-select-selector {
2523
+ border-top-right-radius: 0;
2524
+ border-bottom-right-radius: 0;
2542
2525
  }
2543
- .tta5kd2 .ant-table td.cell__action_ .menu-button:hover {
2544
- background: #fff;
2526
+
2527
+ .r1af6yu8.ant-select, .r1af6yu8.ant-select .ant-select-selector {
2528
+ border-top-left-radius: 0;
2529
+ border-bottom-left-radius: 0;
2545
2530
  }
2546
2531
 
2547
2532
  .s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal {
@@ -2627,670 +2612,690 @@ input[type=submit] {
2627
2612
  padding: 0;
2628
2613
  }
2629
2614
 
2630
- .cz04yix {
2631
- display: flex;
2632
- flex-direction: column;
2615
+ .obf05yr {
2616
+ display: inline-block;
2633
2617
  }
2634
2618
 
2635
- .m1if5j39 {
2636
- max-width: 1120px;
2637
- width: 100%;
2638
- margin: 0 auto;
2619
+ .hsms1n6 {
2620
+ visibility: hidden;
2621
+ position: absolute;
2622
+ }
2623
+
2624
+ .t1upn1sz {
2639
2625
  height: 100%;
2640
2626
  }
2641
2627
 
2642
- .w1vvwdlp {
2643
- max-width: 1120px;
2644
- width: 100%;
2645
- margin: 0 auto;
2646
- display: flex;
2628
+ .tta5kd2 {
2629
+ height: 100%;
2647
2630
  }
2648
- .w1vvwdlp .left,
2649
- .w1vvwdlp .right {
2650
- flex-grow: 0;
2651
- flex-shrink: 0;
2652
- flex-basis: 21%;
2631
+ .tta5kd2.empty-table .ant-table-content {
2632
+ overflow: visible !important;
2633
+ height: 100%;
2653
2634
  }
2654
- .w1vvwdlp .left {
2655
- display: flex;
2656
- justify-content: flex-end;
2657
- padding-right: 44px;
2635
+ .tta5kd2.empty-table .ant-table-content .ant-table-tbody .ant-table-placeholder td {
2636
+ height: 100%;
2658
2637
  }
2659
- .w1vvwdlp .right {
2660
- padding-left: 44px;
2638
+ .tta5kd2.empty-table .ant-table-content table {
2639
+ width: 100% !important;
2640
+ height: 100%;
2661
2641
  }
2662
- .w1vvwdlp .middle {
2663
- margin-bottom: 40px;
2664
- flex-grow: 0;
2665
- flex-shrink: 0;
2666
- flex-basis: 58%;
2642
+ .tta5kd2.empty-table .ant-table-content table .ant-table-placeholder .ant-table-expanded-row-fixed {
2643
+ padding: 15px 0;
2667
2644
  }
2668
- .w1vvwdlp .middle .form-base-field {
2669
- width: 100%;
2645
+ .tta5kd2.empty-table .ant-table-content table thead.ant-table-thead {
2646
+ display: none;
2670
2647
  }
2671
- .w1vvwdlp .middle .form-base-field .form-base-field {
2672
- width: auto;
2648
+ .tta5kd2 .active-row td:nth-child(1) {
2649
+ font-weight: 700;
2673
2650
  }
2674
- .w1vvwdlp .ant-steps-vertical .ant-steps-item {
2675
- flex: initial;
2651
+ .tta5kd2.has-selection .active-row td:nth-child(2) {
2652
+ font-weight: 700;
2676
2653
  }
2677
- .w1vvwdlp .ant-steps-item + .ant-steps-item {
2678
- margin-top: 4px;
2654
+ .tta5kd2 .ant-spin-nested-loading {
2655
+ height: 100%;
2679
2656
  }
2680
- .w1vvwdlp .ant-steps-item-icon,
2681
- .w1vvwdlp .ant-steps-item-tail {
2682
- display: none !important;
2657
+ .tta5kd2 .ant-spin-nested-loading .ant-spin-container {
2658
+ height: 100%;
2659
+ overflow: visible;
2683
2660
  }
2684
- .w1vvwdlp .ant-steps-item-container {
2685
- padding: 0 15px;
2686
- border-radius: 4px;
2687
- height: 32px;
2661
+ .tta5kd2 .ant-spin-nested-loading .ant-spin {
2662
+ max-height: none;
2663
+ }
2664
+ .tta5kd2.table-init-loading .ant-spin-blur thead,
2665
+ .tta5kd2.table-init-loading .ant-spin-blur tbody {
2666
+ display: none;
2667
+ }
2668
+ .tta5kd2 td.ant-table-column-sort {
2669
+ background: transparent;
2670
+ }
2671
+ .tta5kd2 td.ant-table-cell-fix-left,
2672
+ .tta5kd2 td.ant-table-cell-fix-right {
2673
+ background: #fff;
2674
+ padding: 0 !important;
2675
+ }
2676
+ .tta5kd2 td.ant-table-cell-fix-left .ant-table-cell-content,
2677
+ .tta5kd2 td.ant-table-cell-fix-right .ant-table-cell-content {
2688
2678
  display: flex;
2689
2679
  align-items: center;
2680
+ height: 100%;
2681
+ padding: 8px;
2690
2682
  }
2691
- .w1vvwdlp .ant-steps-item-container .ant-steps-item-content {
2692
- min-height: auto;
2693
- white-space: nowrap;
2683
+ .tta5kd2 td.ant-table-cell-fix-left .ant-table-cell-content > span,
2684
+ .tta5kd2 td.ant-table-cell-fix-right .ant-table-cell-content > span {
2685
+ overflow: hidden;
2686
+ text-overflow: ellipsis;
2687
+ width: 100%;
2694
2688
  }
2695
- .w1vvwdlp .ant-steps-item-description {
2696
- padding-bottom: 0px;
2689
+ .tta5kd2 .ant-table-container {
2690
+ height: 100%;
2697
2691
  }
2698
- .w1vvwdlp .ant-steps-item-title {
2699
- font-size: 13px !important;
2700
- line-height: 20px !important;
2692
+ .tta5kd2 .ant-table-container::before, .tta5kd2 .ant-table-container::after {
2693
+ box-shadow: none !important;
2701
2694
  }
2702
- .w1vvwdlp .ant-steps-item-title .step-index {
2703
- display: inline-block;
2704
- text-align: center;
2705
- width: 13px;
2706
- margin-right: 12px;
2695
+ .tta5kd2 .ant-table {
2696
+ border-radius: 0px;
2697
+ border-left: none;
2698
+ border-right: none;
2699
+ border-bottom: none;
2700
+ height: 100%;
2701
+ font-size: 12px;
2702
+ background: transparent;
2707
2703
  }
2708
- .w1vvwdlp .ant-steps-item-active .ant-steps-item-container {
2709
- background: rgba(0, 128, 255, 0.1);
2704
+ .tta5kd2 .ant-table .ant-table-header {
2705
+ position: relative;
2706
+ z-index: 3;
2707
+ border-bottom: 1px solid rgba(211, 218, 235, 0.6);
2708
+ margin-bottom: -1px;
2710
2709
  }
2711
- .w1vvwdlp .ant-steps-item-active .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
2712
- color: #005ed1;
2710
+ .tta5kd2 .ant-table .time-wrapper .data,
2711
+ .tta5kd2 .ant-table .value {
2712
+ color: #2d3a56;
2713
2713
  }
2714
- .w1vvwdlp .ant-steps-item-finish .ant-steps-item-container {
2715
- background: rgba(237, 241, 250, 0.6);
2714
+ .tta5kd2 .ant-table .time-wrapper .time,
2715
+ .tta5kd2 .ant-table .unit {
2716
+ color: rgba(44, 56, 82, 0.6);
2716
2717
  }
2717
- .w1vvwdlp .ant-steps-item-finish .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
2718
- color: rgba(10, 37, 85, 0.6) !important;
2718
+ .tta5kd2 .ant-table .ant-table-selection {
2719
+ text-align: center;
2720
+ }
2721
+ .tta5kd2 .ant-table .ant-table-tbody > tr.ant-table-row-selected td {
2722
+ background: #fff;
2723
+ }
2724
+ .tta5kd2 .ant-table .anticon-setting {
2725
+ cursor: pointer;
2726
+ position: absolute;
2727
+ top: 50%;
2728
+ right: 12px;
2729
+ transform: translateY(-50%);
2719
2730
  }
2720
- .w1vvwdlp .ant-steps-item-disabled {
2721
- cursor: not-allowed;
2731
+ .tta5kd2 .ant-table.ant-table-ping-left .ant-table-cell-fix-left-last::after {
2732
+ box-shadow: none;
2733
+ width: 1px;
2734
+ background: rgba(213, 219, 227, 0.6);
2722
2735
  }
2723
- .w1vvwdlp .ant-steps-item-disabled .ant-steps-item-container {
2724
- background: rgba(237, 241, 250, 0.6);
2736
+ .tta5kd2 .ant-table.ant-table-ping-right .ant-table-cell-fix-right-first::after {
2737
+ box-shadow: none;
2738
+ width: 1px;
2739
+ background: rgba(213, 219, 227, 0.6);
2725
2740
  }
2726
- .w1vvwdlp .ant-steps-item-disabled .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
2727
- color: #2d3a56;
2741
+ .tta5kd2 .ant-table .ant-table-tbody {
2742
+ position: relative;
2728
2743
  }
2729
-
2730
- .h1cuopx7 .ant-modal-header {
2731
- margin: 0 auto;
2732
- width: 100%;
2733
- max-width: 648px;
2744
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td {
2745
+ border-top: 1px solid rgba(211, 218, 235, 0.6);
2746
+ border-bottom: 1px solid white;
2747
+ height: 40px;
2748
+ vertical-align: middle;
2749
+ transition: background 0ms;
2750
+ color: #00122e;
2734
2751
  }
2735
- .h1cuopx7 .ant-modal-header .ant-modal-title {
2736
- margin-left: 0;
2752
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td.header-hover {
2753
+ background: #f2f5fa;
2754
+ border-bottom-color: #f2f5fa;
2737
2755
  }
2738
- .h1cuopx7 .ant-modal-body {
2739
- margin: 0 auto;
2740
- padding: 0;
2741
- width: 100%;
2742
- max-width: 648px;
2756
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link {
2757
+ height: auto;
2758
+ color: #00122e;
2759
+ font-size: 12px;
2760
+ text-align: left;
2761
+ transition: none;
2743
2762
  overflow: hidden;
2763
+ text-overflow: ellipsis;
2764
+ white-space: nowrap;
2744
2765
  }
2745
- .h1cuopx7 .ant-modal-body .horizontal-steps-wrapper {
2746
- margin-bottom: 40px;
2747
- }
2748
- .h1cuopx7 .ant-modal-body .horizontal-content-wrapper {
2749
- height: calc(100vh - 225px);
2750
- overflow-y: auto;
2751
- }
2752
- .h1cuopx7 .ant-modal-footer .footer-content {
2753
- margin: 0 auto;
2754
- max-width: 648px;
2766
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link:hover {
2767
+ color: #0096ff;
2755
2768
  }
2756
-
2757
- .h1p6d3y3 .ant-modal-header {
2758
- margin: 0 auto;
2769
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link > span {
2770
+ overflow: hidden;
2771
+ text-overflow: ellipsis;
2759
2772
  width: 100%;
2760
- max-width: 1024px;
2773
+ vertical-align: middle;
2761
2774
  }
2762
- .h1p6d3y3 .ant-modal-header .ant-modal-title {
2763
- margin-left: 0;
2775
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row td.cell_status {
2776
+ line-height: 0px;
2764
2777
  }
2765
- .h1p6d3y3 .ant-modal-body {
2766
- margin: 0 auto;
2767
- padding: 0;
2768
- width: 100%;
2769
- max-width: 1024px;
2770
- overflow: hidden;
2778
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover + tr td {
2779
+ border-top-color: transparent;
2771
2780
  }
2772
- .h1p6d3y3 .ant-modal-body .horizontal-steps-wrapper {
2773
- margin-bottom: 40px;
2781
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td {
2782
+ background: rgba(225, 230, 241, 0.6);
2783
+ border-color: transparent transparent white;
2774
2784
  }
2775
- .h1p6d3y3 .ant-modal-body .horizontal-content-wrapper {
2776
- height: calc(100vh - 225px);
2777
- overflow-y: auto;
2785
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child {
2786
+ border-radius: 8px 0 0 8px;
2778
2787
  }
2779
- .h1p6d3y3 .ant-modal-footer .footer-content {
2780
- margin: 0 auto;
2781
- max-width: 1024px;
2788
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child .ant-table-cell-content {
2789
+ border-radius: 8px 0 0 8px;
2782
2790
  }
2783
-
2784
- .fxgckuk {
2785
- flex: 1;
2791
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:first-child::before {
2792
+ content: "";
2793
+ width: 4px;
2794
+ top: -1px;
2795
+ bottom: -1px;
2796
+ background: white;
2786
2797
  }
2787
- .fxgckuk label {
2788
- font-size: 13px;
2789
- line-height: 20px;
2790
- color: rgba(44, 56, 82, 0.6);
2798
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child {
2799
+ border-radius: 0 8px 8px 0;
2791
2800
  }
2792
- .fxgckuk .title {
2793
- font-size: 14px;
2794
- line-height: 20px;
2795
- color: #2d3a56;
2796
- margin-bottom: 12px;
2801
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ {
2802
+ border-radius: 0;
2803
+ background: white;
2804
+ border-top: none;
2797
2805
  }
2798
- .fxgckuk.connect-cluster .title {
2799
- padding-bottom: 26px;
2806
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ > * {
2807
+ border-top: 1px solid transparent;
2808
+ border-radius: 0 8px 8px 0;
2809
+ background: rgba(225, 230, 241, 0.6);
2800
2810
  }
2801
-
2802
- .f1d0vek1 {
2803
- padding: 25px 0 15px 0;
2804
- border-bottom: 1px solid #e1e5eb;
2805
- margin-bottom: 16px;
2811
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right {
2812
+ background: white;
2813
+ border-top: 1px solid rgba(211, 218, 235, 0.6);
2806
2814
  }
2807
-
2808
- .f4u402y {
2815
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right .ant-table-cell-content {
2809
2816
  display: flex;
2810
2817
  align-items: center;
2811
- margin-bottom: 8px;
2812
- }
2813
- .f4u402y > label {
2814
- width: 216px;
2815
- }
2816
- .f4u402y > label + * {
2817
- width: 100%;
2818
- }
2819
- .f4u402y .ant-select {
2820
- width: 100%;
2821
- }
2822
-
2823
- .e1pldf6v {
2824
- color: #e75a3a;
2825
- margin-right: 10px;
2818
+ height: 100%;
2819
+ background: rgba(225, 230, 241, 0.6);
2826
2820
  }
2827
-
2828
- .dq0gblh {
2829
- width: 100%;
2830
- height: 1px;
2831
- background: rgba(213, 219, 227, 0.6);
2832
- margin: 24px 0;
2821
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left {
2822
+ background: white;
2823
+ border-top: 1px solid rgba(211, 218, 235, 0.6);
2833
2824
  }
2834
-
2835
- .l1v7sr0n {
2825
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left .ant-table-cell-content {
2836
2826
  display: flex;
2837
- justify-content: center;
2838
2827
  align-items: center;
2839
2828
  height: 100%;
2829
+ background: rgba(225, 230, 241, 0.6);
2840
2830
  }
2841
-
2842
- .d1i4ou6o {
2843
- display: inline-block;
2844
- width: 4px;
2845
- height: 4px;
2846
- background: #8e9aa9;
2847
- opacity: 0.4;
2848
- border-radius: 50%;
2849
- margin: 0 4px;
2831
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row:last-child td {
2832
+ border-bottom: 1px solid rgba(211, 218, 235, 0.6);
2850
2833
  }
2851
-
2852
- .m1jy87hk .ant-modal-header,
2853
- .m1jy87hk .ant-modal-footer .footer-content {
2854
- width: 648px;
2855
- margin: 0 auto;
2834
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row {
2835
+ box-shadow: inset 0px 0px 0 2px rgba(0, 136, 255, 0.1);
2836
+ border-radius: 8px;
2856
2837
  }
2857
- .m1jy87hk .ant-modal-header {
2858
- padding: 35px 0 24px;
2859
- border: none;
2838
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row + tr td {
2839
+ border-top-color: white;
2860
2840
  }
2861
- .m1jy87hk .ant-modal-header .ant-modal-title {
2862
- font-size: 30px;
2841
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td {
2842
+ background: rgba(0, 136, 255, 0.1);
2843
+ border-bottom-color: transparent;
2844
+ border-top-color: transparent;
2863
2845
  }
2864
- .m1jy87hk .ant-modal-body {
2865
- padding: 4px 0 2px;
2846
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td:first-child {
2847
+ border-radius: 8px 0 0 8px;
2866
2848
  }
2867
- .m1jy87hk .ant-modal-footer {
2868
- border: none;
2849
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td:last-child {
2850
+ border-radius: 0 8px 8px 0;
2869
2851
  }
2870
-
2871
- .ti7fpyu {
2872
- font-size: 12px;
2873
- line-height: 18px;
2874
- font-weight: bold;
2875
- color: #fff;
2876
- padding: 0 4px;
2877
- border-radius: 4px;
2878
- display: inline-block;
2879
- background: var(--ti7fpyu-0);
2852
+ .tta5kd2 .ant-table .ant-table-tbody .ant-table-row.active-row td:hover {
2853
+ background: rgba(0, 136, 255, 0.1);
2880
2854
  }
2881
- .ti7fpyu:not(:first-child) {
2882
- margin-left: 4px;
2855
+ .tta5kd2 .ant-table .ant-table-thead > tr > th {
2856
+ background: #fff;
2857
+ font-weight: 400;
2858
+ position: relative;
2859
+ border-bottom: none;
2860
+ color: #00122e;
2861
+ transition: none;
2862
+ padding: 15px 8px 15px 8px;
2883
2863
  }
2884
-
2885
- .f1rest1f {
2886
- width: 100%;
2887
- height: 100%;
2888
- display: flex;
2889
- align-items: center;
2890
- justify-content: center;
2864
+ .tta5kd2 .ant-table .ant-table-thead > tr > th:not(:last-child):after {
2865
+ content: "";
2866
+ width: 1px;
2867
+ top: 0;
2868
+ bottom: 0;
2869
+ background: rgba(211, 218, 235, 0.6);
2870
+ position: absolute;
2871
+ right: 0;
2891
2872
  }
2892
-
2893
- .n1kbdoln {
2894
- font-size: 90%;
2895
- font-weight: bold;
2896
- background-color: rgba(240, 243, 247, 0.6);
2897
- padding: 1px 4px 1px;
2898
- margin-left: 2px;
2899
- margin-right: 2px;
2900
- border: 1px solid rgba(213, 219, 227, 0.6);
2901
- border-radius: 4px;
2873
+ .tta5kd2 .ant-table .ant-table-thead > tr > th.is-blank {
2874
+ padding: unset;
2875
+ }
2876
+ .tta5kd2 .ant-table .ant-table-thead > tr > th.is-blank:after {
2877
+ display: none;
2902
2878
  }
2903
-
2904
- .f1y3gta0.form-item-general {
2905
- width: 640px;
2879
+ .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-cell-ellipsis.ant-table-column-has-sorters .ant-table-column-sorters {
2880
+ width: 100%;
2881
+ overflow: hidden;
2882
+ white-space: nowrap;
2883
+ text-overflow: ellipsis;
2906
2884
  }
2907
- .f1y3gta0.form-item-general.form-item + .f1y3gta0.form-item-general.form-item {
2908
- margin-top: 16px;
2885
+ .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-cell-ellipsis.ant-table-column-has-sorters .ant-table-column-sorters > span {
2886
+ overflow: hidden;
2887
+ text-overflow: ellipsis;
2909
2888
  }
2910
- .f1y3gta0.form-item-compact {
2911
- width: 412px;
2889
+ .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters {
2890
+ padding: 15px 28px 15px 8px;
2912
2891
  }
2913
- .f1y3gta0.form-item-compact.form-item + .f1y3gta0.form-item-compact.form-item {
2914
- margin-top: 8px;
2892
+ .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters {
2893
+ padding: 0;
2915
2894
  }
2916
- .f1y3gta0 .form-item {
2917
- width: auto;
2895
+ .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon {
2896
+ position: absolute;
2897
+ right: 10px;
2898
+ top: 50%;
2899
+ transform: translateY(-50%);
2900
+ height: 16px;
2901
+ display: none;
2902
+ transition: transform 320ms ease;
2918
2903
  }
2919
- .f1y3gta0 .form-item-main {
2920
- position: relative;
2921
- display: flex;
2904
+ .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon.descend {
2905
+ display: block;
2906
+ transform: translateY(-50%) rotateX(180deg);
2922
2907
  }
2923
- .f1y3gta0 .form-item-extra {
2924
- margin-top: 4px;
2925
- width: 100%;
2926
- padding: 14px;
2927
- background: #f2f4f6;
2928
- font-size: 13px;
2929
- line-height: 1.8;
2930
- color: #8e9aa9;
2908
+ .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon.ascend {
2909
+ display: block;
2931
2910
  }
2932
- .f1y3gta0 .form-item-label {
2933
- padding-right: 12px;
2934
- font-size: 13px;
2935
- color: rgba(44, 56, 82, 0.6);
2911
+ .tta5kd2 .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorter {
2912
+ display: none;
2936
2913
  }
2937
- .f1y3gta0 .form-item-label.label-right {
2938
- text-align: right;
2914
+ .tta5kd2 .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.descend {
2915
+ transform: translateY(-50%);
2939
2916
  }
2940
- .f1y3gta0 .form-item-label,
2941
- .f1y3gta0 .form-item-control {
2942
- line-height: 32px;
2917
+ .tta5kd2 .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.ascend {
2918
+ transform: translateY(-50%) rotateX(180deg);
2943
2919
  }
2944
- .f1y3gta0 .form-item-control .form-item-error {
2945
- line-height: 18px;
2920
+ .tta5kd2 .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) {
2921
+ background: #f2f5fa;
2946
2922
  }
2947
- .f1y3gta0 .form-item-children {
2948
- width: 100%;
2923
+ .tta5kd2 .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) .ant-table-column-sorters .order-icon {
2924
+ display: block;
2949
2925
  }
2950
- .f1y3gta0 .form-item-children > *:only-child.ant-select, .f1y3gta0 .form-item-children > *:only-child.ant-radio-group, .f1y3gta0 .form-item-children > *:only-child.ant-checkbox-group {
2951
- width: 100%;
2926
+ .tta5kd2 .ant-table .ant-table-selection-column {
2927
+ padding: 0 !important;
2952
2928
  }
2953
- .f1y3gta0 .form-item-error {
2954
- color: #e75a3a;
2955
- height: 0;
2956
- overflow: hidden;
2929
+ .tta5kd2 .ant-table .ant-table-selection-column .ant-checkbox-wrapper {
2930
+ position: absolute;
2931
+ left: 50%;
2932
+ top: 50%;
2933
+ transform: translate(-50%, -50%);
2957
2934
  }
2958
- .f1y3gta0 .form-item-error-enter-done {
2959
- margin-top: 4px;
2960
- height: auto;
2961
- overflow: auto;
2935
+ .tta5kd2 .ant-table .ant-table-selection-column:after {
2936
+ display: none;
2962
2937
  }
2963
- .f1y3gta0.form-base-field:not(.form-base-field-array) .form-item-control.field-error .form-item-error > input:not(.ant-input),
2964
- .f1y3gta0.form-base-field:not(.form-base-field-array) .form-item-control.field-error .form-item-error :not(.ant-select) input {
2965
- border: 1px solid #e75a3a;
2966
- color: #e75a3a;
2938
+ .tta5kd2 .ant-table .ant-table-hide-scrollbar {
2939
+ background: #fff;
2967
2940
  }
2968
-
2969
- .fujbm7g {
2970
- color: #2d3a56;
2941
+ .tta5kd2 .ant-table .ant-table-placeholder {
2942
+ background: inherit;
2943
+ }
2944
+ .tta5kd2 .ant-table .ant-table-placeholder td {
2945
+ position: static;
2946
+ border: none;
2947
+ background: inherit !important;
2948
+ height: 100px;
2949
+ vertical-align: middle;
2950
+ }
2951
+ .tta5kd2 .ant-table .ant-table-placeholder .table-default-empty,
2952
+ .tta5kd2 .ant-table .ant-table-placeholder .ant-table-expanded-row-fixed {
2971
2953
  font-weight: bold;
2972
- padding-bottom: 6px;
2973
- border-bottom: 1px solid rgba(213, 219, 227, 0.6);
2974
- margin-bottom: 16px;
2954
+ font-size: 20px;
2955
+ color: rgba(10, 37, 85, 0.6);
2975
2956
  }
2976
- .fujbm7g:not(:first-of-type) {
2977
- margin-top: 16px;
2957
+ .tta5kd2 .ant-table td.cell__action_ {
2958
+ padding: 0 !important;
2959
+ position: relative;
2960
+ background: #fff;
2978
2961
  }
2979
-
2980
- .e5fsw5s {
2981
- width: 8px;
2982
- height: 24px;
2962
+ .tta5kd2 .ant-table td.cell__action_ > * {
2963
+ height: 100%;
2983
2964
  display: flex;
2984
- justify-content: center;
2985
2965
  align-items: center;
2986
- cursor: pointer;
2987
- transition: all 200ms ease-out 40ms;
2966
+ justify-content: flex-end;
2967
+ padding-right: 8px;
2988
2968
  }
2989
- .e5fsw5s:before, .e5fsw5s:after {
2990
- content: "";
2991
- width: 1px;
2992
- height: 6px;
2993
- border-radius: 1px;
2994
- background: #ccd4e3;
2995
- position: relative;
2996
- right: 2px;
2997
- transform: rotate(-45deg);
2969
+ .tta5kd2 .ant-table td.cell__action_ .menu-button {
2970
+ width: 24px;
2971
+ height: 24px;
2972
+ cursor: pointer;
2973
+ justify-content: center;
2974
+ border-radius: 4px;
2998
2975
  }
2999
- .e5fsw5s:after {
3000
- transform: rotate(45deg);
3001
- left: 1px;
2976
+ .tta5kd2 .ant-table td.cell__action_ .menu-button:hover {
2977
+ background: #fff;
3002
2978
  }
3003
2979
 
3004
- .w18knsg4.ant-alert-warning {
3005
- border: 0;
3006
- background: rgba(255, 187, 0, 0.1);
3007
- border-radius: 6px;
2980
+ .s34f1qb.ant-switch {
2981
+ min-width: 40px;
2982
+ height: 24px;
2983
+ background: rgba(172, 186, 211, 0.6);
2984
+ overflow: hidden;
3008
2985
  }
3009
- .w18knsg4.ant-alert,
3010
- .w18knsg4 .ant-alert-message {
3011
- color: #e07f00;
2986
+ .s34f1qb.ant-switch:focus {
2987
+ box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
3012
2988
  }
3013
- .w18knsg4.ant-alert .dashed-border-bottom,
3014
- .w18knsg4 .ant-alert-message .dashed-border-bottom {
3015
- border-bottom-color: #e07f00;
2989
+ .s34f1qb.ant-switch-small {
2990
+ min-width: 26px;
2991
+ height: 16px;
3016
2992
  }
3017
-
3018
- .ng31n2o {
3019
- display: flex;
3020
- flex-direction: row;
3021
- padding: 7px 12px;
3022
- background: rgba(255, 187, 0, 0.1);
3023
- border-radius: 6px;
3024
- color: #e07f00;
3025
- font-size: 12px;
3026
- line-height: 18px;
2993
+ .s34f1qb.ant-switch-large {
2994
+ min-width: 52px;
2995
+ height: 32px;
3027
2996
  }
3028
- .ng31n2o .icon-wrapper {
3029
- margin-right: 10px;
3030
- height: 18px;
2997
+ .s34f1qb.ant-switch .ant-switch-handle {
2998
+ height: 20px;
2999
+ width: 20px;
3031
3000
  }
3032
-
3033
- .n15x5f5y {
3034
- display: flex;
3035
- flex-direction: row;
3036
- padding: 7px 12px;
3037
- background: rgba(225, 230, 241, 0.6);
3038
- border-radius: 6px;
3039
- color: rgba(44, 56, 82, 0.6);
3040
- font-size: 12px;
3041
- line-height: 18px;
3001
+ .s34f1qb.ant-switch .ant-switch-handle::before {
3002
+ border-radius: 10px;
3003
+ transition-delay: 120ms;
3042
3004
  }
3043
- .n15x5f5y .icon-wrapper {
3044
- margin-right: 10px;
3045
- height: 18px;
3005
+ .s34f1qb.ant-switch-small .ant-switch-handle {
3006
+ height: 14px;
3007
+ width: 14px;
3008
+ top: 1px;
3009
+ left: 1px;
3046
3010
  }
3047
-
3048
- .i16ozz3f {
3049
- display: flex;
3050
- flex-direction: row;
3051
- padding: 7px 12px;
3052
- background: rgba(0, 136, 255, 0.1);
3053
- border-radius: 6px;
3054
- color: #005ed1;
3055
- font-size: 12px;
3056
- line-height: 18px;
3011
+ .s34f1qb.ant-switch-large .ant-switch-handle {
3012
+ height: 28px;
3013
+ width: 28px;
3057
3014
  }
3058
- .i16ozz3f .icon-wrapper {
3059
- margin-right: 10px;
3060
- height: 18px;
3015
+ .s34f1qb.ant-switch-large .ant-switch-handle::before {
3016
+ border-radius: 14px;
3061
3017
  }
3062
-
3063
- .dszu9qr {
3064
- color: rgba(44, 56, 82, 0.6);
3065
- margin-top: 5px;
3066
- font-size: 12px;
3067
- line-height: 18px;
3018
+ .s34f1qb.ant-switch-checked {
3019
+ background-color: #00ba5d;
3068
3020
  }
3069
-
3070
- .snxzgx {
3071
- color: #f0483e;
3072
- font-size: 12px;
3073
- white-space: pre-wrap;
3021
+ .s34f1qb.ant-switch-checked .ant-switch-handle {
3022
+ left: calc(100% - 20px - 2px);
3074
3023
  }
3075
-
3076
- .o1i4orqw {
3077
- display: flex;
3078
- align-items: center;
3079
- justify-content: flex-end;
3024
+ .s34f1qb.ant-switch-small.ant-switch-checked .ant-switch-handle {
3025
+ left: calc(100% - 14px - 1px);
3080
3026
  }
3081
- .o1i4orqw .icon-wrapper {
3082
- margin-right: 16px;
3027
+ .s34f1qb.ant-switch-large.ant-switch-checked .ant-switch-handle {
3028
+ left: calc(100% - 28px - 2px);
3083
3029
  }
3084
3030
 
3085
- .t79k8o2 {
3086
- color: rgba(0, 21, 64, 0.3);
3031
+ .c1to9vb9 {
3032
+ margin-left: 5px;
3087
3033
  }
3088
3034
 
3089
- .ipd9bk.ant-input {
3090
- padding: 5px 12px;
3091
- line-height: 20px;
3092
- color: #2d3a56;
3093
- border-radius: 6px;
3094
- border-color: rgba(172, 186, 211, 0.6);
3095
- transition: height 240ms ease 8ms, border 160ms ease 8ms, box-shadow 160ms ease 8ms;
3096
- }
3097
- .ipd9bk.ant-input.ant-input-lg {
3098
- padding: 8px 16px;
3099
- line-height: 22px;
3035
+ .rxbeqvl.ant-radio-wrapper {
3036
+ display: inline-flex;
3037
+ align-items: baseline;
3038
+ white-space: pre-wrap;
3100
3039
  }
3101
- .ipd9bk.ant-input.ant-input-sm {
3102
- padding: 2px 8px;
3103
- line-height: 18px;
3040
+ .rxbeqvl.ant-radio-wrapper .ant-radio {
3041
+ position: relative;
3042
+ top: 3px;
3104
3043
  }
3105
- .ipd9bk.ant-input:not([disabled]):hover, .ipd9bk.ant-input:not([disabled]).__pseudo-states-hover, .ipd9bk.ant-input-number:not([disabled]):hover, .ipd9bk.ant-input-number:not([disabled]).__pseudo-states-hover {
3044
+ .rxbeqvl.ant-radio-wrapper .ant-radio .ant-radio-inner {
3106
3045
  border-color: rgba(107, 128, 167, 0.6);
3107
- box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
3108
3046
  }
3109
- .ipd9bk.ant-input:not([disabled]):active, .ipd9bk.ant-input:not([disabled]):focus, .ipd9bk.ant-input:not([disabled]).__pseudo-states-active, .ipd9bk.ant-input:not([disabled]).__pseudo-states-focus, .ipd9bk.ant-input-number:not([disabled]):active, .ipd9bk.ant-input-number:not([disabled]):focus, .ipd9bk.ant-input-number:not([disabled]).__pseudo-states-active, .ipd9bk.ant-input-number:not([disabled]).__pseudo-states-focus {
3110
- border-color: #0096ff;
3111
- box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
3047
+ .rxbeqvl.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
3048
+ border-color: #0080ff;
3112
3049
  }
3113
- .ipd9bk.ant-input.error:not([disabled]), .ipd9bk.ant-picker.error:not([disabled]), .ipd9bk.ant-input-number.error:not([disabled]) {
3114
- border-color: #e75a3a;
3115
- color: #e75a3a;
3050
+ .rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
3051
+ border-color: #0080ff;
3052
+ background: #0080ff;
3116
3053
  }
3117
- .ipd9bk.ant-input.error:not([disabled]):hover, .ipd9bk.ant-input.error:not([disabled]).__pseudo-states-hover, .ipd9bk.ant-picker.error:not([disabled]):hover, .ipd9bk.ant-picker.error:not([disabled]).__pseudo-states-hover, .ipd9bk.ant-input-number.error:not([disabled]):hover, .ipd9bk.ant-input-number.error:not([disabled]).__pseudo-states-hover {
3118
- border-color: #e75a3a;
3119
- box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
3054
+ .rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
3055
+ top: 4px;
3056
+ left: 4px;
3057
+ width: 6px;
3058
+ height: 6px;
3059
+ background: #fff;
3120
3060
  }
3121
- .ipd9bk.ant-input.error:not([disabled]):active, .ipd9bk.ant-input.error:not([disabled]):focus, .ipd9bk.ant-input.error:not([disabled]).__pseudo-states-active, .ipd9bk.ant-input.error:not([disabled]).__pseudo-states-focus, .ipd9bk.ant-picker.error:not([disabled]):active, .ipd9bk.ant-picker.error:not([disabled]):focus, .ipd9bk.ant-picker.error:not([disabled]).__pseudo-states-active, .ipd9bk.ant-picker.error:not([disabled]).__pseudo-states-focus, .ipd9bk.ant-input-number.error:not([disabled]):active, .ipd9bk.ant-input-number.error:not([disabled]):focus, .ipd9bk.ant-input-number.error:not([disabled]).__pseudo-states-active, .ipd9bk.ant-input-number.error:not([disabled]).__pseudo-states-focus {
3122
- border-color: #e75a3a;
3123
- box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
3061
+ .rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled {
3062
+ opacity: 0.5;
3124
3063
  }
3125
- .ipd9bk.ant-input[disabled], .ipd9bk.ant-input.ant-input-disabled, .ipd9bk.ant-input-number[disabled], .ipd9bk.ant-input-number.ant-input-number-disabled {
3064
+ .rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner {
3065
+ border-color: rgba(107, 128, 167, 0.6);
3126
3066
  background: rgba(211, 218, 235, 0.6);
3127
- color: rgba(0, 21, 64, 0.3);
3128
- border-color: rgba(172, 186, 211, 0.6);
3129
3067
  }
3130
- .ipd9bk.ant-input-affix-wrapper {
3131
- padding: 5px 12px;
3132
- border-radius: 6px;
3133
- border-color: rgba(172, 186, 211, 0.6);
3134
- line-height: 20px;
3135
- color: #2d3a56;
3136
- transition: height 240ms ease 8ms, border 160ms ease 8ms, box-shadow 160ms ease 8ms;
3068
+ .rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner::after {
3069
+ background: #00122e;
3137
3070
  }
3138
- .ipd9bk.ant-input-affix-wrapper .ant-input-suffix,
3139
- .ipd9bk.ant-input-affix-wrapper .ant-input-prefix {
3071
+ .rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled + span {
3072
+ color: #00122e;
3073
+ opacity: 0.5;
3074
+ }
3075
+ .rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled + span .radio-description {
3076
+ color: #00122e;
3077
+ }
3078
+ .rxbeqvl.ant-radio-wrapper .ant-radio + span {
3079
+ display: inline-block;
3080
+ padding: 0;
3081
+ padding-left: 12px;
3082
+ }
3083
+ .rxbeqvl.ant-radio-wrapper .ant-radio + span .radio-description {
3084
+ margin-bottom: 0;
3085
+ white-space: pre-wrap;
3140
3086
  color: rgba(44, 56, 82, 0.6);
3141
3087
  }
3142
- .ipd9bk.ant-input-affix-wrapper.ant-input-affix-wrapper-lg {
3143
- padding: 8px 16px;
3144
- line-height: 22px;
3088
+ .rxbeqvl.ant-radio-wrapper.compact .ant-radio + span {
3089
+ padding-left: 8px;
3145
3090
  }
3146
- .ipd9bk.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
3147
- padding: 2px 8px;
3148
- line-height: 18px;
3091
+
3092
+ .r5ie79y .ant-radio-button-wrapper:first-child {
3093
+ border-radius: 5px 0 0 5px;
3149
3094
  }
3150
- .ipd9bk.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover, .ipd9bk.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).__pseudo-states-hover {
3151
- border-color: rgba(107, 128, 167, 0.6);
3152
- box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
3095
+ .r5ie79y .ant-radio-button-wrapper:last-child {
3096
+ border-radius: 0 5px 5px 0;
3153
3097
  }
3154
- .ipd9bk.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):active, .ipd9bk.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):focus, .ipd9bk.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).ant-input-affix-wrapper-focused, .ipd9bk.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).__pseudo-states-active, .ipd9bk.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).__pseudo-states-focus {
3155
- border-color: #0096ff;
3156
- box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
3098
+
3099
+ .r1f0aqcc {
3100
+ color: #00122e;
3101
+ border-color: #ccd4e3;
3157
3102
  }
3158
- .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled) {
3159
- border-color: #e75a3a;
3103
+ .r1f0aqcc:first-child {
3104
+ color: #00122e;
3105
+ border-color: #a3b4cc;
3160
3106
  }
3161
- .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled) > .ant-input {
3162
- color: #e75a3a;
3107
+ .r1f0aqcc.ant-radio-button-wrapper {
3108
+ padding: 0 12px;
3109
+ line-height: 32px;
3110
+ height: 32px;
3163
3111
  }
3164
- .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled):hover, .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).__pseudo-states-hover {
3165
- border-color: #e75a3a;
3166
- box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
3112
+ .r1f0aqcc.ant-radio-button-wrapper > span + span {
3113
+ white-space: nowrap;
3167
3114
  }
3168
- .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled):active, .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled):focus, .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).ant-input-affix-wrapper-focused, .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).__pseudo-states-active, .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).__pseudo-states-focus {
3169
- border-color: #e75a3a;
3170
- box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
3115
+ .r1f0aqcc.ant-radio-button-wrapper:not(:first-child)::before {
3116
+ background: #ccd4e3;
3171
3117
  }
3172
- .ipd9bk.ant-input-affix-wrapper.ant-input-affix-wrapper-disabled {
3118
+ .r1f0aqcc.ant-radio-button-wrapper-checked:not(:first-child)::before {
3119
+ background: #0080ff;
3120
+ }
3121
+ .r1f0aqcc.ant-radio-button-wrapper-disabled:not(:first-child)::before {
3122
+ background: #ccd4e3;
3123
+ opacity: 0.5;
3124
+ }
3125
+ .r1f0aqcc.ant-radio-button-wrapper-checked:not([class*=" ant-radio-button-wrapper-disabled"]).ant-radio-button-wrapper:first-child {
3126
+ border-right-color: #0080ff;
3127
+ }
3128
+ .r1f0aqcc.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
3129
+ border-color: #0080ff;
3130
+ }
3131
+ .r1f0aqcc.ant-radio-button-wrapper-checked {
3132
+ background: rgba(0, 136, 255, 0.1);
3133
+ }
3134
+ .r1f0aqcc.ant-radio-button-wrapper-disabled {
3173
3135
  background: rgba(211, 218, 235, 0.6);
3174
- color: rgba(0, 21, 64, 0.3);
3175
- border-color: rgba(172, 186, 211, 0.6);
3136
+ border-color: #ccd4e3;
3137
+ opacity: 0.5;
3176
3138
  }
3177
- textarea.ipd9bk.ant-input {
3178
- transition-property: height;
3179
- transition-delay: 50ms;
3139
+ .r1f0aqcc.ant-radio-button-wrapper-disabled:hover {
3140
+ color: #00122e;
3141
+ border-color: #ccd4e3;
3180
3142
  }
3181
- textarea.ipd9bk.ant-input.textarea-large {
3182
- min-height: 40px;
3183
- height: 40px;
3143
+ .r1f0aqcc.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
3144
+ color: #00122e;
3145
+ border-color: #ccd4e3;
3146
+ background: rgba(172, 186, 211, 0.6);
3184
3147
  }
3185
- textarea.ipd9bk.ant-input.textarea-large:focus {
3186
- height: 80px;
3148
+ .r1f0aqcc .ant-radio-button-input {
3149
+ margin-right: 8px;
3150
+ display: inline;
3151
+ border: none;
3152
+ padding: 0;
3153
+ width: 36px;
3154
+ background: transparent;
3187
3155
  }
3188
- textarea.ipd9bk.ant-input.textarea-middle {
3189
- min-height: 32px;
3190
- height: 32px;
3156
+ .r1f0aqcc .ant-radio-button-input:focus {
3157
+ box-shadow: none;
3191
3158
  }
3192
- textarea.ipd9bk.ant-input.textarea-middle:focus {
3193
- height: 64px;
3159
+ .r1f0aqcc .ant-radio-button-input.ant-input-number {
3160
+ margin-right: 0;
3161
+ width: initial;
3162
+ box-shadow: none;
3194
3163
  }
3195
- textarea.ipd9bk.ant-input.textarea-small {
3196
- min-height: 24px;
3197
- height: 24px;
3164
+ .r1f0aqcc .ant-radio-button-input .ant-input-number-handler-wrap {
3165
+ display: none;
3198
3166
  }
3199
- textarea.ipd9bk.ant-input.textarea-small:focus {
3200
- height: 40px;
3167
+ .r1f0aqcc .ant-radio-button-input .ant-input-number-input-wrap {
3168
+ display: inline;
3169
+ }
3170
+ .r1f0aqcc .ant-radio-button-input .ant-input-number-input-wrap input {
3171
+ display: inline;
3172
+ margin-right: 8px;
3173
+ padding: 0;
3174
+ width: 36px;
3201
3175
  }
3202
3176
 
3203
- .kypn5o5 input, .kypn5o5.input-tags {
3204
- border: 1px solid rgba(213, 219, 227, 0.6);
3205
- border-radius: 4px;
3177
+ .fde5mpd {
3178
+ width: 100%;
3179
+ height: 100%;
3180
+ min-height: 124px;
3181
+ display: flex;
3182
+ flex-direction: column;
3183
+ justify-content: center;
3184
+ align-items: center;
3206
3185
  }
3207
- .kypn5o5.input-tags {
3208
- position: relative;
3209
- padding: 6px;
3210
- height: 32px;
3186
+ .fde5mpd .error-text {
3187
+ color: rgba(10, 37, 85, 0.6);
3188
+ margin-bottom: 16px;
3189
+ font-size: 18px;
3190
+ }
3191
+
3192
+ .p12gwtiw {
3193
+ display: flex;
3194
+ justify-content: space-between;
3195
+ align-items: center;
3196
+ padding: 10px 0;
3197
+ color: rgba(44, 56, 82, 0.6);
3198
+ font-size: 12px;
3199
+ line-height: 24px;
3200
+ }
3201
+ .p12gwtiw .pagination-left {
3202
+ padding: 2px 8px;
3203
+ }
3204
+ .p12gwtiw .dropdown-trigger {
3205
+ display: flex;
3206
+ align-items: center;
3207
+ border-radius: 6px;
3211
3208
  cursor: pointer;
3212
- transition: border 150ms;
3209
+ transition: all 0.3s ease;
3213
3210
  }
3214
- .kypn5o5.input-tags:hover {
3215
- border-color: #0080ff;
3216
- box-shadow: 0 0 0px 2px rgba(0, 128, 255, 0.1);
3211
+ .p12gwtiw .dropdown-trigger:hover {
3212
+ background: rgba(211, 218, 235, 0.6);
3213
+ color: #0080ff;
3217
3214
  }
3218
- .kypn5o5.input-tags.kit-input-suffix-wrapper {
3219
- padding-right: 30px;
3215
+ .p12gwtiw .dropdown-trigger .icon-inner {
3216
+ margin-left: 4px;
3220
3217
  }
3221
- .kypn5o5.input-tags .input-tags-inner {
3218
+ .p12gwtiw .pagination-right {
3222
3219
  display: flex;
3220
+ align-items: center;
3221
+ color: #0080ff;
3222
+ font-weight: bold;
3223
+ }
3224
+ .p12gwtiw .pagination-right .icon-inner {
3225
+ margin-left: 4px;
3223
3226
  }
3224
- .kypn5o5.input-tags .input-tags-inner .tags-overflow-auto {
3225
- display: flex;
3227
+ .p12gwtiw .pagination-right .prev-btn,
3228
+ .p12gwtiw .pagination-right .next-btn {
3229
+ padding: 0 8px;
3226
3230
  }
3227
- .kypn5o5.input-tags .input-tag-suffix {
3228
- position: absolute;
3229
- right: 12px;
3230
- top: 50%;
3231
- transform: translateY(-50%);
3231
+ .p12gwtiw .pagination-right .prev-btn > span,
3232
+ .p12gwtiw .pagination-right .next-btn > span {
3233
+ color: #0080ff;
3232
3234
  }
3233
- .kypn5o5.input-tags .input-tag-suffix .anticon-close-circle {
3234
- color: rgba(0, 0, 0, 0.25);
3235
- font-size: 12px;
3236
- cursor: pointer;
3235
+ .p12gwtiw .pagination-right .next-btn .icon-inner {
3236
+ transform: rotate(180deg);
3237
3237
  }
3238
- .kypn5o5.input-tags .input-tag-suffix .anticon-close-circle:hover {
3239
- color: rgba(0, 0, 0, 0.45);
3238
+
3239
+ .d1bnu0in.ant-dropdown .ant-dropdown-menu {
3240
+ max-height: calc(100vh - 128px);
3241
+ overflow-y: auto;
3240
3242
  }
3241
- .kypn5o5.has-focus-indicator {
3242
- position: relative;
3243
- overflow: hidden;
3243
+ .d1bnu0in.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
3244
+ padding: 4px 20px;
3245
+ font-size: 12px;
3246
+ line-height: 18px;
3244
3247
  }
3245
- .kypn5o5.has-focus-indicator .ant-input-prefix {
3246
- position: absolute;
3247
- top: 50%;
3248
- transform: translateY(-50%);
3249
- left: -16px;
3250
- transition: left 150ms ease;
3251
- opacity: 0;
3248
+
3249
+ .i1mrf09m {
3250
+ display: inline-flex;
3251
+ align-items: center;
3252
3252
  }
3253
- .kypn5o5.has-focus-indicator.ant-input-affix-wrapper-focused .ant-input-prefix {
3254
- left: 8px;
3255
- opacity: 1;
3253
+ .i1mrf09m .icon-inner {
3254
+ display: inline-flex;
3255
+ align-items: center;
3256
+ justify-content: center;
3256
3257
  }
3257
- .kypn5o5.has-focus-indicator input {
3258
- transition: margin-left 150ms ease;
3259
- margin-left: 0px;
3258
+ .i1mrf09m .icon-inner + span,
3259
+ .i1mrf09m span + .icon-inner.suffix {
3260
+ margin-left: 4px;
3260
3261
  }
3261
- .kypn5o5.has-focus-indicator input:focus {
3262
- margin-left: 16px;
3262
+ .i1mrf09m.is-rotate img,
3263
+ .i1mrf09m.is-rotate svg {
3264
+ animation: rotate 680ms linear infinite;
3263
3265
  }
3264
3266
 
3265
- input.l1ki27se.ant-input {
3266
- border-top-right-radius: 0;
3267
- border-bottom-right-radius: 0;
3267
+ .bpq0js6 {
3268
+ padding: 4px 11px;
3268
3269
  }
3269
3270
 
3270
- .l1ki27se.ant-input-affix-wrapper {
3271
- border-top-right-radius: 0;
3272
- border-bottom-right-radius: 0;
3271
+ .b15sn34c {
3272
+ white-space: nowrap;
3273
+ filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
3273
3274
  }
3274
-
3275
- input.rrg1fkn.ant-input {
3276
- border-top-left-radius: 0;
3277
- border-bottom-left-radius: 0;
3275
+ .b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
3276
+ --color: #0080ff;
3278
3277
  }
3279
-
3280
- .rrg1fkn.ant-input-affix-wrapper {
3281
- border-top-left-radius: 0;
3282
- border-bottom-left-radius: 0;
3278
+ .b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
3279
+ --color: #0080ff;
3283
3280
  }
3284
-
3285
- .lgr9b02.ant-select, .lgr9b02.ant-select .ant-select-selector {
3281
+ .b15sn34c > .ant-btn:not(:only-child) + .ant-btn {
3282
+ margin-left: 1px;
3283
+ }
3284
+ .b15sn34c > .ant-btn:not(:only-child):first-child {
3286
3285
  border-top-right-radius: 0;
3287
3286
  border-bottom-right-radius: 0;
3288
3287
  }
3289
-
3290
- .r1af6yu8.ant-select, .r1af6yu8.ant-select .ant-select-selector {
3288
+ .b15sn34c > .ant-btn:not(:only-child):last-child {
3291
3289
  border-top-left-radius: 0;
3292
3290
  border-bottom-left-radius: 0;
3293
3291
  }
3292
+ .b15sn34c > .ant-btn:not(:only-child):not(:first-child, :last-child) {
3293
+ border-radius: unset;
3294
+ }
3295
+
3296
+ .i1e4sgug {
3297
+ display: inline-block;
3298
+ }
3294
3299
 
3295
3300
  .d6j0lbj {
3296
3301
  font-family: Inter;
@@ -3767,10 +3772,6 @@ input.rrg1fkn.ant-input {
3767
3772
  line-height: 12px;
3768
3773
  }
3769
3774
 
3770
- .i1e4sgug {
3771
- display: inline-block;
3772
- }
3773
-
3774
3775
  .c198s9j3 {
3775
3776
  color: #2d3a56;
3776
3777
  line-height: 22px;
@@ -3842,14 +3843,8 @@ input.rrg1fkn.ant-input {
3842
3843
  margin-left: 24px;
3843
3844
  }
3844
3845
 
3845
- .igz4le8 {
3846
- height: 24px;
3847
- width: 56px !important;
3848
- margin-right: 4px;
3849
- }
3850
-
3851
- .c1riexje {
3852
- color: rgba(44, 56, 82, 0.6);
3846
+ .iiqau4c.ant-input-group.ant-input-group-compact {
3847
+ display: flex;
3853
3848
  }
3854
3849
 
3855
3850
  .shq1k1g.ant-select, .shq1k1g.ant-select .ant-select-selector {
@@ -3861,215 +3856,60 @@ input.rrg1fkn.ant-input {
3861
3856
  color: #2d3a56;
3862
3857
  border-color: rgba(211, 218, 235, 0.6);
3863
3858
  transition: border 160ms ease 8ms, box-shadow 160ms ease 8ms;
3864
- font-size: 13px;
3865
- }
3866
- .shq1k1g.ant-select.ant-select-single.ant-select-lg {
3867
- height: 38px;
3868
- font-size: 13px;
3869
- }
3870
- .shq1k1g.ant-select.ant-select-single .ant-select-arrow,
3871
- .shq1k1g.ant-select.ant-select-single .ant-select-arrow .anticon-down {
3872
- transition: 160ms ease;
3873
- }
3874
- .shq1k1g.ant-select.ant-select-single .ant-select-arrow-loading {
3875
- color: #0080ff;
3876
- }
3877
- .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-selector, .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-selector {
3878
- border-color: rgba(107, 128, 167, 0.6);
3879
- box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
3880
- }
3881
- .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-arrow, .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
3882
- color: #0080ff;
3883
- }
3884
- .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled):active .ant-select-selector, .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled):focus .ant-select-selector, .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-selector, .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector, .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector {
3885
- border-color: #0080ff;
3886
- box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
3887
- }
3888
- .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
3889
- transform: rotate(180deg);
3890
- }
3891
- .shq1k1g.ant-select.ant-select-single.ant-select-disabled .ant-select-selector {
3892
- background: rgba(211, 218, 235, 0.6);
3893
- border-color: rgba(172, 186, 211, 0.6);
3894
- cursor: "not-allowed";
3895
- }
3896
- .shq1k1g.ant-select.select-error:not(.ant-select-disabled) .ant-select-selector {
3897
- border-color: #f0483e !important;
3898
- }
3899
- .shq1k1g.ant-select.select-error:not(.ant-select-disabled):hover .ant-select-arrow, .shq1k1g.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
3900
- color: #1d326c;
3901
- }
3902
- .shq1k1g.ant-select.select-error:not(.ant-select-disabled):active .ant-select-selector, .shq1k1g.ant-select.select-error:not(.ant-select-disabled):focus .ant-select-selector, .shq1k1g.ant-select.select-error:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .shq1k1g.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-selector, .shq1k1g.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector, .shq1k1g.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector {
3903
- border-color: #0080ff;
3904
- box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
3905
- }
3906
- .shq1k1g.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
3907
- transform: rotate(180deg);
3908
- }
3909
-
3910
- .iiqau4c.ant-input-group.ant-input-group-compact {
3911
- display: flex;
3912
- }
3913
-
3914
- .m1thnes4 {
3915
- color: rgba(44, 56, 82, 0.6);
3916
- text-align: center;
3917
- display: flex;
3918
- align-items: center;
3919
- justify-content: center;
3920
- flex-direction: column;
3921
- height: 100%;
3922
- }
3923
- .m1thnes4 .link {
3924
- color: #0080ff;
3925
- cursor: pointer;
3926
- }
3927
-
3928
- .m1bixfdy {
3929
- width: 100%;
3930
- height: 100%;
3931
- display: flex;
3932
- flex-direction: column;
3933
- }
3934
- .m1bixfdy .name-toolbar {
3935
- width: 100%;
3936
- display: flex;
3937
- line-height: 30px;
3938
- padding: 0 16px;
3939
- justify-content: space-between;
3940
- }
3941
- .m1bixfdy .name-toolbar .metric-extra {
3942
- display: flex;
3943
- font-size: 12px;
3944
- align-items: center;
3945
- }
3946
- .m1bixfdy .name-toolbar .metric-extra .info-item {
3947
- color: #a3b4cc;
3948
- }
3949
- .m1bixfdy .name-toolbar .metric-extra .info-item + .info-item {
3950
- margin-left: 10px;
3951
- }
3952
- .m1bixfdy .name-toolbar .metric-extra .menu-trigger {
3953
- margin-left: 10px;
3954
- cursor: pointer;
3955
- }
3956
- .m1bixfdy .content {
3957
- flex: 1;
3958
- width: 100%;
3959
- display: flex;
3960
- justify-content: center;
3961
- align-items: center;
3962
- }
3963
- .m1bixfdy .single-content {
3964
- height: 65px;
3965
- }
3966
-
3967
- .lfamfcw {
3968
- display: flex;
3969
- align-items: center;
3970
- white-space: nowrap;
3971
- overflow: hidden;
3972
- width: 100%;
3973
- }
3974
- .lfamfcw .ant-dropdown-trigger {
3975
- margin-left: auto;
3976
- font-size: 12px;
3977
- }
3978
-
3979
- .la6u9b4 {
3980
- display: flex;
3981
- justify-content: flex-start;
3982
- align-items: center;
3983
- font-size: 12px;
3984
- cursor: pointer;
3985
- }
3986
- .la6u9b4:not(:last-child) {
3987
- margin-right: 20px;
3988
- }
3989
- .la6u9b4.deselected {
3990
- opacity: 0.4;
3991
- }
3992
- .la6u9b4.deselected .color-block {
3993
- background: #b4beca !important;
3994
- }
3995
-
3996
- .chhvk8b {
3997
- display: inline-block;
3998
- height: 8px;
3999
- width: 8px;
4000
- margin-right: 8px;
4001
- }
4002
-
4003
- .e1sdlxq1 .ant-dropdown-menu-item {
4004
- display: flex;
4005
- align-items: center;
4006
- font-size: 12px;
4007
- margin: 0;
3859
+ font-size: 13px;
4008
3860
  }
4009
-
4010
- .m16f7gpb {
4011
- position: relative;
3861
+ .shq1k1g.ant-select.ant-select-single.ant-select-lg {
3862
+ height: 38px;
3863
+ font-size: 13px;
4012
3864
  }
4013
- .m16f7gpb.hidden-xaxis .pointer-wrapper {
4014
- bottom: -12px;
3865
+ .shq1k1g.ant-select.ant-select-single .ant-select-arrow,
3866
+ .shq1k1g.ant-select.ant-select-single .ant-select-arrow .anticon-down {
3867
+ transition: 160ms ease;
4015
3868
  }
4016
- .m16f7gpb .metric-toolbar {
4017
- display: flex;
4018
- justify-content: space-between;
4019
- line-height: 30px;
4020
- margin: 0 16px;
3869
+ .shq1k1g.ant-select.ant-select-single .ant-select-arrow-loading {
3870
+ color: #0080ff;
4021
3871
  }
4022
- .m16f7gpb .metric-toolbar .metric-extra {
4023
- display: flex;
4024
- font-size: 12px;
4025
- align-items: center;
3872
+ .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-selector, .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-selector {
3873
+ border-color: rgba(107, 128, 167, 0.6);
3874
+ box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
4026
3875
  }
4027
- .m16f7gpb .metric-toolbar .metric-extra .info-item {
4028
- color: #a3b4cc;
3876
+ .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-arrow, .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
3877
+ color: #0080ff;
4029
3878
  }
4030
- .m16f7gpb .metric-toolbar .metric-extra .info-item + .info-item {
4031
- margin-left: 10px;
3879
+ .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled):active .ant-select-selector, .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled):focus .ant-select-selector, .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-selector, .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector, .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector {
3880
+ border-color: #0080ff;
3881
+ box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
4032
3882
  }
4033
- .m16f7gpb .metric-toolbar .metric-extra .menu-trigger {
4034
- margin-left: 10px;
4035
- cursor: pointer;
3883
+ .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
3884
+ transform: rotate(180deg);
4036
3885
  }
4037
- .m16f7gpb .recharts-xAxis {
4038
- font-size: 12px;
3886
+ .shq1k1g.ant-select.ant-select-single.ant-select-disabled .ant-select-selector {
3887
+ background: rgba(211, 218, 235, 0.6);
3888
+ border-color: rgba(172, 186, 211, 0.6);
3889
+ cursor: "not-allowed";
4039
3890
  }
4040
- .m16f7gpb .pointer-wrapper {
4041
- position: absolute;
4042
- bottom: 10px;
4043
- padding: 0 8px;
4044
- border-radius: 4px;
4045
- font-size: 12px;
4046
- color: #fff;
4047
- background: rgba(0, 0, 0, 0.75);
4048
- transform: translateX(-50%);
3891
+ .shq1k1g.ant-select.select-error:not(.ant-select-disabled) .ant-select-selector {
3892
+ border-color: #f0483e !important;
4049
3893
  }
4050
-
4051
- .t1ipvk51 {
4052
- min-width: 200px;
3894
+ .shq1k1g.ant-select.select-error:not(.ant-select-disabled):hover .ant-select-arrow, .shq1k1g.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
3895
+ color: #1d326c;
4053
3896
  }
4054
-
4055
- .t1kgldps {
4056
- display: flex;
4057
- align-items: center;
4058
- justify-content: space-between;
4059
- background-color: rgba(0, 0, 0, 0.75);
4060
- color: #b4beca;
4061
- font-size: 12px;
4062
- padding: 3px 6px;
3897
+ .shq1k1g.ant-select.select-error:not(.ant-select-disabled):active .ant-select-selector, .shq1k1g.ant-select.select-error:not(.ant-select-disabled):focus .ant-select-selector, .shq1k1g.ant-select.select-error:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .shq1k1g.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-selector, .shq1k1g.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector, .shq1k1g.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector {
3898
+ border-color: #0080ff;
3899
+ box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
4063
3900
  }
4064
- .t1kgldps:first-child {
4065
- padding-top: 3px;
3901
+ .shq1k1g.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
3902
+ transform: rotate(180deg);
4066
3903
  }
4067
- .t1kgldps:last-child {
4068
- padding-bottom: 3px;
3904
+
3905
+ .igz4le8 {
3906
+ height: 24px;
3907
+ width: 56px !important;
3908
+ margin-right: 4px;
4069
3909
  }
4070
- .t1kgldps .column-value {
4071
- color: #fff;
4072
- margin-left: 8px;
3910
+
3911
+ .c1riexje {
3912
+ color: rgba(44, 56, 82, 0.6);
4073
3913
  }
4074
3914
 
4075
3915
  .t1gz6wqf {
@@ -4102,6 +3942,10 @@ input.rrg1fkn.ant-input {
4102
3942
  background: rgba(163, 180, 204, 0.18);
4103
3943
  }
4104
3944
 
3945
+ .asgcu6r {
3946
+ height: 32px;
3947
+ }
3948
+
4105
3949
  .d1h5z4k4.ant-dropdown {
4106
3950
  background: #fff;
4107
3951
  border: 1px solid #dfe4eb;
@@ -4236,8 +4080,165 @@ input.rrg1fkn.ant-input {
4236
4080
  display: block;
4237
4081
  }
4238
4082
 
4239
- .asgcu6r {
4240
- height: 32px;
4083
+ .m1thnes4 {
4084
+ color: rgba(44, 56, 82, 0.6);
4085
+ text-align: center;
4086
+ display: flex;
4087
+ align-items: center;
4088
+ justify-content: center;
4089
+ flex-direction: column;
4090
+ height: 100%;
4091
+ }
4092
+ .m1thnes4 .link {
4093
+ color: #0080ff;
4094
+ cursor: pointer;
4095
+ }
4096
+
4097
+ .m1bixfdy {
4098
+ width: 100%;
4099
+ height: 100%;
4100
+ display: flex;
4101
+ flex-direction: column;
4102
+ }
4103
+ .m1bixfdy .name-toolbar {
4104
+ width: 100%;
4105
+ display: flex;
4106
+ line-height: 30px;
4107
+ padding: 0 16px;
4108
+ justify-content: space-between;
4109
+ }
4110
+ .m1bixfdy .name-toolbar .metric-extra {
4111
+ display: flex;
4112
+ font-size: 12px;
4113
+ align-items: center;
4114
+ }
4115
+ .m1bixfdy .name-toolbar .metric-extra .info-item {
4116
+ color: #a3b4cc;
4117
+ }
4118
+ .m1bixfdy .name-toolbar .metric-extra .info-item + .info-item {
4119
+ margin-left: 10px;
4120
+ }
4121
+ .m1bixfdy .name-toolbar .metric-extra .menu-trigger {
4122
+ margin-left: 10px;
4123
+ cursor: pointer;
4124
+ }
4125
+ .m1bixfdy .content {
4126
+ flex: 1;
4127
+ width: 100%;
4128
+ display: flex;
4129
+ justify-content: center;
4130
+ align-items: center;
4131
+ }
4132
+ .m1bixfdy .single-content {
4133
+ height: 65px;
4134
+ }
4135
+
4136
+ .lfamfcw {
4137
+ display: flex;
4138
+ align-items: center;
4139
+ white-space: nowrap;
4140
+ overflow: hidden;
4141
+ width: 100%;
4142
+ }
4143
+ .lfamfcw .ant-dropdown-trigger {
4144
+ margin-left: auto;
4145
+ font-size: 12px;
4146
+ }
4147
+
4148
+ .la6u9b4 {
4149
+ display: flex;
4150
+ justify-content: flex-start;
4151
+ align-items: center;
4152
+ font-size: 12px;
4153
+ cursor: pointer;
4154
+ }
4155
+ .la6u9b4:not(:last-child) {
4156
+ margin-right: 20px;
4157
+ }
4158
+ .la6u9b4.deselected {
4159
+ opacity: 0.4;
4160
+ }
4161
+ .la6u9b4.deselected .color-block {
4162
+ background: #b4beca !important;
4163
+ }
4164
+
4165
+ .chhvk8b {
4166
+ display: inline-block;
4167
+ height: 8px;
4168
+ width: 8px;
4169
+ margin-right: 8px;
4170
+ }
4171
+
4172
+ .e1sdlxq1 .ant-dropdown-menu-item {
4173
+ display: flex;
4174
+ align-items: center;
4175
+ font-size: 12px;
4176
+ margin: 0;
4177
+ }
4178
+
4179
+ .m16f7gpb {
4180
+ position: relative;
4181
+ }
4182
+ .m16f7gpb.hidden-xaxis .pointer-wrapper {
4183
+ bottom: -12px;
4184
+ }
4185
+ .m16f7gpb .metric-toolbar {
4186
+ display: flex;
4187
+ justify-content: space-between;
4188
+ line-height: 30px;
4189
+ margin: 0 16px;
4190
+ }
4191
+ .m16f7gpb .metric-toolbar .metric-extra {
4192
+ display: flex;
4193
+ font-size: 12px;
4194
+ align-items: center;
4195
+ }
4196
+ .m16f7gpb .metric-toolbar .metric-extra .info-item {
4197
+ color: #a3b4cc;
4198
+ }
4199
+ .m16f7gpb .metric-toolbar .metric-extra .info-item + .info-item {
4200
+ margin-left: 10px;
4201
+ }
4202
+ .m16f7gpb .metric-toolbar .metric-extra .menu-trigger {
4203
+ margin-left: 10px;
4204
+ cursor: pointer;
4205
+ }
4206
+ .m16f7gpb .recharts-xAxis {
4207
+ font-size: 12px;
4208
+ }
4209
+ .m16f7gpb .pointer-wrapper {
4210
+ position: absolute;
4211
+ bottom: 10px;
4212
+ padding: 0 8px;
4213
+ border-radius: 4px;
4214
+ font-size: 12px;
4215
+ color: #fff;
4216
+ background: rgba(0, 0, 0, 0.75);
4217
+ transform: translateX(-50%);
4218
+ }
4219
+
4220
+ .t1ipvk51 {
4221
+ min-width: 200px;
4222
+ }
4223
+
4224
+ .t1kgldps {
4225
+ display: flex;
4226
+ align-items: center;
4227
+ justify-content: space-between;
4228
+ background-color: rgba(0, 0, 0, 0.75);
4229
+ color: #b4beca;
4230
+ font-size: 12px;
4231
+ padding: 3px 6px;
4232
+ }
4233
+ .t1kgldps:first-child {
4234
+ padding-top: 3px;
4235
+ }
4236
+ .t1kgldps:last-child {
4237
+ padding-bottom: 3px;
4238
+ }
4239
+ .t1kgldps .column-value {
4240
+ color: #fff;
4241
+ margin-left: 8px;
4241
4242
  }
4242
4243
 
4243
4244
  .at4ovwe .ant-input-number-handler-wrap {