@hxdhxd/harmony-flow-ui 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -4
- package/dist/index.cjs +38 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +95 -152
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +38 -3
- package/dist/index.js.map +1 -1
- package/package.json +14 -1
package/dist/index.css
CHANGED
|
@@ -8,6 +8,11 @@
|
|
|
8
8
|
--hf-color-text: #142033;
|
|
9
9
|
--hf-color-text-muted: #66758c;
|
|
10
10
|
--hf-color-border: #dce9f7;
|
|
11
|
+
--hf-radius-control: 6px;
|
|
12
|
+
--hf-radius-panel: 8px;
|
|
13
|
+
--hf-radius-overlay: 10px;
|
|
14
|
+
--hf-shadow-popover: 0 8px 24px rgba(41, 106, 168, .12);
|
|
15
|
+
--hf-shadow-modal: 0 18px 48px rgba(41, 106, 168, .16);
|
|
11
16
|
--hf-radius-md: 14px;
|
|
12
17
|
--hf-radius-lg: 24px;
|
|
13
18
|
--hf-shadow-elevated: 0 18px 48px rgba(41, 106, 168, .16);
|
|
@@ -41,7 +46,7 @@
|
|
|
41
46
|
.hf-button {
|
|
42
47
|
align-items: center;
|
|
43
48
|
border: 0;
|
|
44
|
-
border-radius:
|
|
49
|
+
border-radius: var(--hf-radius-control);
|
|
45
50
|
cursor: pointer;
|
|
46
51
|
display: inline-flex;
|
|
47
52
|
font: inherit;
|
|
@@ -50,9 +55,9 @@
|
|
|
50
55
|
justify-content: center;
|
|
51
56
|
letter-spacing: .01em;
|
|
52
57
|
transition:
|
|
53
|
-
transform var(--hf-motion-duration) cubic-bezier(.2, .8, .2, 1),
|
|
54
58
|
background var(--hf-motion-duration),
|
|
55
|
-
|
|
59
|
+
border-color var(--hf-motion-duration),
|
|
60
|
+
color var(--hf-motion-duration);
|
|
56
61
|
}
|
|
57
62
|
.hf-button--sm {
|
|
58
63
|
min-height: 34px;
|
|
@@ -67,13 +72,13 @@
|
|
|
67
72
|
padding: 13px 26px;
|
|
68
73
|
}
|
|
69
74
|
.hf-button--rounded {
|
|
70
|
-
border-radius: var(--hf-radius-
|
|
75
|
+
border-radius: var(--hf-radius-control);
|
|
71
76
|
}
|
|
72
77
|
.hf-button--pill {
|
|
73
78
|
border-radius: 999px;
|
|
74
79
|
}
|
|
75
80
|
.hf-button--square {
|
|
76
|
-
border-radius:
|
|
81
|
+
border-radius: var(--hf-radius-control);
|
|
77
82
|
}
|
|
78
83
|
.hf-button--full {
|
|
79
84
|
width: 100%;
|
|
@@ -86,12 +91,10 @@
|
|
|
86
91
|
}
|
|
87
92
|
.hf-button--primary {
|
|
88
93
|
background: var(--hf-color-primary);
|
|
89
|
-
box-shadow: 0 8px 20px color-mix(in srgb, var(--hf-color-primary) 26%, transparent);
|
|
90
94
|
color: #fff;
|
|
91
95
|
}
|
|
92
96
|
.hf-button--primary:hover {
|
|
93
97
|
background: var(--hf-color-primary-hover);
|
|
94
|
-
transform: translateY(-1px);
|
|
95
98
|
}
|
|
96
99
|
.hf-button--secondary {
|
|
97
100
|
background: color-mix(in srgb, var(--hf-color-primary) 10%, #fff);
|
|
@@ -107,7 +110,6 @@
|
|
|
107
110
|
}
|
|
108
111
|
.hf-button--danger {
|
|
109
112
|
background: #e5484d;
|
|
110
|
-
box-shadow: 0 8px 20px rgba(229, 72, 77, .2);
|
|
111
113
|
color: #fff;
|
|
112
114
|
}
|
|
113
115
|
.hf-button--danger:hover {
|
|
@@ -122,13 +124,12 @@
|
|
|
122
124
|
color: var(--hf-color-text-muted);
|
|
123
125
|
}
|
|
124
126
|
.hf-button:active {
|
|
125
|
-
|
|
127
|
+
filter: brightness(.96);
|
|
126
128
|
}
|
|
127
129
|
.hf-button:disabled {
|
|
128
130
|
cursor: not-allowed;
|
|
129
131
|
filter: saturate(.4);
|
|
130
132
|
opacity: .5;
|
|
131
|
-
transform: none;
|
|
132
133
|
}
|
|
133
134
|
.hf-button:focus-visible,
|
|
134
135
|
.hf-input:focus-visible,
|
|
@@ -157,7 +158,7 @@
|
|
|
157
158
|
align-items: center;
|
|
158
159
|
background: var(--hf-color-surface);
|
|
159
160
|
border: 1px solid var(--hf-color-border);
|
|
160
|
-
border-radius: var(--hf-radius-
|
|
161
|
+
border-radius: var(--hf-radius-control);
|
|
161
162
|
display: flex;
|
|
162
163
|
min-height: 46px;
|
|
163
164
|
padding: 0 14px;
|
|
@@ -235,12 +236,12 @@
|
|
|
235
236
|
}
|
|
236
237
|
.hf-segmented {
|
|
237
238
|
background: #eaf3fc;
|
|
238
|
-
border:
|
|
239
|
-
border-radius:
|
|
239
|
+
border: 1px solid color-mix(in srgb, var(--hf-color-border) 86%, white);
|
|
240
|
+
border-radius: var(--hf-radius-panel);
|
|
240
241
|
display: inline-flex;
|
|
241
242
|
gap: 2px;
|
|
242
243
|
margin: 0;
|
|
243
|
-
padding:
|
|
244
|
+
padding: 3px;
|
|
244
245
|
}
|
|
245
246
|
.hf-segmented__option {
|
|
246
247
|
cursor: pointer;
|
|
@@ -252,38 +253,30 @@
|
|
|
252
253
|
width: 1px;
|
|
253
254
|
}
|
|
254
255
|
.hf-segmented span {
|
|
255
|
-
border-radius:
|
|
256
|
+
border-radius: var(--hf-radius-control);
|
|
256
257
|
color: var(--hf-color-text-muted);
|
|
257
258
|
display: block;
|
|
258
259
|
font-size: 14px;
|
|
259
260
|
font-weight: 600;
|
|
260
261
|
padding: 8px 16px;
|
|
261
|
-
transition:
|
|
262
|
-
background var(--hf-motion-duration),
|
|
263
|
-
color var(--hf-motion-duration),
|
|
264
|
-
box-shadow var(--hf-motion-duration);
|
|
262
|
+
transition: background var(--hf-motion-duration), color var(--hf-motion-duration);
|
|
265
263
|
}
|
|
266
264
|
.hf-segmented input:checked + span {
|
|
267
265
|
background: #fff;
|
|
268
|
-
box-shadow: 0 4px 12px rgba(65, 114, 158, .12);
|
|
269
266
|
color: var(--hf-color-primary);
|
|
270
267
|
}
|
|
271
268
|
.hf-card {
|
|
272
|
-
background:
|
|
273
|
-
border: 1px solid
|
|
274
|
-
border-radius: var(--hf-radius-
|
|
269
|
+
background: var(--hf-color-surface);
|
|
270
|
+
border: 1px solid var(--hf-color-border);
|
|
271
|
+
border-radius: var(--hf-radius-panel);
|
|
275
272
|
padding: 22px;
|
|
276
273
|
}
|
|
277
274
|
.hf-card--interactive {
|
|
278
|
-
transition:
|
|
279
|
-
border var(--hf-motion-duration),
|
|
280
|
-
box-shadow var(--hf-motion-duration),
|
|
281
|
-
transform var(--hf-motion-duration);
|
|
275
|
+
transition: background var(--hf-motion-duration), border-color var(--hf-motion-duration);
|
|
282
276
|
}
|
|
283
277
|
.hf-card--interactive:hover {
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
transform: translateY(-3px);
|
|
278
|
+
background: color-mix(in srgb, var(--hf-color-primary) 2%, var(--hf-color-surface));
|
|
279
|
+
border-color: color-mix(in srgb, var(--hf-color-primary) 34%, var(--hf-color-border));
|
|
287
280
|
}
|
|
288
281
|
.hf-card__header {
|
|
289
282
|
align-items: flex-start;
|
|
@@ -319,14 +312,13 @@
|
|
|
319
312
|
padding: 20px;
|
|
320
313
|
position: fixed;
|
|
321
314
|
z-index: 1000;
|
|
322
|
-
backdrop-filter: blur(10px);
|
|
323
315
|
}
|
|
324
316
|
.hf-modal {
|
|
325
317
|
animation: hf-enter 260ms cubic-bezier(.2, .9, .2, 1);
|
|
326
318
|
background: var(--hf-color-surface);
|
|
327
|
-
border: 1px solid
|
|
328
|
-
border-radius:
|
|
329
|
-
box-shadow: var(--hf-shadow-
|
|
319
|
+
border: 1px solid var(--hf-color-border);
|
|
320
|
+
border-radius: var(--hf-radius-overlay);
|
|
321
|
+
box-shadow: var(--hf-shadow-modal);
|
|
330
322
|
max-width: 480px;
|
|
331
323
|
outline: 0;
|
|
332
324
|
overflow: hidden;
|
|
@@ -358,11 +350,11 @@
|
|
|
358
350
|
.hf-toast {
|
|
359
351
|
align-items: center;
|
|
360
352
|
animation: hf-toast-in 260ms cubic-bezier(.2, .9, .2, 1);
|
|
361
|
-
background:
|
|
362
|
-
border: 1px solid
|
|
363
|
-
border-radius:
|
|
353
|
+
background: #18273a;
|
|
354
|
+
border: 1px solid #2b3c50;
|
|
355
|
+
border-radius: var(--hf-radius-overlay);
|
|
364
356
|
bottom: 28px;
|
|
365
|
-
box-shadow:
|
|
357
|
+
box-shadow: var(--hf-shadow-popover);
|
|
366
358
|
color: #fff;
|
|
367
359
|
display: flex;
|
|
368
360
|
gap: 10px;
|
|
@@ -371,7 +363,6 @@
|
|
|
371
363
|
position: fixed;
|
|
372
364
|
transform: translateX(-50%);
|
|
373
365
|
z-index: 1100;
|
|
374
|
-
backdrop-filter: blur(16px);
|
|
375
366
|
}
|
|
376
367
|
.hf-toast__mark {
|
|
377
368
|
background: #72d69a;
|
|
@@ -531,7 +522,7 @@
|
|
|
531
522
|
.hf-badge,
|
|
532
523
|
.hf-tag {
|
|
533
524
|
align-items: center;
|
|
534
|
-
border-radius:
|
|
525
|
+
border-radius: var(--hf-radius-control);
|
|
535
526
|
display: inline-flex;
|
|
536
527
|
font-size: 12px;
|
|
537
528
|
font-weight: 680;
|
|
@@ -634,7 +625,7 @@
|
|
|
634
625
|
.hf-textarea {
|
|
635
626
|
background: var(--hf-color-surface);
|
|
636
627
|
border: 1px solid var(--hf-color-border);
|
|
637
|
-
border-radius: var(--hf-radius-
|
|
628
|
+
border-radius: var(--hf-radius-control);
|
|
638
629
|
color: var(--hf-color-text);
|
|
639
630
|
font: inherit;
|
|
640
631
|
line-height: 1.55;
|
|
@@ -768,7 +759,7 @@
|
|
|
768
759
|
.hf-alert {
|
|
769
760
|
align-items: flex-start;
|
|
770
761
|
border: 1px solid;
|
|
771
|
-
border-radius:
|
|
762
|
+
border-radius: var(--hf-radius-panel);
|
|
772
763
|
display: flex;
|
|
773
764
|
gap: 12px;
|
|
774
765
|
padding: 14px 16px;
|
|
@@ -827,7 +818,7 @@
|
|
|
827
818
|
}
|
|
828
819
|
.hf-empty__icon {
|
|
829
820
|
background: #edf5fd;
|
|
830
|
-
border-radius:
|
|
821
|
+
border-radius: var(--hf-radius-panel);
|
|
831
822
|
color: var(--hf-color-primary);
|
|
832
823
|
display: grid;
|
|
833
824
|
margin-bottom: 14px;
|
|
@@ -1308,16 +1299,14 @@
|
|
|
1308
1299
|
.hf-floating-nav,
|
|
1309
1300
|
.hf-shrink-nav {
|
|
1310
1301
|
align-items: center;
|
|
1311
|
-
background:
|
|
1312
|
-
border: 1px solid
|
|
1313
|
-
border-radius:
|
|
1314
|
-
box-shadow: 0 12px 36px rgba(41, 106, 168, .1);
|
|
1302
|
+
background: var(--hf-color-surface);
|
|
1303
|
+
border: 1px solid var(--hf-color-border);
|
|
1304
|
+
border-radius: var(--hf-radius-panel);
|
|
1315
1305
|
display: grid;
|
|
1316
1306
|
gap: 18px;
|
|
1317
1307
|
grid-template-columns: 1fr auto 1fr;
|
|
1318
1308
|
min-height: 58px;
|
|
1319
1309
|
padding: 8px 12px 8px 18px;
|
|
1320
|
-
backdrop-filter: blur(18px);
|
|
1321
1310
|
}
|
|
1322
1311
|
.hf-floating-nav__brand,
|
|
1323
1312
|
.hf-shrink-nav__brand {
|
|
@@ -1498,16 +1487,15 @@
|
|
|
1498
1487
|
.hf-menu__panel,
|
|
1499
1488
|
.hf-mega-menu__panel {
|
|
1500
1489
|
animation: hf-nav-panel-in var(--hf-motion-duration) cubic-bezier(.2, .9, .2, 1);
|
|
1501
|
-
background:
|
|
1502
|
-
border: 1px solid
|
|
1503
|
-
border-radius:
|
|
1504
|
-
box-shadow: var(--hf-shadow-
|
|
1490
|
+
background: var(--hf-color-surface);
|
|
1491
|
+
border: 1px solid var(--hf-color-border);
|
|
1492
|
+
border-radius: var(--hf-radius-overlay);
|
|
1493
|
+
box-shadow: var(--hf-shadow-popover);
|
|
1505
1494
|
left: 0;
|
|
1506
1495
|
padding: 8px;
|
|
1507
1496
|
position: absolute;
|
|
1508
1497
|
top: calc(100% + 8px);
|
|
1509
1498
|
z-index: 100;
|
|
1510
|
-
backdrop-filter: blur(20px);
|
|
1511
1499
|
}
|
|
1512
1500
|
.hf-menu__panel {
|
|
1513
1501
|
display: grid;
|
|
@@ -1572,7 +1560,7 @@
|
|
|
1572
1560
|
align-items: center;
|
|
1573
1561
|
background: var(--hf-color-surface);
|
|
1574
1562
|
border: 1px solid var(--hf-color-border);
|
|
1575
|
-
border-radius:
|
|
1563
|
+
border-radius: var(--hf-radius-panel);
|
|
1576
1564
|
display: flex;
|
|
1577
1565
|
font-weight: 750;
|
|
1578
1566
|
justify-content: space-between;
|
|
@@ -1601,11 +1589,10 @@
|
|
|
1601
1589
|
inset: 0;
|
|
1602
1590
|
position: fixed;
|
|
1603
1591
|
z-index: 1000;
|
|
1604
|
-
backdrop-filter: blur(8px);
|
|
1605
1592
|
}
|
|
1606
1593
|
.hf-mobile-nav__panel {
|
|
1607
1594
|
background: var(--hf-color-surface);
|
|
1608
|
-
box-shadow: var(--hf-shadow-
|
|
1595
|
+
box-shadow: var(--hf-shadow-modal);
|
|
1609
1596
|
display: grid;
|
|
1610
1597
|
grid-template-rows: auto 1fr;
|
|
1611
1598
|
height: 100%;
|
|
@@ -1711,8 +1698,8 @@
|
|
|
1711
1698
|
justify-self: end;
|
|
1712
1699
|
}
|
|
1713
1700
|
.hf-shrink-nav--compact {
|
|
1714
|
-
background:
|
|
1715
|
-
box-shadow:
|
|
1701
|
+
background: var(--hf-color-surface);
|
|
1702
|
+
box-shadow: var(--hf-shadow-popover);
|
|
1716
1703
|
min-height: 48px;
|
|
1717
1704
|
}
|
|
1718
1705
|
.hf-shrink-nav:not(.hf-shrink-nav--compact) {
|
|
@@ -1869,8 +1856,8 @@
|
|
|
1869
1856
|
.hf-select-menu {
|
|
1870
1857
|
background: var(--hf-color-surface);
|
|
1871
1858
|
border: 1px solid var(--hf-color-border);
|
|
1872
|
-
border-radius:
|
|
1873
|
-
box-shadow: var(--hf-shadow-
|
|
1859
|
+
border-radius: var(--hf-radius-overlay);
|
|
1860
|
+
box-shadow: var(--hf-shadow-popover);
|
|
1874
1861
|
display: grid;
|
|
1875
1862
|
gap: 2px;
|
|
1876
1863
|
left: -1px;
|
|
@@ -1998,13 +1985,12 @@
|
|
|
1998
1985
|
inset: 0;
|
|
1999
1986
|
z-index: 1000;
|
|
2000
1987
|
background: #0c1c3052;
|
|
2001
|
-
backdrop-filter: blur(5px);
|
|
2002
1988
|
animation: hf-fade var(--hf-motion-duration);
|
|
2003
1989
|
}
|
|
2004
1990
|
.hf-drawer {
|
|
2005
1991
|
position: absolute;
|
|
2006
1992
|
background: var(--hf-color-surface);
|
|
2007
|
-
box-shadow: var(--hf-shadow-
|
|
1993
|
+
box-shadow: var(--hf-shadow-modal);
|
|
2008
1994
|
display: flex;
|
|
2009
1995
|
flex-direction: column;
|
|
2010
1996
|
outline: 0;
|
|
@@ -2028,7 +2014,7 @@
|
|
|
2028
2014
|
right: 0;
|
|
2029
2015
|
bottom: 0;
|
|
2030
2016
|
max-height: 88vh;
|
|
2031
|
-
border-radius:
|
|
2017
|
+
border-radius: var(--hf-radius-overlay) var(--hf-radius-overlay) 0 0;
|
|
2032
2018
|
animation: hf-slide-up .26s cubic-bezier(.2, .8, .2, 1);
|
|
2033
2019
|
}
|
|
2034
2020
|
.hf-drawer--sm {
|
|
@@ -2072,11 +2058,10 @@
|
|
|
2072
2058
|
width: max-content;
|
|
2073
2059
|
max-width: min(320px, 85vw);
|
|
2074
2060
|
padding: 14px;
|
|
2075
|
-
border: 1px solid
|
|
2076
|
-
border-radius:
|
|
2077
|
-
background:
|
|
2078
|
-
box-shadow:
|
|
2079
|
-
backdrop-filter: blur(18px);
|
|
2061
|
+
border: 1px solid var(--hf-color-border);
|
|
2062
|
+
border-radius: var(--hf-radius-overlay);
|
|
2063
|
+
background: var(--hf-color-surface);
|
|
2064
|
+
box-shadow: var(--hf-shadow-popover);
|
|
2080
2065
|
animation: hf-pop .16s ease-out;
|
|
2081
2066
|
}
|
|
2082
2067
|
.hf-popover__content--bottom {
|
|
@@ -2438,13 +2423,9 @@
|
|
|
2438
2423
|
|
|
2439
2424
|
/* src/experience.css */
|
|
2440
2425
|
.hf-auth {
|
|
2441
|
-
background:
|
|
2442
|
-
linear-gradient(
|
|
2443
|
-
145deg,
|
|
2444
|
-
#eff7ff,
|
|
2445
|
-
#fff);
|
|
2426
|
+
background: var(--hf-color-surface);
|
|
2446
2427
|
border: 1px solid var(--hf-color-border);
|
|
2447
|
-
border-radius:
|
|
2428
|
+
border-radius: var(--hf-radius-panel);
|
|
2448
2429
|
display: grid;
|
|
2449
2430
|
min-height: 520px;
|
|
2450
2431
|
overflow: hidden;
|
|
@@ -2464,10 +2445,9 @@
|
|
|
2464
2445
|
padding: 64px 7% 34px;
|
|
2465
2446
|
}
|
|
2466
2447
|
.hf-auth__card {
|
|
2467
|
-
background:
|
|
2468
|
-
border: 1px solid
|
|
2469
|
-
border-radius:
|
|
2470
|
-
box-shadow: var(--hf-shadow-elevated);
|
|
2448
|
+
background: var(--hf-color-surface);
|
|
2449
|
+
border: 1px solid var(--hf-color-border);
|
|
2450
|
+
border-radius: var(--hf-radius-panel);
|
|
2471
2451
|
max-width: 390px;
|
|
2472
2452
|
padding: 28px;
|
|
2473
2453
|
width: 100%;
|
|
@@ -2485,22 +2465,22 @@
|
|
|
2485
2465
|
}
|
|
2486
2466
|
.hf-auth--split .hf-auth__aside {
|
|
2487
2467
|
align-items: flex-end;
|
|
2488
|
-
background:
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
color-mix(in srgb, var(--hf-color-primary) 82%, #6cc8ff),
|
|
2492
|
-
#d8efff);
|
|
2493
|
-
color: white;
|
|
2468
|
+
background: #e8f3ff;
|
|
2469
|
+
border-right: 1px solid var(--hf-color-border);
|
|
2470
|
+
color: var(--hf-color-text);
|
|
2494
2471
|
display: flex;
|
|
2495
2472
|
padding: 56px;
|
|
2496
2473
|
}
|
|
2497
2474
|
.hf-auth--immersive {
|
|
2475
|
+
background-color: #e8f3ff;
|
|
2476
|
+
}
|
|
2477
|
+
.hf-auth--immersive[style] {
|
|
2498
2478
|
background-image:
|
|
2499
2479
|
linear-gradient(
|
|
2500
2480
|
90deg,
|
|
2501
2481
|
rgba(13, 41, 72, .48),
|
|
2502
2482
|
rgba(10, 124, 255, .18)),
|
|
2503
|
-
var(--hf-auth-image
|
|
2483
|
+
var(--hf-auth-image);
|
|
2504
2484
|
background-position: center;
|
|
2505
2485
|
background-size: cover;
|
|
2506
2486
|
}
|
|
@@ -2508,8 +2488,7 @@
|
|
|
2508
2488
|
align-items: flex-end;
|
|
2509
2489
|
}
|
|
2510
2490
|
.hf-auth--immersive .hf-auth__card {
|
|
2511
|
-
|
|
2512
|
-
background: rgba(255, 255, 255, .86);
|
|
2491
|
+
background: var(--hf-color-surface);
|
|
2513
2492
|
}
|
|
2514
2493
|
.hf-auth--step .hf-auth__steps {
|
|
2515
2494
|
display: flex;
|
|
@@ -2529,19 +2508,15 @@
|
|
|
2529
2508
|
}
|
|
2530
2509
|
.hf-hero {
|
|
2531
2510
|
align-items: center;
|
|
2532
|
-
background:
|
|
2533
|
-
linear-gradient(
|
|
2534
|
-
145deg,
|
|
2535
|
-
#fff,
|
|
2536
|
-
#f1f8ff);
|
|
2511
|
+
background: var(--hf-color-surface);
|
|
2537
2512
|
border: 1px solid var(--hf-color-border);
|
|
2538
|
-
border-radius:
|
|
2513
|
+
border-radius: var(--hf-radius-panel);
|
|
2539
2514
|
display: grid;
|
|
2540
2515
|
gap: 40px;
|
|
2541
2516
|
grid-template-columns: minmax(0, 1fr) minmax(300px, .85fr);
|
|
2542
|
-
min-height:
|
|
2517
|
+
min-height: 360px;
|
|
2543
2518
|
overflow: hidden;
|
|
2544
|
-
padding: clamp(
|
|
2519
|
+
padding: clamp(28px, 4vw, 48px);
|
|
2545
2520
|
position: relative;
|
|
2546
2521
|
}
|
|
2547
2522
|
.hf-hero__content {
|
|
@@ -2557,9 +2532,9 @@
|
|
|
2557
2532
|
text-transform: uppercase;
|
|
2558
2533
|
}
|
|
2559
2534
|
.hf-hero h1 {
|
|
2560
|
-
font-size: clamp(
|
|
2561
|
-
letter-spacing: -.
|
|
2562
|
-
line-height: 1.
|
|
2535
|
+
font-size: clamp(34px, 4vw, 52px);
|
|
2536
|
+
letter-spacing: -.045em;
|
|
2537
|
+
line-height: 1.08;
|
|
2563
2538
|
margin: 0;
|
|
2564
2539
|
max-width: 780px;
|
|
2565
2540
|
}
|
|
@@ -2597,37 +2572,6 @@
|
|
|
2597
2572
|
margin-left: auto;
|
|
2598
2573
|
margin-right: auto;
|
|
2599
2574
|
}
|
|
2600
|
-
.hf-hero--personal {
|
|
2601
|
-
background:
|
|
2602
|
-
linear-gradient(
|
|
2603
|
-
145deg,
|
|
2604
|
-
#fff 40%,
|
|
2605
|
-
#eef5ff);
|
|
2606
|
-
}
|
|
2607
|
-
.hf-hero--event:after {
|
|
2608
|
-
background:
|
|
2609
|
-
radial-gradient(
|
|
2610
|
-
circle,
|
|
2611
|
-
var(--hf-color-primary) 0 2px,
|
|
2612
|
-
transparent 3px);
|
|
2613
|
-
background-size: 22px 22px;
|
|
2614
|
-
content: "";
|
|
2615
|
-
inset: 0;
|
|
2616
|
-
mask-image:
|
|
2617
|
-
linear-gradient(
|
|
2618
|
-
90deg,
|
|
2619
|
-
transparent 30%,
|
|
2620
|
-
#000);
|
|
2621
|
-
opacity: .12;
|
|
2622
|
-
position: absolute;
|
|
2623
|
-
}
|
|
2624
|
-
.hf-hero--commerce {
|
|
2625
|
-
background:
|
|
2626
|
-
linear-gradient(
|
|
2627
|
-
145deg,
|
|
2628
|
-
#fff,
|
|
2629
|
-
#edf7ff);
|
|
2630
|
-
}
|
|
2631
2575
|
@media (max-width: 760px) {
|
|
2632
2576
|
.hf-auth--split {
|
|
2633
2577
|
grid-template-columns: 1fr;
|
|
@@ -3107,8 +3051,7 @@
|
|
|
3107
3051
|
}
|
|
3108
3052
|
.hf-loading-overlay__veil {
|
|
3109
3053
|
align-items: center;
|
|
3110
|
-
|
|
3111
|
-
background: color-mix(in srgb, var(--hf-color-surface) 78%, transparent);
|
|
3054
|
+
background: color-mix(in srgb, var(--hf-color-surface) 94%, var(--hf-color-primary));
|
|
3112
3055
|
border-radius: inherit;
|
|
3113
3056
|
display: flex;
|
|
3114
3057
|
flex-direction: column;
|
|
@@ -3191,8 +3134,8 @@
|
|
|
3191
3134
|
.hf-combobox__menu {
|
|
3192
3135
|
background: var(--hf-color-surface);
|
|
3193
3136
|
border: 1px solid var(--hf-color-border);
|
|
3194
|
-
border-radius:
|
|
3195
|
-
box-shadow: var(--hf-shadow-
|
|
3137
|
+
border-radius: var(--hf-radius-overlay);
|
|
3138
|
+
box-shadow: var(--hf-shadow-popover);
|
|
3196
3139
|
display: grid;
|
|
3197
3140
|
gap: 2px;
|
|
3198
3141
|
left: 0;
|
|
@@ -3321,8 +3264,8 @@
|
|
|
3321
3264
|
.hf-popconfirm__panel {
|
|
3322
3265
|
background: var(--hf-color-surface);
|
|
3323
3266
|
border: 1px solid var(--hf-color-border);
|
|
3324
|
-
border-radius:
|
|
3325
|
-
box-shadow: var(--hf-shadow-
|
|
3267
|
+
border-radius: var(--hf-radius-overlay);
|
|
3268
|
+
box-shadow: var(--hf-shadow-popover);
|
|
3326
3269
|
display: grid;
|
|
3327
3270
|
gap: 8px;
|
|
3328
3271
|
padding: 16px;
|
|
@@ -3636,8 +3579,8 @@
|
|
|
3636
3579
|
.hf-dropdown__menu {
|
|
3637
3580
|
background: var(--hf-color-surface);
|
|
3638
3581
|
border: 1px solid var(--hf-color-border);
|
|
3639
|
-
border-radius:
|
|
3640
|
-
box-shadow: var(--hf-shadow-
|
|
3582
|
+
border-radius: var(--hf-radius-overlay);
|
|
3583
|
+
box-shadow: var(--hf-shadow-popover);
|
|
3641
3584
|
display: grid;
|
|
3642
3585
|
min-width: 220px;
|
|
3643
3586
|
padding: 6px;
|
|
@@ -3695,9 +3638,9 @@
|
|
|
3695
3638
|
}
|
|
3696
3639
|
.hf-command {
|
|
3697
3640
|
background: var(--hf-color-surface);
|
|
3698
|
-
border: 1px solid
|
|
3699
|
-
border-radius:
|
|
3700
|
-
box-shadow:
|
|
3641
|
+
border: 1px solid var(--hf-color-border);
|
|
3642
|
+
border-radius: var(--hf-radius-overlay);
|
|
3643
|
+
box-shadow: var(--hf-shadow-modal);
|
|
3701
3644
|
max-width: 620px;
|
|
3702
3645
|
overflow: hidden;
|
|
3703
3646
|
width: 100%;
|
|
@@ -3811,8 +3754,8 @@
|
|
|
3811
3754
|
.hf-tree-select > div {
|
|
3812
3755
|
background: var(--hf-color-surface);
|
|
3813
3756
|
border: 1px solid var(--hf-color-border);
|
|
3814
|
-
border-radius:
|
|
3815
|
-
box-shadow: var(--hf-shadow-
|
|
3757
|
+
border-radius: var(--hf-radius-overlay);
|
|
3758
|
+
box-shadow: var(--hf-shadow-popover);
|
|
3816
3759
|
display: grid;
|
|
3817
3760
|
left: 0;
|
|
3818
3761
|
max-height: 260px;
|
|
@@ -3972,8 +3915,8 @@
|
|
|
3972
3915
|
.hf-color-picker__panel {
|
|
3973
3916
|
background: var(--hf-color-surface);
|
|
3974
3917
|
border: 1px solid var(--hf-color-border);
|
|
3975
|
-
border-radius:
|
|
3976
|
-
box-shadow: var(--hf-shadow-
|
|
3918
|
+
border-radius: var(--hf-radius-overlay);
|
|
3919
|
+
box-shadow: var(--hf-shadow-popover);
|
|
3977
3920
|
display: grid;
|
|
3978
3921
|
gap: 12px;
|
|
3979
3922
|
left: 0;
|
|
@@ -4016,8 +3959,8 @@
|
|
|
4016
3959
|
.hf-context-menu {
|
|
4017
3960
|
background: var(--hf-color-surface);
|
|
4018
3961
|
border: 1px solid var(--hf-color-border);
|
|
4019
|
-
border-radius:
|
|
4020
|
-
box-shadow: var(--hf-shadow-
|
|
3962
|
+
border-radius: var(--hf-radius-overlay);
|
|
3963
|
+
box-shadow: var(--hf-shadow-popover);
|
|
4021
3964
|
display: grid;
|
|
4022
3965
|
min-width: 190px;
|
|
4023
3966
|
padding: 6px;
|
|
@@ -4202,8 +4145,8 @@
|
|
|
4202
4145
|
.hf-mention-input__menu {
|
|
4203
4146
|
background: var(--hf-color-surface);
|
|
4204
4147
|
border: 1px solid var(--hf-color-border);
|
|
4205
|
-
border-radius:
|
|
4206
|
-
box-shadow: var(--hf-shadow-
|
|
4148
|
+
border-radius: var(--hf-radius-overlay);
|
|
4149
|
+
box-shadow: var(--hf-shadow-popover);
|
|
4207
4150
|
display: grid;
|
|
4208
4151
|
left: 0;
|
|
4209
4152
|
padding: 5px;
|
|
@@ -5473,8 +5416,8 @@
|
|
|
5473
5416
|
.hf-model-selector__menu {
|
|
5474
5417
|
background: var(--hf-color-surface);
|
|
5475
5418
|
border: 1px solid var(--hf-color-border);
|
|
5476
|
-
border-radius:
|
|
5477
|
-
box-shadow: var(--hf-shadow-
|
|
5419
|
+
border-radius: var(--hf-radius-overlay);
|
|
5420
|
+
box-shadow: var(--hf-shadow-popover);
|
|
5478
5421
|
display: grid;
|
|
5479
5422
|
left: 0;
|
|
5480
5423
|
min-width: 300px;
|
|
@@ -6193,8 +6136,8 @@
|
|
|
6193
6136
|
.hf-member-picker__menu {
|
|
6194
6137
|
background: var(--hf-color-surface);
|
|
6195
6138
|
border: 1px solid var(--hf-color-border);
|
|
6196
|
-
border-radius:
|
|
6197
|
-
box-shadow: var(--hf-shadow-
|
|
6139
|
+
border-radius: var(--hf-radius-overlay);
|
|
6140
|
+
box-shadow: var(--hf-shadow-popover);
|
|
6198
6141
|
display: grid;
|
|
6199
6142
|
padding: 5px;
|
|
6200
6143
|
position: absolute;
|