@arco-themes/react-aiux2026 0.0.8 → 0.0.10
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 +19 -0
- package/css/arco.css +1 -1
- package/package.json +1 -1
- package/theme.less +341 -0
- package/tokens.less +14 -14
- package/variables.less +16 -3
package/package.json
CHANGED
package/theme.less
CHANGED
|
@@ -1528,3 +1528,344 @@
|
|
|
1528
1528
|
@{arco-cssvars-prefix}-tag-10: if(iscolor(@dark-tag-10), .getColorRgbStr(@dark-tag-10)[], replace(~'@{dark-tag-10}', 'rgb\((.*)\)$', '$1'));
|
|
1529
1529
|
|
|
1530
1530
|
}
|
|
1531
|
+
// Button Icon
|
|
1532
|
+
.arco-btn-size-default {
|
|
1533
|
+
svg.arco-icon {
|
|
1534
|
+
font-size: 16px;
|
|
1535
|
+
}
|
|
1536
|
+
}
|
|
1537
|
+
.arco-btn-size-large {
|
|
1538
|
+
svg.arco-icon {
|
|
1539
|
+
font-size: 16px;
|
|
1540
|
+
}
|
|
1541
|
+
}
|
|
1542
|
+
.arco-btn-size-small {
|
|
1543
|
+
svg.arco-icon {
|
|
1544
|
+
font-size: 16px;
|
|
1545
|
+
}
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1548
|
+
.arco-btn-size-mini {
|
|
1549
|
+
svg.arco-icon {
|
|
1550
|
+
font-size: 14px;
|
|
1551
|
+
}
|
|
1552
|
+
}
|
|
1553
|
+
|
|
1554
|
+
// Link
|
|
1555
|
+
.arco-link.arco-link-dark:not(:hover) {
|
|
1556
|
+
color: var(--color-text-2);
|
|
1557
|
+
}
|
|
1558
|
+
|
|
1559
|
+
// Table remove border
|
|
1560
|
+
.arco-table.arco-table-border {
|
|
1561
|
+
.arco-table-container {
|
|
1562
|
+
border-top: none;
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
thead>.arco-table-tr>.arco-table-th {
|
|
1566
|
+
border: none;
|
|
1567
|
+
border-bottom: 1px solid var(--color-border-2);
|
|
1568
|
+
}
|
|
1569
|
+
|
|
1570
|
+
.arco-table-td:first-child {
|
|
1571
|
+
border-left: none;
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1574
|
+
.arco-table-container {
|
|
1575
|
+
border-right: none;
|
|
1576
|
+
}
|
|
1577
|
+
}
|
|
1578
|
+
|
|
1579
|
+
// tooltip
|
|
1580
|
+
.arco-tooltip-content {
|
|
1581
|
+
background-color: var(--color-bg-5);
|
|
1582
|
+
color: var(--color-text-2);
|
|
1583
|
+
border-width: 0 !important;
|
|
1584
|
+
box-shadow: 0 4px 12px 2px rgba(0, 0, 0, 0.1);
|
|
1585
|
+
padding: 8px 12px;
|
|
1586
|
+
font-size: 12px;
|
|
1587
|
+
border-radius: 4px;
|
|
1588
|
+
line-height: 1.5715;
|
|
1589
|
+
}
|
|
1590
|
+
|
|
1591
|
+
.arco-tooltip .arco-trigger-arrow {
|
|
1592
|
+
z-index: 999;
|
|
1593
|
+
}
|
|
1594
|
+
|
|
1595
|
+
.arco-trigger-arrow.arco-tooltip-arrow {
|
|
1596
|
+
background-color: var(--color-bg-5);
|
|
1597
|
+
}
|
|
1598
|
+
|
|
1599
|
+
// Form required mark
|
|
1600
|
+
.arco-form-label-item .arco-form-item-symbol svg {
|
|
1601
|
+
margin-top: 2px;
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1604
|
+
// Cascader Icon
|
|
1605
|
+
.arco-cascader.arco-cascader-size-default {
|
|
1606
|
+
.arco-cascader-suffix {
|
|
1607
|
+
svg.arco-icon {
|
|
1608
|
+
font-size: 16px
|
|
1609
|
+
}
|
|
1610
|
+
}
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
// Form Icon
|
|
1614
|
+
.arco-form.arco-form-size-default {
|
|
1615
|
+
.arco-form-item-feedback {
|
|
1616
|
+
svg.arco-icon {
|
|
1617
|
+
font-size: 16px;
|
|
1618
|
+
}
|
|
1619
|
+
}
|
|
1620
|
+
}
|
|
1621
|
+
|
|
1622
|
+
// Input Icon
|
|
1623
|
+
.arco-input-inner-wrapper.arco-input-inner-wrapper-default {
|
|
1624
|
+
|
|
1625
|
+
.arco-input-group-prefix>svg.arco-icon,
|
|
1626
|
+
.arco-input-group-suffix>svg.arco-icon {
|
|
1627
|
+
font-size: 16px;
|
|
1628
|
+
}
|
|
1629
|
+
}
|
|
1630
|
+
|
|
1631
|
+
.arco-input-group-wrapper.arco-input-group-wrapper-default {
|
|
1632
|
+
.arco-input-group-addafter>svg.arco-icon {
|
|
1633
|
+
font-size: 16px;
|
|
1634
|
+
}
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1637
|
+
.arco-input-inner-wrapper.arco-input-inner-wrapper-mini {
|
|
1638
|
+
|
|
1639
|
+
.arco-input-group-prefix>svg.arco-icon,
|
|
1640
|
+
.arco-input-group-suffix>svg.arco-icon {
|
|
1641
|
+
font-size: 14px;
|
|
1642
|
+
}
|
|
1643
|
+
}
|
|
1644
|
+
|
|
1645
|
+
.arco-input-group-wrapper.arco-input-group-wrapper-mini {
|
|
1646
|
+
.arco-input-group-addafter>svg.arco-icon {
|
|
1647
|
+
font-size: 14px;
|
|
1648
|
+
}
|
|
1649
|
+
}
|
|
1650
|
+
|
|
1651
|
+
.arco-input-group-wrapper {
|
|
1652
|
+
.arco-input-inner-wrapper.arco-input-inner-wrapper-focus {
|
|
1653
|
+
border-top-left-radius: 0;
|
|
1654
|
+
border-bottom-left-radius: 0;
|
|
1655
|
+
}
|
|
1656
|
+
}
|
|
1657
|
+
|
|
1658
|
+
// DataPicker Icon
|
|
1659
|
+
.arco-picker.arco-picker-size-default {
|
|
1660
|
+
.arco-picker-suffix>.arco-picker-suffix-icon>svg.arco-icon {
|
|
1661
|
+
font-size: 16px;
|
|
1662
|
+
}
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
// TimePicker Icon
|
|
1666
|
+
.arco-picker.arco-picker-size-default.arco-picker-has-prefix {
|
|
1667
|
+
.arco-picker-prefix {
|
|
1668
|
+
display: flex;
|
|
1669
|
+
align-items: center;
|
|
1670
|
+
|
|
1671
|
+
svg.arco-icon {
|
|
1672
|
+
font-size: 16px;
|
|
1673
|
+
}
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
.arco-picker-suffix {
|
|
1677
|
+
display: flex;
|
|
1678
|
+
align-items: center;
|
|
1679
|
+
}
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1682
|
+
// TreeSelect
|
|
1683
|
+
.arco-tree-select {
|
|
1684
|
+
&.arco-tree-select-size-default {
|
|
1685
|
+
.arco-tree-select-suffix {
|
|
1686
|
+
.arco-tree-select-arrow-icon>svg.arco-icon {
|
|
1687
|
+
font-size: 16px;
|
|
1688
|
+
}
|
|
1689
|
+
}
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1692
|
+
&.arco-tree-select-size-mini {
|
|
1693
|
+
.arco-tree-select-suffix {
|
|
1694
|
+
.arco-tree-select-arrow-icon>svg.arco-icon {
|
|
1695
|
+
font-size: 14px;
|
|
1696
|
+
}
|
|
1697
|
+
}
|
|
1698
|
+
}
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1701
|
+
// InputTag Icon
|
|
1702
|
+
.arco-input-tag.arco-input-tag-size-default {
|
|
1703
|
+
.arco-input-tag-tag>.arco-tag-close-btn>svg.arco-icon {
|
|
1704
|
+
font-size: 16px;
|
|
1705
|
+
}
|
|
1706
|
+
}
|
|
1707
|
+
|
|
1708
|
+
.arco-input-tag.arco-input-tag-size-small {
|
|
1709
|
+
.arco-input-tag-tag>.arco-tag-close-btn>svg.arco-icon {
|
|
1710
|
+
font-size: 14px;
|
|
1711
|
+
}
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
// InputNumber Icon
|
|
1715
|
+
.arco-input-group-wrapper.arco-input-group-wrapper-default {
|
|
1716
|
+
.arco-input-number-step-button {
|
|
1717
|
+
font-size: 16px;
|
|
1718
|
+
}
|
|
1719
|
+
}
|
|
1720
|
+
|
|
1721
|
+
.arco-input-group> :first-child {
|
|
1722
|
+
border-top-left-radius: 4px;
|
|
1723
|
+
border-bottom-left-radius: 4px;
|
|
1724
|
+
|
|
1725
|
+
.arco-input-number-step-button {
|
|
1726
|
+
border-top-left-radius: 4px;
|
|
1727
|
+
border-bottom-left-radius: 4px;
|
|
1728
|
+
}
|
|
1729
|
+
}
|
|
1730
|
+
|
|
1731
|
+
.arco-input-group> :last-child {
|
|
1732
|
+
border-top-right-radius: 4px;
|
|
1733
|
+
border-bottom-right-radius: 4px;
|
|
1734
|
+
|
|
1735
|
+
.arco-input-number-step-button {
|
|
1736
|
+
border-top-right-radius: 4px;
|
|
1737
|
+
border-bottom-right-radius: 4px;
|
|
1738
|
+
}
|
|
1739
|
+
}
|
|
1740
|
+
|
|
1741
|
+
.arco-input-number>.arco-input-group {
|
|
1742
|
+
.arco-input-inner-wrapper.arco-input-inner-wrapper-focus {
|
|
1743
|
+
border-radius: 4px;
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1746
|
+
&:has(.arco-input-group-addbefore) {
|
|
1747
|
+
.arco-input-inner-wrapper.arco-input-inner-wrapper-focus {
|
|
1748
|
+
border-top-left-radius: 0;
|
|
1749
|
+
border-bottom-left-radius: 0;
|
|
1750
|
+
}
|
|
1751
|
+
}
|
|
1752
|
+
|
|
1753
|
+
&:has(.arco-input-group-addafter) {
|
|
1754
|
+
.arco-input-inner-wrapper.arco-input-inner-wrapper-focus {
|
|
1755
|
+
border-top-right-radius: 0;
|
|
1756
|
+
border-bottom-right-radius: 0;
|
|
1757
|
+
}
|
|
1758
|
+
}
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1761
|
+
// Select Icon
|
|
1762
|
+
.arco-select.arco-select-size-default {
|
|
1763
|
+
.arco-select-suffix {
|
|
1764
|
+
svg.arco-icon {
|
|
1765
|
+
font-size: 16px;
|
|
1766
|
+
}
|
|
1767
|
+
}
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
.arco-select.arco-select-size-mini {
|
|
1771
|
+
.arco-select-suffix {
|
|
1772
|
+
svg.arco-icon {
|
|
1773
|
+
font-size: 14px;
|
|
1774
|
+
}
|
|
1775
|
+
}
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1778
|
+
// Alert
|
|
1779
|
+
.arco-alert {
|
|
1780
|
+
display: flex;
|
|
1781
|
+
align-items: start;
|
|
1782
|
+
|
|
1783
|
+
.arco-alert-close-btn {
|
|
1784
|
+
margin-top: 6px;
|
|
1785
|
+
}
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1788
|
+
// TimePicker
|
|
1789
|
+
.arco-timepicker-cell:not(.arco-timepicker-cell-selected):not(.arco-timepicker-cell-disabled):hover .arco-timepicker-cell-inner {
|
|
1790
|
+
background-color: rgb(var(--primary-1));
|
|
1791
|
+
}
|
|
1792
|
+
|
|
1793
|
+
.arco-timepicker-cell-selected:not(.arco-timepicker-cell-disabled) .arco-timepicker-cell-inner {
|
|
1794
|
+
background-color: rgb(var(--primary-1));
|
|
1795
|
+
color: rgb(var(--primary-6))
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1798
|
+
// Transfer
|
|
1799
|
+
.arco-transfer {
|
|
1800
|
+
.arco-transfer-view-header {
|
|
1801
|
+
border-radius: 4px;
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
.arco-transfer-operations>svg.arco-icon {
|
|
1805
|
+
font-size: 16px;
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
.arco-transfer-view-header {
|
|
1809
|
+
.arco-transfer-view-icon-clear>svg.arco-icon {
|
|
1810
|
+
font-size: 16px;
|
|
1811
|
+
}
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1814
|
+
.arco-icon-hover {
|
|
1815
|
+
&::before {
|
|
1816
|
+
display: none;
|
|
1817
|
+
}
|
|
1818
|
+
|
|
1819
|
+
&:not(.arco-icon-hover-disabled):hover>.arco-checkbox-mask {
|
|
1820
|
+
border-color: rgb(var(--primary-5));
|
|
1821
|
+
}
|
|
1822
|
+
|
|
1823
|
+
&:not(.arco-icon-hover-disabled):active>.arco-checkbox-mask {
|
|
1824
|
+
border-color: rgb(var(--primary-7));
|
|
1825
|
+
}
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
.arco-transfer-view-list {
|
|
1829
|
+
.arco-transfer-view-item-icon-remove {
|
|
1830
|
+
font-size: 16px;
|
|
1831
|
+
}
|
|
1832
|
+
}
|
|
1833
|
+
|
|
1834
|
+
.arco-transfer-view-search {
|
|
1835
|
+
.arco-input-has-suffix {
|
|
1836
|
+
.arco-input-group-suffix>svg.arco-icon {
|
|
1837
|
+
font-size: 16px;
|
|
1838
|
+
}
|
|
1839
|
+
}
|
|
1840
|
+
}
|
|
1841
|
+
}
|
|
1842
|
+
|
|
1843
|
+
// Pagination Simple
|
|
1844
|
+
.arco-pagination {
|
|
1845
|
+
.arco-pagination-item-simple-pager {
|
|
1846
|
+
margin-right: 4px;
|
|
1847
|
+
|
|
1848
|
+
.arco-input.arco-pagination-jumper-input {
|
|
1849
|
+
margin-right: 4px;
|
|
1850
|
+
border-radius: 4px;
|
|
1851
|
+
border: 1px solid var(--color-border-3);
|
|
1852
|
+
background: var(--color-bg-2);
|
|
1853
|
+
}
|
|
1854
|
+
}
|
|
1855
|
+
|
|
1856
|
+
&.arco-pagination-size-small {
|
|
1857
|
+
.arco-pagination-item-simple-pager {
|
|
1858
|
+
.arco-input.arco-input-size-small.arco-pagination-jumper-input {
|
|
1859
|
+
width: 28px;
|
|
1860
|
+
}
|
|
1861
|
+
}
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
&.arco-pagination-size-mini {
|
|
1865
|
+
.arco-pagination-item-simple-pager {
|
|
1866
|
+
.arco-input.arco-input-size-mini.arco-pagination-jumper-input {
|
|
1867
|
+
width: 24px;
|
|
1868
|
+
}
|
|
1869
|
+
}
|
|
1870
|
+
}
|
|
1871
|
+
}
|
package/tokens.less
CHANGED
|
@@ -2275,8 +2275,8 @@
|
|
|
2275
2275
|
@descriptions-color-title: var(--color-text-1);
|
|
2276
2276
|
@descriptions-color-text-label: var(--color-text-3);
|
|
2277
2277
|
@descriptions-color-text-value: #292f42;
|
|
2278
|
-
@descriptions-font-weight-title:
|
|
2279
|
-
@descriptions-font-weight-text-label:
|
|
2278
|
+
@descriptions-font-weight-title: 600;
|
|
2279
|
+
@descriptions-font-weight-text-label: 400;
|
|
2280
2280
|
@descriptions-font-weight-text-value: 400;
|
|
2281
2281
|
@descriptions-border-color-bg-label: var(--color-fill-1);
|
|
2282
2282
|
@descriptions-item-size-mini-spacing-bottom: 2px;
|
|
@@ -2316,18 +2316,18 @@
|
|
|
2316
2316
|
|
|
2317
2317
|
/*********** drawer ***********/
|
|
2318
2318
|
|
|
2319
|
-
@drawer-size-header-height:
|
|
2320
|
-
@drawer-margin-footer-button-left:
|
|
2319
|
+
@drawer-size-header-height: 64px;
|
|
2320
|
+
@drawer-margin-footer-button-left: 8px;
|
|
2321
2321
|
@drawer-font-header-size: 16px;
|
|
2322
|
-
@drawer-font-header-weight:
|
|
2323
|
-
@drawer-padding-horizontal:
|
|
2324
|
-
@drawer-padding-footer-vertical:
|
|
2325
|
-
@drawer-padding-content-vertical:
|
|
2322
|
+
@drawer-font-header-weight: 600;
|
|
2323
|
+
@drawer-padding-horizontal: 24px;
|
|
2324
|
+
@drawer-padding-footer-vertical: 20px;
|
|
2325
|
+
@drawer-padding-content-vertical: 16px;
|
|
2326
2326
|
@drawer-color-border: #dfe2eb;
|
|
2327
2327
|
@drawer-color-header-text: var(--color-text-1);
|
|
2328
2328
|
@drawer-color-content-text: #292f42;
|
|
2329
|
-
@drawer-position-close-icon-right:
|
|
2330
|
-
@drawer-font-size-close-icon:
|
|
2329
|
+
@drawer-position-close-icon-right: 24px;
|
|
2330
|
+
@drawer-font-size-close-icon: 16px;
|
|
2331
2331
|
@drawer-prefix-cls: ~'@{prefix}-drawer';
|
|
2332
2332
|
|
|
2333
2333
|
|
|
@@ -2599,7 +2599,7 @@
|
|
|
2599
2599
|
@list-color-text-header: var(--color-text-1);
|
|
2600
2600
|
@list-color-bg-item-hover: rgb(var(--primary-1));
|
|
2601
2601
|
@list-font-size-header: 16px;
|
|
2602
|
-
@list-font-weight-header:
|
|
2602
|
+
@list-font-weight-header: 600;
|
|
2603
2603
|
@list-line-height-header: 1.5;
|
|
2604
2604
|
@list-size-small-padding-vertical-header: 8px;
|
|
2605
2605
|
@list-size-small-padding-horizontal-header: 20px;
|
|
@@ -2613,7 +2613,7 @@
|
|
|
2613
2613
|
@list-size-large-padding-horizontal-header: 20px;
|
|
2614
2614
|
@list-size-large-padding-vertical-item: 17px;
|
|
2615
2615
|
@list-size-large-padding-horizontal-item: 20px;
|
|
2616
|
-
@list-meta-font-weight-title:
|
|
2616
|
+
@list-meta-font-weight-title: 600;
|
|
2617
2617
|
@list-meta-color-title: var(--color-text-1);
|
|
2618
2618
|
@list-mete-color-description: var(--color-text-2);
|
|
2619
2619
|
@list-meta-margin-right-avatar: 16px;
|
|
@@ -3038,7 +3038,7 @@
|
|
|
3038
3038
|
@radio-margin-text-left: 8px;
|
|
3039
3039
|
@radio-size-mask-height: 24px;
|
|
3040
3040
|
@radio-mask-bg-color-bg: #ffffff;
|
|
3041
|
-
@radio-group-margin-right:
|
|
3041
|
+
@radio-group-margin-right: 16px;
|
|
3042
3042
|
@radio-group-button-color-bg: var(--color-fill-2);
|
|
3043
3043
|
@radio-group-button-color-bg_dark: var(--color-bg-3);
|
|
3044
3044
|
@radio-button-padding-horizontal: 12px;
|
|
@@ -3511,7 +3511,7 @@
|
|
|
3511
3511
|
@tabs-line-size-ink-stroke: 2px;
|
|
3512
3512
|
@tabs-line-color-ink-bg: rgb(var(--primary-6));
|
|
3513
3513
|
@tabs-line-color-ink-bg_disabled: #9ca3b8;
|
|
3514
|
-
@tabs-line-font-title-text-weight_active:
|
|
3514
|
+
@tabs-line-font-title-text-weight_active: 600;
|
|
3515
3515
|
@tabs-line-margin-title-horizontal: 32px;
|
|
3516
3516
|
@tabs-line-margin-title-horizontal_first: 16px;
|
|
3517
3517
|
@tabs-line-margin-title-vertical: 12px;
|
package/variables.less
CHANGED
|
@@ -857,7 +857,7 @@
|
|
|
857
857
|
@btn-primary-color-bg_success_disabled: @color-fill-2;
|
|
858
858
|
@btn-primary-color-border_success_disabled: @color-border-3;
|
|
859
859
|
@btn-dashed-color-bg: @color-bg-2;
|
|
860
|
-
@btn-dashed-color-bg_hover: @color-bg-
|
|
860
|
+
@btn-dashed-color-bg_hover: @color-bg-2;
|
|
861
861
|
@btn-dashed-color-bg_active: @color-bg-2;
|
|
862
862
|
@btn-dashed-color-border: @color-border-3;
|
|
863
863
|
@btn-dashed-color-border_disabled: @color-border-3;
|
|
@@ -1134,7 +1134,7 @@
|
|
|
1134
1134
|
@radio-color-bg_checked_disabled: @color-border-2;
|
|
1135
1135
|
@radio-color-dot-bg_checked_disabled: @color-text-4;
|
|
1136
1136
|
@radio-color-border_disabled: @color-border-3;
|
|
1137
|
-
@radio-group-margin-right: @spacing-
|
|
1137
|
+
@radio-group-margin-right: @spacing-7;
|
|
1138
1138
|
@radio-button-color-separator-bg: @color-border-2;
|
|
1139
1139
|
@slider-color-road-bg_disabled: @color-fill-2;
|
|
1140
1140
|
@slider-color-bar-bg_disabled: @color-fill-3;
|
|
@@ -1238,7 +1238,7 @@
|
|
|
1238
1238
|
@upload-text-item-color-link: @color-link-6;
|
|
1239
1239
|
@upload-text-item-color-reupload-icon: @color-text-2;
|
|
1240
1240
|
@upload-text-item-color-file-icon_success: @color-text-2;
|
|
1241
|
-
@drawer-size-header-height: @size-
|
|
1241
|
+
@drawer-size-header-height: @size-16;
|
|
1242
1242
|
@message-normal-color-bg: @color-bg-5;
|
|
1243
1243
|
@message-color-close-icon: @color-text-2;
|
|
1244
1244
|
@message-info-color-content: @color-text-2;
|
|
@@ -1595,3 +1595,16 @@
|
|
|
1595
1595
|
@tag-magenta-bordered-color-border: @color-badge-2;
|
|
1596
1596
|
@tag-gray-bordered-color-border: @color-border-2;
|
|
1597
1597
|
@pagination-simple-input-width: @size-10;
|
|
1598
|
+
@tabs-line-font-title-text-weight_active: @font-weight-600;
|
|
1599
|
+
@descriptions-font-weight-title: @font-weight-600;
|
|
1600
|
+
@descriptions-font-weight-text-label: @font-weight-400;
|
|
1601
|
+
@list-font-weight-header: @font-weight-600;
|
|
1602
|
+
@list-meta-font-weight-title: @font-weight-600;
|
|
1603
|
+
@input-number-step-layer-border-radius: 1px;
|
|
1604
|
+
@drawer-padding-horizontal: @spacing-9;
|
|
1605
|
+
@drawer-padding-content-vertical: @spacing-7;
|
|
1606
|
+
@drawer-position-close-icon-right: @spacing-9;
|
|
1607
|
+
@drawer-font-size-close-icon: @size-4;
|
|
1608
|
+
@drawer-font-header-weight: @font-weight-600;
|
|
1609
|
+
@drawer-margin-footer-button-left: @size-2;
|
|
1610
|
+
@drawer-padding-footer-vertical: @spacing-8;
|