@arco-themes/react-aiux2026 0.0.13 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -0
- package/css/arco.css +1 -1
- package/package.json +2 -2
- package/theme.less +331 -33
- package/tokens.less +7 -7
- package/variables.less +7 -6
package/package.json
CHANGED
package/theme.less
CHANGED
|
@@ -1575,6 +1575,32 @@
|
|
|
1575
1575
|
border-right: none;
|
|
1576
1576
|
}
|
|
1577
1577
|
}
|
|
1578
|
+
.arco-table {
|
|
1579
|
+
.arco-table-sorter-icon {
|
|
1580
|
+
&:hover svg {
|
|
1581
|
+
color: rgb(var(--primary-5));
|
|
1582
|
+
}
|
|
1583
|
+
&:active svg {
|
|
1584
|
+
color: rgb(var(--primary-7));
|
|
1585
|
+
}
|
|
1586
|
+
&.arco-table-sorter-icon-active svg {
|
|
1587
|
+
color: rgb(var(--primary-7));
|
|
1588
|
+
}
|
|
1589
|
+
}
|
|
1590
|
+
.arco-table-th-item.arco-table-col-has-filter {
|
|
1591
|
+
.arco-table-filters {
|
|
1592
|
+
&:hover svg {
|
|
1593
|
+
color: rgb(var(--primary-5));
|
|
1594
|
+
}
|
|
1595
|
+
&:active svg {
|
|
1596
|
+
color: rgb(var(--primary-7));
|
|
1597
|
+
}
|
|
1598
|
+
&.arco-table-filters-active svg{
|
|
1599
|
+
color: rgb(var(--primary-7));
|
|
1600
|
+
}
|
|
1601
|
+
}
|
|
1602
|
+
}
|
|
1603
|
+
}
|
|
1578
1604
|
|
|
1579
1605
|
// tooltip
|
|
1580
1606
|
.arco-tooltip-content {
|
|
@@ -1600,29 +1626,40 @@
|
|
|
1600
1626
|
.arco-tree {
|
|
1601
1627
|
.arco-tree-node {
|
|
1602
1628
|
border-radius: 2px;
|
|
1603
|
-
|
|
1604
1629
|
.arco-tree-node-switcher {
|
|
1605
1630
|
width: 24px;
|
|
1606
1631
|
margin-right: 0;
|
|
1607
1632
|
display: flex;
|
|
1608
1633
|
align-items: center;
|
|
1609
1634
|
justify-content: center;
|
|
1635
|
+
.arco-tree-node-icon-hover {
|
|
1636
|
+
&::before {
|
|
1637
|
+
display: none;
|
|
1638
|
+
}
|
|
1639
|
+
}
|
|
1640
|
+
.arco-tree-node-switcher-icon {
|
|
1641
|
+
&:hover {
|
|
1642
|
+
color: rgb(var(--primary-5));
|
|
1643
|
+
}
|
|
1644
|
+
&:active {
|
|
1645
|
+
color: rgb(var(--primary-7));
|
|
1646
|
+
}
|
|
1647
|
+
.arco-tree-node-plus-icon, .arco-tree-node-minus-icon {
|
|
1648
|
+
&:hover {
|
|
1649
|
+
&::before, &::after {
|
|
1650
|
+
color: rgb(var(--primary-5));
|
|
1651
|
+
background-color: rgb(var(--primary-5));
|
|
1652
|
+
}
|
|
1653
|
+
}
|
|
1654
|
+
&:active {
|
|
1655
|
+
&::before, &::after {
|
|
1656
|
+
color: rgb(var(--primary-7));
|
|
1657
|
+
background-color: rgb(var(--primary-7));
|
|
1658
|
+
}
|
|
1659
|
+
}
|
|
1660
|
+
}
|
|
1661
|
+
}
|
|
1610
1662
|
}
|
|
1611
|
-
|
|
1612
|
-
/*&:hover {
|
|
1613
|
-
background-color: rgb(var(--primary-1));
|
|
1614
|
-
.arco-tree-node-indent {
|
|
1615
|
-
background-color: var(--color-bg-1);
|
|
1616
|
-
}
|
|
1617
|
-
.arco-tree-node-switcher:empty {
|
|
1618
|
-
background-color: var(--color-bg-1);
|
|
1619
|
-
}
|
|
1620
|
-
}
|
|
1621
|
-
|
|
1622
|
-
&:not(.arco-tree-node-disabled):active {
|
|
1623
|
-
background-color: rgb(var(--primary-1));
|
|
1624
|
-
color: rgb(var(--primary-6));
|
|
1625
|
-
}*/
|
|
1626
1663
|
}
|
|
1627
1664
|
}
|
|
1628
1665
|
|
|
@@ -1631,7 +1668,7 @@
|
|
|
1631
1668
|
margin-top: 2px;
|
|
1632
1669
|
}
|
|
1633
1670
|
|
|
1634
|
-
// Cascader
|
|
1671
|
+
// Cascader
|
|
1635
1672
|
.arco-cascader {
|
|
1636
1673
|
.arco-cascader-suffix {
|
|
1637
1674
|
svg.arco-icon {
|
|
@@ -1654,6 +1691,12 @@
|
|
|
1654
1691
|
}
|
|
1655
1692
|
}
|
|
1656
1693
|
}
|
|
1694
|
+
.arco-cascader-wrapper:has(.arco-cascader-addbefore) {
|
|
1695
|
+
.arco-cascader.arco-cascader-focused > .arco-cascader-view {
|
|
1696
|
+
border-top-left-radius: 0;
|
|
1697
|
+
border-bottom-left-radius: 0;
|
|
1698
|
+
}
|
|
1699
|
+
}
|
|
1657
1700
|
|
|
1658
1701
|
// Form Icon
|
|
1659
1702
|
.arco-form.arco-form-size-default {
|
|
@@ -1671,6 +1714,42 @@
|
|
|
1671
1714
|
}
|
|
1672
1715
|
}
|
|
1673
1716
|
|
|
1717
|
+
// Select + Select / Select + Input
|
|
1718
|
+
.arco-input-group {
|
|
1719
|
+
.arco-select {
|
|
1720
|
+
& + .arco-input {
|
|
1721
|
+
border-left-width: 0;
|
|
1722
|
+
}
|
|
1723
|
+
& + .arco-select {
|
|
1724
|
+
.arco-select-view {
|
|
1725
|
+
border-left-width: 0;
|
|
1726
|
+
}
|
|
1727
|
+
}
|
|
1728
|
+
&:hover + .arco-input:focus {
|
|
1729
|
+
border-left-width: 0;
|
|
1730
|
+
}
|
|
1731
|
+
}
|
|
1732
|
+
.arco-input {
|
|
1733
|
+
&:hover, &:active {
|
|
1734
|
+
& + * .arco-input-inner-wrapper {
|
|
1735
|
+
border-left-color: rgb(var(--primary-5));
|
|
1736
|
+
}
|
|
1737
|
+
}
|
|
1738
|
+
}
|
|
1739
|
+
}
|
|
1740
|
+
.arco-input-group:has(.arco-select + .arco-input:hover),
|
|
1741
|
+
.arco-input-group:has(.arco-select + .arco-select:hover) {
|
|
1742
|
+
.arco-select .arco-select-view {
|
|
1743
|
+
border-right-color: rgb(var(--primary-5));
|
|
1744
|
+
}
|
|
1745
|
+
}
|
|
1746
|
+
.arco-input-group:has(.arco-select + .arco-input:active),
|
|
1747
|
+
.arco-input-group:has(.arco-select + .arco-select:active) {
|
|
1748
|
+
.arco-select .arco-select-view {
|
|
1749
|
+
border-right-color: rgb(var(--primary-5));
|
|
1750
|
+
}
|
|
1751
|
+
}
|
|
1752
|
+
|
|
1674
1753
|
// Input
|
|
1675
1754
|
.arco-input-group > :first-child.arco-input-inner-wrapper.arco-input-inner-wrapper-focus:not(:only-child) {
|
|
1676
1755
|
border-top-left-radius: 4px;
|
|
@@ -1689,15 +1768,33 @@
|
|
|
1689
1768
|
.arco-input-inner-wrapper,
|
|
1690
1769
|
.arco-input-inner-wrapper.arco-input-inner-wrapper-large,
|
|
1691
1770
|
.arco-input-inner-wrapper.arco-input-inner-wrapper-small {
|
|
1692
|
-
.arco-input-group-prefix>svg.arco-icon,
|
|
1693
|
-
.arco-input-group-suffix>svg.arco-icon
|
|
1771
|
+
// .arco-input-group-prefix>svg.arco-icon,
|
|
1772
|
+
// .arco-input-group-suffix>svg.arco-icon,
|
|
1773
|
+
.arco-input-clear-icon,
|
|
1774
|
+
.arco-input-password-visibility-icon {
|
|
1694
1775
|
font-size: 16px;
|
|
1776
|
+
&::before {
|
|
1777
|
+
display: none;
|
|
1778
|
+
}
|
|
1779
|
+
&:hover {
|
|
1780
|
+
color: rgb(var(--primary-5));
|
|
1781
|
+
}
|
|
1782
|
+
&:active {
|
|
1783
|
+
color: rgb(var(--primary-7));
|
|
1784
|
+
}
|
|
1695
1785
|
}
|
|
1696
1786
|
}
|
|
1697
1787
|
|
|
1698
1788
|
.arco-input-group-wrapper {
|
|
1789
|
+
.arco-input-group-addbefore>svg.arco-icon,
|
|
1699
1790
|
.arco-input-group-addafter>svg.arco-icon {
|
|
1700
1791
|
font-size: 16px;
|
|
1792
|
+
// &:hover {
|
|
1793
|
+
// color: rgb(var(--primary-5));
|
|
1794
|
+
// }
|
|
1795
|
+
// &:active {
|
|
1796
|
+
// color: rgb(var(--primary-7));
|
|
1797
|
+
// }
|
|
1701
1798
|
}
|
|
1702
1799
|
}
|
|
1703
1800
|
|
|
@@ -1706,6 +1803,9 @@
|
|
|
1706
1803
|
.arco-input-group-suffix>svg.arco-icon {
|
|
1707
1804
|
font-size: 14px;
|
|
1708
1805
|
}
|
|
1806
|
+
.arco-input-clear-icon {
|
|
1807
|
+
font-size: 14px;
|
|
1808
|
+
}
|
|
1709
1809
|
}
|
|
1710
1810
|
|
|
1711
1811
|
.arco-input-group-wrapper.arco-input-group-wrapper-mini {
|
|
@@ -1727,17 +1827,34 @@
|
|
|
1727
1827
|
}
|
|
1728
1828
|
.arco-picker {
|
|
1729
1829
|
.arco-picker-clear-icon {
|
|
1830
|
+
&::before {
|
|
1831
|
+
display: none;
|
|
1832
|
+
}
|
|
1833
|
+
&:hover {
|
|
1834
|
+
color: rgb(var(--primary-5));
|
|
1835
|
+
}
|
|
1836
|
+
&:active {
|
|
1837
|
+
color: rgb(var(--primary-7));
|
|
1838
|
+
}
|
|
1730
1839
|
svg {
|
|
1731
1840
|
font-size: 16px;
|
|
1732
1841
|
}
|
|
1733
1842
|
}
|
|
1734
1843
|
&.arco-picker-size-mini {
|
|
1735
|
-
|
|
1844
|
+
.arco-picker-clear-icon {
|
|
1736
1845
|
svg {
|
|
1737
1846
|
font-size: 14px;
|
|
1738
1847
|
}
|
|
1739
1848
|
}
|
|
1740
1849
|
}
|
|
1850
|
+
.arco-picker-suffix {
|
|
1851
|
+
display: flex;
|
|
1852
|
+
align-items: center;
|
|
1853
|
+
.arco-picker-suffix-icon {
|
|
1854
|
+
display: flex;
|
|
1855
|
+
align-items: center;
|
|
1856
|
+
}
|
|
1857
|
+
}
|
|
1741
1858
|
}
|
|
1742
1859
|
|
|
1743
1860
|
// TimePicker Icon
|
|
@@ -1773,10 +1890,25 @@
|
|
|
1773
1890
|
}
|
|
1774
1891
|
}
|
|
1775
1892
|
}
|
|
1893
|
+
.arco-tree-select-wrapper:has(.arco-tree-select-addbefore) {
|
|
1894
|
+
.arco-tree-select.arco-tree-select-focused > .arco-tree-select-view {
|
|
1895
|
+
border-top-left-radius: 0;
|
|
1896
|
+
border-bottom-left-radius: 0;
|
|
1897
|
+
}
|
|
1898
|
+
}
|
|
1776
1899
|
|
|
1777
1900
|
// InputTag
|
|
1778
|
-
.arco-tag .arco-icon-hover.arco-tag-icon-hover
|
|
1779
|
-
|
|
1901
|
+
.arco-tag .arco-icon-hover.arco-tag-icon-hover {
|
|
1902
|
+
&::before {
|
|
1903
|
+
display: none;
|
|
1904
|
+
}
|
|
1905
|
+
&:hover {
|
|
1906
|
+
color: rgb(var(--primary-5));
|
|
1907
|
+
}
|
|
1908
|
+
|
|
1909
|
+
&:active {
|
|
1910
|
+
color: rgb(var(--primary-7));
|
|
1911
|
+
}
|
|
1780
1912
|
}
|
|
1781
1913
|
.arco-input-tag:not(.arco-input-tag-disabled) {
|
|
1782
1914
|
.arco-tag .arco-tag-close-btn > svg {
|
|
@@ -1785,12 +1917,16 @@
|
|
|
1785
1917
|
}
|
|
1786
1918
|
|
|
1787
1919
|
&:active {
|
|
1788
|
-
color: rgb(var(--primary-
|
|
1920
|
+
color: rgb(var(--primary-7));
|
|
1789
1921
|
}
|
|
1790
1922
|
}
|
|
1791
1923
|
}
|
|
1792
|
-
.arco-input-tag-wrapper
|
|
1793
|
-
|
|
1924
|
+
.arco-input-tag-wrapper,
|
|
1925
|
+
.arco-cascader-wrapper,
|
|
1926
|
+
.arco-tree-select-wrapper {
|
|
1927
|
+
.arco-input-tag-addbefore,
|
|
1928
|
+
.arco-cascader-addbefore,
|
|
1929
|
+
.arco-tree-select-addbefore {
|
|
1794
1930
|
border-left: 1px solid var(--color-border-3);
|
|
1795
1931
|
border-top: 1px solid var(--color-border-3);
|
|
1796
1932
|
border-bottom: 1px solid var(--color-border-3);
|
|
@@ -1798,7 +1934,9 @@
|
|
|
1798
1934
|
border-top-left-radius: 4px;
|
|
1799
1935
|
border-bottom-left-radius: 4px;
|
|
1800
1936
|
}
|
|
1801
|
-
.arco-input-tag-addafter
|
|
1937
|
+
.arco-input-tag-addafter,
|
|
1938
|
+
.arco-cascader-addafter,
|
|
1939
|
+
.arco-tree-select-addafter {
|
|
1802
1940
|
border-left: none;
|
|
1803
1941
|
border-right: 1px solid var(--color-border-3);
|
|
1804
1942
|
border-top: 1px solid var(--color-border-3);
|
|
@@ -1810,23 +1948,44 @@
|
|
|
1810
1948
|
|
|
1811
1949
|
// InputNumber Icon
|
|
1812
1950
|
.arco-input-number {
|
|
1813
|
-
|
|
1951
|
+
&.arco-input-group-wrapper {
|
|
1814
1952
|
.arco-input-number-step-layer {
|
|
1815
1953
|
.arco-input-number-step-button {
|
|
1816
1954
|
font-size: 10px;
|
|
1955
|
+
&:not(.arco-input-number-step-button-disabled) {
|
|
1956
|
+
&:hover {
|
|
1957
|
+
color: rgb(var(--primary-5));
|
|
1958
|
+
background-color: transparent;
|
|
1959
|
+
}
|
|
1960
|
+
&:active {
|
|
1961
|
+
color: rgb(var(--primary-7));
|
|
1962
|
+
background-color: transparent;
|
|
1963
|
+
}
|
|
1964
|
+
}
|
|
1965
|
+
&.arco-input-number-step-button-disabled {
|
|
1966
|
+
color: var(--color-text-4);
|
|
1967
|
+
}
|
|
1817
1968
|
}
|
|
1818
1969
|
}
|
|
1819
1970
|
}
|
|
1820
1971
|
.arco-input-group-addbefore, .arco-input-group-addafter {
|
|
1821
1972
|
.arco-input-number-step-button {
|
|
1822
|
-
|
|
1823
|
-
|
|
1973
|
+
font-size: 16px;
|
|
1974
|
+
&:not(.arco-input-number-step-button-disabled) {
|
|
1975
|
+
&:hover {
|
|
1976
|
+
color: rgb(var(--primary-5));
|
|
1977
|
+
}
|
|
1978
|
+
&:active {
|
|
1979
|
+
color: rgb(var(--primary-7));
|
|
1980
|
+
}
|
|
1981
|
+
}
|
|
1982
|
+
}
|
|
1824
1983
|
}
|
|
1825
1984
|
&.arco-input-number-size-mini {
|
|
1826
1985
|
.arco-input-group-addbefore, .arco-input-group-addafter {
|
|
1827
1986
|
.arco-input-number-step-button {
|
|
1828
|
-
|
|
1829
|
-
|
|
1987
|
+
font-size: 14px;
|
|
1988
|
+
}
|
|
1830
1989
|
}
|
|
1831
1990
|
}
|
|
1832
1991
|
}
|
|
@@ -1838,6 +1997,7 @@
|
|
|
1838
1997
|
.arco-input-number-step-button {
|
|
1839
1998
|
border-top-left-radius: 4px;
|
|
1840
1999
|
border-bottom-left-radius: 4px;
|
|
2000
|
+
|
|
1841
2001
|
}
|
|
1842
2002
|
}
|
|
1843
2003
|
|
|
@@ -1852,8 +2012,49 @@
|
|
|
1852
2012
|
}
|
|
1853
2013
|
|
|
1854
2014
|
.arco-input-number>.arco-input-group {
|
|
1855
|
-
.arco-input-inner-wrapper
|
|
1856
|
-
|
|
2015
|
+
&:has(.arco-input-inner-wrapper-focus) {
|
|
2016
|
+
.arco-input-group-addbefore {
|
|
2017
|
+
.arco-input-number-step-button {
|
|
2018
|
+
border-right-width: 0 !important;
|
|
2019
|
+
}
|
|
2020
|
+
}
|
|
2021
|
+
.arco-input-group-addafter {
|
|
2022
|
+
.arco-input-number-step-button {
|
|
2023
|
+
border-left-width: 0 !important;
|
|
2024
|
+
}
|
|
2025
|
+
}
|
|
2026
|
+
}
|
|
2027
|
+
.arco-input-group-addbefore,
|
|
2028
|
+
.arco-input-group-addafter {
|
|
2029
|
+
border-color: var(--color-border-3);
|
|
2030
|
+
.arco-input-number-step-button {
|
|
2031
|
+
&:hover {
|
|
2032
|
+
background-color: transparent;
|
|
2033
|
+
border-color: rgb(var(--primary-5));
|
|
2034
|
+
}
|
|
2035
|
+
&:active {
|
|
2036
|
+
background-color: transparent;
|
|
2037
|
+
border-color: rgb(var(--primary-7));
|
|
2038
|
+
}
|
|
2039
|
+
}
|
|
2040
|
+
}
|
|
2041
|
+
.arco-input-group-addbefore {
|
|
2042
|
+
&:hover, &:active {
|
|
2043
|
+
+ .arco-input-inner-wrapper {
|
|
2044
|
+
border-left-color: rgb(var(--primary-5));
|
|
2045
|
+
}
|
|
2046
|
+
}
|
|
2047
|
+
}
|
|
2048
|
+
&:has(.arco-input-inner-wrapper + .arco-input-group-addafter:hover) .arco-input-inner-wrapper {
|
|
2049
|
+
border-right-color: rgb(var(--primary-5));
|
|
2050
|
+
}
|
|
2051
|
+
&:has(.arco-input-inner-wrapper + .arco-input-group-addafter:active) .arco-input-inner-wrapper {
|
|
2052
|
+
border-right-color: rgb(var(--primary-7));
|
|
2053
|
+
}
|
|
2054
|
+
.arco-input-inner-wrapper {
|
|
2055
|
+
&.arco-input-inner-wrapper-focus {
|
|
2056
|
+
border-radius: 4px;
|
|
2057
|
+
}
|
|
1857
2058
|
}
|
|
1858
2059
|
|
|
1859
2060
|
&:has(.arco-input-group-addbefore) {
|
|
@@ -1905,6 +2106,17 @@
|
|
|
1905
2106
|
.arco-select-suffix svg.arco-icon {
|
|
1906
2107
|
font-size: 16px;
|
|
1907
2108
|
}
|
|
2109
|
+
.arco-select-suffix .arco-select-clear-icon {
|
|
2110
|
+
&:hover {
|
|
2111
|
+
color: rgb(var(--primary-5));
|
|
2112
|
+
}
|
|
2113
|
+
&:active {
|
|
2114
|
+
color: rgb(var(--primary-7));
|
|
2115
|
+
}
|
|
2116
|
+
}
|
|
2117
|
+
.arco-select-search-icon {
|
|
2118
|
+
display: flex;
|
|
2119
|
+
}
|
|
1908
2120
|
}
|
|
1909
2121
|
.arco-select.arco-select-size-mini {
|
|
1910
2122
|
.arco-select-suffix svg.arco-icon {
|
|
@@ -1919,6 +2131,12 @@
|
|
|
1919
2131
|
|
|
1920
2132
|
.arco-alert-close-btn {
|
|
1921
2133
|
margin-top: 6px;
|
|
2134
|
+
&:hover {
|
|
2135
|
+
color: rgb(var(--primary-5));
|
|
2136
|
+
}
|
|
2137
|
+
&:active {
|
|
2138
|
+
color: rgb(var(--primary-7));
|
|
2139
|
+
}
|
|
1922
2140
|
}
|
|
1923
2141
|
}
|
|
1924
2142
|
|
|
@@ -2027,4 +2245,84 @@
|
|
|
2027
2245
|
}
|
|
2028
2246
|
}
|
|
2029
2247
|
}
|
|
2248
|
+
}
|
|
2249
|
+
.arco-collapse {
|
|
2250
|
+
.arco-collapse-item-header-icon {
|
|
2251
|
+
&:hover {
|
|
2252
|
+
color: rgb(var(--primary-5));
|
|
2253
|
+
}
|
|
2254
|
+
&:active {
|
|
2255
|
+
color: rgb(var(--primary-7));
|
|
2256
|
+
}
|
|
2257
|
+
}
|
|
2258
|
+
}
|
|
2259
|
+
.arco-tabs {
|
|
2260
|
+
.arco-tabs-icon-hover, .arco-tabs-add-icon-hover {
|
|
2261
|
+
&::before {
|
|
2262
|
+
display: none;
|
|
2263
|
+
}
|
|
2264
|
+
&:hover {
|
|
2265
|
+
color: rgb(var(--primary-5));
|
|
2266
|
+
}
|
|
2267
|
+
&:active {
|
|
2268
|
+
color: rgb(var(--primary-7));
|
|
2269
|
+
}
|
|
2270
|
+
}
|
|
2271
|
+
}
|
|
2272
|
+
.arco-upload-list-item {
|
|
2273
|
+
.arco-upload-list-item-operation,
|
|
2274
|
+
.arco-upload-list-item-picture-operation {
|
|
2275
|
+
.arco-icon-hover {
|
|
2276
|
+
&::before {
|
|
2277
|
+
display: none;
|
|
2278
|
+
}
|
|
2279
|
+
}
|
|
2280
|
+
svg.arco-icon {
|
|
2281
|
+
&:hover {
|
|
2282
|
+
color: rgb(var(--primary-5));
|
|
2283
|
+
}
|
|
2284
|
+
&:active {
|
|
2285
|
+
color: rgb(var(--primary-7));
|
|
2286
|
+
}
|
|
2287
|
+
}
|
|
2288
|
+
}
|
|
2289
|
+
}
|
|
2290
|
+
.arco-drawer,
|
|
2291
|
+
.arco-message,
|
|
2292
|
+
.arco-modal,
|
|
2293
|
+
.arco-notification {
|
|
2294
|
+
.arco-icon-hover {
|
|
2295
|
+
&::before {
|
|
2296
|
+
display: none;
|
|
2297
|
+
}
|
|
2298
|
+
&:hover {
|
|
2299
|
+
color: rgb(var(--primary-5));
|
|
2300
|
+
}
|
|
2301
|
+
&:active {
|
|
2302
|
+
color: rgb(var(--primary-7));
|
|
2303
|
+
}
|
|
2304
|
+
}
|
|
2305
|
+
}
|
|
2306
|
+
.arco-dropdown-menu {
|
|
2307
|
+
border-width: 0;
|
|
2308
|
+
}
|
|
2309
|
+
.arco-select-popup {
|
|
2310
|
+
border-width: 0;
|
|
2311
|
+
.arco-select-option-wrapper {
|
|
2312
|
+
&:hover {
|
|
2313
|
+
background-color: rgb(var(--primary-1));
|
|
2314
|
+
.arco-select-option {
|
|
2315
|
+
background-color:rgb(var(--primary-1));
|
|
2316
|
+
}
|
|
2317
|
+
}
|
|
2318
|
+
.arco-select-option-selected {
|
|
2319
|
+
background-color: var(--color-bg-popup);
|
|
2320
|
+
}
|
|
2321
|
+
}
|
|
2322
|
+
}
|
|
2323
|
+
.arco-autocomplete-popup .arco-select-popup {
|
|
2324
|
+
border-width: 0;
|
|
2325
|
+
.arco-select-option:hover {
|
|
2326
|
+
background-color: rgb(var(--primary-1));
|
|
2327
|
+
}
|
|
2030
2328
|
}
|
package/tokens.less
CHANGED
|
@@ -1474,7 +1474,7 @@
|
|
|
1474
1474
|
@auto-complete-popup-color-border: transparent;
|
|
1475
1475
|
@auto-complete-popup-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
|
|
1476
1476
|
@auto-complete-option-height: 36px;
|
|
1477
|
-
@auto-complete-option-font-weight_selected:
|
|
1477
|
+
@auto-complete-option-font-weight_selected: 400;
|
|
1478
1478
|
@auto-complete-option-padding-horizontal: 12px;
|
|
1479
1479
|
@auto-complete-option-color-bg_default: var(--color-bg-popup);
|
|
1480
1480
|
@auto-complete-option-color-bg_hover: rgb(var(--primary-1));
|
|
@@ -2154,7 +2154,7 @@
|
|
|
2154
2154
|
@collapse-title-color-bg_disabled: var(--color-bg-2);
|
|
2155
2155
|
@collapse-title-color-text: #292f42;
|
|
2156
2156
|
@collapse-title-color-text_disabled: var(--color-text-4);
|
|
2157
|
-
@collapse-title-font-weight_active:
|
|
2157
|
+
@collapse-title-font-weight_active: 400;
|
|
2158
2158
|
@collapse-content-color-text: #292f42;
|
|
2159
2159
|
@collapse-content-color-text_disabled: #9ca3b8;
|
|
2160
2160
|
@collapse-content-font-size: 14px;
|
|
@@ -2342,7 +2342,7 @@
|
|
|
2342
2342
|
@dropdown-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
|
|
2343
2343
|
@dropdown-option-height: 36px;
|
|
2344
2344
|
@dropdown-option-padding-horizontal: 12px;
|
|
2345
|
-
@dropdown-option-font-weight_selected:
|
|
2345
|
+
@dropdown-option-font-weight_selected: 400;
|
|
2346
2346
|
@dropdown-option-color-bg_default: transparent;
|
|
2347
2347
|
@dropdown-option-color-bg_hover: rgb(var(--primary-1));
|
|
2348
2348
|
@dropdown-option-color-bg_selected: transparent;
|
|
@@ -2483,8 +2483,8 @@
|
|
|
2483
2483
|
@image-padding-actions-item-horizontal: 0;
|
|
2484
2484
|
@image-spacing-actions-item-left: 12px;
|
|
2485
2485
|
@image-radius-actions-item: var(--border-radius-small);
|
|
2486
|
-
@image-color-actions-item_footer_inner_hover-bg:
|
|
2487
|
-
@image-color-actions-item_footer_outer_hover-bg:
|
|
2486
|
+
@image-color-actions-item_footer_inner_hover-bg: transparent;
|
|
2487
|
+
@image-color-actions-item_footer_outer_hover-bg: transparent;
|
|
2488
2488
|
@image-color-actions-item_trigger-text: #292f42;
|
|
2489
2489
|
@image-color-actions-item_trigger_hover-bg: var(--color-neutral-2);
|
|
2490
2490
|
@image-spacing-actions-trigger-item-vertical: 5px;
|
|
@@ -3527,13 +3527,13 @@
|
|
|
3527
3527
|
@tabs-card-padding-title-right_editable: 12px;
|
|
3528
3528
|
@tabs-card-border-radius: 2px;
|
|
3529
3529
|
@tabs-card-color-title-bg: transparent;
|
|
3530
|
-
@tabs-card-color-title-bg_hover:
|
|
3530
|
+
@tabs-card-color-title-bg_hover: transparent;
|
|
3531
3531
|
@tabs-card-color-title-bg_disabled: transparent;
|
|
3532
3532
|
@tabs-card-color-title-bg_active: transparent;
|
|
3533
3533
|
@tabs-card-border-content-width: 1px;
|
|
3534
3534
|
@tabs-card-gutter-spacing-horizontal: 4px;
|
|
3535
3535
|
@tabs-card-gutter-color-title-bg: #fafbff;
|
|
3536
|
-
@tabs-card-gutter-color-title-bg_hover:
|
|
3536
|
+
@tabs-card-gutter-color-title-bg_hover: transparent;
|
|
3537
3537
|
@tabs-card-gutter-color-title-bg_active: transparent;
|
|
3538
3538
|
@tabs-card-gutter-color-title-bg_disabled: #fafbff;
|
|
3539
3539
|
@tabs-text-size-separator-height: 12px;
|
package/variables.less
CHANGED
|
@@ -999,7 +999,7 @@
|
|
|
999
999
|
@tabs-line-color-header-border: @color-border-2;
|
|
1000
1000
|
@tabs-line-color-ink-bg_disabled: @color-text-4;
|
|
1001
1001
|
@tabs-card-color-title-border: @color-border-2;
|
|
1002
|
-
@tabs-card-color-title-bg_hover: @color-
|
|
1002
|
+
@tabs-card-color-title-bg_hover: @color-transparent;
|
|
1003
1003
|
@tabs-card-color-title-bg_disabled: @color-transparent;
|
|
1004
1004
|
@tabs-rounded-color-title-bg_hover: @color-primary-1;
|
|
1005
1005
|
@tabs-rounded-color-title-bg_active: @color-primary-1;
|
|
@@ -1289,7 +1289,7 @@
|
|
|
1289
1289
|
@btn-outline-color-bg_danger_hover: @color-transparent;
|
|
1290
1290
|
@link-padding-horizontal: @spacing-none;
|
|
1291
1291
|
@link-padding-vertical: @spacing-none;
|
|
1292
|
-
@tabs-card-gutter-color-title-bg_hover: @color-
|
|
1292
|
+
@tabs-card-gutter-color-title-bg_hover: @color-transparent;
|
|
1293
1293
|
@tabs-card-gutter-color-title-bg_disabled: @color-fill-1;
|
|
1294
1294
|
@tabs-card-gutter-color-title-bg: @color-fill-1;
|
|
1295
1295
|
@typography-operation-margin-left: @spacing-4;
|
|
@@ -1329,7 +1329,7 @@
|
|
|
1329
1329
|
@empty-spacing-padding: @spacing-7;
|
|
1330
1330
|
@image-color-description_footer_outer-text: @color-text-3;
|
|
1331
1331
|
@image-color-footer_outer-text: @color-text-2;
|
|
1332
|
-
@image-color-actions-item_footer_outer_hover-bg: @color-
|
|
1332
|
+
@image-color-actions-item_footer_outer_hover-bg: @color-transparent;
|
|
1333
1333
|
@image-color-actions-item_trigger-text: @color-text-2;
|
|
1334
1334
|
@image-color-loader-spin-text-text: @color-text-3;
|
|
1335
1335
|
@image-color-loader-bg: @color-fill-2;
|
|
@@ -1619,12 +1619,13 @@
|
|
|
1619
1619
|
@cascader-font-item-weight_active: @font-weight-400;
|
|
1620
1620
|
@result-color-icon-bg_success: @color-success-6;
|
|
1621
1621
|
@typography-text-font-weight-bold: @font-weight-600;
|
|
1622
|
-
@dropdown-option-font-weight_selected: @font-weight-
|
|
1622
|
+
@dropdown-option-font-weight_selected: @font-weight-400;
|
|
1623
1623
|
@anchor-lineless-font-weight-title_active: @font-weight-600;
|
|
1624
1624
|
@select-size-large-font-size: @font-size-body-3;
|
|
1625
|
-
@auto-complete-option-font-weight_selected: @font-weight-
|
|
1625
|
+
@auto-complete-option-font-weight_selected: @font-weight-400;
|
|
1626
1626
|
@select-popup-option-font-hightlight-weight: @font-weight-600;
|
|
1627
1627
|
@avatar-font-weight-text: @font-weight-600;
|
|
1628
|
-
@collapse-title-font-weight_active: @font-weight-
|
|
1628
|
+
@collapse-title-font-weight_active: @font-weight-400;
|
|
1629
1629
|
@cascader-color-item-text_active: @color-text-2;
|
|
1630
1630
|
@picker-header-font-weight-text: @font-weight-600;
|
|
1631
|
+
@image-color-actions-item_footer_inner_hover-bg: @color-transparent;
|