@gcsa/console-styles 0.1.1 → 0.1.3

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.
@@ -43,7 +43,8 @@
43
43
  font-size: 14px;
44
44
  line-height: 1;
45
45
  padding: 0 14px;
46
- height: 36px;
46
+ height: var(--gcsa-control-height-md);
47
+ min-height: var(--gcsa-control-height-md);
47
48
  border: 1px solid transparent;
48
49
  cursor: pointer;
49
50
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
@@ -56,22 +57,22 @@
56
57
  }
57
58
 
58
59
  .gcsa-btn--sm {
59
- height: var(--gcsa-control-height-sm, 24px);
60
- min-height: var(--gcsa-control-height-sm, 24px);
61
- font-size: 13px;
60
+ height: var(--gcsa-control-height-sm);
61
+ min-height: var(--gcsa-control-height-sm);
62
+ font-size: var(--gcsa-control-font-size-sm);
62
63
  padding: 0 12px;
63
64
  }
64
65
 
65
66
  .gcsa-btn--md {
66
- height: var(--gcsa-control-height-md, 32px);
67
- min-height: var(--gcsa-control-height-md, 32px);
68
- font-size: 14px;
67
+ height: var(--gcsa-control-height-md);
68
+ min-height: var(--gcsa-control-height-md);
69
+ font-size: var(--gcsa-control-font-size-md);
69
70
  padding: 0 14px;
70
71
  }
71
72
 
72
73
  .gcsa-btn--lg {
73
- height: var(--gcsa-control-height-lg, 40px);
74
- min-height: var(--gcsa-control-height-lg, 40px);
74
+ height: var(--gcsa-control-height-lg);
75
+ min-height: var(--gcsa-control-height-lg);
75
76
  font-size: 15px;
76
77
  }
77
78
 
@@ -314,8 +315,10 @@
314
315
 
315
316
  .gcsa-input:not(.gcsa-input-number__input),
316
317
  .gcsa-select {
317
- height: 38px;
318
- padding: 0 12px;
318
+ height: var(--gcsa-control-height-md);
319
+ min-height: var(--gcsa-control-height-md);
320
+ padding: 0 var(--gcsa-control-padding-x-md);
321
+ font-size: var(--gcsa-control-font-size-md);
319
322
  }
320
323
 
321
324
  .gcsa-textarea {
@@ -324,19 +327,19 @@
324
327
  resize: vertical;
325
328
  }
326
329
 
327
- /* ── Control sizes (Ant Design: small 24 / middle 32 / large 40) ── */
330
+ /* ── Control sizes:高度/字号只走 size 档位,勿在组件上写死 px ── */
328
331
  :root,
329
332
  [data-gcsa-theme='light'],
330
333
  [data-gcsa-theme='dark'] {
331
334
  --gcsa-control-height-sm: 24px;
332
- --gcsa-control-height-md: 32px;
335
+ --gcsa-control-height-md: 36px;
333
336
  --gcsa-control-height-lg: 40px;
334
337
  --gcsa-control-padding-x-sm: 7px;
335
- --gcsa-control-padding-x-md: 11px;
338
+ --gcsa-control-padding-x-md: 12px;
336
339
  --gcsa-control-padding-x-lg: 16px;
337
340
  --gcsa-control-font-size-sm: 12px;
338
- --gcsa-control-font-size-md: 14px;
339
- --gcsa-control-font-size-lg: 14px;
341
+ --gcsa-control-font-size-md: 13px;
342
+ --gcsa-control-font-size-lg: 13px;
340
343
  }
341
344
 
342
345
  .gcsa-text-control--sm .gcsa-input:not(.gcsa-input-number__input),
@@ -450,6 +453,19 @@
450
453
  border-color: var(--gcsa-color-destructive);
451
454
  }
452
455
 
456
+ .gcsa-input:disabled,
457
+ .gcsa-textarea:disabled,
458
+ .gcsa-select:disabled,
459
+ .gcsa-select-trigger:disabled,
460
+ .gcsa-select-trigger[data-disabled] {
461
+ opacity: 0.45;
462
+ cursor: not-allowed;
463
+ color: var(--gcsa-color-text-muted);
464
+ background: var(--gcsa-color-bg-elevated);
465
+ border-color: var(--gcsa-color-border-subtle);
466
+ box-shadow: none;
467
+ }
468
+
453
469
  .gcsa-input-group {
454
470
  display: flex;
455
471
  align-items: stretch;
@@ -1340,30 +1356,30 @@
1340
1356
  }
1341
1357
 
1342
1358
  :is([data-gcsa-theme='light'], [data-gcsa-theme='dark']) .gcsa-btn {
1343
- height: 40px;
1344
- min-height: 40px;
1359
+ height: var(--gcsa-control-height-md);
1360
+ min-height: var(--gcsa-control-height-md);
1345
1361
  box-sizing: border-box;
1346
1362
  padding-inline: 24px;
1347
1363
  border-radius: 20px;
1348
- font-size: 13px;
1364
+ font-size: var(--gcsa-control-font-size-md);
1349
1365
  letter-spacing: 0;
1350
1366
  }
1351
1367
 
1352
1368
  :is([data-gcsa-theme='light'], [data-gcsa-theme='dark']) .gcsa-btn--sm {
1353
- height: var(--gcsa-control-height-sm, 24px);
1354
- min-height: var(--gcsa-control-height-sm, 24px);
1369
+ height: var(--gcsa-control-height-sm);
1370
+ min-height: var(--gcsa-control-height-sm);
1355
1371
  padding-inline: 16px;
1356
1372
  }
1357
1373
 
1358
1374
  :is([data-gcsa-theme='light'], [data-gcsa-theme='dark']) .gcsa-btn--md {
1359
- height: var(--gcsa-control-height-md, 32px);
1360
- min-height: var(--gcsa-control-height-md, 32px);
1375
+ height: var(--gcsa-control-height-md);
1376
+ min-height: var(--gcsa-control-height-md);
1361
1377
  padding-inline: 16px;
1362
1378
  }
1363
1379
 
1364
1380
  :is([data-gcsa-theme='light'], [data-gcsa-theme='dark']) .gcsa-btn--lg {
1365
- height: var(--gcsa-control-height-lg, 40px);
1366
- min-height: var(--gcsa-control-height-lg, 40px);
1381
+ height: var(--gcsa-control-height-lg);
1382
+ min-height: var(--gcsa-control-height-lg);
1367
1383
  padding-inline: 24px;
1368
1384
  }
1369
1385
 
@@ -1400,7 +1416,7 @@
1400
1416
 
1401
1417
  /* Time inputs use the Figma field typography and preserve their native clock affordance. */
1402
1418
  :is([data-gcsa-theme='light'], [data-gcsa-theme='dark']) .gcsa-time-picker {
1403
- font-size: 14px;
1419
+ font-size: var(--gcsa-control-font-size-md);
1404
1420
  line-height: 16px;
1405
1421
  }
1406
1422
 
@@ -1463,7 +1479,7 @@
1463
1479
  }
1464
1480
 
1465
1481
  :is([data-gcsa-theme='light'], [data-gcsa-theme='dark']) .gcsa-pagination {
1466
- --gcsa-pagination-control-height: 36px;
1482
+ --gcsa-pagination-control-height: var(--gcsa-control-height-md);
1467
1483
  }
1468
1484
 
1469
1485
  :is([data-gcsa-theme='light'], [data-gcsa-theme='dark']) .gcsa-pagination__size,
@@ -1514,16 +1530,14 @@
1514
1530
 
1515
1531
  [data-gcsa-theme='dark'] .gcsa-date-picker__control,
1516
1532
  [data-gcsa-theme='dark'] .gcsa-date-range-picker__control {
1517
- min-height: 40px;
1518
- height: 40px;
1519
1533
  box-sizing: border-box;
1520
- padding-left: 16px;
1534
+ padding-left: var(--gcsa-control-padding-x-lg);
1521
1535
  border-radius: 8px;
1522
1536
  }
1523
1537
 
1524
1538
  [data-gcsa-theme='dark'] .gcsa-date-picker__control > .gcsa-date-picker__input {
1525
- height: 30px;
1526
- min-height: 30px;
1539
+ height: 26px;
1540
+ min-height: 26px;
1527
1541
  box-sizing: border-box;
1528
1542
  padding: 0;
1529
1543
  border: 0 !important;
@@ -1532,6 +1546,29 @@
1532
1546
  box-shadow: none !important;
1533
1547
  }
1534
1548
 
1549
+ [data-gcsa-theme='light'] .gcsa-cascader__trigger {
1550
+ border-color: var(--gcsa-color-border);
1551
+ background: var(--gcsa-color-bg-surface);
1552
+ color: var(--gcsa-color-text-heading);
1553
+ }
1554
+
1555
+ [data-gcsa-theme='light'] .gcsa-cascader__panel {
1556
+ border-color: var(--gcsa-color-border-subtle);
1557
+ background: var(--gcsa-color-bg-elevated, var(--gcsa-color-bg-surface));
1558
+ box-shadow: var(--gcsa-shadow-md);
1559
+ color: var(--gcsa-color-text);
1560
+ }
1561
+
1562
+ [data-gcsa-theme='light'] .gcsa-cascader__option {
1563
+ color: var(--gcsa-color-text-secondary);
1564
+ }
1565
+
1566
+ [data-gcsa-theme='light'] .gcsa-cascader__option:hover:not(:disabled),
1567
+ [data-gcsa-theme='light'] .gcsa-cascader__option--active {
1568
+ color: var(--gcsa-color-primary);
1569
+ background: var(--gcsa-color-primary-muted);
1570
+ }
1571
+
1535
1572
  [data-gcsa-theme='dark'] .gcsa-cascader__trigger {
1536
1573
  border-color: var(--gcsa-color-border);
1537
1574
  background: var(--gcsa-color-bg-input);
@@ -1576,7 +1613,10 @@
1576
1613
  gap: 8px;
1577
1614
  min-width: 0;
1578
1615
  max-width: 100%;
1616
+ box-sizing: border-box;
1617
+ height: var(--gcsa-console-header-height);
1579
1618
  min-height: var(--gcsa-console-header-height);
1619
+ max-height: var(--gcsa-console-header-height);
1580
1620
  padding-left: 12px;
1581
1621
  overflow: hidden;
1582
1622
  }
@@ -1635,15 +1675,20 @@
1635
1675
  height: 100%;
1636
1676
  min-height: 0;
1637
1677
  overflow: hidden;
1638
- padding: var(--gcsa-space-4) var(--gcsa-space-3);
1678
+ padding: 0 var(--gcsa-space-3) var(--gcsa-space-4);
1639
1679
  }
1640
1680
 
1641
1681
  .gcsa-console-nav__brand {
1642
1682
  display: flex;
1643
1683
  align-items: center;
1684
+ box-sizing: border-box;
1685
+ height: var(--gcsa-console-header-height);
1686
+ min-height: var(--gcsa-console-header-height);
1687
+ max-height: var(--gcsa-console-header-height);
1688
+ overflow: hidden;
1644
1689
  gap: var(--gcsa-space-3);
1645
1690
  flex-shrink: 0;
1646
- padding: var(--gcsa-space-2) var(--gcsa-space-3) var(--gcsa-space-4);
1691
+ padding: 0 var(--gcsa-space-3);
1647
1692
  margin-bottom: var(--gcsa-space-2);
1648
1693
  border-bottom: 1px solid var(--gcsa-color-border-subtle);
1649
1694
  }
@@ -1690,6 +1735,9 @@
1690
1735
  font-weight: 600;
1691
1736
  letter-spacing: 0.06em;
1692
1737
  color: var(--gcsa-color-text-heading);
1738
+ overflow: hidden;
1739
+ text-overflow: ellipsis;
1740
+ white-space: nowrap;
1693
1741
  }
1694
1742
 
1695
1743
  .gcsa-console-nav__brand-text span {
@@ -1699,6 +1747,9 @@
1699
1747
  color: var(--gcsa-color-text-secondary);
1700
1748
  letter-spacing: 0.06em;
1701
1749
  text-transform: uppercase;
1750
+ overflow: hidden;
1751
+ text-overflow: ellipsis;
1752
+ white-space: nowrap;
1702
1753
  }
1703
1754
 
1704
1755
  .gcsa-console-nav__links {
@@ -1727,7 +1778,7 @@
1727
1778
  min-width: 0;
1728
1779
  border-right: none;
1729
1780
  background: transparent;
1730
- --gcsa-menu-item-height: 36px;
1781
+ --gcsa-menu-item-height: var(--gcsa-control-height-md);
1731
1782
  --gcsa-menu-item-radius: 4px;
1732
1783
  --gcsa-menu-item-pad-x: 12px;
1733
1784
  --gcsa-menu-icon-size: 16px;
@@ -1848,13 +1899,14 @@
1848
1899
  }
1849
1900
 
1850
1901
  .gcsa-console-nav--collapsed {
1851
- padding: var(--gcsa-space-3) var(--gcsa-space-2);
1902
+ padding: 0 var(--gcsa-space-2) var(--gcsa-space-3);
1852
1903
  }
1853
1904
 
1854
1905
  .gcsa-console-nav--collapsed .gcsa-console-nav__brand {
1855
1906
  justify-content: center;
1856
1907
  gap: 0;
1857
- padding: var(--gcsa-space-2) 0 var(--gcsa-space-3);
1908
+ height: var(--gcsa-console-header-height);
1909
+ padding: 0;
1858
1910
  }
1859
1911
 
1860
1912
  .gcsa-console-nav--collapsed .gcsa-console-nav__brand-text {
@@ -1905,6 +1957,11 @@
1905
1957
  width: 100%;
1906
1958
  min-height: var(--gcsa-console-header-height);
1907
1959
  padding: var(--gcsa-space-2) var(--gcsa-space-6) var(--gcsa-space-2) 0;
1960
+ box-sizing: border-box;
1961
+ height: var(--gcsa-console-header-height);
1962
+ min-height: var(--gcsa-console-header-height);
1963
+ max-height: var(--gcsa-console-header-height);
1964
+ overflow: hidden;
1908
1965
  }
1909
1966
 
1910
1967
  .gcsa-console-shell__header .gcsa-console-header {
@@ -1912,6 +1969,10 @@
1912
1969
  grid-template-columns: minmax(0, 1fr) auto;
1913
1970
  align-items: center;
1914
1971
  column-gap: 12px;
1972
+ box-sizing: border-box;
1973
+ height: var(--gcsa-console-header-height);
1974
+ max-height: var(--gcsa-console-header-height);
1975
+ overflow: hidden;
1915
1976
  min-height: var(--gcsa-console-header-height);
1916
1977
  padding: 0 var(--gcsa-space-6) 0 0;
1917
1978
  }
@@ -1925,6 +1986,7 @@
1925
1986
  .gcsa-console-shell__header .gcsa-console-header__title-row {
1926
1987
  flex-wrap: nowrap;
1927
1988
  min-width: 0;
1989
+ overflow: hidden;
1928
1990
  }
1929
1991
 
1930
1992
  .gcsa-console-shell__header .gcsa-console-header__title {
@@ -1933,8 +1995,14 @@
1933
1995
  text-overflow: ellipsis;
1934
1996
  white-space: nowrap;
1935
1997
  min-width: 0;
1936
- }
1937
1998
 
1999
+ }
2000
+ .gcsa-console-shell__header .gcsa-console-header__subtitle {
2001
+ overflow: hidden;
2002
+ text-overflow: ellipsis;
2003
+ white-space: nowrap;
2004
+ min-width: 0;
2005
+ }
1938
2006
  .gcsa-console-shell__header .gcsa-console-header__actions {
1939
2007
  position: static;
1940
2008
  top: auto;
@@ -2008,6 +2076,8 @@
2008
2076
  align-items: center;
2009
2077
  column-gap: 8px;
2010
2078
  padding: 0 var(--gcsa-space-3) 0 0;
2079
+ height: var(--gcsa-console-header-height);
2080
+ max-height: var(--gcsa-console-header-height);
2011
2081
  min-height: var(--gcsa-console-header-height);
2012
2082
  }
2013
2083
 
@@ -2031,16 +2101,16 @@
2031
2101
  }
2032
2102
  }
2033
2103
 
2034
- /* Empty */
2104
+ /* Empty — Figma 2174:3336 */
2035
2105
  .gcsa-empty {
2036
2106
  display: flex;
2037
2107
  flex-direction: column;
2038
2108
  align-items: center;
2039
2109
  box-sizing: border-box;
2040
- padding: 48px 24px;
2110
+ padding: 41px 25px;
2041
2111
  border: 1px solid var(--gcsa-color-border-subtle);
2042
2112
  border-radius: 12px;
2043
- background: var(--gcsa-color-bg-elevated);
2113
+ background: var(--gcsa-color-bg-surface);
2044
2114
  text-align: center;
2045
2115
  color: var(--gcsa-color-text-muted);
2046
2116
  }
@@ -2049,30 +2119,31 @@
2049
2119
  display: inline-flex;
2050
2120
  align-items: center;
2051
2121
  justify-content: center;
2052
- width: 48px;
2053
- height: 48px;
2122
+ width: 66px;
2123
+ height: 66px;
2124
+ margin-bottom: 0;
2054
2125
  color: var(--gcsa-color-primary);
2055
2126
  }
2056
2127
 
2057
2128
  .gcsa-empty__icon .gcsa-icon,
2058
2129
  .gcsa-empty__icon .gcsa-icon svg {
2059
- width: 29px;
2060
- height: 36px;
2130
+ width: 66px;
2131
+ height: 66px;
2061
2132
  }
2062
2133
 
2063
2134
  .gcsa-empty__title {
2064
2135
  margin: 12px 0 0;
2065
- color: var(--gcsa-color-text);
2136
+ color: rgba(255, 255, 255, 0.6);
2066
2137
  font-family: var(--gcsa-font-body);
2067
- font-size: 16px;
2138
+ font-size: 14px;
2068
2139
  font-weight: 400;
2069
2140
  line-height: 24px;
2070
2141
  }
2071
2142
 
2072
2143
  .gcsa-empty__desc {
2073
2144
  margin: 4px 0 0;
2074
- color: color-mix(in srgb, var(--gcsa-color-text) 30%, transparent);
2075
- font-size: 14px;
2145
+ color: rgba(255, 255, 255, 0.3);
2146
+ font-size: 12px;
2076
2147
  line-height: 22.4px;
2077
2148
  }
2078
2149
 
@@ -2082,8 +2153,40 @@
2082
2153
  margin-top: 8px;
2083
2154
  }
2084
2155
 
2085
- .gcsa-empty__action .gcsa-btn {
2156
+ /* Figma 2174:3336:soft primary outline pill(压过 dark primary 实心样式) */
2157
+ .gcsa-empty__action .gcsa-btn,
2158
+ .gcsa-empty__action .gcsa-btn--primary,
2159
+ .gcsa-empty__action .gcsa-btn--secondary,
2160
+ .gcsa-empty__action .gcsa-btn--ghost,
2161
+ [data-gcsa-theme='dark'] .gcsa-empty__action .gcsa-btn,
2162
+ [data-gcsa-theme='dark'] .gcsa-empty__action .gcsa-btn--primary,
2163
+ [data-gcsa-theme='dark'] .gcsa-empty__action .gcsa-btn--secondary,
2164
+ [data-gcsa-theme='dark'] .gcsa-empty__action .gcsa-btn--ghost,
2165
+ [data-gcsa-theme='light'] .gcsa-empty__action .gcsa-btn,
2166
+ [data-gcsa-theme='light'] .gcsa-empty__action .gcsa-btn--primary {
2167
+ height: 32px;
2168
+ min-height: 32px;
2169
+ padding-inline: 13px;
2086
2170
  border-radius: 20px;
2171
+ border-color: rgba(0, 187, 204, 0.32);
2172
+ background: rgba(0, 187, 204, 0.08);
2173
+ box-shadow: none;
2174
+ color: var(--gcsa-color-primary);
2175
+ font-size: 13px;
2176
+ font-weight: 600;
2177
+ line-height: 13px;
2178
+ }
2179
+
2180
+ .gcsa-empty__action .gcsa-btn:hover:not(:disabled),
2181
+ .gcsa-empty__action .gcsa-btn--primary:hover:not(:disabled),
2182
+ [data-gcsa-theme='dark'] .gcsa-empty__action .gcsa-btn:hover:not(:disabled),
2183
+ [data-gcsa-theme='dark'] .gcsa-empty__action .gcsa-btn--primary:hover:not(:disabled),
2184
+ [data-gcsa-theme='light'] .gcsa-empty__action .gcsa-btn:hover:not(:disabled),
2185
+ [data-gcsa-theme='light'] .gcsa-empty__action .gcsa-btn--primary:hover:not(:disabled) {
2186
+ border-color: rgba(0, 187, 204, 0.48);
2187
+ background: rgba(0, 187, 204, 0.14);
2188
+ box-shadow: none;
2189
+ color: var(--gcsa-color-primary);
2087
2190
  }
2088
2191
 
2089
2192
  /* Chat */
@@ -2722,7 +2825,7 @@
2722
2825
  box-sizing: border-box;
2723
2826
  overflow: hidden;
2724
2827
  border-radius: inherit;
2725
- background: color-mix(in srgb, var(--gcsa-color-text-heading, #000205) 62%, transparent);
2828
+ background: color-mix(in srgb, var(--gcsa-color-bg-base) 62%, transparent);
2726
2829
  transition: opacity 0.25s ease;
2727
2830
  opacity: 1;
2728
2831
  }
@@ -2730,7 +2833,7 @@
2730
2833
  .gcsa-loading-mask--fullscreen {
2731
2834
  position: fixed;
2732
2835
  border-radius: 0;
2733
- background: #000205;
2836
+ background: var(--gcsa-color-bg-base);
2734
2837
  }
2735
2838
 
2736
2839
  .gcsa-loading-spinner {
@@ -3475,17 +3578,19 @@
3475
3578
  display: inline-flex;
3476
3579
  align-items: center;
3477
3580
  justify-content: center;
3478
- min-height: 40px;
3479
- padding: 10px 16px;
3581
+ min-width: 96px;
3582
+ height: 24px;
3583
+ min-height: 24px;
3584
+ padding: 0 16px;
3480
3585
  margin-bottom: -1px;
3481
3586
  border: none;
3482
3587
  border-bottom: 2px solid transparent;
3483
3588
  background: transparent;
3484
3589
  color: var(--gcsa-color-text-secondary);
3485
3590
  font: inherit;
3486
- font-size: 14px;
3591
+ font-size: 13px;
3487
3592
  font-weight: 500;
3488
- line-height: 1.4;
3593
+ line-height: 16px;
3489
3594
  cursor: pointer;
3490
3595
  white-space: nowrap;
3491
3596
  transition:
@@ -3535,7 +3640,7 @@
3535
3640
  }
3536
3641
 
3537
3642
  .gcsa-tabs--soft .gcsa-tabs__trigger {
3538
- min-height: 36px;
3643
+ min-height: var(--gcsa-control-height-md);
3539
3644
  padding: 8px 14px;
3540
3645
  margin-bottom: 0;
3541
3646
  border: 1px solid transparent;
@@ -3631,16 +3736,19 @@
3631
3736
  }
3632
3737
 
3633
3738
  .gcsa-statistic__label {
3634
- font-size: 11px;
3635
- letter-spacing: 0.1em;
3636
- text-transform: uppercase;
3637
- color: var(--gcsa-color-text-muted);
3739
+ font-size: 12px;
3740
+ letter-spacing: 0;
3741
+ text-transform: none;
3742
+ color: var(--gcsa-color-text-secondary);
3743
+ font-weight: 600;
3638
3744
  }
3639
3745
 
3640
3746
  .gcsa-statistic__value {
3641
- margin-top: 6px;
3642
- font-family: var(--gcsa-font-brand);
3643
- font-size: 28px;
3747
+ margin-top: 4px;
3748
+ font-family: var(--gcsa-font-body);
3749
+ font-size: 24px;
3750
+ font-weight: 600;
3751
+ line-height: 1.2;
3644
3752
  color: var(--gcsa-color-primary);
3645
3753
  }
3646
3754
 
@@ -3916,7 +4024,7 @@
3916
4024
  .gcsa-checkbox__label,
3917
4025
  .gcsa-switch__label {
3918
4026
  color: var(--gcsa-color-text);
3919
- font-size: 14px;
4027
+ font-size: 13px;
3920
4028
  line-height: 1.4;
3921
4029
  }
3922
4030
 
@@ -3924,7 +4032,7 @@
3924
4032
  width: 18px;
3925
4033
  height: 18px;
3926
4034
  flex-shrink: 0;
3927
- border: 1px solid var(--gcsa-color-border-strong);
4035
+ border: 1px solid var(--gcsa-color-border);
3928
4036
  border-radius: 4px;
3929
4037
  background: var(--gcsa-color-bg-input);
3930
4038
  display: grid;
@@ -3938,7 +4046,8 @@
3938
4046
  .gcsa-checkbox__indicator {
3939
4047
  display: grid;
3940
4048
  place-items: center;
3941
- color: var(--gcsa-color-primary);
4049
+ /* Figma checked:主色底 + 白勾(两主题一致) */
4050
+ color: #ffffff;
3942
4051
  opacity: 0;
3943
4052
  transform: scale(0.85);
3944
4053
  transition:
@@ -3948,7 +4057,7 @@
3948
4057
 
3949
4058
  .gcsa-checkbox__box[data-state='checked'],
3950
4059
  .gcsa-checkbox__box[data-checked] {
3951
- background: var(--gcsa-color-primary-muted);
4060
+ background: var(--gcsa-color-primary);
3952
4061
  border-color: var(--gcsa-color-primary);
3953
4062
  }
3954
4063
 
@@ -4044,15 +4153,16 @@
4044
4153
  width: 100%;
4045
4154
  max-width: 100%;
4046
4155
  min-width: 0;
4047
- height: 38px;
4048
- min-height: 38px;
4049
- padding: 0 10px 0 12px;
4156
+ height: var(--gcsa-control-height-md);
4157
+ min-height: var(--gcsa-control-height-md);
4158
+ padding: 0 10px 0 var(--gcsa-control-padding-x-md);
4050
4159
  border: 1px solid var(--gcsa-color-border-subtle);
4051
4160
  border-radius: var(--gcsa-radius-sm);
4052
4161
  background: var(--gcsa-color-bg-input);
4053
4162
  color: var(--gcsa-color-text);
4054
4163
  cursor: pointer;
4055
4164
  font: inherit;
4165
+ font-size: var(--gcsa-control-font-size-md);
4056
4166
  text-align: left;
4057
4167
  outline: none;
4058
4168
  transition:
@@ -4479,7 +4589,7 @@
4479
4589
 
4480
4590
  .gcsa-radio__label {
4481
4591
  color: var(--gcsa-color-text);
4482
- font-size: 14px;
4592
+ font-size: 13px;
4483
4593
  line-height: 1.4;
4484
4594
  }
4485
4595
 
@@ -4497,9 +4607,12 @@
4497
4607
  width: 100%;
4498
4608
  max-width: 200px;
4499
4609
  min-width: 0;
4610
+ height: var(--gcsa-control-height-md);
4611
+ min-height: var(--gcsa-control-height-md);
4500
4612
  border: 1px solid var(--gcsa-color-border-subtle);
4501
4613
  border-radius: var(--gcsa-radius-sm);
4502
4614
  background: var(--gcsa-color-bg-input);
4615
+ font-size: var(--gcsa-control-font-size-md);
4503
4616
  overflow: hidden;
4504
4617
  transition:
4505
4618
  border-color var(--gcsa-motion-fast) ease,
@@ -4614,11 +4727,14 @@
4614
4727
  align-items: center;
4615
4728
  gap: 4px;
4616
4729
  width: 100%;
4617
- min-height: 38px;
4618
- padding: 0 4px 0 12px;
4730
+ min-height: var(--gcsa-control-height-md);
4731
+ height: var(--gcsa-control-height-md);
4732
+ box-sizing: border-box;
4733
+ padding: 0 4px 0 var(--gcsa-control-padding-x-md);
4619
4734
  border: 1px solid var(--gcsa-color-border-subtle);
4620
4735
  border-radius: var(--gcsa-radius-sm);
4621
4736
  background: var(--gcsa-color-bg-input);
4737
+ font-size: var(--gcsa-control-font-size-md);
4622
4738
  transition:
4623
4739
  border-color var(--gcsa-motion-fast) ease,
4624
4740
  box-shadow var(--gcsa-motion-fast) ease;
@@ -5257,7 +5373,7 @@ button.gcsa-steps__trigger { cursor: pointer; }
5257
5373
  @media (max-width: 640px) { .gcsa-steps:not(.gcsa-steps--vertical) { overflow-x: auto; padding-bottom: 4px; } .gcsa-steps:not(.gcsa-steps--vertical) .gcsa-steps__item { min-width: 150px; } }
5258
5374
 
5259
5375
  /* Cascader */
5260
- .gcsa-cascader__trigger { display: inline-flex; align-items: center; justify-content: space-between; gap: 8px; width: 100%; min-width: 180px; height: 40px; min-height: 40px; box-sizing: border-box; padding: 0 12px 0 16px; border: 1px solid var(--gcsa-color-border); border-radius: 8px; color: var(--gcsa-color-text-heading); background: var(--gcsa-color-bg-surface); font: inherit; line-height: 16px; text-align: start; cursor: pointer; transition: border-color var(--gcsa-motion-fast) var(--gcsa-ease-out), box-shadow var(--gcsa-motion-fast) var(--gcsa-ease-out); }
5376
+ .gcsa-cascader__trigger { display: inline-flex; align-items: center; justify-content: space-between; gap: 8px; width: 100%; min-width: 180px; height: var(--gcsa-control-height-md); min-height: var(--gcsa-control-height-md); box-sizing: border-box; padding: 0 12px 0 var(--gcsa-control-padding-x-lg); border: 1px solid var(--gcsa-color-border); border-radius: 8px; color: var(--gcsa-color-text-heading); background: var(--gcsa-color-bg-surface); font: inherit; font-size: var(--gcsa-control-font-size-md); line-height: 16px; text-align: start; cursor: pointer; transition: border-color var(--gcsa-motion-fast) var(--gcsa-ease-out), box-shadow var(--gcsa-motion-fast) var(--gcsa-ease-out); }
5261
5377
  .gcsa-cascader__trigger:hover:not(:disabled) { border-color: var(--gcsa-color-primary); }
5262
5378
  .gcsa-cascader__trigger[data-state='open'], .gcsa-cascader__trigger[aria-expanded='true'] { border-color: var(--gcsa-color-border-strong); box-shadow: 0 0 0 3px var(--gcsa-color-primary-muted); }
5263
5379
  .gcsa-cascader__trigger:disabled { opacity: 0.5; cursor: not-allowed; }
@@ -5266,10 +5382,10 @@ button.gcsa-steps__trigger { cursor: pointer; }
5266
5382
  .gcsa-cascader__value[data-placeholder] { color: var(--gcsa-color-text-muted); }
5267
5383
  .gcsa-cascader__trigger > .gcsa-icon { flex: 0 0 16px; color: var(--gcsa-color-text-muted); transition: transform var(--gcsa-motion-fast) var(--gcsa-ease-out); }
5268
5384
  .gcsa-cascader__trigger[data-state='open'] > .gcsa-icon, .gcsa-cascader__trigger[aria-expanded='true'] > .gcsa-icon { transform: rotate(180deg); }
5269
- .gcsa-popover:has(.gcsa-cascader__panel) { min-width: 0; max-width: none; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; overflow: visible; }
5385
+ .gcsa-popover:has(.gcsa-cascader__panel) { min-width: 0; max-width: none; width: max-content; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; overflow: visible; }
5270
5386
  .gcsa-popover:has(.gcsa-cascader__panel) > .gcsa-popover__body { padding: 0; }
5271
- .gcsa-cascader__panel { display: flex; width: max-content; min-width: 0; max-width: min(720px, calc(100vw - 32px)); max-height: 320px; overflow: auto; padding: 6px 4px; border: 1px solid var(--gcsa-color-border-subtle); border-radius: 8px; background: var(--gcsa-color-bg-surface); box-shadow: var(--gcsa-shadow-md); }
5272
- .gcsa-cascader__column { flex: 0 0 180px; min-width: 180px; padding: 0 4px; border-inline-end: 1px solid var(--gcsa-color-border-subtle); }
5387
+ .gcsa-cascader__panel { display: flex; width: max-content; min-width: var(--reference-width, 180px); max-width: min(720px, var(--available-width, calc(100vw - 32px))); max-height: 320px; overflow: auto; padding: 6px 4px; border: 1px solid var(--gcsa-color-border-subtle); border-radius: 8px; background: var(--gcsa-color-bg-surface); box-shadow: var(--gcsa-shadow-md); color: var(--gcsa-color-text); }
5388
+ .gcsa-cascader__column { flex: 1 0 180px; min-width: 180px; padding: 0 4px; border-inline-end: 1px solid var(--gcsa-color-border-subtle); }
5273
5389
  .gcsa-cascader__column:last-child { border-inline-end: 0; }
5274
5390
  .gcsa-cascader__option { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 32px; gap: 10px; padding: 0 12px; border: 0; border-radius: 4px; color: var(--gcsa-color-text-secondary); background: transparent; font: inherit; font-size: 13px; line-height: 16px; text-align: start; cursor: pointer; transition: color var(--gcsa-motion-fast) var(--gcsa-ease-out), background var(--gcsa-motion-fast) var(--gcsa-ease-out); }
5275
5391
  .gcsa-cascader__option:hover:not(:disabled), .gcsa-cascader__option--active { color: var(--gcsa-color-primary); background: var(--gcsa-color-primary-muted); }
@@ -5287,10 +5403,11 @@ button.gcsa-steps__trigger { cursor: pointer; }
5287
5403
  .gcsa-transfer__search .gcsa-input { min-height: 32px; height: 32px; font-size: 12px; }
5288
5404
  .gcsa-transfer__list { flex: 1; min-height: 200px; max-height: 260px; overflow: auto; padding: 4px 6px 8px; }
5289
5405
  .gcsa-transfer__item { display: flex; align-items: center; width: 100%; min-height: 36px; gap: 8px; padding: 6px 8px; border: 0; border-radius: 5px; color: var(--gcsa-color-text-secondary); background: transparent; text-align: start; cursor: pointer; }
5290
- .gcsa-transfer__item:hover:not(:disabled), .gcsa-transfer__item--selected { color: var(--gcsa-color-primary); background: var(--gcsa-color-primary-muted); }
5291
- .gcsa-transfer__item:disabled { opacity: 0.45; cursor: not-allowed; }
5292
- .gcsa-transfer__check { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; flex: 0 0 16px; border: 1px solid var(--gcsa-color-border-strong); border-radius: 4px; color: var(--gcsa-color-text-on-surface); background: var(--gcsa-color-primary); font-size: 11px; line-height: 1; }
5293
- .gcsa-transfer__item:not(.gcsa-transfer__item--selected) .gcsa-transfer__check { color: transparent; background: transparent; }
5406
+ .gcsa-transfer__item:hover:not([aria-disabled='true']), .gcsa-transfer__item--selected { color: var(--gcsa-color-primary); background: var(--gcsa-color-primary-muted); }
5407
+ .gcsa-transfer__item[aria-disabled='true'] { opacity: 0.45; cursor: not-allowed; }
5408
+ .gcsa-transfer__check-wrap { display: inline-flex; flex: 0 0 auto; }
5409
+ .gcsa-transfer__item .gcsa-checkbox { min-height: 0; padding: 0; gap: 0; }
5410
+ .gcsa-transfer__label { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
5294
5411
  .gcsa-transfer__actions { display: flex; flex: 0 0 auto; flex-direction: column; gap: 8px; }
5295
5412
  .gcsa-transfer__action { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; padding: 0; border: 1px solid var(--gcsa-color-border-subtle); border-radius: 6px; color: var(--gcsa-color-text-secondary); background: var(--gcsa-color-bg-surface); font-size: 22px; line-height: 1; cursor: pointer; }
5296
5413
  .gcsa-transfer__action:hover:not(:disabled) { color: var(--gcsa-color-primary); border-color: var(--gcsa-color-primary); background: var(--gcsa-color-primary-muted); }
@@ -5325,14 +5442,15 @@ button.gcsa-steps__trigger { cursor: pointer; }
5325
5442
  flex-direction: column;
5326
5443
  align-items: center;
5327
5444
  justify-content: center;
5328
- gap: 8px;
5445
+ gap: 6px;
5329
5446
  box-sizing: border-box;
5330
5447
  width: 100%;
5331
- min-height: 123px;
5332
- padding: 17px 13px;
5333
- border: 1px dashed var(--gcsa-color-border-strong);
5334
- border-radius: 4px;
5335
- background: var(--gcsa-color-primary-muted);
5448
+ min-height: 96px;
5449
+ height: auto;
5450
+ padding: 16px 12px;
5451
+ border: 1px dashed var(--gcsa-color-border);
5452
+ border-radius: 8px;
5453
+ background: var(--gcsa-color-bg-base);
5336
5454
  cursor: pointer;
5337
5455
  transition: border-color var(--gcsa-motion-fast) ease, background var(--gcsa-motion-fast) ease;
5338
5456
  }
@@ -5340,36 +5458,37 @@ button.gcsa-steps__trigger { cursor: pointer; }
5340
5458
  .gcsa-upload__dropzone:hover,
5341
5459
  .gcsa-upload--dragging .gcsa-upload__dropzone {
5342
5460
  border-color: var(--gcsa-color-primary);
5343
- background: var(--gcsa-color-primary-muted-strong);
5461
+ background: var(--gcsa-color-primary-muted);
5344
5462
  }
5345
5463
 
5346
5464
  .gcsa-upload__icon {
5347
5465
  display: inline-flex;
5348
5466
  align-items: center;
5349
5467
  justify-content: center;
5350
- width: 32px;
5351
- height: 32px;
5468
+ width: 40px;
5469
+ height: 40px;
5352
5470
  color: var(--gcsa-color-primary);
5353
5471
  }
5354
5472
 
5355
5473
  .gcsa-upload__icon .gcsa-icon,
5356
5474
  .gcsa-upload__icon .gcsa-icon svg {
5357
- width: 23px;
5358
- height: 23px;
5475
+ width: 40px;
5476
+ height: 40px;
5359
5477
  }
5360
5478
 
5361
5479
  .gcsa-upload__title {
5362
5480
  color: var(--gcsa-color-text);
5363
- font-size: 16px;
5364
- line-height: 24px;
5481
+ font-size: 13px;
5482
+ font-weight: 600;
5483
+ line-height: 1.2;
5365
5484
  text-align: center;
5366
5485
  }
5367
5486
 
5368
5487
  .gcsa-upload__hint {
5369
5488
  margin: 0;
5370
- color: color-mix(in srgb, var(--gcsa-color-text) 30%, transparent);
5371
- font-size: 14px;
5372
- line-height: 16.8px;
5489
+ color: var(--gcsa-color-text-secondary);
5490
+ font-size: 12px;
5491
+ line-height: 1.2;
5373
5492
  text-align: center;
5374
5493
  }
5375
5494
 
@@ -6314,27 +6433,28 @@ button.gcsa-steps__trigger { cursor: pointer; }
6314
6433
  }
6315
6434
 
6316
6435
  [data-gcsa-theme='dark'] .gcsa-btn {
6317
- height: 40px;
6436
+ height: var(--gcsa-control-height-md);
6437
+ min-height: var(--gcsa-control-height-md);
6318
6438
  padding-inline: 16px;
6319
6439
  border-radius: 20px;
6320
- font-size: 13px;
6440
+ font-size: var(--gcsa-control-font-size-md);
6321
6441
  }
6322
6442
 
6323
6443
  [data-gcsa-theme='dark'] .gcsa-btn--sm {
6324
- height: var(--gcsa-control-height-sm, 24px);
6325
- min-height: var(--gcsa-control-height-sm, 24px);
6444
+ height: var(--gcsa-control-height-sm);
6445
+ min-height: var(--gcsa-control-height-sm);
6326
6446
  padding-inline: 12px;
6327
6447
  }
6328
6448
 
6329
6449
  [data-gcsa-theme='dark'] .gcsa-btn--md {
6330
- height: var(--gcsa-control-height-md, 32px);
6331
- min-height: var(--gcsa-control-height-md, 32px);
6450
+ height: var(--gcsa-control-height-md);
6451
+ min-height: var(--gcsa-control-height-md);
6332
6452
  padding-inline: 16px;
6333
6453
  }
6334
6454
 
6335
6455
  [data-gcsa-theme='dark'] .gcsa-btn--lg {
6336
- height: var(--gcsa-control-height-lg, 40px);
6337
- min-height: var(--gcsa-control-height-lg, 40px);
6456
+ height: var(--gcsa-control-height-lg);
6457
+ min-height: var(--gcsa-control-height-lg);
6338
6458
  padding-inline: 20px;
6339
6459
  }
6340
6460
 
@@ -6436,15 +6556,13 @@ button.gcsa-steps__trigger { cursor: pointer; }
6436
6556
  [data-gcsa-theme='dark'] .gcsa-table td { color: var(--gcsa-color-text); }
6437
6557
 
6438
6558
  [data-gcsa-theme='dark'] .gcsa-date-picker__control {
6439
- height: 40px;
6440
- min-height: 40px;
6441
6559
  box-sizing: border-box;
6442
- padding-left: 16px;
6560
+ padding-left: var(--gcsa-control-padding-x-lg);
6443
6561
  }
6444
6562
 
6445
6563
  [data-gcsa-theme='dark'] .gcsa-date-picker__control > .gcsa-date-picker__input {
6446
- height: 30px;
6447
- min-height: 30px;
6564
+ height: 26px;
6565
+ min-height: 26px;
6448
6566
  box-sizing: border-box;
6449
6567
  padding: 0;
6450
6568
  border: 0 !important;
@@ -6543,32 +6661,33 @@ button.gcsa-steps__trigger { cursor: pointer; }
6543
6661
  }
6544
6662
 
6545
6663
  [data-gcsa-theme='light'] .gcsa-btn {
6546
- height: 40px;
6664
+ height: var(--gcsa-control-height-md);
6665
+ min-height: var(--gcsa-control-height-md);
6547
6666
  padding: 0 16px;
6548
6667
  gap: 8px;
6549
6668
  border-radius: 20px;
6550
- font-size: 13px;
6669
+ font-size: var(--gcsa-control-font-size-md);
6551
6670
  font-weight: 600;
6552
6671
  letter-spacing: 0;
6553
6672
  }
6554
6673
 
6555
6674
  [data-gcsa-theme='light'] .gcsa-btn--sm {
6556
- height: var(--gcsa-control-height-sm, 24px);
6557
- min-height: var(--gcsa-control-height-sm, 24px);
6675
+ height: var(--gcsa-control-height-sm);
6676
+ min-height: var(--gcsa-control-height-sm);
6558
6677
  padding-inline: 16px;
6559
- font-size: 13px;
6678
+ font-size: var(--gcsa-control-font-size-sm);
6560
6679
  }
6561
6680
 
6562
6681
  [data-gcsa-theme='light'] .gcsa-btn--md {
6563
- height: var(--gcsa-control-height-md, 32px);
6564
- min-height: var(--gcsa-control-height-md, 32px);
6682
+ height: var(--gcsa-control-height-md);
6683
+ min-height: var(--gcsa-control-height-md);
6565
6684
  padding-inline: 16px;
6566
- font-size: 13px;
6685
+ font-size: var(--gcsa-control-font-size-md);
6567
6686
  }
6568
6687
 
6569
6688
  [data-gcsa-theme='light'] .gcsa-btn--lg {
6570
- height: var(--gcsa-control-height-lg, 40px);
6571
- min-height: var(--gcsa-control-height-lg, 40px);
6689
+ height: var(--gcsa-control-height-lg);
6690
+ min-height: var(--gcsa-control-height-lg);
6572
6691
  padding-inline: 24px;
6573
6692
  font-size: 14px;
6574
6693
  }
@@ -6746,7 +6865,7 @@ button.gcsa-steps__trigger { cursor: pointer; }
6746
6865
  min-height: 128px;
6747
6866
  box-sizing: border-box;
6748
6867
  padding: 41px 25px;
6749
- background: #ffffff;
6868
+ background: var(--gcsa-color-bg-surface);
6750
6869
  border-color: rgba(3, 4, 7, 0.08);
6751
6870
  border-radius: 12px;
6752
6871
  }
@@ -6760,15 +6879,17 @@ button.gcsa-steps__trigger { cursor: pointer; }
6760
6879
 
6761
6880
  [data-gcsa-theme='light'] .gcsa-empty__title {
6762
6881
  margin: 12px 0 0;
6882
+ color: rgba(15, 23, 42, 0.6);
6763
6883
  font-family: var(--gcsa-font-body);
6764
- font-size: 16px;
6884
+ font-size: 14px;
6765
6885
  font-weight: 400;
6766
6886
  line-height: 24px;
6767
6887
  }
6768
6888
 
6769
6889
  [data-gcsa-theme='light'] .gcsa-empty__desc {
6770
6890
  margin-top: 4px;
6771
- font-size: 14px;
6891
+ color: rgba(15, 23, 42, 0.3);
6892
+ font-size: 12px;
6772
6893
  line-height: 22.4px;
6773
6894
  }
6774
6895
 
@@ -6873,37 +6994,31 @@ button.gcsa-steps__trigger { cursor: pointer; }
6873
6994
  }
6874
6995
 
6875
6996
  [data-gcsa-theme='light'] .gcsa-input-number {
6876
- height: 40px;
6877
- min-height: 40px;
6878
6997
  box-sizing: border-box;
6879
6998
  border-color: var(--gcsa-color-border);
6880
6999
  border-radius: 8px;
6881
7000
  }
6882
7001
 
6883
7002
  :is([data-gcsa-theme='light'], [data-gcsa-theme='dark']) .gcsa-input-number {
6884
- height: 40px;
6885
- min-height: 40px;
6886
7003
  box-sizing: border-box;
6887
7004
  }
6888
7005
 
6889
7006
  [data-gcsa-theme='light'] .gcsa-input-number__btn {
6890
- min-height: 38px;
7007
+ min-height: 34px;
6891
7008
  background: #ffffff;
6892
7009
  }
6893
7010
 
6894
7011
  [data-gcsa-theme='light'] .gcsa-date-picker__control {
6895
- height: 40px;
6896
- min-height: 40px;
6897
7012
  box-sizing: border-box;
6898
- padding-left: 16px;
7013
+ padding-left: var(--gcsa-control-padding-x-lg);
6899
7014
  border-color: var(--gcsa-color-border);
6900
7015
  border-radius: 8px;
6901
7016
  background: #ffffff;
6902
7017
  }
6903
7018
 
6904
7019
  [data-gcsa-theme='light'] .gcsa-date-picker__control > .gcsa-date-picker__input {
6905
- height: 30px;
6906
- min-height: 30px;
7020
+ height: 26px;
7021
+ min-height: 26px;
6907
7022
  box-sizing: border-box;
6908
7023
  padding: 0;
6909
7024
  border: 0 !important;
@@ -7038,24 +7153,24 @@ button.gcsa-steps__trigger { cursor: pointer; }
7038
7153
  }
7039
7154
 
7040
7155
  [data-gcsa-theme='dark'] .gcsa-upload__dropzone {
7041
- background: rgba(0, 187, 204, 0.08);
7042
- border-color: rgba(0, 187, 204, 0.32);
7156
+ background: var(--gcsa-color-bg-base);
7157
+ border-color: var(--gcsa-color-border);
7043
7158
  }
7044
7159
 
7045
7160
  [data-gcsa-theme='dark'] .gcsa-upload__dropzone:hover,
7046
7161
  [data-gcsa-theme='dark'] .gcsa-upload--dragging .gcsa-upload__dropzone {
7047
- background: rgba(0, 187, 204, 0.14);
7048
7162
  border-color: var(--gcsa-color-primary);
7163
+ background: var(--gcsa-color-primary-muted);
7049
7164
  }
7050
7165
 
7051
7166
  [data-gcsa-theme='light'] .gcsa-upload__dropzone {
7052
- background: rgba(0, 187, 204, 0.08);
7053
- border-color: rgba(0, 187, 204, 0.32);
7167
+ background: var(--gcsa-color-bg-elevated);
7168
+ border-color: var(--gcsa-color-border);
7054
7169
  }
7055
7170
 
7056
7171
  [data-gcsa-theme='light'] .gcsa-upload__dropzone:hover,
7057
7172
  [data-gcsa-theme='light'] .gcsa-upload--dragging .gcsa-upload__dropzone {
7058
- background: rgba(0, 187, 204, 0.14);
7173
+ background: var(--gcsa-color-primary-muted);
7059
7174
  border-color: var(--gcsa-color-primary);
7060
7175
  }
7061
7176
 
@@ -7117,13 +7232,14 @@ button.gcsa-steps__trigger { cursor: pointer; }
7117
7232
  align-items: center;
7118
7233
  gap: 4px;
7119
7234
  width: 100%;
7120
- min-height: 40px;
7121
- height: 40px;
7235
+ min-height: var(--gcsa-control-height-md);
7236
+ height: var(--gcsa-control-height-md);
7122
7237
  box-sizing: border-box;
7123
- padding: 0 4px 0 16px;
7238
+ padding: 0 4px 0 var(--gcsa-control-padding-x-lg);
7124
7239
  border: 1px solid var(--gcsa-color-border);
7125
7240
  border-radius: 8px;
7126
7241
  background: var(--gcsa-color-bg-input);
7242
+ font-size: var(--gcsa-control-font-size-md);
7127
7243
  transition:
7128
7244
  border-color var(--gcsa-motion-fast) ease,
7129
7245
  box-shadow var(--gcsa-motion-fast) ease;