zartd 0.0.19 → 0.0.21

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 (60) hide show
  1. package/dist/index.css +350 -68
  2. package/dist/index.js +1 -1
  3. package/dist/index.min.css +1 -1
  4. package/dist/index.min.css.map +1 -1
  5. package/dist/index.min.js +1 -1
  6. package/es/a-alert/style/index.less +16 -0
  7. package/es/a-collapse/style/index.less +8 -4
  8. package/es/a-date-picker/style/index.less +34 -12
  9. package/es/a-description/style/index.less +4 -0
  10. package/es/a-dropdown/style/index.less +37 -5
  11. package/es/a-input/style/index.less +44 -2
  12. package/es/a-menu/style/index.less +1 -0
  13. package/es/a-message/style/index.less +1 -0
  14. package/es/a-pageheader/style/index.less +19 -0
  15. package/es/a-pagination/style/index.less +12 -0
  16. package/es/a-popover/style/index.less +5 -6
  17. package/es/a-radio/style/index.less +8 -2
  18. package/es/a-steps/style/index.less +127 -11
  19. package/es/a-table/style/index.less +22 -22
  20. package/es/a-tabs/style/index.less +10 -6
  21. package/es/a-tree/style/index.less +13 -0
  22. package/es/style/fonts/harmonyos-sans/HarmonyOS_Sans_Black.ttf +0 -0
  23. package/es/style/fonts/harmonyos-sans/HarmonyOS_Sans_Bold.ttf +0 -0
  24. package/es/style/fonts/harmonyos-sans/HarmonyOS_Sans_Light.ttf +0 -0
  25. package/es/style/fonts/harmonyos-sans/HarmonyOS_Sans_Medium.ttf +0 -0
  26. package/es/style/fonts/harmonyos-sans/HarmonyOS_Sans_Regular.ttf +0 -0
  27. package/es/style/fonts/harmonyos-sans/HarmonyOS_Sans_Thin.ttf +0 -0
  28. package/es/style/fonts/harmonyos-sans/index.css +41 -0
  29. package/es/style/fonts/index.less +7 -0
  30. package/es/style/global.less +1 -1
  31. package/es/style/themes/light.less +2 -1
  32. package/es/style/variable.less +8 -3
  33. package/lib/a-alert/style/index.less +16 -0
  34. package/lib/a-collapse/style/index.less +8 -4
  35. package/lib/a-date-picker/style/index.less +34 -12
  36. package/lib/a-description/style/index.less +4 -0
  37. package/lib/a-dropdown/style/index.less +37 -5
  38. package/lib/a-input/style/index.less +44 -2
  39. package/lib/a-menu/style/index.less +1 -0
  40. package/lib/a-message/style/index.less +1 -0
  41. package/lib/a-pageheader/style/index.less +19 -0
  42. package/lib/a-pagination/style/index.less +12 -0
  43. package/lib/a-popover/style/index.less +5 -6
  44. package/lib/a-radio/style/index.less +8 -2
  45. package/lib/a-steps/style/index.less +127 -11
  46. package/lib/a-table/style/index.less +22 -22
  47. package/lib/a-tabs/style/index.less +10 -6
  48. package/lib/a-tree/style/index.less +13 -0
  49. package/lib/style/fonts/harmonyos-sans/HarmonyOS_Sans_Black.ttf +0 -0
  50. package/lib/style/fonts/harmonyos-sans/HarmonyOS_Sans_Bold.ttf +0 -0
  51. package/lib/style/fonts/harmonyos-sans/HarmonyOS_Sans_Light.ttf +0 -0
  52. package/lib/style/fonts/harmonyos-sans/HarmonyOS_Sans_Medium.ttf +0 -0
  53. package/lib/style/fonts/harmonyos-sans/HarmonyOS_Sans_Regular.ttf +0 -0
  54. package/lib/style/fonts/harmonyos-sans/HarmonyOS_Sans_Thin.ttf +0 -0
  55. package/lib/style/fonts/harmonyos-sans/index.css +41 -0
  56. package/lib/style/fonts/index.less +7 -0
  57. package/lib/style/global.less +1 -1
  58. package/lib/style/themes/light.less +2 -1
  59. package/lib/style/variable.less +8 -3
  60. package/package.json +3 -3
package/dist/index.css CHANGED
@@ -3,6 +3,42 @@
3
3
  font-display: swap;
4
4
  src: url('din-alternate-bold.ttf') format('truetype');
5
5
  }
6
+ @font-face {
7
+ font-family: 'HarmonyOS Sans';
8
+ font-display: swap;
9
+ font-weight: 100;
10
+ src: url('HarmonyOS_Sans_Thin.ttf') format('truetype');
11
+ }
12
+ @font-face {
13
+ font-family: 'HarmonyOS Sans';
14
+ font-display: swap;
15
+ font-weight: 300;
16
+ src: url('HarmonyOS_Sans_Light.ttf') format('truetype');
17
+ }
18
+ @font-face {
19
+ font-family: 'HarmonyOS Sans';
20
+ font-display: swap;
21
+ font-weight: 400;
22
+ src: url('HarmonyOS_Sans_Regular.ttf') format('truetype');
23
+ }
24
+ @font-face {
25
+ font-family: 'HarmonyOS Sans';
26
+ font-display: swap;
27
+ font-weight: 500;
28
+ src: url('HarmonyOS_Sans_Medium.ttf') format('truetype');
29
+ }
30
+ @font-face {
31
+ font-family: 'HarmonyOS Sans';
32
+ font-display: swap;
33
+ font-weight: 700;
34
+ src: url('HarmonyOS_Sans_Bold.ttf') format('truetype');
35
+ }
36
+ @font-face {
37
+ font-family: 'HarmonyOS Sans';
38
+ font-display: swap;
39
+ font-weight: 900;
40
+ src: url('HarmonyOS_Sans_Black.ttf') format('truetype');
41
+ }
6
42
  @font-face {
7
43
  font-family: 'Source Han Sans';
8
44
  font-display: swap;
@@ -1108,8 +1144,9 @@
1108
1144
  /* -------------------- common -------------------- */
1109
1145
  --zartd-body-background: #fff;
1110
1146
  --zartd-border-color: #e9ecf2;
1111
- --zartd-shadow-color: rgba(0, 0, 0, 0.1);
1112
1147
  --zartd-box-shadow: 0 2px 24px 2px rgba(0, 0, 0, 0.1);
1148
+ --zartd-shadow-color: rgba(0, 0, 0, 0.1);
1149
+ --zartd-input-border-color: #dde1eb;
1113
1150
  --zartd-text-color: #235;
1114
1151
  --zartd-text-color-light: #6b7a99;
1115
1152
  --zartd-text-color-lighter: #a8b4c8;
@@ -1403,7 +1440,7 @@
1403
1440
  'WenQuanYi Micro Hei', 'Source Han Sans', 'Noto Sans CJK', 'Microsoft YaHei', sans-serif, 'Apple Color Emoji', 'Noto Color Emoji', 'Segoe UI Emoji',
1404
1441
  'Segoe UI Symbol';
1405
1442
  --zartd-font-family-code: 'Consolas', 'Monaco', 'Andale Mono', 'Ubuntu Mono', monospace;
1406
- --zartd-font-family-number: 'DIN';
1443
+ --zartd-font-family-number: 'HarmonyOS Sans';
1407
1444
  }
1408
1445
  :root ::-webkit-scrollbar {
1409
1446
  width: 6px;
@@ -1480,6 +1517,18 @@ body {
1480
1517
  .ant-alert.ant-alert-with-description .ant-alert-description {
1481
1518
  line-height: 20px;
1482
1519
  }
1520
+ .ant-alert-info {
1521
+ background-color: var(--zartd-primary-2);
1522
+ }
1523
+ .ant-alert-success {
1524
+ background-color: var(--zartd-gb-20);
1525
+ }
1526
+ .ant-alert-warning {
1527
+ background-color: var(--zartd-o-20);
1528
+ }
1529
+ .ant-alert-error {
1530
+ background-color: var(--zartd-r-20);
1531
+ }
1483
1532
  .ant-avatar-lg {
1484
1533
  font-size: 18px !important;
1485
1534
  }
@@ -1858,29 +1907,38 @@ body {
1858
1907
  }
1859
1908
  .ant-collapse.ant-collapse-icon-position-right .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
1860
1909
  right: 0;
1861
- width: 16px;
1862
- height: 16px;
1863
- font-size: 16px;
1864
- line-height: 16px;
1910
+ width: 12px;
1911
+ height: 12px;
1912
+ font-size: 12px;
1913
+ line-height: 12px;
1914
+ }
1915
+ .ant-collapse.ant-collapse-icon-position-right .ant-collapse-item .ant-collapse-header .ant-collapse-extra {
1916
+ margin-right: 20px;
1865
1917
  }
1866
- .ant-picker-cell-in-view.ant-picker-cell-in-range {
1918
+ .ant-picker-cell {
1919
+ padding: 2px;
1920
+ }
1921
+ .ant-picker-cell::before {
1922
+ height: 100%;
1923
+ }
1924
+ .ant-picker-cell-in-view.ant-picker-cell-in-range,
1925
+ .ant-picker-cell-in-view.ant-picker-cell-selected,
1926
+ .ant-picker-cell-in-view.ant-picker-cell-range-start,
1927
+ .ant-picker-cell-in-view.ant-picker-cell-range-end {
1867
1928
  color: var(--zartd-primary-color);
1868
1929
  }
1869
- .ant-picker-cell-in-view.ant-picker-cell-in-range::before {
1930
+ .ant-picker-cell-in-view.ant-picker-cell-in-range::before,
1931
+ .ant-picker-cell-in-view.ant-picker-cell-selected::before,
1932
+ .ant-picker-cell-in-view.ant-picker-cell-range-start::before,
1933
+ .ant-picker-cell-in-view.ant-picker-cell-range-end::before {
1870
1934
  width: 36.5px;
1871
1935
  }
1872
- .ant-picker-cell-today > .ant-picker-cell-inner::before {
1873
- border: none !important;
1936
+ .ant-picker-cell-in-view.ant-picker-cell-range-hover-end::before,
1937
+ .ant-picker-cell-in-view.ant-picker-cell-range-hover-start::before {
1938
+ background-color: var(--zartd-primary-color-deprecated-l-35);
1874
1939
  }
1875
- .ant-picker-cell-today > .ant-picker-cell-inner::after {
1876
- position: absolute;
1877
- bottom: -4.5px;
1878
- left: 10px;
1879
- width: 4px;
1880
- height: 4px;
1881
- background-color: var(--zartd-primary-color);
1882
- border-radius: 50%;
1883
- content: '';
1940
+ .ant-picker-cell-in-view.ant-picker-cell-range-start::before {
1941
+ left: 0;
1884
1942
  }
1885
1943
  .ant-picker-cell-range-start::before,
1886
1944
  .ant-picker-cell-range-end::before {
@@ -1890,6 +1948,19 @@ body {
1890
1948
  .ant-picker-cell-range-end .ant-picker-cell-inner {
1891
1949
  border-radius: 4px !important;
1892
1950
  }
1951
+ .ant-picker-cell-in-view.ant-picker-cell-today > .ant-picker-cell-inner::before {
1952
+ border: none;
1953
+ }
1954
+ .ant-picker-cell-in-view.ant-picker-cell-today > .ant-picker-cell-inner::after {
1955
+ position: absolute;
1956
+ bottom: -4.5px;
1957
+ left: 10px;
1958
+ width: 4px;
1959
+ height: 4px;
1960
+ background-color: var(--zartd-primary-color);
1961
+ border-radius: 50%;
1962
+ content: '';
1963
+ }
1893
1964
  .ant-picker-footer-extra {
1894
1965
  padding: 8px;
1895
1966
  line-height: 32px;
@@ -1921,6 +1992,9 @@ body {
1921
1992
  padding: 9.5px 16px 9.5px 8px;
1922
1993
  color: var(--zartd-text-color-7);
1923
1994
  }
1995
+ .ant-descriptions .ant-descriptions-view .ant-descriptions-row .ant-descriptions-item-label {
1996
+ color: var(--zartd-text-color-7) !important;
1997
+ }
1924
1998
  .ant-descriptions-bordered .ant-descriptions-view {
1925
1999
  border: none;
1926
2000
  }
@@ -1957,21 +2031,49 @@ body {
1957
2031
  padding: 12px 20px;
1958
2032
  border-top: none;
1959
2033
  }
2034
+ .ant-dropdown-menu {
2035
+ padding: 8px;
2036
+ }
1960
2037
  .ant-dropdown-menu .ant-dropdown-menu-item {
1961
2038
  padding: 5px 8px;
1962
- margin: 8px 8px 0;
2039
+ margin-bottom: 8px;
1963
2040
  border-radius: 4px;
1964
2041
  }
1965
- .ant-dropdown-menu .ant-dropdown-menu-item:first-child {
1966
- margin-top: 0;
2042
+ .ant-dropdown-menu .ant-dropdown-menu-item:last-child {
2043
+ margin-bottom: 0;
2044
+ }
2045
+ .ant-dropdown-menu .ant-dropdown-menu-item .ant-dropdown-menu-title-content {
2046
+ line-height: 22px;
2047
+ height: 22px;
1967
2048
  }
1968
2049
  .ant-dropdown-menu .ant-menu-item-divider {
1969
- margin: 4px 0 -4px;
2050
+ position: relative;
2051
+ bottom: 4px;
2052
+ margin: 0;
1970
2053
  }
1971
2054
  .ant-dropdown-menu .ant-dropdown-menu-submenu {
1972
- margin: 8px 8px 0;
2055
+ margin: 0 0 8px;
1973
2056
  border-radius: 4px;
1974
2057
  }
2058
+ .ant-dropdown-menu .ant-dropdown-menu-submenu .ant-dropdown-menu-submenu-title {
2059
+ padding: 5px 8px;
2060
+ }
2061
+ .ant-dropdown-menu .ant-dropdown-menu-submenu .ant-dropdown-menu-submenu-title .ant-dropdown-menu-title-content {
2062
+ display: inline-block;
2063
+ line-height: 22px;
2064
+ height: 22px;
2065
+ }
2066
+ .ant-dropdown-menu .ant-dropdown-menu-submenu .ant-dropdown-menu-submenu-title .ant-dropdown-menu-title-content + span,
2067
+ .ant-dropdown-menu .ant-dropdown-menu-submenu .ant-dropdown-menu-submenu-title .ant-dropdown-menu-title-content + i {
2068
+ color: var(--zartd-text-color-6);
2069
+ }
2070
+ .ant-dropdown-menu .ant-dropdown-menu-submenu .ant-dropdown-menu-submenu-title .ant-dropdown-menu-title-content + i {
2071
+ position: absolute;
2072
+ right: 8px;
2073
+ }
2074
+ .ant-dropdown-menu .ant-dropdown-menu-submenu:last-child {
2075
+ margin-bottom: 0;
2076
+ }
1975
2077
  .ant-dropdown-menu .ant-dropdown-menu-submenu:hover {
1976
2078
  background-color: var(--zartd-text-color-2);
1977
2079
  }
@@ -2047,6 +2149,9 @@ body {
2047
2149
  .ant-input-affix-wrapper .ant-input-suffix {
2048
2150
  color: var(--zartd-text-color-6);
2049
2151
  }
2152
+ .ant-input-affix-wrapper .ant-input-suffix:hover {
2153
+ color: initial;
2154
+ }
2050
2155
  .ant-input-affix-wrapper .ant-input-suffix .anticon {
2051
2156
  color: inherit;
2052
2157
  }
@@ -2054,8 +2159,7 @@ body {
2054
2159
  border-radius: 4px;
2055
2160
  }
2056
2161
  .ant-input-group-wrapper .ant-input-group-addon .ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) .ant-select-selector {
2057
- border-right-color: transparent;
2058
- border-left-color: transparent;
2162
+ border-color: transparent;
2059
2163
  box-shadow: none;
2060
2164
  }
2061
2165
  .ant-input-group-wrapper .ant-input-group:focus-within {
@@ -2064,11 +2168,34 @@ body {
2064
2168
  }
2065
2169
  .ant-input-group-wrapper .ant-input-group:hover .ant-input,
2066
2170
  .ant-input-group-wrapper .ant-input-group:focus-within .ant-input,
2171
+ .ant-input-group-wrapper .ant-input-group:hover .ant-input-affix-wrapper,
2172
+ .ant-input-group-wrapper .ant-input-group:focus-within .ant-input-affix-wrapper,
2067
2173
  .ant-input-group-wrapper .ant-input-group:hover .ant-input-group-addon,
2068
2174
  .ant-input-group-wrapper .ant-input-group:focus-within .ant-input-group-addon {
2069
2175
  border-color: var(--zartd-primary-color);
2070
2176
  box-shadow: none;
2071
2177
  }
2178
+ .ant-input-search > .ant-input-group {
2179
+ display: inline-flex;
2180
+ }
2181
+ .ant-input-search > .ant-input-group > .ant-input:hover,
2182
+ .ant-input-search > .ant-input-group > .ant-input-affix-wrapper:hover,
2183
+ .ant-input-search > .ant-input-group > .ant-input:focus-within,
2184
+ .ant-input-search > .ant-input-group > .ant-input-affix-wrapper:focus-within {
2185
+ box-shadow: none;
2186
+ }
2187
+ .ant-input-search > .ant-input-group:hover > .ant-input-group-addon .ant-input-search-button,
2188
+ .ant-input-search > .ant-input-group:focus-within > .ant-input-group-addon .ant-input-search-button {
2189
+ border-color: var(--zartd-primary-color);
2190
+ }
2191
+ .ant-input-search > .ant-input-group > .ant-input-group-addon:last-child {
2192
+ width: unset;
2193
+ left: 0px;
2194
+ }
2195
+ .ant-input-search > .ant-input-group > .ant-input-group-addon:last-child .ant-input-search-button {
2196
+ height: 100%;
2197
+ border-left: none;
2198
+ }
2072
2199
  .ant-input-number-handler {
2073
2200
  color: var(--zartd-text-color-6);
2074
2201
  border: none;
@@ -2077,8 +2204,7 @@ body {
2077
2204
  border-radius: 4px;
2078
2205
  }
2079
2206
  .ant-input-number-group-wrapper .ant-input-number-group-addon .ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) .ant-select-selector {
2080
- border-right-color: transparent;
2081
- border-left-color: transparent;
2207
+ border-color: transparent;
2082
2208
  box-shadow: none;
2083
2209
  }
2084
2210
  .ant-input-number-group-wrapper .ant-input-number-group:focus-within {
@@ -2087,6 +2213,8 @@ body {
2087
2213
  }
2088
2214
  .ant-input-number-group-wrapper .ant-input-number-group:hover .ant-input-number,
2089
2215
  .ant-input-number-group-wrapper .ant-input-number-group:focus-within .ant-input-number,
2216
+ .ant-input-number-group-wrapper .ant-input-number-group:hover .ant-input-number-affix-wrapper,
2217
+ .ant-input-number-group-wrapper .ant-input-number-group:focus-within .ant-input-number-affix-wrapper,
2090
2218
  .ant-input-number-group-wrapper .ant-input-number-group:hover .ant-input-number-group-addon,
2091
2219
  .ant-input-number-group-wrapper .ant-input-number-group:focus-within .ant-input-number-group-addon {
2092
2220
  border-color: var(--zartd-primary-color);
@@ -2164,6 +2292,7 @@ body {
2164
2292
  margin-top: 0;
2165
2293
  }
2166
2294
  .ant-menu-submenu-popup .ant-menu-vertical {
2295
+ margin-left: 11px;
2167
2296
  padding: 8px;
2168
2297
  }
2169
2298
  .ant-menu-submenu-popup .ant-menu-vertical .ant-menu-item,
@@ -2188,6 +2317,8 @@ body {
2188
2317
  line-height: 20px;
2189
2318
  text-align: left;
2190
2319
  box-shadow: var(--zartd-box-shadow);
2320
+ -webkit-user-select: text;
2321
+ user-select: text;
2191
2322
  }
2192
2323
  .ant-message .ant-message-notice .ant-message-notice-content .anticon {
2193
2324
  top: 0;
@@ -2285,11 +2416,30 @@ body {
2285
2416
  border-radius: 4px;
2286
2417
  box-shadow: var(--zartd-collapse-body-box-shadow);
2287
2418
  }
2419
+ .ant-page-header .ant-breadcrumb {
2420
+ padding: 5px 0;
2421
+ }
2288
2422
  .ant-page-header .ant-page-header-heading .ant-page-header-heading-left {
2423
+ height: auto;
2289
2424
  margin: 0;
2290
2425
  }
2426
+ .ant-page-header .ant-page-header-heading .ant-page-header-heading-left .ant-page-header-back {
2427
+ margin-right: 4px;
2428
+ }
2429
+ .ant-page-header .ant-page-header-heading .ant-page-header-heading-left .ant-page-header-back-button > i {
2430
+ display: inline-block;
2431
+ height: 20px;
2432
+ color: var(--zartd-text-color-light);
2433
+ font-size: 20px;
2434
+ }
2291
2435
  .ant-page-header .ant-page-header-heading .ant-page-header-heading-left .ant-page-header-heading-title {
2292
2436
  font-weight: 500;
2437
+ line-height: 28px;
2438
+ }
2439
+ .ant-pagination-total-text {
2440
+ height: auto;
2441
+ padding: 6px 0;
2442
+ line-height: 20px;
2293
2443
  }
2294
2444
  .ant-pagination-item {
2295
2445
  border-radius: 2px;
@@ -2309,7 +2459,7 @@ body {
2309
2459
  }
2310
2460
  .ant-pagination-jump-prev,
2311
2461
  .ant-pagination-jump-next {
2312
- border: 1px solid var(--zartd-border-color);
2462
+ border: 1px solid var(--zartd-input-border-color);
2313
2463
  }
2314
2464
  .ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-ellipsis,
2315
2465
  .ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-ellipsis {
@@ -2379,6 +2529,11 @@ body {
2379
2529
  .ant-pagination.mini.ant-pagination-disabled .ant-pagination-item:not(.ant-pagination-item-active) {
2380
2530
  border: none;
2381
2531
  }
2532
+ .ant-pagination.mini .ant-pagination-total-text {
2533
+ height: auto;
2534
+ padding: 6px 0;
2535
+ line-height: 20px;
2536
+ }
2382
2537
  /* stylelint-disable no-descending-specificity */
2383
2538
  /* stylelint-disable number-max-precision */
2384
2539
  .ant-popover-inner {
@@ -2386,9 +2541,6 @@ body {
2386
2541
  box-shadow: var(--zartd-box-shadow);
2387
2542
  }
2388
2543
  .ant-popover-title {
2389
- width: 210px;
2390
- min-width: initial;
2391
- max-width: 210px;
2392
2544
  height: 20px;
2393
2545
  min-height: 20px;
2394
2546
  margin-bottom: 8px;
@@ -2408,11 +2560,11 @@ body {
2408
2560
  padding: 0;
2409
2561
  }
2410
2562
  .ant-popover-message > .anticon {
2411
- top: 4.0005px;
2412
- font-size: 14px;
2563
+ top: 2px;
2564
+ padding: 1.5px;
2565
+ font-size: 13px;
2413
2566
  }
2414
2567
  .ant-popover-message-title {
2415
- max-width: 182px;
2416
2568
  margin-left: 24px;
2417
2569
  padding-left: 0;
2418
2570
  line-height: 20px;
@@ -2492,16 +2644,21 @@ body {
2492
2644
  align-items: center;
2493
2645
  }
2494
2646
  .ant-radio-inner {
2647
+ width: 16px;
2648
+ height: 16px;
2495
2649
  border-color: var(--zartd-text-color-6);
2496
2650
  }
2497
2651
  .ant-radio-inner::after {
2498
- width: 4px;
2499
- height: 4px;
2652
+ width: 8px;
2653
+ height: 8px;
2500
2654
  margin: 0;
2501
2655
  background-color: var(--zartd-body-background);
2502
2656
  -webkit-transform: translate(-50%, -50%);
2503
2657
  transform: translate(-50%, -50%);
2504
2658
  }
2659
+ .ant-radio-inner span {
2660
+ font-size: 14px;
2661
+ }
2505
2662
  .ant-radio-checked .ant-radio-inner {
2506
2663
  background-color: var(--zartd-primary-6);
2507
2664
  border-color: var(--zartd-primary-6);
@@ -2618,6 +2775,16 @@ span.ant-radio + * {
2618
2775
  .ant-select-tree-list-holder-inner {
2619
2776
  align-items: stretch;
2620
2777
  }
2778
+ .ant-select-tree-list-scrollbar {
2779
+ right: -8px !important;
2780
+ }
2781
+ .ant-select-tree-list-scrollbar,
2782
+ .ant-select-tree-list-scrollbar-show {
2783
+ display: initial !important;
2784
+ }
2785
+ .ant-select-tree-list-scrollbar-thumb {
2786
+ max-height: 100%;
2787
+ }
2621
2788
  .ant-select-tree-indent-unit {
2622
2789
  margin-right: 8px;
2623
2790
  }
@@ -2643,18 +2810,42 @@ span.ant-radio + * {
2643
2810
  top: -10px;
2644
2811
  bottom: -10px;
2645
2812
  }
2646
- .ant-steps .ant-steps-item-title {
2647
- padding-right: 4px;
2648
- }
2649
2813
  .ant-steps .ant-steps-item {
2650
2814
  padding-left: 4px !important;
2651
2815
  }
2652
2816
  .ant-steps .ant-steps-item:first-child {
2653
2817
  padding-left: 0 !important;
2654
2818
  }
2655
- .ant-steps .ant-steps-item .ant-steps-item-icon {
2819
+ .ant-steps .ant-steps-item .ant-steps-item-container {
2820
+ display: flex;
2821
+ }
2822
+ .ant-steps .ant-steps-item .ant-steps-item-container .ant-steps-item-tail::after {
2823
+ background-color: var(--zartd-border-color);
2824
+ }
2825
+ .ant-steps .ant-steps-item .ant-steps-item-container .ant-steps-item-icon {
2826
+ display: flex;
2827
+ align-items: center;
2828
+ justify-content: center;
2829
+ width: 24px;
2830
+ height: 24px;
2831
+ font-size: 14px;
2832
+ line-height: 24px;
2656
2833
  border-color: var(--zartd-primary-1);
2657
2834
  }
2835
+ .ant-steps .ant-steps-item .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
2836
+ padding-right: 4px;
2837
+ font-size: 14px;
2838
+ line-height: 24px;
2839
+ }
2840
+ .ant-steps .ant-steps-item .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title::after {
2841
+ top: 50%;
2842
+ background-color: var(--zartd-border-color);
2843
+ }
2844
+ .ant-steps .ant-steps-item .ant-steps-item-container .ant-steps-item-content .ant-steps-item-description {
2845
+ max-width: 156px;
2846
+ font-size: 12px;
2847
+ line-height: 20px;
2848
+ }
2658
2849
  .ant-steps .ant-steps-item-finish .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
2659
2850
  color: var(--zartd-primary-color);
2660
2851
  }
@@ -2665,16 +2856,62 @@ span.ant-radio + * {
2665
2856
  .ant-steps .ant-steps-item-process .ant-steps-item-subtitle {
2666
2857
  color: var(--zartd-text-color-7);
2667
2858
  }
2668
- .ant-steps .ant-steps-item-wait .ant-steps-item-icon {
2669
- background-color: var(--zartd-text-color-2);
2670
- border-color: var(--zartd-text-color-2);
2671
- }
2672
2859
  .ant-steps .ant-steps-item-wait .ant-steps-item-container {
2673
2860
  color: var(--zartd-text-color-7);
2674
2861
  }
2862
+ .ant-steps .ant-steps-item-wait .ant-steps-item-container .ant-steps-item-icon {
2863
+ background-color: var(--zartd-text-color-2);
2864
+ border-color: var(--zartd-text-color-2);
2865
+ }
2675
2866
  .ant-steps .ant-steps-item-wait .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
2676
2867
  color: var(--zartd-text-color-7);
2677
2868
  }
2869
+ .ant-steps.ant-steps-vertical.ant-steps-dot .ant-steps-item-icon {
2870
+ margin: 7px 4px 0 2px;
2871
+ }
2872
+ .ant-steps.ant-steps-vertical .ant-steps-item {
2873
+ padding: 0 !important;
2874
+ }
2875
+ .ant-steps.ant-steps-vertical .ant-steps-item .ant-steps-item-container .ant-steps-item-tail::after {
2876
+ margin-left: -4px;
2877
+ }
2878
+ .ant-steps.ant-steps-vertical .ant-steps-item .ant-steps-item-container .ant-steps-item-content {
2879
+ padding-bottom: 75px;
2880
+ }
2881
+ .ant-steps.ant-steps-vertical .ant-steps-item .ant-steps-item-container .ant-steps-item-content .ant-steps-item-description {
2882
+ margin-top: 3px;
2883
+ }
2884
+ .ant-steps.ant-steps-label-vertical .ant-steps-item .ant-steps-item-container {
2885
+ display: block;
2886
+ }
2887
+ .ant-steps.ant-steps-label-vertical .ant-steps-item .ant-steps-item-container .ant-steps-item-tail {
2888
+ top: 8px;
2889
+ }
2890
+ .ant-steps.ant-steps-label-vertical .ant-steps-item .ant-steps-item-container .ant-steps-item-content {
2891
+ margin-top: 1px;
2892
+ }
2893
+ .ant-steps.ant-steps-label-vertical .ant-steps-item .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
2894
+ padding: 0;
2895
+ line-height: 22px;
2896
+ }
2897
+ .ant-steps.ant-steps-dot .ant-steps-item .ant-steps-item-container .ant-steps-item-tail {
2898
+ top: 3.5px;
2899
+ }
2900
+ .ant-steps.ant-steps-dot .ant-steps-item .ant-steps-item-container .ant-steps-item-tail::after {
2901
+ margin-left: 16px;
2902
+ }
2903
+ .ant-steps.ant-steps-dot .ant-steps-item .ant-steps-item-container .ant-steps-item-icon {
2904
+ top: 0;
2905
+ width: 10px;
2906
+ height: 10px;
2907
+ background-color: var(--zartd-primary-color);
2908
+ }
2909
+ .ant-steps.ant-steps-dot .ant-steps-item.ant-steps-item-finish .ant-steps-item-container .ant-steps-item-tail::after {
2910
+ background-color: var(--zartd-primary-color);
2911
+ }
2912
+ .ant-steps.ant-steps-dot .ant-steps-item.ant-steps-item-wait .ant-steps-item-container .ant-steps-item-icon {
2913
+ background-color: var(--zartd-border-color);
2914
+ }
2678
2915
  .ant-switch {
2679
2916
  display: inline-flex;
2680
2917
  align-items: center;
@@ -2696,26 +2933,29 @@ span.ant-radio + * {
2696
2933
  .ant-table-thead > tr > th:not(:last-child, .ant-table-selection-column, .ant-table-row-expand-icon-cell, [colspan])::before {
2697
2934
  height: 20px !important;
2698
2935
  }
2699
- .ant-table-thead > tr > th > div {
2700
- justify-content: flex-start;
2701
- }
2702
- .ant-table-thead > tr > th > div .ant-table-column-title {
2703
- flex: initial;
2936
+ .ant-table-tbody > tr > td {
2937
+ padding-top: 13px;
2938
+ padding-bottom: 13px;
2939
+ border-bottom-color: var(--zartd-border-color);
2704
2940
  }
2705
- .ant-table-thead > tr > th > div .ant-table-column-title .ant-table-column-sorters {
2941
+ .ant-table-filter-column,
2942
+ .ant-table-column-sorters {
2706
2943
  justify-content: flex-start;
2707
2944
  }
2708
- .ant-table-thead > tr > th > div .ant-table-column-title + span {
2709
- margin: 0 0 0 4px;
2945
+ .ant-table-filter-column .ant-table-column-title,
2946
+ .ant-table-column-sorters .ant-table-column-title {
2947
+ flex: unset;
2948
+ }
2949
+ .ant-table-filter-column .ant-table-column-title + span,
2950
+ .ant-table-column-sorters .ant-table-column-title + span {
2951
+ margin-left: 4px;
2710
2952
  padding: 0;
2711
2953
  color: var(--zartd-text-color-6);
2712
2954
  }
2713
- .ant-table-thead > tr > th > div .ant-table-column-title + span:hover {
2955
+ .ant-table-filter-column .ant-table-column-title + span:hover,
2956
+ .ant-table-column-sorters .ant-table-column-title + span:hover {
2714
2957
  color: var(--zartd-text-color-7);
2715
2958
  }
2716
- .ant-table-tbody > tr > td {
2717
- border-bottom-color: var(--zartd-border-color);
2718
- }
2719
2959
  .ant-table-pagination.ant-pagination {
2720
2960
  margin-bottom: 0;
2721
2961
  }
@@ -2749,7 +2989,6 @@ span.ant-radio + * {
2749
2989
  .ant-tabs-right > .ant-tabs-nav .ant-tabs-tab,
2750
2990
  .ant-tabs-left > div > .ant-tabs-nav .ant-tabs-tab,
2751
2991
  .ant-tabs-right > div > .ant-tabs-nav .ant-tabs-tab {
2752
- min-width: 155px;
2753
2992
  height: 36px;
2754
2993
  padding: 8px 16px;
2755
2994
  }
@@ -2802,24 +3041,29 @@ span.ant-radio + * {
2802
3041
  height: 50px;
2803
3042
  }
2804
3043
  .ant-tabs-card .ant-tabs-nav .ant-tabs-nav-wrap .ant-tabs-nav-list .ant-tabs-tab {
2805
- min-width: 153px;
2806
3044
  height: 34px;
2807
3045
  margin-right: 0;
2808
- margin-left: 14px;
2809
- padding: 14px;
3046
+ margin-left: 8px;
3047
+ padding: 7.5px 8px 6.5px 8px;
2810
3048
  border-radius: 8px 8px 0 0;
2811
3049
  color: var(--zartd-text-color-7);
2812
3050
  background-color: var(--zartd-text-color-3);
2813
3051
  border: none;
2814
3052
  }
2815
3053
  .ant-tabs-card .ant-tabs-nav .ant-tabs-nav-wrap .ant-tabs-nav-list .ant-tabs-tab:first-child {
2816
- margin-left: 6px;
3054
+ margin-left: 8px;
2817
3055
  }
2818
3056
  .ant-tabs-card .ant-tabs-nav .ant-tabs-nav-wrap .ant-tabs-nav-list .ant-tabs-tab .ant-tabs-tab-btn {
2819
3057
  min-width: 0;
2820
3058
  }
2821
3059
  .ant-tabs-card .ant-tabs-nav .ant-tabs-nav-wrap .ant-tabs-nav-list .ant-tabs-tab .ant-tabs-tab-remove {
2822
- margin: 0;
3060
+ width: 16px;
3061
+ height: 16px;
3062
+ display: inline-flex;
3063
+ align-items: center;
3064
+ justify-content: center;
3065
+ margin-left: 8px;
3066
+ margin-right: 0;
2823
3067
  padding: 0;
2824
3068
  }
2825
3069
  .ant-tabs-card .ant-tabs-nav .ant-tabs-nav-wrap .ant-tabs-nav-list .ant-tabs-tab-active {
@@ -2840,21 +3084,49 @@ span.ant-radio + * {
2840
3084
  display: inline-flex;
2841
3085
  justify-content: space-between;
2842
3086
  }
3087
+ .ant-tabs-dropdown-menu {
3088
+ padding: 8px;
3089
+ }
2843
3090
  .ant-tabs-dropdown-menu .ant-tabs-dropdown-menu-item {
2844
3091
  padding: 5px 8px;
2845
- margin: 8px 8px 0;
3092
+ margin-bottom: 8px;
2846
3093
  border-radius: 4px;
2847
3094
  }
2848
- .ant-tabs-dropdown-menu .ant-tabs-dropdown-menu-item:first-child {
2849
- margin-top: 0;
3095
+ .ant-tabs-dropdown-menu .ant-tabs-dropdown-menu-item:last-child {
3096
+ margin-bottom: 0;
3097
+ }
3098
+ .ant-tabs-dropdown-menu .ant-tabs-dropdown-menu-item .ant-tabs-dropdown-menu-title-content {
3099
+ line-height: 22px;
3100
+ height: 22px;
2850
3101
  }
2851
3102
  .ant-tabs-dropdown-menu .ant-menu-item-divider {
2852
- margin: 4px 0 -4px;
3103
+ position: relative;
3104
+ bottom: 4px;
3105
+ margin: 0;
2853
3106
  }
2854
3107
  .ant-tabs-dropdown-menu .ant-tabs-dropdown-menu-submenu {
2855
- margin: 8px 8px 0;
3108
+ margin: 0 0 8px;
2856
3109
  border-radius: 4px;
2857
3110
  }
3111
+ .ant-tabs-dropdown-menu .ant-tabs-dropdown-menu-submenu .ant-tabs-dropdown-menu-submenu-title {
3112
+ padding: 5px 8px;
3113
+ }
3114
+ .ant-tabs-dropdown-menu .ant-tabs-dropdown-menu-submenu .ant-tabs-dropdown-menu-submenu-title .ant-tabs-dropdown-menu-title-content {
3115
+ display: inline-block;
3116
+ line-height: 22px;
3117
+ height: 22px;
3118
+ }
3119
+ .ant-tabs-dropdown-menu .ant-tabs-dropdown-menu-submenu .ant-tabs-dropdown-menu-submenu-title .ant-tabs-dropdown-menu-title-content + span,
3120
+ .ant-tabs-dropdown-menu .ant-tabs-dropdown-menu-submenu .ant-tabs-dropdown-menu-submenu-title .ant-tabs-dropdown-menu-title-content + i {
3121
+ color: var(--zartd-text-color-6);
3122
+ }
3123
+ .ant-tabs-dropdown-menu .ant-tabs-dropdown-menu-submenu .ant-tabs-dropdown-menu-submenu-title .ant-tabs-dropdown-menu-title-content + i {
3124
+ position: absolute;
3125
+ right: 8px;
3126
+ }
3127
+ .ant-tabs-dropdown-menu .ant-tabs-dropdown-menu-submenu:last-child {
3128
+ margin-bottom: 0;
3129
+ }
2858
3130
  .ant-tabs-dropdown-menu .ant-tabs-dropdown-menu-submenu:hover {
2859
3131
  background-color: var(--zartd-text-color-2);
2860
3132
  }
@@ -2967,6 +3239,16 @@ span.ant-radio + * {
2967
3239
  .ant-tree-list-holder-inner {
2968
3240
  align-items: stretch;
2969
3241
  }
3242
+ .ant-tree-list-scrollbar {
3243
+ right: -8px !important;
3244
+ }
3245
+ .ant-tree-list-scrollbar,
3246
+ .ant-tree-list-scrollbar-show {
3247
+ display: initial !important;
3248
+ }
3249
+ .ant-tree-list-scrollbar-thumb {
3250
+ max-height: 100%;
3251
+ }
2970
3252
  .ant-tree-indent-unit {
2971
3253
  margin-right: 8px;
2972
3254
  }
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! zartd v0.0.19 */
1
+ /*! zartd v0.0.21 */
2
2
 
3
3
  (function (global, factory) {
4
4
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :