@gcsa/console-react 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.
package/dist/style.css CHANGED
@@ -42,7 +42,7 @@
42
42
  --gcsa-font-size-md: 15px;
43
43
  --gcsa-font-size-lg: 16px;
44
44
  --gcsa-font-size-xl: 18px;
45
- --gcsa-font-size-2xl: 22px;
45
+ --gcsa-font-size-2xl: 24px;
46
46
  --gcsa-font-size-3xl: 28px;
47
47
 
48
48
  --gcsa-line-height-tight: 1.35;
@@ -63,7 +63,7 @@
63
63
  /* Figma dark foundation tokens (00 · Cover & Foundations). */
64
64
  --gcsa-color-bg-base: #030407;
65
65
  --gcsa-color-bg-shell: #030407;
66
- --gcsa-color-bg-shell-deep: #040c13;
66
+ --gcsa-color-bg-shell-deep: #030407;
67
67
  --gcsa-color-bg-surface: #121316;
68
68
  --gcsa-color-bg-elevated: #1a1b1f;
69
69
  --gcsa-color-bg-input: #121316;
@@ -263,7 +263,10 @@
263
263
 
264
264
  .gcsa-console-shell__header {
265
265
  flex-shrink: 0;
266
+ box-sizing: border-box;
267
+ height: var(--gcsa-console-header-height);
266
268
  min-height: var(--gcsa-console-header-height);
269
+ max-height: var(--gcsa-console-header-height);
267
270
  max-width: 100%;
268
271
  overflow: hidden;
269
272
  border-bottom: 1px solid var(--gcsa-color-border-subtle);
@@ -417,7 +420,8 @@
417
420
  font-size: 14px;
418
421
  line-height: 1;
419
422
  padding: 0 14px;
420
- height: 36px;
423
+ height: var(--gcsa-control-height-md);
424
+ min-height: var(--gcsa-control-height-md);
421
425
  border: 1px solid transparent;
422
426
  cursor: pointer;
423
427
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
@@ -430,22 +434,22 @@
430
434
  }
431
435
 
432
436
  .gcsa-btn--sm {
433
- height: var(--gcsa-control-height-sm, 24px);
434
- min-height: var(--gcsa-control-height-sm, 24px);
435
- font-size: 13px;
437
+ height: var(--gcsa-control-height-sm);
438
+ min-height: var(--gcsa-control-height-sm);
439
+ font-size: var(--gcsa-control-font-size-sm);
436
440
  padding: 0 12px;
437
441
  }
438
442
 
439
443
  .gcsa-btn--md {
440
- height: var(--gcsa-control-height-md, 32px);
441
- min-height: var(--gcsa-control-height-md, 32px);
442
- font-size: 14px;
444
+ height: var(--gcsa-control-height-md);
445
+ min-height: var(--gcsa-control-height-md);
446
+ font-size: var(--gcsa-control-font-size-md);
443
447
  padding: 0 14px;
444
448
  }
445
449
 
446
450
  .gcsa-btn--lg {
447
- height: var(--gcsa-control-height-lg, 40px);
448
- min-height: var(--gcsa-control-height-lg, 40px);
451
+ height: var(--gcsa-control-height-lg);
452
+ min-height: var(--gcsa-control-height-lg);
449
453
  font-size: 15px;
450
454
  }
451
455
 
@@ -688,8 +692,10 @@
688
692
 
689
693
  .gcsa-input:not(.gcsa-input-number__input),
690
694
  .gcsa-select {
691
- height: 38px;
692
- padding: 0 12px;
695
+ height: var(--gcsa-control-height-md);
696
+ min-height: var(--gcsa-control-height-md);
697
+ padding: 0 var(--gcsa-control-padding-x-md);
698
+ font-size: var(--gcsa-control-font-size-md);
693
699
  }
694
700
 
695
701
  .gcsa-textarea {
@@ -698,19 +704,19 @@
698
704
  resize: vertical;
699
705
  }
700
706
 
701
- /* ── Control sizes (Ant Design: small 24 / middle 32 / large 40) ── */
707
+ /* ── Control sizes:高度/字号只走 size 档位,勿在组件上写死 px ── */
702
708
  :root,
703
709
  [data-gcsa-theme='light'],
704
710
  [data-gcsa-theme='dark'] {
705
711
  --gcsa-control-height-sm: 24px;
706
- --gcsa-control-height-md: 32px;
712
+ --gcsa-control-height-md: 36px;
707
713
  --gcsa-control-height-lg: 40px;
708
714
  --gcsa-control-padding-x-sm: 7px;
709
- --gcsa-control-padding-x-md: 11px;
715
+ --gcsa-control-padding-x-md: 12px;
710
716
  --gcsa-control-padding-x-lg: 16px;
711
717
  --gcsa-control-font-size-sm: 12px;
712
- --gcsa-control-font-size-md: 14px;
713
- --gcsa-control-font-size-lg: 14px;
718
+ --gcsa-control-font-size-md: 13px;
719
+ --gcsa-control-font-size-lg: 13px;
714
720
  }
715
721
 
716
722
  .gcsa-text-control--sm .gcsa-input:not(.gcsa-input-number__input),
@@ -824,6 +830,19 @@
824
830
  border-color: var(--gcsa-color-destructive);
825
831
  }
826
832
 
833
+ .gcsa-input:disabled,
834
+ .gcsa-textarea:disabled,
835
+ .gcsa-select:disabled,
836
+ .gcsa-select-trigger:disabled,
837
+ .gcsa-select-trigger[data-disabled] {
838
+ opacity: 0.45;
839
+ cursor: not-allowed;
840
+ color: var(--gcsa-color-text-muted);
841
+ background: var(--gcsa-color-bg-elevated);
842
+ border-color: var(--gcsa-color-border-subtle);
843
+ box-shadow: none;
844
+ }
845
+
827
846
  .gcsa-input-group {
828
847
  display: flex;
829
848
  align-items: stretch;
@@ -1714,30 +1733,30 @@
1714
1733
  }
1715
1734
 
1716
1735
  :is([data-gcsa-theme='light'], [data-gcsa-theme='dark']) .gcsa-btn {
1717
- height: 40px;
1718
- min-height: 40px;
1736
+ height: var(--gcsa-control-height-md);
1737
+ min-height: var(--gcsa-control-height-md);
1719
1738
  box-sizing: border-box;
1720
1739
  padding-inline: 24px;
1721
1740
  border-radius: 20px;
1722
- font-size: 13px;
1741
+ font-size: var(--gcsa-control-font-size-md);
1723
1742
  letter-spacing: 0;
1724
1743
  }
1725
1744
 
1726
1745
  :is([data-gcsa-theme='light'], [data-gcsa-theme='dark']) .gcsa-btn--sm {
1727
- height: var(--gcsa-control-height-sm, 24px);
1728
- min-height: var(--gcsa-control-height-sm, 24px);
1746
+ height: var(--gcsa-control-height-sm);
1747
+ min-height: var(--gcsa-control-height-sm);
1729
1748
  padding-inline: 16px;
1730
1749
  }
1731
1750
 
1732
1751
  :is([data-gcsa-theme='light'], [data-gcsa-theme='dark']) .gcsa-btn--md {
1733
- height: var(--gcsa-control-height-md, 32px);
1734
- min-height: var(--gcsa-control-height-md, 32px);
1752
+ height: var(--gcsa-control-height-md);
1753
+ min-height: var(--gcsa-control-height-md);
1735
1754
  padding-inline: 16px;
1736
1755
  }
1737
1756
 
1738
1757
  :is([data-gcsa-theme='light'], [data-gcsa-theme='dark']) .gcsa-btn--lg {
1739
- height: var(--gcsa-control-height-lg, 40px);
1740
- min-height: var(--gcsa-control-height-lg, 40px);
1758
+ height: var(--gcsa-control-height-lg);
1759
+ min-height: var(--gcsa-control-height-lg);
1741
1760
  padding-inline: 24px;
1742
1761
  }
1743
1762
 
@@ -1774,7 +1793,7 @@
1774
1793
 
1775
1794
  /* Time inputs use the Figma field typography and preserve their native clock affordance. */
1776
1795
  :is([data-gcsa-theme='light'], [data-gcsa-theme='dark']) .gcsa-time-picker {
1777
- font-size: 14px;
1796
+ font-size: var(--gcsa-control-font-size-md);
1778
1797
  line-height: 16px;
1779
1798
  }
1780
1799
 
@@ -1837,7 +1856,7 @@
1837
1856
  }
1838
1857
 
1839
1858
  :is([data-gcsa-theme='light'], [data-gcsa-theme='dark']) .gcsa-pagination {
1840
- --gcsa-pagination-control-height: 36px;
1859
+ --gcsa-pagination-control-height: var(--gcsa-control-height-md);
1841
1860
  }
1842
1861
 
1843
1862
  :is([data-gcsa-theme='light'], [data-gcsa-theme='dark']) .gcsa-pagination__size,
@@ -1888,16 +1907,14 @@
1888
1907
 
1889
1908
  [data-gcsa-theme='dark'] .gcsa-date-picker__control,
1890
1909
  [data-gcsa-theme='dark'] .gcsa-date-range-picker__control {
1891
- min-height: 40px;
1892
- height: 40px;
1893
1910
  box-sizing: border-box;
1894
- padding-left: 16px;
1911
+ padding-left: var(--gcsa-control-padding-x-lg);
1895
1912
  border-radius: 8px;
1896
1913
  }
1897
1914
 
1898
1915
  [data-gcsa-theme='dark'] .gcsa-date-picker__control > .gcsa-date-picker__input {
1899
- height: 30px;
1900
- min-height: 30px;
1916
+ height: 26px;
1917
+ min-height: 26px;
1901
1918
  box-sizing: border-box;
1902
1919
  padding: 0;
1903
1920
  border: 0 !important;
@@ -1906,6 +1923,29 @@
1906
1923
  box-shadow: none !important;
1907
1924
  }
1908
1925
 
1926
+ [data-gcsa-theme='light'] .gcsa-cascader__trigger {
1927
+ border-color: var(--gcsa-color-border);
1928
+ background: var(--gcsa-color-bg-surface);
1929
+ color: var(--gcsa-color-text-heading);
1930
+ }
1931
+
1932
+ [data-gcsa-theme='light'] .gcsa-cascader__panel {
1933
+ border-color: var(--gcsa-color-border-subtle);
1934
+ background: var(--gcsa-color-bg-elevated, var(--gcsa-color-bg-surface));
1935
+ box-shadow: var(--gcsa-shadow-md);
1936
+ color: var(--gcsa-color-text);
1937
+ }
1938
+
1939
+ [data-gcsa-theme='light'] .gcsa-cascader__option {
1940
+ color: var(--gcsa-color-text-secondary);
1941
+ }
1942
+
1943
+ [data-gcsa-theme='light'] .gcsa-cascader__option:hover:not(:disabled),
1944
+ [data-gcsa-theme='light'] .gcsa-cascader__option--active {
1945
+ color: var(--gcsa-color-primary);
1946
+ background: var(--gcsa-color-primary-muted);
1947
+ }
1948
+
1909
1949
  [data-gcsa-theme='dark'] .gcsa-cascader__trigger {
1910
1950
  border-color: var(--gcsa-color-border);
1911
1951
  background: var(--gcsa-color-bg-input);
@@ -1950,7 +1990,10 @@
1950
1990
  gap: 8px;
1951
1991
  min-width: 0;
1952
1992
  max-width: 100%;
1993
+ box-sizing: border-box;
1994
+ height: var(--gcsa-console-header-height);
1953
1995
  min-height: var(--gcsa-console-header-height);
1996
+ max-height: var(--gcsa-console-header-height);
1954
1997
  padding-left: 12px;
1955
1998
  overflow: hidden;
1956
1999
  }
@@ -2009,15 +2052,20 @@
2009
2052
  height: 100%;
2010
2053
  min-height: 0;
2011
2054
  overflow: hidden;
2012
- padding: var(--gcsa-space-4) var(--gcsa-space-3);
2055
+ padding: 0 var(--gcsa-space-3) var(--gcsa-space-4);
2013
2056
  }
2014
2057
 
2015
2058
  .gcsa-console-nav__brand {
2016
2059
  display: flex;
2017
2060
  align-items: center;
2061
+ box-sizing: border-box;
2062
+ height: var(--gcsa-console-header-height);
2063
+ min-height: var(--gcsa-console-header-height);
2064
+ max-height: var(--gcsa-console-header-height);
2065
+ overflow: hidden;
2018
2066
  gap: var(--gcsa-space-3);
2019
2067
  flex-shrink: 0;
2020
- padding: var(--gcsa-space-2) var(--gcsa-space-3) var(--gcsa-space-4);
2068
+ padding: 0 var(--gcsa-space-3);
2021
2069
  margin-bottom: var(--gcsa-space-2);
2022
2070
  border-bottom: 1px solid var(--gcsa-color-border-subtle);
2023
2071
  }
@@ -2064,6 +2112,9 @@
2064
2112
  font-weight: 600;
2065
2113
  letter-spacing: 0.06em;
2066
2114
  color: var(--gcsa-color-text-heading);
2115
+ overflow: hidden;
2116
+ text-overflow: ellipsis;
2117
+ white-space: nowrap;
2067
2118
  }
2068
2119
 
2069
2120
  .gcsa-console-nav__brand-text span {
@@ -2073,6 +2124,9 @@
2073
2124
  color: var(--gcsa-color-text-secondary);
2074
2125
  letter-spacing: 0.06em;
2075
2126
  text-transform: uppercase;
2127
+ overflow: hidden;
2128
+ text-overflow: ellipsis;
2129
+ white-space: nowrap;
2076
2130
  }
2077
2131
 
2078
2132
  .gcsa-console-nav__links {
@@ -2101,7 +2155,7 @@
2101
2155
  min-width: 0;
2102
2156
  border-right: none;
2103
2157
  background: transparent;
2104
- --gcsa-menu-item-height: 36px;
2158
+ --gcsa-menu-item-height: var(--gcsa-control-height-md);
2105
2159
  --gcsa-menu-item-radius: 4px;
2106
2160
  --gcsa-menu-item-pad-x: 12px;
2107
2161
  --gcsa-menu-icon-size: 16px;
@@ -2222,13 +2276,14 @@
2222
2276
  }
2223
2277
 
2224
2278
  .gcsa-console-nav--collapsed {
2225
- padding: var(--gcsa-space-3) var(--gcsa-space-2);
2279
+ padding: 0 var(--gcsa-space-2) var(--gcsa-space-3);
2226
2280
  }
2227
2281
 
2228
2282
  .gcsa-console-nav--collapsed .gcsa-console-nav__brand {
2229
2283
  justify-content: center;
2230
2284
  gap: 0;
2231
- padding: var(--gcsa-space-2) 0 var(--gcsa-space-3);
2285
+ height: var(--gcsa-console-header-height);
2286
+ padding: 0;
2232
2287
  }
2233
2288
 
2234
2289
  .gcsa-console-nav--collapsed .gcsa-console-nav__brand-text {
@@ -2279,6 +2334,11 @@
2279
2334
  width: 100%;
2280
2335
  min-height: var(--gcsa-console-header-height);
2281
2336
  padding: var(--gcsa-space-2) var(--gcsa-space-6) var(--gcsa-space-2) 0;
2337
+ box-sizing: border-box;
2338
+ height: var(--gcsa-console-header-height);
2339
+ min-height: var(--gcsa-console-header-height);
2340
+ max-height: var(--gcsa-console-header-height);
2341
+ overflow: hidden;
2282
2342
  }
2283
2343
 
2284
2344
  .gcsa-console-shell__header .gcsa-console-header {
@@ -2286,6 +2346,10 @@
2286
2346
  grid-template-columns: minmax(0, 1fr) auto;
2287
2347
  align-items: center;
2288
2348
  column-gap: 12px;
2349
+ box-sizing: border-box;
2350
+ height: var(--gcsa-console-header-height);
2351
+ max-height: var(--gcsa-console-header-height);
2352
+ overflow: hidden;
2289
2353
  min-height: var(--gcsa-console-header-height);
2290
2354
  padding: 0 var(--gcsa-space-6) 0 0;
2291
2355
  }
@@ -2299,6 +2363,7 @@
2299
2363
  .gcsa-console-shell__header .gcsa-console-header__title-row {
2300
2364
  flex-wrap: nowrap;
2301
2365
  min-width: 0;
2366
+ overflow: hidden;
2302
2367
  }
2303
2368
 
2304
2369
  .gcsa-console-shell__header .gcsa-console-header__title {
@@ -2307,8 +2372,14 @@
2307
2372
  text-overflow: ellipsis;
2308
2373
  white-space: nowrap;
2309
2374
  min-width: 0;
2310
- }
2311
2375
 
2376
+ }
2377
+ .gcsa-console-shell__header .gcsa-console-header__subtitle {
2378
+ overflow: hidden;
2379
+ text-overflow: ellipsis;
2380
+ white-space: nowrap;
2381
+ min-width: 0;
2382
+ }
2312
2383
  .gcsa-console-shell__header .gcsa-console-header__actions {
2313
2384
  position: static;
2314
2385
  top: auto;
@@ -2382,6 +2453,8 @@
2382
2453
  align-items: center;
2383
2454
  column-gap: 8px;
2384
2455
  padding: 0 var(--gcsa-space-3) 0 0;
2456
+ height: var(--gcsa-console-header-height);
2457
+ max-height: var(--gcsa-console-header-height);
2385
2458
  min-height: var(--gcsa-console-header-height);
2386
2459
  }
2387
2460
 
@@ -2405,16 +2478,16 @@
2405
2478
  }
2406
2479
  }
2407
2480
 
2408
- /* Empty */
2481
+ /* Empty — Figma 2174:3336 */
2409
2482
  .gcsa-empty {
2410
2483
  display: flex;
2411
2484
  flex-direction: column;
2412
2485
  align-items: center;
2413
2486
  box-sizing: border-box;
2414
- padding: 48px 24px;
2487
+ padding: 41px 25px;
2415
2488
  border: 1px solid var(--gcsa-color-border-subtle);
2416
2489
  border-radius: 12px;
2417
- background: var(--gcsa-color-bg-elevated);
2490
+ background: var(--gcsa-color-bg-surface);
2418
2491
  text-align: center;
2419
2492
  color: var(--gcsa-color-text-muted);
2420
2493
  }
@@ -2423,30 +2496,31 @@
2423
2496
  display: inline-flex;
2424
2497
  align-items: center;
2425
2498
  justify-content: center;
2426
- width: 48px;
2427
- height: 48px;
2499
+ width: 66px;
2500
+ height: 66px;
2501
+ margin-bottom: 0;
2428
2502
  color: var(--gcsa-color-primary);
2429
2503
  }
2430
2504
 
2431
2505
  .gcsa-empty__icon .gcsa-icon,
2432
2506
  .gcsa-empty__icon .gcsa-icon svg {
2433
- width: 29px;
2434
- height: 36px;
2507
+ width: 66px;
2508
+ height: 66px;
2435
2509
  }
2436
2510
 
2437
2511
  .gcsa-empty__title {
2438
2512
  margin: 12px 0 0;
2439
- color: var(--gcsa-color-text);
2513
+ color: rgba(255, 255, 255, 0.6);
2440
2514
  font-family: var(--gcsa-font-body);
2441
- font-size: 16px;
2515
+ font-size: 14px;
2442
2516
  font-weight: 400;
2443
2517
  line-height: 24px;
2444
2518
  }
2445
2519
 
2446
2520
  .gcsa-empty__desc {
2447
2521
  margin: 4px 0 0;
2448
- color: color-mix(in srgb, var(--gcsa-color-text) 30%, transparent);
2449
- font-size: 14px;
2522
+ color: rgba(255, 255, 255, 0.3);
2523
+ font-size: 12px;
2450
2524
  line-height: 22.4px;
2451
2525
  }
2452
2526
 
@@ -2456,8 +2530,40 @@
2456
2530
  margin-top: 8px;
2457
2531
  }
2458
2532
 
2459
- .gcsa-empty__action .gcsa-btn {
2533
+ /* Figma 2174:3336:soft primary outline pill(压过 dark primary 实心样式) */
2534
+ .gcsa-empty__action .gcsa-btn,
2535
+ .gcsa-empty__action .gcsa-btn--primary,
2536
+ .gcsa-empty__action .gcsa-btn--secondary,
2537
+ .gcsa-empty__action .gcsa-btn--ghost,
2538
+ [data-gcsa-theme='dark'] .gcsa-empty__action .gcsa-btn,
2539
+ [data-gcsa-theme='dark'] .gcsa-empty__action .gcsa-btn--primary,
2540
+ [data-gcsa-theme='dark'] .gcsa-empty__action .gcsa-btn--secondary,
2541
+ [data-gcsa-theme='dark'] .gcsa-empty__action .gcsa-btn--ghost,
2542
+ [data-gcsa-theme='light'] .gcsa-empty__action .gcsa-btn,
2543
+ [data-gcsa-theme='light'] .gcsa-empty__action .gcsa-btn--primary {
2544
+ height: 32px;
2545
+ min-height: 32px;
2546
+ padding-inline: 13px;
2460
2547
  border-radius: 20px;
2548
+ border-color: rgba(0, 187, 204, 0.32);
2549
+ background: rgba(0, 187, 204, 0.08);
2550
+ box-shadow: none;
2551
+ color: var(--gcsa-color-primary);
2552
+ font-size: 13px;
2553
+ font-weight: 600;
2554
+ line-height: 13px;
2555
+ }
2556
+
2557
+ .gcsa-empty__action .gcsa-btn:hover:not(:disabled),
2558
+ .gcsa-empty__action .gcsa-btn--primary:hover:not(:disabled),
2559
+ [data-gcsa-theme='dark'] .gcsa-empty__action .gcsa-btn:hover:not(:disabled),
2560
+ [data-gcsa-theme='dark'] .gcsa-empty__action .gcsa-btn--primary:hover:not(:disabled),
2561
+ [data-gcsa-theme='light'] .gcsa-empty__action .gcsa-btn:hover:not(:disabled),
2562
+ [data-gcsa-theme='light'] .gcsa-empty__action .gcsa-btn--primary:hover:not(:disabled) {
2563
+ border-color: rgba(0, 187, 204, 0.48);
2564
+ background: rgba(0, 187, 204, 0.14);
2565
+ box-shadow: none;
2566
+ color: var(--gcsa-color-primary);
2461
2567
  }
2462
2568
 
2463
2569
  /* Chat */
@@ -3096,7 +3202,7 @@
3096
3202
  box-sizing: border-box;
3097
3203
  overflow: hidden;
3098
3204
  border-radius: inherit;
3099
- background: color-mix(in srgb, var(--gcsa-color-text-heading, #000205) 62%, transparent);
3205
+ background: color-mix(in srgb, var(--gcsa-color-bg-base) 62%, transparent);
3100
3206
  transition: opacity 0.25s ease;
3101
3207
  opacity: 1;
3102
3208
  }
@@ -3104,7 +3210,7 @@
3104
3210
  .gcsa-loading-mask--fullscreen {
3105
3211
  position: fixed;
3106
3212
  border-radius: 0;
3107
- background: #000205;
3213
+ background: var(--gcsa-color-bg-base);
3108
3214
  }
3109
3215
 
3110
3216
  .gcsa-loading-spinner {
@@ -3849,17 +3955,19 @@
3849
3955
  display: inline-flex;
3850
3956
  align-items: center;
3851
3957
  justify-content: center;
3852
- min-height: 40px;
3853
- padding: 10px 16px;
3958
+ min-width: 96px;
3959
+ height: 24px;
3960
+ min-height: 24px;
3961
+ padding: 0 16px;
3854
3962
  margin-bottom: -1px;
3855
3963
  border: none;
3856
3964
  border-bottom: 2px solid transparent;
3857
3965
  background: transparent;
3858
3966
  color: var(--gcsa-color-text-secondary);
3859
3967
  font: inherit;
3860
- font-size: 14px;
3968
+ font-size: 13px;
3861
3969
  font-weight: 500;
3862
- line-height: 1.4;
3970
+ line-height: 16px;
3863
3971
  cursor: pointer;
3864
3972
  white-space: nowrap;
3865
3973
  transition:
@@ -3909,7 +4017,7 @@
3909
4017
  }
3910
4018
 
3911
4019
  .gcsa-tabs--soft .gcsa-tabs__trigger {
3912
- min-height: 36px;
4020
+ min-height: var(--gcsa-control-height-md);
3913
4021
  padding: 8px 14px;
3914
4022
  margin-bottom: 0;
3915
4023
  border: 1px solid transparent;
@@ -4005,16 +4113,19 @@
4005
4113
  }
4006
4114
 
4007
4115
  .gcsa-statistic__label {
4008
- font-size: 11px;
4009
- letter-spacing: 0.1em;
4010
- text-transform: uppercase;
4011
- color: var(--gcsa-color-text-muted);
4116
+ font-size: 12px;
4117
+ letter-spacing: 0;
4118
+ text-transform: none;
4119
+ color: var(--gcsa-color-text-secondary);
4120
+ font-weight: 600;
4012
4121
  }
4013
4122
 
4014
4123
  .gcsa-statistic__value {
4015
- margin-top: 6px;
4016
- font-family: var(--gcsa-font-brand);
4017
- font-size: 28px;
4124
+ margin-top: 4px;
4125
+ font-family: var(--gcsa-font-body);
4126
+ font-size: 24px;
4127
+ font-weight: 600;
4128
+ line-height: 1.2;
4018
4129
  color: var(--gcsa-color-primary);
4019
4130
  }
4020
4131
 
@@ -4290,7 +4401,7 @@
4290
4401
  .gcsa-checkbox__label,
4291
4402
  .gcsa-switch__label {
4292
4403
  color: var(--gcsa-color-text);
4293
- font-size: 14px;
4404
+ font-size: 13px;
4294
4405
  line-height: 1.4;
4295
4406
  }
4296
4407
 
@@ -4298,7 +4409,7 @@
4298
4409
  width: 18px;
4299
4410
  height: 18px;
4300
4411
  flex-shrink: 0;
4301
- border: 1px solid var(--gcsa-color-border-strong);
4412
+ border: 1px solid var(--gcsa-color-border);
4302
4413
  border-radius: 4px;
4303
4414
  background: var(--gcsa-color-bg-input);
4304
4415
  display: grid;
@@ -4312,7 +4423,8 @@
4312
4423
  .gcsa-checkbox__indicator {
4313
4424
  display: grid;
4314
4425
  place-items: center;
4315
- color: var(--gcsa-color-primary);
4426
+ /* Figma checked:主色底 + 白勾(两主题一致) */
4427
+ color: #ffffff;
4316
4428
  opacity: 0;
4317
4429
  transform: scale(0.85);
4318
4430
  transition:
@@ -4322,7 +4434,7 @@
4322
4434
 
4323
4435
  .gcsa-checkbox__box[data-state='checked'],
4324
4436
  .gcsa-checkbox__box[data-checked] {
4325
- background: var(--gcsa-color-primary-muted);
4437
+ background: var(--gcsa-color-primary);
4326
4438
  border-color: var(--gcsa-color-primary);
4327
4439
  }
4328
4440
 
@@ -4418,15 +4530,16 @@
4418
4530
  width: 100%;
4419
4531
  max-width: 100%;
4420
4532
  min-width: 0;
4421
- height: 38px;
4422
- min-height: 38px;
4423
- padding: 0 10px 0 12px;
4533
+ height: var(--gcsa-control-height-md);
4534
+ min-height: var(--gcsa-control-height-md);
4535
+ padding: 0 10px 0 var(--gcsa-control-padding-x-md);
4424
4536
  border: 1px solid var(--gcsa-color-border-subtle);
4425
4537
  border-radius: var(--gcsa-radius-sm);
4426
4538
  background: var(--gcsa-color-bg-input);
4427
4539
  color: var(--gcsa-color-text);
4428
4540
  cursor: pointer;
4429
4541
  font: inherit;
4542
+ font-size: var(--gcsa-control-font-size-md);
4430
4543
  text-align: left;
4431
4544
  outline: none;
4432
4545
  transition:
@@ -4853,7 +4966,7 @@
4853
4966
 
4854
4967
  .gcsa-radio__label {
4855
4968
  color: var(--gcsa-color-text);
4856
- font-size: 14px;
4969
+ font-size: 13px;
4857
4970
  line-height: 1.4;
4858
4971
  }
4859
4972
 
@@ -4871,9 +4984,12 @@
4871
4984
  width: 100%;
4872
4985
  max-width: 200px;
4873
4986
  min-width: 0;
4987
+ height: var(--gcsa-control-height-md);
4988
+ min-height: var(--gcsa-control-height-md);
4874
4989
  border: 1px solid var(--gcsa-color-border-subtle);
4875
4990
  border-radius: var(--gcsa-radius-sm);
4876
4991
  background: var(--gcsa-color-bg-input);
4992
+ font-size: var(--gcsa-control-font-size-md);
4877
4993
  overflow: hidden;
4878
4994
  transition:
4879
4995
  border-color var(--gcsa-motion-fast) ease,
@@ -4988,11 +5104,14 @@
4988
5104
  align-items: center;
4989
5105
  gap: 4px;
4990
5106
  width: 100%;
4991
- min-height: 38px;
4992
- padding: 0 4px 0 12px;
5107
+ min-height: var(--gcsa-control-height-md);
5108
+ height: var(--gcsa-control-height-md);
5109
+ box-sizing: border-box;
5110
+ padding: 0 4px 0 var(--gcsa-control-padding-x-md);
4993
5111
  border: 1px solid var(--gcsa-color-border-subtle);
4994
5112
  border-radius: var(--gcsa-radius-sm);
4995
5113
  background: var(--gcsa-color-bg-input);
5114
+ font-size: var(--gcsa-control-font-size-md);
4996
5115
  transition:
4997
5116
  border-color var(--gcsa-motion-fast) ease,
4998
5117
  box-shadow var(--gcsa-motion-fast) ease;
@@ -5631,7 +5750,7 @@ button.gcsa-steps__trigger { cursor: pointer; }
5631
5750
  @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; } }
5632
5751
 
5633
5752
  /* Cascader */
5634
- .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); }
5753
+ .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); }
5635
5754
  .gcsa-cascader__trigger:hover:not(:disabled) { border-color: var(--gcsa-color-primary); }
5636
5755
  .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); }
5637
5756
  .gcsa-cascader__trigger:disabled { opacity: 0.5; cursor: not-allowed; }
@@ -5640,10 +5759,10 @@ button.gcsa-steps__trigger { cursor: pointer; }
5640
5759
  .gcsa-cascader__value[data-placeholder] { color: var(--gcsa-color-text-muted); }
5641
5760
  .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); }
5642
5761
  .gcsa-cascader__trigger[data-state='open'] > .gcsa-icon, .gcsa-cascader__trigger[aria-expanded='true'] > .gcsa-icon { transform: rotate(180deg); }
5643
- .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; }
5762
+ .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; }
5644
5763
  .gcsa-popover:has(.gcsa-cascader__panel) > .gcsa-popover__body { padding: 0; }
5645
- .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); }
5646
- .gcsa-cascader__column { flex: 0 0 180px; min-width: 180px; padding: 0 4px; border-inline-end: 1px solid var(--gcsa-color-border-subtle); }
5764
+ .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); }
5765
+ .gcsa-cascader__column { flex: 1 0 180px; min-width: 180px; padding: 0 4px; border-inline-end: 1px solid var(--gcsa-color-border-subtle); }
5647
5766
  .gcsa-cascader__column:last-child { border-inline-end: 0; }
5648
5767
  .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); }
5649
5768
  .gcsa-cascader__option:hover:not(:disabled), .gcsa-cascader__option--active { color: var(--gcsa-color-primary); background: var(--gcsa-color-primary-muted); }
@@ -5661,10 +5780,11 @@ button.gcsa-steps__trigger { cursor: pointer; }
5661
5780
  .gcsa-transfer__search .gcsa-input { min-height: 32px; height: 32px; font-size: 12px; }
5662
5781
  .gcsa-transfer__list { flex: 1; min-height: 200px; max-height: 260px; overflow: auto; padding: 4px 6px 8px; }
5663
5782
  .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; }
5664
- .gcsa-transfer__item:hover:not(:disabled), .gcsa-transfer__item--selected { color: var(--gcsa-color-primary); background: var(--gcsa-color-primary-muted); }
5665
- .gcsa-transfer__item:disabled { opacity: 0.45; cursor: not-allowed; }
5666
- .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; }
5667
- .gcsa-transfer__item:not(.gcsa-transfer__item--selected) .gcsa-transfer__check { color: transparent; background: transparent; }
5783
+ .gcsa-transfer__item:hover:not([aria-disabled='true']), .gcsa-transfer__item--selected { color: var(--gcsa-color-primary); background: var(--gcsa-color-primary-muted); }
5784
+ .gcsa-transfer__item[aria-disabled='true'] { opacity: 0.45; cursor: not-allowed; }
5785
+ .gcsa-transfer__check-wrap { display: inline-flex; flex: 0 0 auto; }
5786
+ .gcsa-transfer__item .gcsa-checkbox { min-height: 0; padding: 0; gap: 0; }
5787
+ .gcsa-transfer__label { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
5668
5788
  .gcsa-transfer__actions { display: flex; flex: 0 0 auto; flex-direction: column; gap: 8px; }
5669
5789
  .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; }
5670
5790
  .gcsa-transfer__action:hover:not(:disabled) { color: var(--gcsa-color-primary); border-color: var(--gcsa-color-primary); background: var(--gcsa-color-primary-muted); }
@@ -5699,14 +5819,15 @@ button.gcsa-steps__trigger { cursor: pointer; }
5699
5819
  flex-direction: column;
5700
5820
  align-items: center;
5701
5821
  justify-content: center;
5702
- gap: 8px;
5822
+ gap: 6px;
5703
5823
  box-sizing: border-box;
5704
5824
  width: 100%;
5705
- min-height: 123px;
5706
- padding: 17px 13px;
5707
- border: 1px dashed var(--gcsa-color-border-strong);
5708
- border-radius: 4px;
5709
- background: var(--gcsa-color-primary-muted);
5825
+ min-height: 96px;
5826
+ height: auto;
5827
+ padding: 16px 12px;
5828
+ border: 1px dashed var(--gcsa-color-border);
5829
+ border-radius: 8px;
5830
+ background: var(--gcsa-color-bg-base);
5710
5831
  cursor: pointer;
5711
5832
  transition: border-color var(--gcsa-motion-fast) ease, background var(--gcsa-motion-fast) ease;
5712
5833
  }
@@ -5714,36 +5835,37 @@ button.gcsa-steps__trigger { cursor: pointer; }
5714
5835
  .gcsa-upload__dropzone:hover,
5715
5836
  .gcsa-upload--dragging .gcsa-upload__dropzone {
5716
5837
  border-color: var(--gcsa-color-primary);
5717
- background: var(--gcsa-color-primary-muted-strong);
5838
+ background: var(--gcsa-color-primary-muted);
5718
5839
  }
5719
5840
 
5720
5841
  .gcsa-upload__icon {
5721
5842
  display: inline-flex;
5722
5843
  align-items: center;
5723
5844
  justify-content: center;
5724
- width: 32px;
5725
- height: 32px;
5845
+ width: 40px;
5846
+ height: 40px;
5726
5847
  color: var(--gcsa-color-primary);
5727
5848
  }
5728
5849
 
5729
5850
  .gcsa-upload__icon .gcsa-icon,
5730
5851
  .gcsa-upload__icon .gcsa-icon svg {
5731
- width: 23px;
5732
- height: 23px;
5852
+ width: 40px;
5853
+ height: 40px;
5733
5854
  }
5734
5855
 
5735
5856
  .gcsa-upload__title {
5736
5857
  color: var(--gcsa-color-text);
5737
- font-size: 16px;
5738
- line-height: 24px;
5858
+ font-size: 13px;
5859
+ font-weight: 600;
5860
+ line-height: 1.2;
5739
5861
  text-align: center;
5740
5862
  }
5741
5863
 
5742
5864
  .gcsa-upload__hint {
5743
5865
  margin: 0;
5744
- color: color-mix(in srgb, var(--gcsa-color-text) 30%, transparent);
5745
- font-size: 14px;
5746
- line-height: 16.8px;
5866
+ color: var(--gcsa-color-text-secondary);
5867
+ font-size: 12px;
5868
+ line-height: 1.2;
5747
5869
  text-align: center;
5748
5870
  }
5749
5871
 
@@ -6688,27 +6810,28 @@ button.gcsa-steps__trigger { cursor: pointer; }
6688
6810
  }
6689
6811
 
6690
6812
  [data-gcsa-theme='dark'] .gcsa-btn {
6691
- height: 40px;
6813
+ height: var(--gcsa-control-height-md);
6814
+ min-height: var(--gcsa-control-height-md);
6692
6815
  padding-inline: 16px;
6693
6816
  border-radius: 20px;
6694
- font-size: 13px;
6817
+ font-size: var(--gcsa-control-font-size-md);
6695
6818
  }
6696
6819
 
6697
6820
  [data-gcsa-theme='dark'] .gcsa-btn--sm {
6698
- height: var(--gcsa-control-height-sm, 24px);
6699
- min-height: var(--gcsa-control-height-sm, 24px);
6821
+ height: var(--gcsa-control-height-sm);
6822
+ min-height: var(--gcsa-control-height-sm);
6700
6823
  padding-inline: 12px;
6701
6824
  }
6702
6825
 
6703
6826
  [data-gcsa-theme='dark'] .gcsa-btn--md {
6704
- height: var(--gcsa-control-height-md, 32px);
6705
- min-height: var(--gcsa-control-height-md, 32px);
6827
+ height: var(--gcsa-control-height-md);
6828
+ min-height: var(--gcsa-control-height-md);
6706
6829
  padding-inline: 16px;
6707
6830
  }
6708
6831
 
6709
6832
  [data-gcsa-theme='dark'] .gcsa-btn--lg {
6710
- height: var(--gcsa-control-height-lg, 40px);
6711
- min-height: var(--gcsa-control-height-lg, 40px);
6833
+ height: var(--gcsa-control-height-lg);
6834
+ min-height: var(--gcsa-control-height-lg);
6712
6835
  padding-inline: 20px;
6713
6836
  }
6714
6837
 
@@ -6810,15 +6933,13 @@ button.gcsa-steps__trigger { cursor: pointer; }
6810
6933
  [data-gcsa-theme='dark'] .gcsa-table td { color: var(--gcsa-color-text); }
6811
6934
 
6812
6935
  [data-gcsa-theme='dark'] .gcsa-date-picker__control {
6813
- height: 40px;
6814
- min-height: 40px;
6815
6936
  box-sizing: border-box;
6816
- padding-left: 16px;
6937
+ padding-left: var(--gcsa-control-padding-x-lg);
6817
6938
  }
6818
6939
 
6819
6940
  [data-gcsa-theme='dark'] .gcsa-date-picker__control > .gcsa-date-picker__input {
6820
- height: 30px;
6821
- min-height: 30px;
6941
+ height: 26px;
6942
+ min-height: 26px;
6822
6943
  box-sizing: border-box;
6823
6944
  padding: 0;
6824
6945
  border: 0 !important;
@@ -6917,32 +7038,33 @@ button.gcsa-steps__trigger { cursor: pointer; }
6917
7038
  }
6918
7039
 
6919
7040
  [data-gcsa-theme='light'] .gcsa-btn {
6920
- height: 40px;
7041
+ height: var(--gcsa-control-height-md);
7042
+ min-height: var(--gcsa-control-height-md);
6921
7043
  padding: 0 16px;
6922
7044
  gap: 8px;
6923
7045
  border-radius: 20px;
6924
- font-size: 13px;
7046
+ font-size: var(--gcsa-control-font-size-md);
6925
7047
  font-weight: 600;
6926
7048
  letter-spacing: 0;
6927
7049
  }
6928
7050
 
6929
7051
  [data-gcsa-theme='light'] .gcsa-btn--sm {
6930
- height: var(--gcsa-control-height-sm, 24px);
6931
- min-height: var(--gcsa-control-height-sm, 24px);
7052
+ height: var(--gcsa-control-height-sm);
7053
+ min-height: var(--gcsa-control-height-sm);
6932
7054
  padding-inline: 16px;
6933
- font-size: 13px;
7055
+ font-size: var(--gcsa-control-font-size-sm);
6934
7056
  }
6935
7057
 
6936
7058
  [data-gcsa-theme='light'] .gcsa-btn--md {
6937
- height: var(--gcsa-control-height-md, 32px);
6938
- min-height: var(--gcsa-control-height-md, 32px);
7059
+ height: var(--gcsa-control-height-md);
7060
+ min-height: var(--gcsa-control-height-md);
6939
7061
  padding-inline: 16px;
6940
- font-size: 13px;
7062
+ font-size: var(--gcsa-control-font-size-md);
6941
7063
  }
6942
7064
 
6943
7065
  [data-gcsa-theme='light'] .gcsa-btn--lg {
6944
- height: var(--gcsa-control-height-lg, 40px);
6945
- min-height: var(--gcsa-control-height-lg, 40px);
7066
+ height: var(--gcsa-control-height-lg);
7067
+ min-height: var(--gcsa-control-height-lg);
6946
7068
  padding-inline: 24px;
6947
7069
  font-size: 14px;
6948
7070
  }
@@ -7120,7 +7242,7 @@ button.gcsa-steps__trigger { cursor: pointer; }
7120
7242
  min-height: 128px;
7121
7243
  box-sizing: border-box;
7122
7244
  padding: 41px 25px;
7123
- background: #ffffff;
7245
+ background: var(--gcsa-color-bg-surface);
7124
7246
  border-color: rgba(3, 4, 7, 0.08);
7125
7247
  border-radius: 12px;
7126
7248
  }
@@ -7134,15 +7256,17 @@ button.gcsa-steps__trigger { cursor: pointer; }
7134
7256
 
7135
7257
  [data-gcsa-theme='light'] .gcsa-empty__title {
7136
7258
  margin: 12px 0 0;
7259
+ color: rgba(15, 23, 42, 0.6);
7137
7260
  font-family: var(--gcsa-font-body);
7138
- font-size: 16px;
7261
+ font-size: 14px;
7139
7262
  font-weight: 400;
7140
7263
  line-height: 24px;
7141
7264
  }
7142
7265
 
7143
7266
  [data-gcsa-theme='light'] .gcsa-empty__desc {
7144
7267
  margin-top: 4px;
7145
- font-size: 14px;
7268
+ color: rgba(15, 23, 42, 0.3);
7269
+ font-size: 12px;
7146
7270
  line-height: 22.4px;
7147
7271
  }
7148
7272
 
@@ -7247,37 +7371,31 @@ button.gcsa-steps__trigger { cursor: pointer; }
7247
7371
  }
7248
7372
 
7249
7373
  [data-gcsa-theme='light'] .gcsa-input-number {
7250
- height: 40px;
7251
- min-height: 40px;
7252
7374
  box-sizing: border-box;
7253
7375
  border-color: var(--gcsa-color-border);
7254
7376
  border-radius: 8px;
7255
7377
  }
7256
7378
 
7257
7379
  :is([data-gcsa-theme='light'], [data-gcsa-theme='dark']) .gcsa-input-number {
7258
- height: 40px;
7259
- min-height: 40px;
7260
7380
  box-sizing: border-box;
7261
7381
  }
7262
7382
 
7263
7383
  [data-gcsa-theme='light'] .gcsa-input-number__btn {
7264
- min-height: 38px;
7384
+ min-height: 34px;
7265
7385
  background: #ffffff;
7266
7386
  }
7267
7387
 
7268
7388
  [data-gcsa-theme='light'] .gcsa-date-picker__control {
7269
- height: 40px;
7270
- min-height: 40px;
7271
7389
  box-sizing: border-box;
7272
- padding-left: 16px;
7390
+ padding-left: var(--gcsa-control-padding-x-lg);
7273
7391
  border-color: var(--gcsa-color-border);
7274
7392
  border-radius: 8px;
7275
7393
  background: #ffffff;
7276
7394
  }
7277
7395
 
7278
7396
  [data-gcsa-theme='light'] .gcsa-date-picker__control > .gcsa-date-picker__input {
7279
- height: 30px;
7280
- min-height: 30px;
7397
+ height: 26px;
7398
+ min-height: 26px;
7281
7399
  box-sizing: border-box;
7282
7400
  padding: 0;
7283
7401
  border: 0 !important;
@@ -7412,24 +7530,24 @@ button.gcsa-steps__trigger { cursor: pointer; }
7412
7530
  }
7413
7531
 
7414
7532
  [data-gcsa-theme='dark'] .gcsa-upload__dropzone {
7415
- background: rgba(0, 187, 204, 0.08);
7416
- border-color: rgba(0, 187, 204, 0.32);
7533
+ background: var(--gcsa-color-bg-base);
7534
+ border-color: var(--gcsa-color-border);
7417
7535
  }
7418
7536
 
7419
7537
  [data-gcsa-theme='dark'] .gcsa-upload__dropzone:hover,
7420
7538
  [data-gcsa-theme='dark'] .gcsa-upload--dragging .gcsa-upload__dropzone {
7421
- background: rgba(0, 187, 204, 0.14);
7422
7539
  border-color: var(--gcsa-color-primary);
7540
+ background: var(--gcsa-color-primary-muted);
7423
7541
  }
7424
7542
 
7425
7543
  [data-gcsa-theme='light'] .gcsa-upload__dropzone {
7426
- background: rgba(0, 187, 204, 0.08);
7427
- border-color: rgba(0, 187, 204, 0.32);
7544
+ background: var(--gcsa-color-bg-elevated);
7545
+ border-color: var(--gcsa-color-border);
7428
7546
  }
7429
7547
 
7430
7548
  [data-gcsa-theme='light'] .gcsa-upload__dropzone:hover,
7431
7549
  [data-gcsa-theme='light'] .gcsa-upload--dragging .gcsa-upload__dropzone {
7432
- background: rgba(0, 187, 204, 0.14);
7550
+ background: var(--gcsa-color-primary-muted);
7433
7551
  border-color: var(--gcsa-color-primary);
7434
7552
  }
7435
7553
 
@@ -7491,13 +7609,14 @@ button.gcsa-steps__trigger { cursor: pointer; }
7491
7609
  align-items: center;
7492
7610
  gap: 4px;
7493
7611
  width: 100%;
7494
- min-height: 40px;
7495
- height: 40px;
7612
+ min-height: var(--gcsa-control-height-md);
7613
+ height: var(--gcsa-control-height-md);
7496
7614
  box-sizing: border-box;
7497
- padding: 0 4px 0 16px;
7615
+ padding: 0 4px 0 var(--gcsa-control-padding-x-lg);
7498
7616
  border: 1px solid var(--gcsa-color-border);
7499
7617
  border-radius: 8px;
7500
7618
  background: var(--gcsa-color-bg-input);
7619
+ font-size: var(--gcsa-control-font-size-md);
7501
7620
  transition:
7502
7621
  border-color var(--gcsa-motion-fast) ease,
7503
7622
  box-shadow var(--gcsa-motion-fast) ease;