@telia/teddy 0.0.27 → 0.0.28
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/components/accordion/accordion-root.cjs +14 -14
- package/dist/components/accordion/accordion-root.js +14 -14
- package/dist/components/card/card.d.ts +1 -1
- package/dist/components/chip/chip-indicator.d.ts +2 -2
- package/dist/components/chip/index.d.ts +2 -2
- package/dist/components/index.cjs +4 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +4 -0
- package/dist/components/modal/modal.cjs +2 -0
- package/dist/components/modal/modal.js +2 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-desktop.cjs +9 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-desktop.d.ts +4 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-desktop.js +9 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-mobile.cjs +21 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-mobile.d.ts +4 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-mobile.js +21 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-my-pages.cjs +369 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-my-pages.d.ts +8 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-my-pages.js +369 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-root.cjs +12 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-root.d.ts +33 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-root.js +12 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-search-field.cjs +37 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-search-field.d.ts +10 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-search-field.js +37 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-search.cjs +12 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-search.d.ts +8 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-search.js +12 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-shopping-cart.cjs +11 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-shopping-cart.d.ts +4 -0
- package/dist/components/navigation-menu/global-navigation/global-navigation-shopping-cart.js +11 -0
- package/dist/components/navigation-menu/global-navigation/index.cjs +4 -0
- package/dist/components/navigation-menu/global-navigation/index.d.ts +6 -0
- package/dist/components/navigation-menu/global-navigation/index.js +4 -0
- package/dist/components/navigation-menu/global-navigation/utils.cjs +318 -0
- package/dist/components/navigation-menu/global-navigation/utils.d.ts +496 -0
- package/dist/components/navigation-menu/global-navigation/utils.js +318 -0
- package/dist/components/navigation-menu/index.cjs +2 -0
- package/dist/components/navigation-menu/index.d.ts +1 -0
- package/dist/components/navigation-menu/index.js +2 -0
- package/dist/components/navigation-menu/navigation-menu.cjs +49 -23
- package/dist/components/navigation-menu/navigation-menu.d.ts +5 -0
- package/dist/components/navigation-menu/navigation-menu.js +50 -24
- package/dist/components/notification/notification.d.ts +2 -2
- package/dist/components/tabs/index.d.ts +1 -1
- package/dist/components/tabs/tabs-trigger.d.ts +1 -1
- package/dist/components/toggle/toggle.d.ts +2 -2
- package/dist/components/tooltip/index.cjs +22 -0
- package/dist/components/tooltip/index.d.ts +40 -0
- package/dist/components/tooltip/index.js +22 -0
- package/dist/components/tooltip/tooltip-arrow.cjs +33 -0
- package/dist/components/tooltip/tooltip-arrow.d.ts +6 -0
- package/dist/components/tooltip/tooltip-arrow.js +16 -0
- package/dist/components/tooltip/tooltip-content.cjs +46 -0
- package/dist/components/tooltip/tooltip-content.d.ts +80 -0
- package/dist/components/tooltip/tooltip-content.js +29 -0
- package/dist/components/tooltip/tooltip-portal.cjs +26 -0
- package/dist/components/tooltip/tooltip-portal.d.ts +7 -0
- package/dist/components/tooltip/tooltip-portal.js +9 -0
- package/dist/components/tooltip/tooltip-provider.cjs +30 -0
- package/dist/components/tooltip/tooltip-provider.d.ts +9 -0
- package/dist/components/tooltip/tooltip-provider.js +13 -0
- package/dist/components/tooltip/tooltip-root.cjs +36 -0
- package/dist/components/tooltip/tooltip-root.d.ts +25 -0
- package/dist/components/tooltip/tooltip-root.js +19 -0
- package/dist/components/tooltip/tooltip-trigger.cjs +38 -0
- package/dist/components/tooltip/tooltip-trigger.d.ts +6 -0
- package/dist/components/tooltip/tooltip-trigger.js +21 -0
- package/dist/main.cjs +4 -0
- package/dist/main.js +4 -0
- package/dist/style.css +731 -594
- package/dist/tooltip.module-D_3DOZOn.cjs +15 -0
- package/dist/tooltip.module-DnKU2XS4.js +16 -0
- package/dist/utils/generate-styling/grid.d.ts +24 -24
- package/dist/utils/generate-styling/index.d.ts +16 -16
- package/dist/utils/generate-styling/util.d.ts +2 -2
- package/package.json +2 -1
package/dist/style.css
CHANGED
|
@@ -1,57 +1,123 @@
|
|
|
1
|
-
._teddy-
|
|
1
|
+
._teddy-tooltip__content_14d9w_1 {
|
|
2
2
|
box-sizing: border-box;
|
|
3
|
+
max-width: calc(17rem * var(--teddy-rescale));
|
|
4
|
+
border-radius: var(--teddy-border-radius-md);
|
|
5
|
+
padding: var(--teddy-spacing-150);
|
|
6
|
+
user-select: none;
|
|
7
|
+
animation-duration: var(--teddy-motion-duration-400);
|
|
8
|
+
animation-timing-function: var(--teddy-motion-easing-ease-out);
|
|
9
|
+
will-change: transform, opacity;
|
|
10
|
+
background-color: var(--teddy-color-background-tone-on-tone-primary);
|
|
11
|
+
color: var(--teddy-color-text-tone-on-tone-primary);
|
|
3
12
|
}
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
display: flex;
|
|
8
|
-
}
|
|
9
|
-
}._teddy-list__illustration_7z0zv_1 {
|
|
10
|
-
flex: 0 0 auto;
|
|
11
|
-
width: fit-content;
|
|
12
|
-
}
|
|
13
|
-
._teddy-list__illustration--icon_7z0zv_5 {
|
|
14
|
-
padding: var(--teddy-spacing-200);
|
|
15
|
-
display: grid;
|
|
16
|
-
place-items: center;
|
|
17
|
-
border-radius: var(--teddy-border-radius-full);
|
|
18
|
-
}
|
|
19
|
-
._teddy-list__illustration--icon-white_7z0zv_11 {
|
|
20
|
-
background-color: var(--teddy-color-background-primary);
|
|
21
|
-
}
|
|
22
|
-
._teddy-list__illustration--icon-purple_7z0zv_14 {
|
|
23
|
-
background-color: var(--teddy-color-brand-deep-purple);
|
|
24
|
-
color: var(--teddy-color-text-default-negative);
|
|
13
|
+
._teddy-tooltip__content_14d9w_1._teddy-tooltip--negative_14d9w_13 {
|
|
14
|
+
background-color: var(--teddy-color-background-tone-on-tone-secondary);
|
|
15
|
+
color: var(--teddy-color-text-tone-on-tone-secondary);
|
|
25
16
|
}
|
|
26
|
-
._teddy-
|
|
27
|
-
|
|
17
|
+
._teddy-tooltip__arrow_14d9w_17 {
|
|
18
|
+
fill: var(--teddy-color-background-tone-on-tone-primary);
|
|
28
19
|
}
|
|
29
|
-
._teddy-
|
|
30
|
-
|
|
20
|
+
._teddy-tooltip--negative_14d9w_13 ._teddy-tooltip__arrow_14d9w_17 {
|
|
21
|
+
fill: var(--teddy-color-background-tone-on-tone-secondary);
|
|
31
22
|
}
|
|
32
|
-
|
|
33
|
-
|
|
23
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
24
|
+
._teddy-tooltip__content_14d9w_1[data-state=delayed-open][data-side=top] {
|
|
25
|
+
animation-name: _slideDownAndFade_14d9w_1;
|
|
26
|
+
}
|
|
27
|
+
._teddy-tooltip__content_14d9w_1[data-state=delayed-open][data-side=right] {
|
|
28
|
+
animation-name: _slideLeftAndFade_14d9w_1;
|
|
29
|
+
}
|
|
30
|
+
._teddy-tooltip__content_14d9w_1[data-state=delayed-open][data-side=bottom] {
|
|
31
|
+
animation-name: _slideUpAndFade_14d9w_1;
|
|
32
|
+
}
|
|
33
|
+
._teddy-tooltip__content_14d9w_1[data-state=delayed-open][data-side=left] {
|
|
34
|
+
animation-name: _slideRightAndFade_14d9w_1;
|
|
35
|
+
}
|
|
34
36
|
}
|
|
35
|
-
|
|
36
|
-
|
|
37
|
+
|
|
38
|
+
@keyframes _slideUpAndFade_14d9w_1 {
|
|
39
|
+
from {
|
|
40
|
+
opacity: 0;
|
|
41
|
+
transform: translateY(2px);
|
|
42
|
+
scale: 0.9;
|
|
43
|
+
}
|
|
44
|
+
to {
|
|
45
|
+
opacity: 1;
|
|
46
|
+
transform: translateY(0);
|
|
47
|
+
}
|
|
37
48
|
}
|
|
38
|
-
@
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
49
|
+
@keyframes _slideRightAndFade_14d9w_1 {
|
|
50
|
+
from {
|
|
51
|
+
opacity: 0;
|
|
52
|
+
scale: 0.9;
|
|
53
|
+
transform: translateX(-2px);
|
|
43
54
|
}
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
55
|
+
to {
|
|
56
|
+
opacity: 1;
|
|
57
|
+
transform: translateX(0);
|
|
47
58
|
}
|
|
48
59
|
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
60
|
+
@keyframes _slideDownAndFade_14d9w_1 {
|
|
61
|
+
from {
|
|
62
|
+
opacity: 0;
|
|
63
|
+
scale: 0.9;
|
|
64
|
+
transform: translateY(-2px);
|
|
65
|
+
}
|
|
66
|
+
to {
|
|
67
|
+
opacity: 1;
|
|
68
|
+
transform: translateY(0);
|
|
69
|
+
}
|
|
52
70
|
}
|
|
53
|
-
|
|
54
|
-
|
|
71
|
+
@keyframes _slideLeftAndFade_14d9w_1 {
|
|
72
|
+
from {
|
|
73
|
+
opacity: 0;
|
|
74
|
+
scale: 0.9;
|
|
75
|
+
transform: translateX(2px);
|
|
76
|
+
}
|
|
77
|
+
to {
|
|
78
|
+
opacity: 1;
|
|
79
|
+
transform: translateX(0);
|
|
80
|
+
}
|
|
81
|
+
}@layer icon {
|
|
82
|
+
._teddy-icon_1rwgf_2 {
|
|
83
|
+
display: inline;
|
|
84
|
+
align-self: center;
|
|
85
|
+
fill: currentColor;
|
|
86
|
+
}
|
|
87
|
+
._teddy-icon--font_1rwgf_7 {
|
|
88
|
+
width: 1em;
|
|
89
|
+
height: 1em;
|
|
90
|
+
}
|
|
91
|
+
._teddy-icon--xxs_1rwgf_11 {
|
|
92
|
+
width: var(--teddy-spacing-150);
|
|
93
|
+
height: var(--teddy-spacing-150);
|
|
94
|
+
}
|
|
95
|
+
._teddy-icon--xs_1rwgf_15 {
|
|
96
|
+
width: var(--teddy-spacing-200);
|
|
97
|
+
height: var(--teddy-spacing-200);
|
|
98
|
+
}
|
|
99
|
+
._teddy-icon--sm_1rwgf_19 {
|
|
100
|
+
width: var(--teddy-spacing-250);
|
|
101
|
+
height: var(--teddy-spacing-250);
|
|
102
|
+
}
|
|
103
|
+
._teddy-icon--md_1rwgf_23 {
|
|
104
|
+
width: var(--teddy-spacing-300);
|
|
105
|
+
height: var(--teddy-spacing-300);
|
|
106
|
+
}
|
|
107
|
+
._teddy-icon--lg_1rwgf_27 {
|
|
108
|
+
width: var(--teddy-spacing-400);
|
|
109
|
+
height: var(--teddy-spacing-400);
|
|
110
|
+
}
|
|
111
|
+
._teddy-icon--xl_1rwgf_31 {
|
|
112
|
+
width: var(--teddy-spacing-600);
|
|
113
|
+
height: var(--teddy-spacing-600);
|
|
114
|
+
}
|
|
115
|
+
._teddy-icon-with-children_1rwgf_35 {
|
|
116
|
+
display: inline-flex;
|
|
117
|
+
align-items: center;
|
|
118
|
+
font-family: var(--teddy-typography-family-default);
|
|
119
|
+
gap: var(--teddy-spacing-100);
|
|
120
|
+
}
|
|
55
121
|
}._teddy-spinner--xxs_ywden_1 {
|
|
56
122
|
height: var(--teddy-spacing-250);
|
|
57
123
|
width: var(--teddy-spacing-250);
|
|
@@ -389,46 +455,60 @@
|
|
|
389
455
|
._teddy-button--icon-only_aswkh_56 ._teddy-button__loading_aswkh_261 {
|
|
390
456
|
background-color: var(--teddy-color-gray-100);
|
|
391
457
|
}
|
|
392
|
-
}
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
width: 1em;
|
|
400
|
-
height: 1em;
|
|
401
|
-
}
|
|
402
|
-
._teddy-icon--xxs_1rwgf_11 {
|
|
403
|
-
width: var(--teddy-spacing-150);
|
|
404
|
-
height: var(--teddy-spacing-150);
|
|
405
|
-
}
|
|
406
|
-
._teddy-icon--xs_1rwgf_15 {
|
|
407
|
-
width: var(--teddy-spacing-200);
|
|
408
|
-
height: var(--teddy-spacing-200);
|
|
409
|
-
}
|
|
410
|
-
._teddy-icon--sm_1rwgf_19 {
|
|
411
|
-
width: var(--teddy-spacing-250);
|
|
412
|
-
height: var(--teddy-spacing-250);
|
|
413
|
-
}
|
|
414
|
-
._teddy-icon--md_1rwgf_23 {
|
|
415
|
-
width: var(--teddy-spacing-300);
|
|
416
|
-
height: var(--teddy-spacing-300);
|
|
417
|
-
}
|
|
418
|
-
._teddy-icon--lg_1rwgf_27 {
|
|
419
|
-
width: var(--teddy-spacing-400);
|
|
420
|
-
height: var(--teddy-spacing-400);
|
|
458
|
+
}._teddy-flex_1ncy4_1 {
|
|
459
|
+
box-sizing: border-box;
|
|
460
|
+
}
|
|
461
|
+
|
|
462
|
+
@layer flex {
|
|
463
|
+
._teddy-flex_1ncy4_1 {
|
|
464
|
+
display: flex;
|
|
421
465
|
}
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
466
|
+
}._teddy-list__illustration_7z0zv_1 {
|
|
467
|
+
flex: 0 0 auto;
|
|
468
|
+
width: fit-content;
|
|
469
|
+
}
|
|
470
|
+
._teddy-list__illustration--icon_7z0zv_5 {
|
|
471
|
+
padding: var(--teddy-spacing-200);
|
|
472
|
+
display: grid;
|
|
473
|
+
place-items: center;
|
|
474
|
+
border-radius: var(--teddy-border-radius-full);
|
|
475
|
+
}
|
|
476
|
+
._teddy-list__illustration--icon-white_7z0zv_11 {
|
|
477
|
+
background-color: var(--teddy-color-background-primary);
|
|
478
|
+
}
|
|
479
|
+
._teddy-list__illustration--icon-purple_7z0zv_14 {
|
|
480
|
+
background-color: var(--teddy-color-brand-deep-purple);
|
|
481
|
+
color: var(--teddy-color-text-default-negative);
|
|
482
|
+
}
|
|
483
|
+
._teddy-list__illustration--icon-gray_7z0zv_18 {
|
|
484
|
+
background-color: var(--teddy-color-background-secondary);
|
|
485
|
+
}
|
|
486
|
+
._teddy-list__illustration--icon-beige_7z0zv_21 {
|
|
487
|
+
background-color: var(--teddy-color-brand-beige);
|
|
488
|
+
}
|
|
489
|
+
._teddy-list--vertical_7z0zv_24 ._teddy-list__item_7z0zv_24 {
|
|
490
|
+
align-items: center;
|
|
491
|
+
}
|
|
492
|
+
._teddy-list--horizontal_7z0zv_27 ._teddy-list__item_7z0zv_24 {
|
|
493
|
+
flex-direction: row;
|
|
494
|
+
}
|
|
495
|
+
@media (min-width: 600px) {
|
|
496
|
+
._teddy-list--horizontal_7z0zv_27 ._teddy-list__item_7z0zv_24 {
|
|
497
|
+
flex: 1;
|
|
498
|
+
flex-direction: column;
|
|
499
|
+
margin-bottom: 0;
|
|
425
500
|
}
|
|
426
|
-
._teddy-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
font-family: var(--teddy-typography-family-default);
|
|
430
|
-
gap: var(--teddy-spacing-100);
|
|
501
|
+
._teddy-list--horizontal_7z0zv_27 ._teddy-list__illustration_7z0zv_1 {
|
|
502
|
+
margin-right: 0;
|
|
503
|
+
margin-bottom: var(--teddy-spacing-150);
|
|
431
504
|
}
|
|
505
|
+
}
|
|
506
|
+
._teddy-list__item_7z0zv_24 {
|
|
507
|
+
list-style-type: none;
|
|
508
|
+
display: flex;
|
|
509
|
+
}
|
|
510
|
+
._teddy-list__illustration_7z0zv_1 {
|
|
511
|
+
margin-right: var(--teddy-spacing-150);
|
|
432
512
|
}@layer button, scroll-area;
|
|
433
513
|
@layer scroll-area {
|
|
434
514
|
._teddy-scroll-area_1y01l_3 {
|
|
@@ -1525,7 +1605,7 @@
|
|
|
1525
1605
|
}
|
|
1526
1606
|
._teddy-visually-hidden--focusable_15nus_15:not(:focus):not(:focus-within):not(caption) {
|
|
1527
1607
|
position: absolute;
|
|
1528
|
-
}._teddy-navigation-
|
|
1608
|
+
}._teddy-navigation-menu_h8tnl_1 {
|
|
1529
1609
|
--item-gap: var(--teddy-spacing-200);
|
|
1530
1610
|
--width-for-centering-element: calc((100% - var(--teddy-breakpoint-xl) + var(--teddy-spacing-600) * 2) / 2);
|
|
1531
1611
|
--inline-padding: calc(var(--teddy-spacing-200) - var(--item-gap));
|
|
@@ -1533,18 +1613,19 @@
|
|
|
1533
1613
|
display: flex;
|
|
1534
1614
|
flex-direction: column;
|
|
1535
1615
|
width: auto;
|
|
1616
|
+
background-color: var(--teddy-color-background-primary);
|
|
1536
1617
|
}
|
|
1537
1618
|
@media (min-width: 600px) {
|
|
1538
|
-
._teddy-navigation-
|
|
1619
|
+
._teddy-navigation-menu_h8tnl_1 {
|
|
1539
1620
|
--inline-padding: calc(var(--teddy-spacing-300) - var(--item-gap));
|
|
1540
1621
|
}
|
|
1541
1622
|
}
|
|
1542
1623
|
@media (min-width: 1440px) {
|
|
1543
|
-
._teddy-navigation-
|
|
1624
|
+
._teddy-navigation-menu_h8tnl_1 {
|
|
1544
1625
|
--inline-padding: calc(var(--teddy-spacing-400) - var(--item-gap));
|
|
1545
1626
|
}
|
|
1546
1627
|
}
|
|
1547
|
-
._teddy-navigation-
|
|
1628
|
+
._teddy-navigation-menu_h8tnl_1::after {
|
|
1548
1629
|
content: "";
|
|
1549
1630
|
position: absolute;
|
|
1550
1631
|
inset: 0;
|
|
@@ -1553,14 +1634,14 @@
|
|
|
1553
1634
|
opacity: 0;
|
|
1554
1635
|
}
|
|
1555
1636
|
@media (prefers-reduced-motion: no-preference) {
|
|
1556
|
-
._teddy-navigation-
|
|
1637
|
+
._teddy-navigation-menu_h8tnl_1::after {
|
|
1557
1638
|
transition: opacity var(--teddy-motion-duration-300) ease;
|
|
1558
1639
|
}
|
|
1559
1640
|
}
|
|
1560
|
-
._teddy-navigation-
|
|
1641
|
+
._teddy-navigation-menu_h8tnl_1:has(._teddy-navigation-menu__viewport_h8tnl_34[data-state=open])::after {
|
|
1561
1642
|
opacity: 1;
|
|
1562
1643
|
}
|
|
1563
|
-
._teddy-navigation-
|
|
1644
|
+
._teddy-navigation-menu__list_h8tnl_37 {
|
|
1564
1645
|
all: unset;
|
|
1565
1646
|
list-style-type: none;
|
|
1566
1647
|
display: flex;
|
|
@@ -1569,17 +1650,17 @@
|
|
|
1569
1650
|
padding-inline: var(--inline-padding);
|
|
1570
1651
|
border-bottom: var(--teddy-border-width-sm) solid var(--teddy-color-border-weak);
|
|
1571
1652
|
}
|
|
1572
|
-
._teddy-navigation-
|
|
1653
|
+
._teddy-navigation-menu__list_h8tnl_37::before {
|
|
1573
1654
|
content: "";
|
|
1574
1655
|
display: block;
|
|
1575
1656
|
width: var(--width-for-centering-element);
|
|
1576
1657
|
}
|
|
1577
|
-
._teddy-navigation-
|
|
1658
|
+
._teddy-navigation-menu__list_h8tnl_37::after {
|
|
1578
1659
|
content: "";
|
|
1579
1660
|
display: block;
|
|
1580
1661
|
width: var(--width-for-centering-element);
|
|
1581
1662
|
}
|
|
1582
|
-
._teddy-navigation-menu__top-menu-
|
|
1663
|
+
._teddy-navigation-menu__top-menu-list_h8tnl_56 {
|
|
1583
1664
|
all: unset;
|
|
1584
1665
|
position: relative;
|
|
1585
1666
|
list-style-type: none;
|
|
@@ -1589,17 +1670,17 @@
|
|
|
1589
1670
|
align-items: center;
|
|
1590
1671
|
padding-inline: var(--inline-padding);
|
|
1591
1672
|
}
|
|
1592
|
-
._teddy-navigation-menu__top-menu-
|
|
1673
|
+
._teddy-navigation-menu__top-menu-list_h8tnl_56::before {
|
|
1593
1674
|
content: "";
|
|
1594
1675
|
display: block;
|
|
1595
1676
|
width: var(--width-for-centering-element);
|
|
1596
1677
|
}
|
|
1597
|
-
._teddy-navigation-menu__top-menu-
|
|
1678
|
+
._teddy-navigation-menu__top-menu-list_h8tnl_56::after {
|
|
1598
1679
|
content: "";
|
|
1599
1680
|
display: block;
|
|
1600
1681
|
width: var(--width-for-centering-element);
|
|
1601
1682
|
}
|
|
1602
|
-
._teddy-navigation-menu__top-menu-
|
|
1683
|
+
._teddy-navigation-menu__top-menu-trigger_h8tnl_76 {
|
|
1603
1684
|
all: unset;
|
|
1604
1685
|
position: relative;
|
|
1605
1686
|
cursor: pointer;
|
|
@@ -1611,17 +1692,20 @@
|
|
|
1611
1692
|
gap: var(--teddy-spacing-50);
|
|
1612
1693
|
color: var(--teddy-color-text-interactive-primary);
|
|
1613
1694
|
font-weight: var(--teddy-typography-weight-medium);
|
|
1695
|
+
white-space: nowrap;
|
|
1614
1696
|
min-width: var(--teddy-spacing-400);
|
|
1615
1697
|
font-size: var(--teddy-typography-scale-100);
|
|
1616
1698
|
line-height: var(--teddy-typography-line-height-loose);
|
|
1617
1699
|
padding: var(--teddy-spacing-250) var(--teddy-spacing-100);
|
|
1700
|
+
text-align: center;
|
|
1618
1701
|
}
|
|
1619
|
-
._teddy-navigation-menu__top-menu-trigger--
|
|
1702
|
+
._teddy-navigation-menu__top-menu-trigger--small_h8tnl_95 {
|
|
1620
1703
|
padding: var(--teddy-spacing-150) var(--teddy-spacing-100);
|
|
1621
1704
|
font-size: var(--teddy-typography-scale-75);
|
|
1622
1705
|
line-height: var(--teddy-typography-line-height-loose);
|
|
1706
|
+
outline-offset: -2px;
|
|
1623
1707
|
}
|
|
1624
|
-
._teddy-navigation-menu__top-menu-trigger--
|
|
1708
|
+
._teddy-navigation-menu__top-menu-trigger--button_h8tnl_101 {
|
|
1625
1709
|
padding: var(--teddy-spacing-100);
|
|
1626
1710
|
min-height: var(--teddy-spacing-600);
|
|
1627
1711
|
border-radius: var(--teddy-border-radius-md);
|
|
@@ -1632,7 +1716,12 @@
|
|
|
1632
1716
|
gap: var(--teddy-spacing-100);
|
|
1633
1717
|
row-gap: var(--teddy-spacing-50);
|
|
1634
1718
|
}
|
|
1635
|
-
|
|
1719
|
+
@media (max-width: 600px) {
|
|
1720
|
+
._teddy-navigation-menu__top-menu-trigger--button_h8tnl_101 {
|
|
1721
|
+
font-size: var(--teddy-typography-scale-75);
|
|
1722
|
+
}
|
|
1723
|
+
}
|
|
1724
|
+
._teddy-navigation-menu__top-menu-trigger_h8tnl_76::after {
|
|
1636
1725
|
content: "";
|
|
1637
1726
|
display: block;
|
|
1638
1727
|
position: absolute;
|
|
@@ -1643,10 +1732,10 @@
|
|
|
1643
1732
|
pointer-events: none;
|
|
1644
1733
|
border-bottom: var(--teddy-border-width-sm) solid var(--teddy-color-purple-500);
|
|
1645
1734
|
}
|
|
1646
|
-
._teddy-navigation-menu__top-menu-trigger--
|
|
1735
|
+
._teddy-navigation-menu__top-menu-trigger--button_h8tnl_101::after {
|
|
1647
1736
|
border: var(--teddy-border-width-sm) solid var(--teddy-color-purple-500);
|
|
1648
1737
|
}
|
|
1649
|
-
._teddy-navigation-menu__top-menu-
|
|
1738
|
+
._teddy-navigation-menu__top-menu-trigger_h8tnl_76:not(._teddy-navigation-menu__top-menu-trigger--button_h8tnl_101)::before {
|
|
1650
1739
|
content: attr(data-text);
|
|
1651
1740
|
content: attr(data-text)/"";
|
|
1652
1741
|
height: 0;
|
|
@@ -1657,43 +1746,43 @@
|
|
|
1657
1746
|
font-weight: var(--teddy-typography-weight-bold);
|
|
1658
1747
|
}
|
|
1659
1748
|
@media speech {
|
|
1660
|
-
._teddy-navigation-menu__top-menu-
|
|
1749
|
+
._teddy-navigation-menu__top-menu-trigger_h8tnl_76:not(._teddy-navigation-menu__top-menu-trigger--button_h8tnl_101)::before {
|
|
1661
1750
|
display: none;
|
|
1662
1751
|
}
|
|
1663
1752
|
}
|
|
1664
|
-
._teddy-navigation-menu__top-menu-
|
|
1753
|
+
._teddy-navigation-menu__top-menu-trigger_h8tnl_76:hover {
|
|
1665
1754
|
background-color: var(--teddy-color-background-interactive-transparent-hover);
|
|
1666
1755
|
}
|
|
1667
|
-
._teddy-navigation-menu__top-menu-
|
|
1756
|
+
._teddy-navigation-menu__top-menu-trigger_h8tnl_76:hover::after {
|
|
1668
1757
|
opacity: 1;
|
|
1669
1758
|
}
|
|
1670
|
-
._teddy-navigation-menu__top-menu-
|
|
1759
|
+
._teddy-navigation-menu__top-menu-trigger_h8tnl_76:active {
|
|
1671
1760
|
background-color: var(--teddy-color-background-interactive-transparent-active);
|
|
1672
1761
|
}
|
|
1673
|
-
._teddy-navigation-menu__top-menu-
|
|
1762
|
+
._teddy-navigation-menu__top-menu-trigger_h8tnl_76:active::after {
|
|
1674
1763
|
opacity: 1;
|
|
1675
1764
|
}
|
|
1676
|
-
._teddy-navigation-menu__top-menu-
|
|
1765
|
+
._teddy-navigation-menu__top-menu-trigger_h8tnl_76[data-state=open] {
|
|
1677
1766
|
font-weight: var(--teddy-typography-weight-bold);
|
|
1678
1767
|
}
|
|
1679
|
-
._teddy-navigation-menu__top-menu-
|
|
1768
|
+
._teddy-navigation-menu__top-menu-trigger_h8tnl_76:has([data-active]), ._teddy-navigation-menu__top-menu-trigger_h8tnl_76[data-active] {
|
|
1680
1769
|
font-weight: var(--teddy-typography-weight-bold);
|
|
1681
1770
|
}
|
|
1682
|
-
._teddy-navigation-menu__top-menu-
|
|
1771
|
+
._teddy-navigation-menu__top-menu-trigger_h8tnl_76:has([data-active])::after, ._teddy-navigation-menu__top-menu-trigger_h8tnl_76[data-active]::after {
|
|
1683
1772
|
border-color: var(--teddy-color-text-interactive-primary);
|
|
1684
1773
|
opacity: 1;
|
|
1685
1774
|
}
|
|
1686
|
-
._teddy-navigation-menu__top-menu-
|
|
1775
|
+
._teddy-navigation-menu__top-menu-trigger_h8tnl_76:focus-visible {
|
|
1687
1776
|
outline: solid var(--teddy-border-width-sm) var(--teddy-color-border-interactive-focus);
|
|
1688
1777
|
}
|
|
1689
|
-
._teddy-navigation-menu__top-menu-
|
|
1778
|
+
._teddy-navigation-menu__top-menu-trigger_h8tnl_76[data-state=open] {
|
|
1690
1779
|
font-weight: var(--teddy-typography-weight-bold);
|
|
1691
1780
|
}
|
|
1692
|
-
._teddy-navigation-menu__top-menu-
|
|
1781
|
+
._teddy-navigation-menu__top-menu-trigger_h8tnl_76[data-state=open]::after {
|
|
1693
1782
|
border-color: var(--teddy-color-text-interactive-primary);
|
|
1694
1783
|
opacity: 1;
|
|
1695
1784
|
}
|
|
1696
|
-
._teddy-navigation-
|
|
1785
|
+
._teddy-navigation-menu__content_h8tnl_178 {
|
|
1697
1786
|
all: unset;
|
|
1698
1787
|
list-style-type: none;
|
|
1699
1788
|
display: flex;
|
|
@@ -1707,37 +1796,37 @@
|
|
|
1707
1796
|
padding-inline: calc(var(--inline-padding) + var(--teddy-spacing-200));
|
|
1708
1797
|
overflow: clip;
|
|
1709
1798
|
}
|
|
1710
|
-
._teddy-navigation-
|
|
1799
|
+
._teddy-navigation-menu__content_h8tnl_178 > ul {
|
|
1711
1800
|
list-style: none;
|
|
1712
1801
|
display: flex;
|
|
1713
1802
|
margin: 0;
|
|
1714
1803
|
padding: 0;
|
|
1715
1804
|
}
|
|
1716
1805
|
@media (prefers-reduced-motion: no-preference) {
|
|
1717
|
-
._teddy-navigation-
|
|
1806
|
+
._teddy-navigation-menu__content_h8tnl_178 {
|
|
1718
1807
|
animation-duration: var(--teddy-motion-duration-300);
|
|
1719
1808
|
animation-timing-function: ease;
|
|
1720
1809
|
}
|
|
1721
|
-
._teddy-navigation-
|
|
1722
|
-
animation-name:
|
|
1810
|
+
._teddy-navigation-menu__content_h8tnl_178[data-motion=from-start] {
|
|
1811
|
+
animation-name: _enterFromLeft_h8tnl_1;
|
|
1723
1812
|
}
|
|
1724
|
-
._teddy-navigation-
|
|
1725
|
-
animation-name:
|
|
1813
|
+
._teddy-navigation-menu__content_h8tnl_178[data-motion=from-end] {
|
|
1814
|
+
animation-name: _enterFromRight_h8tnl_1;
|
|
1726
1815
|
}
|
|
1727
|
-
._teddy-navigation-
|
|
1728
|
-
animation-name:
|
|
1816
|
+
._teddy-navigation-menu__content_h8tnl_178[data-motion=to-start] {
|
|
1817
|
+
animation-name: _exitToLeft_h8tnl_1;
|
|
1729
1818
|
}
|
|
1730
|
-
._teddy-navigation-
|
|
1731
|
-
animation-name:
|
|
1819
|
+
._teddy-navigation-menu__content_h8tnl_178[data-motion=to-end] {
|
|
1820
|
+
animation-name: _exitToRight_h8tnl_1;
|
|
1732
1821
|
}
|
|
1733
1822
|
}
|
|
1734
|
-
._teddy-navigation-
|
|
1823
|
+
._teddy-navigation-menu__content_h8tnl_178::before {
|
|
1735
1824
|
content: "";
|
|
1736
1825
|
position: absolute;
|
|
1737
1826
|
inset: 0;
|
|
1738
1827
|
box-shadow: 0 var(--teddy-border-width-lg) var(--teddy-border-width-lg) calc(var(--teddy-border-width-md) * -1) var(--teddy-color-border-weak);
|
|
1739
1828
|
}
|
|
1740
|
-
._teddy-navigation-
|
|
1829
|
+
._teddy-navigation-menu__trigger_h8tnl_222 {
|
|
1741
1830
|
position: relative;
|
|
1742
1831
|
all: unset;
|
|
1743
1832
|
position: relative;
|
|
@@ -1750,17 +1839,20 @@
|
|
|
1750
1839
|
gap: var(--teddy-spacing-50);
|
|
1751
1840
|
color: var(--teddy-color-text-interactive-primary);
|
|
1752
1841
|
font-weight: var(--teddy-typography-weight-medium);
|
|
1842
|
+
white-space: nowrap;
|
|
1753
1843
|
min-width: var(--teddy-spacing-400);
|
|
1754
1844
|
font-size: var(--teddy-typography-scale-100);
|
|
1755
1845
|
line-height: var(--teddy-typography-line-height-loose);
|
|
1756
1846
|
padding: var(--teddy-spacing-250) var(--teddy-spacing-100);
|
|
1847
|
+
text-align: center;
|
|
1757
1848
|
}
|
|
1758
|
-
._teddy-navigation-menu__trigger--
|
|
1849
|
+
._teddy-navigation-menu__trigger--small_h8tnl_242 {
|
|
1759
1850
|
padding: var(--teddy-spacing-150) var(--teddy-spacing-100);
|
|
1760
1851
|
font-size: var(--teddy-typography-scale-75);
|
|
1761
1852
|
line-height: var(--teddy-typography-line-height-loose);
|
|
1853
|
+
outline-offset: -2px;
|
|
1762
1854
|
}
|
|
1763
|
-
._teddy-navigation-menu__trigger--
|
|
1855
|
+
._teddy-navigation-menu__trigger--button_h8tnl_248 {
|
|
1764
1856
|
padding: var(--teddy-spacing-100);
|
|
1765
1857
|
min-height: var(--teddy-spacing-600);
|
|
1766
1858
|
border-radius: var(--teddy-border-radius-md);
|
|
@@ -1771,7 +1863,12 @@
|
|
|
1771
1863
|
gap: var(--teddy-spacing-100);
|
|
1772
1864
|
row-gap: var(--teddy-spacing-50);
|
|
1773
1865
|
}
|
|
1774
|
-
|
|
1866
|
+
@media (max-width: 600px) {
|
|
1867
|
+
._teddy-navigation-menu__trigger--button_h8tnl_248 {
|
|
1868
|
+
font-size: var(--teddy-typography-scale-75);
|
|
1869
|
+
}
|
|
1870
|
+
}
|
|
1871
|
+
._teddy-navigation-menu__trigger_h8tnl_222::after {
|
|
1775
1872
|
content: "";
|
|
1776
1873
|
display: block;
|
|
1777
1874
|
position: absolute;
|
|
@@ -1782,10 +1879,10 @@
|
|
|
1782
1879
|
pointer-events: none;
|
|
1783
1880
|
border-bottom: var(--teddy-border-width-sm) solid var(--teddy-color-purple-500);
|
|
1784
1881
|
}
|
|
1785
|
-
._teddy-navigation-menu__trigger--
|
|
1882
|
+
._teddy-navigation-menu__trigger--button_h8tnl_248::after {
|
|
1786
1883
|
border: var(--teddy-border-width-sm) solid var(--teddy-color-purple-500);
|
|
1787
1884
|
}
|
|
1788
|
-
._teddy-navigation-
|
|
1885
|
+
._teddy-navigation-menu__trigger_h8tnl_222:not(._teddy-navigation-menu__trigger--button_h8tnl_248)::before {
|
|
1789
1886
|
content: attr(data-text);
|
|
1790
1887
|
content: attr(data-text)/"";
|
|
1791
1888
|
height: 0;
|
|
@@ -1796,36 +1893,36 @@
|
|
|
1796
1893
|
font-weight: var(--teddy-typography-weight-bold);
|
|
1797
1894
|
}
|
|
1798
1895
|
@media speech {
|
|
1799
|
-
._teddy-navigation-
|
|
1896
|
+
._teddy-navigation-menu__trigger_h8tnl_222:not(._teddy-navigation-menu__trigger--button_h8tnl_248)::before {
|
|
1800
1897
|
display: none;
|
|
1801
1898
|
}
|
|
1802
1899
|
}
|
|
1803
|
-
._teddy-navigation-
|
|
1900
|
+
._teddy-navigation-menu__trigger_h8tnl_222:hover {
|
|
1804
1901
|
background-color: var(--teddy-color-background-interactive-transparent-hover);
|
|
1805
1902
|
}
|
|
1806
|
-
._teddy-navigation-
|
|
1903
|
+
._teddy-navigation-menu__trigger_h8tnl_222:hover::after {
|
|
1807
1904
|
opacity: 1;
|
|
1808
1905
|
}
|
|
1809
|
-
._teddy-navigation-
|
|
1906
|
+
._teddy-navigation-menu__trigger_h8tnl_222:active {
|
|
1810
1907
|
background-color: var(--teddy-color-background-interactive-transparent-active);
|
|
1811
1908
|
}
|
|
1812
|
-
._teddy-navigation-
|
|
1909
|
+
._teddy-navigation-menu__trigger_h8tnl_222:active::after {
|
|
1813
1910
|
opacity: 1;
|
|
1814
1911
|
}
|
|
1815
|
-
._teddy-navigation-
|
|
1912
|
+
._teddy-navigation-menu__trigger_h8tnl_222[data-state=open] {
|
|
1816
1913
|
font-weight: var(--teddy-typography-weight-bold);
|
|
1817
1914
|
}
|
|
1818
|
-
._teddy-navigation-
|
|
1915
|
+
._teddy-navigation-menu__trigger_h8tnl_222:has([data-active]), ._teddy-navigation-menu__trigger_h8tnl_222[data-active] {
|
|
1819
1916
|
font-weight: var(--teddy-typography-weight-bold);
|
|
1820
1917
|
}
|
|
1821
|
-
._teddy-navigation-
|
|
1918
|
+
._teddy-navigation-menu__trigger_h8tnl_222:has([data-active])::after, ._teddy-navigation-menu__trigger_h8tnl_222[data-active]::after {
|
|
1822
1919
|
border-color: var(--teddy-color-text-interactive-primary);
|
|
1823
1920
|
opacity: 1;
|
|
1824
1921
|
}
|
|
1825
|
-
._teddy-navigation-
|
|
1922
|
+
._teddy-navigation-menu__trigger_h8tnl_222:focus-visible {
|
|
1826
1923
|
outline: solid var(--teddy-border-width-sm) var(--teddy-color-border-interactive-focus);
|
|
1827
1924
|
}
|
|
1828
|
-
._teddy-navigation-
|
|
1925
|
+
._teddy-navigation-menu__link_h8tnl_318 {
|
|
1829
1926
|
all: unset;
|
|
1830
1927
|
position: relative;
|
|
1831
1928
|
cursor: pointer;
|
|
@@ -1837,18 +1934,21 @@
|
|
|
1837
1934
|
gap: var(--teddy-spacing-50);
|
|
1838
1935
|
color: var(--teddy-color-text-interactive-primary);
|
|
1839
1936
|
font-weight: var(--teddy-typography-weight-medium);
|
|
1937
|
+
white-space: nowrap;
|
|
1840
1938
|
min-width: var(--teddy-spacing-400);
|
|
1841
1939
|
font-size: var(--teddy-typography-scale-100);
|
|
1842
1940
|
line-height: var(--teddy-typography-line-height-loose);
|
|
1843
1941
|
padding: var(--teddy-spacing-250) var(--teddy-spacing-100);
|
|
1942
|
+
text-align: center;
|
|
1844
1943
|
text-decoration: none;
|
|
1845
1944
|
}
|
|
1846
|
-
._teddy-navigation-menu__link--
|
|
1945
|
+
._teddy-navigation-menu__link--small_h8tnl_338 {
|
|
1847
1946
|
padding: var(--teddy-spacing-150) var(--teddy-spacing-100);
|
|
1848
1947
|
font-size: var(--teddy-typography-scale-75);
|
|
1849
1948
|
line-height: var(--teddy-typography-line-height-loose);
|
|
1949
|
+
outline-offset: -2px;
|
|
1850
1950
|
}
|
|
1851
|
-
._teddy-navigation-menu__link--
|
|
1951
|
+
._teddy-navigation-menu__link--button_h8tnl_344 {
|
|
1852
1952
|
padding: var(--teddy-spacing-100);
|
|
1853
1953
|
min-height: var(--teddy-spacing-600);
|
|
1854
1954
|
border-radius: var(--teddy-border-radius-md);
|
|
@@ -1859,7 +1959,12 @@
|
|
|
1859
1959
|
gap: var(--teddy-spacing-100);
|
|
1860
1960
|
row-gap: var(--teddy-spacing-50);
|
|
1861
1961
|
}
|
|
1862
|
-
|
|
1962
|
+
@media (max-width: 600px) {
|
|
1963
|
+
._teddy-navigation-menu__link--button_h8tnl_344 {
|
|
1964
|
+
font-size: var(--teddy-typography-scale-75);
|
|
1965
|
+
}
|
|
1966
|
+
}
|
|
1967
|
+
._teddy-navigation-menu__link_h8tnl_318::after {
|
|
1863
1968
|
content: "";
|
|
1864
1969
|
display: block;
|
|
1865
1970
|
position: absolute;
|
|
@@ -1870,10 +1975,10 @@
|
|
|
1870
1975
|
pointer-events: none;
|
|
1871
1976
|
border-bottom: var(--teddy-border-width-sm) solid var(--teddy-color-purple-500);
|
|
1872
1977
|
}
|
|
1873
|
-
._teddy-navigation-menu__link--
|
|
1978
|
+
._teddy-navigation-menu__link--button_h8tnl_344::after {
|
|
1874
1979
|
border: var(--teddy-border-width-sm) solid var(--teddy-color-purple-500);
|
|
1875
1980
|
}
|
|
1876
|
-
._teddy-navigation-
|
|
1981
|
+
._teddy-navigation-menu__link_h8tnl_318:not(._teddy-navigation-menu__link--button_h8tnl_344)::before {
|
|
1877
1982
|
content: attr(data-text);
|
|
1878
1983
|
content: attr(data-text)/"";
|
|
1879
1984
|
height: 0;
|
|
@@ -1884,36 +1989,36 @@
|
|
|
1884
1989
|
font-weight: var(--teddy-typography-weight-bold);
|
|
1885
1990
|
}
|
|
1886
1991
|
@media speech {
|
|
1887
|
-
._teddy-navigation-
|
|
1992
|
+
._teddy-navigation-menu__link_h8tnl_318:not(._teddy-navigation-menu__link--button_h8tnl_344)::before {
|
|
1888
1993
|
display: none;
|
|
1889
1994
|
}
|
|
1890
1995
|
}
|
|
1891
|
-
._teddy-navigation-
|
|
1996
|
+
._teddy-navigation-menu__link_h8tnl_318:hover {
|
|
1892
1997
|
background-color: var(--teddy-color-background-interactive-transparent-hover);
|
|
1893
1998
|
}
|
|
1894
|
-
._teddy-navigation-
|
|
1999
|
+
._teddy-navigation-menu__link_h8tnl_318:hover::after {
|
|
1895
2000
|
opacity: 1;
|
|
1896
2001
|
}
|
|
1897
|
-
._teddy-navigation-
|
|
2002
|
+
._teddy-navigation-menu__link_h8tnl_318:active {
|
|
1898
2003
|
background-color: var(--teddy-color-background-interactive-transparent-active);
|
|
1899
2004
|
}
|
|
1900
|
-
._teddy-navigation-
|
|
2005
|
+
._teddy-navigation-menu__link_h8tnl_318:active::after {
|
|
1901
2006
|
opacity: 1;
|
|
1902
2007
|
}
|
|
1903
|
-
._teddy-navigation-
|
|
2008
|
+
._teddy-navigation-menu__link_h8tnl_318[data-state=open] {
|
|
1904
2009
|
font-weight: var(--teddy-typography-weight-bold);
|
|
1905
2010
|
}
|
|
1906
|
-
._teddy-navigation-
|
|
2011
|
+
._teddy-navigation-menu__link_h8tnl_318:has([data-active]), ._teddy-navigation-menu__link_h8tnl_318[data-active] {
|
|
1907
2012
|
font-weight: var(--teddy-typography-weight-bold);
|
|
1908
2013
|
}
|
|
1909
|
-
._teddy-navigation-
|
|
2014
|
+
._teddy-navigation-menu__link_h8tnl_318:has([data-active])::after, ._teddy-navigation-menu__link_h8tnl_318[data-active]::after {
|
|
1910
2015
|
border-color: var(--teddy-color-text-interactive-primary);
|
|
1911
2016
|
opacity: 1;
|
|
1912
2017
|
}
|
|
1913
|
-
._teddy-navigation-
|
|
2018
|
+
._teddy-navigation-menu__link_h8tnl_318:focus-visible {
|
|
1914
2019
|
outline: solid var(--teddy-border-width-sm) var(--teddy-color-border-interactive-focus);
|
|
1915
2020
|
}
|
|
1916
|
-
._teddy-navigation-
|
|
2021
|
+
._teddy-navigation-menu__viewport_h8tnl_34 {
|
|
1917
2022
|
position: relative;
|
|
1918
2023
|
background-color: var(--teddy-color-background-primary);
|
|
1919
2024
|
height: var(--radix-navigation-menu-viewport-height);
|
|
@@ -1921,17 +2026,17 @@
|
|
|
1921
2026
|
overflow: clip;
|
|
1922
2027
|
}
|
|
1923
2028
|
@media (prefers-reduced-motion: no-preference) {
|
|
1924
|
-
._teddy-navigation-
|
|
1925
|
-
transition:
|
|
2029
|
+
._teddy-navigation-menu__viewport_h8tnl_34 {
|
|
2030
|
+
transition: height var(--teddy-motion-duration-controlled, 0) ease;
|
|
1926
2031
|
}
|
|
1927
|
-
._teddy-navigation-
|
|
1928
|
-
animation:
|
|
2032
|
+
._teddy-navigation-menu__viewport_h8tnl_34[data-state=open] {
|
|
2033
|
+
animation: _scaleIn_h8tnl_1 var(--teddy-motion-duration-controlled, 0) ease;
|
|
1929
2034
|
}
|
|
1930
|
-
._teddy-navigation-
|
|
1931
|
-
animation:
|
|
2035
|
+
._teddy-navigation-menu__viewport_h8tnl_34[data-state=closed] {
|
|
2036
|
+
animation: _scaleOut_h8tnl_1 var(--teddy-motion-duration-300) ease;
|
|
1932
2037
|
}
|
|
1933
2038
|
}
|
|
1934
|
-
@keyframes
|
|
2039
|
+
@keyframes _scaleIn_h8tnl_1 {
|
|
1935
2040
|
from {
|
|
1936
2041
|
opacity: 0;
|
|
1937
2042
|
transform: scale(0.9);
|
|
@@ -1943,7 +2048,7 @@
|
|
|
1943
2048
|
height: var(--radix-navigation-menu-viewport-height);
|
|
1944
2049
|
}
|
|
1945
2050
|
}
|
|
1946
|
-
@keyframes
|
|
2051
|
+
@keyframes _scaleOut_h8tnl_1 {
|
|
1947
2052
|
from {
|
|
1948
2053
|
opacity: 1;
|
|
1949
2054
|
transform: scale(1);
|
|
@@ -1954,7 +2059,7 @@
|
|
|
1954
2059
|
height: 0;
|
|
1955
2060
|
}
|
|
1956
2061
|
}
|
|
1957
|
-
@keyframes
|
|
2062
|
+
@keyframes _enterFromRight_h8tnl_1 {
|
|
1958
2063
|
from {
|
|
1959
2064
|
opacity: 0;
|
|
1960
2065
|
transform: translateX(200px);
|
|
@@ -1964,7 +2069,7 @@
|
|
|
1964
2069
|
transform: translateX(0);
|
|
1965
2070
|
}
|
|
1966
2071
|
}
|
|
1967
|
-
@keyframes
|
|
2072
|
+
@keyframes _enterFromLeft_h8tnl_1 {
|
|
1968
2073
|
from {
|
|
1969
2074
|
opacity: 0;
|
|
1970
2075
|
transform: translateX(-200px);
|
|
@@ -1974,7 +2079,7 @@
|
|
|
1974
2079
|
transform: translateX(0);
|
|
1975
2080
|
}
|
|
1976
2081
|
}
|
|
1977
|
-
@keyframes
|
|
2082
|
+
@keyframes _exitToRight_h8tnl_1 {
|
|
1978
2083
|
from {
|
|
1979
2084
|
opacity: 1;
|
|
1980
2085
|
transform: translateX(0);
|
|
@@ -1984,7 +2089,7 @@
|
|
|
1984
2089
|
transform: translateX(200px);
|
|
1985
2090
|
}
|
|
1986
2091
|
}
|
|
1987
|
-
@keyframes
|
|
2092
|
+
@keyframes _exitToLeft_h8tnl_1 {
|
|
1988
2093
|
from {
|
|
1989
2094
|
opacity: 1;
|
|
1990
2095
|
transform: translateX(0);
|
|
@@ -1993,222 +2098,302 @@
|
|
|
1993
2098
|
opacity: 0;
|
|
1994
2099
|
transform: translateX(-200px);
|
|
1995
2100
|
}
|
|
1996
|
-
}
|
|
1997
|
-
._teddy-
|
|
1998
|
-
|
|
2101
|
+
}._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--subsection_],
|
|
2102
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--subsection-100_] {
|
|
2103
|
+
margin-bottom: var(--teddy-spacing-50);
|
|
1999
2104
|
}
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2105
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--overline-100_],
|
|
2106
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--additional-100_],
|
|
2107
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--title-100_],
|
|
2108
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--title-200_],
|
|
2109
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--title-300_] {
|
|
2110
|
+
margin-bottom: var(--teddy-spacing-100);
|
|
2111
|
+
}
|
|
2112
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--overline-200_] {
|
|
2113
|
+
margin-bottom: var(--teddy-spacing-150);
|
|
2114
|
+
}
|
|
2115
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-100_],
|
|
2116
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-200_] {
|
|
2117
|
+
margin-bottom: var(--teddy-spacing-200);
|
|
2118
|
+
}
|
|
2119
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-100_] + [class*=_teddy-heading--title-100_],
|
|
2120
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-200_] + [class*=_teddy-heading--title-100_] {
|
|
2121
|
+
margin-top: var(--teddy-spacing-300);
|
|
2122
|
+
}
|
|
2123
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-100_] + [class*=_teddy-heading--title-200_],
|
|
2124
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-200_] + [class*=_teddy-heading--title-200_] {
|
|
2125
|
+
margin-top: var(--teddy-spacing-400);
|
|
2126
|
+
}
|
|
2127
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-100_] + [class*=_teddy-heading--title-300_],
|
|
2128
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-100_] + [class*=_teddy-heading--title-400_],
|
|
2129
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-100_] + [class*=_teddy-heading--title-500_],
|
|
2130
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-100_] + [class*=_teddy-heading--title-600_],
|
|
2131
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-100_] + [class*=_teddy-heading--title-700_],
|
|
2132
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-200_] + [class*=_teddy-heading--title-300_],
|
|
2133
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-200_] + [class*=_teddy-heading--title-400_],
|
|
2134
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-200_] + [class*=_teddy-heading--title-500_],
|
|
2135
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-200_] + [class*=_teddy-heading--title-600_],
|
|
2136
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-200_] + [class*=_teddy-heading--title-700_] {
|
|
2137
|
+
margin-top: var(--teddy-spacing-600);
|
|
2138
|
+
}
|
|
2139
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--title-400_],
|
|
2140
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--title-500_] {
|
|
2141
|
+
margin-bottom: var(--teddy-spacing-250);
|
|
2142
|
+
}
|
|
2143
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--title-600_],
|
|
2144
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--title-700_],
|
|
2145
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--display-25_],
|
|
2146
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--display-50_],
|
|
2147
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--display-100_],
|
|
2148
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--display-200_] {
|
|
2149
|
+
margin-bottom: var(--teddy-spacing-300);
|
|
2150
|
+
}
|
|
2151
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--preamble-100_] {
|
|
2152
|
+
margin-bottom: var(--teddy-spacing-400);
|
|
2153
|
+
}
|
|
2154
|
+
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--preamble-200_] {
|
|
2155
|
+
margin-bottom: var(--teddy-spacing-600);
|
|
2156
|
+
}
|
|
2157
|
+
._teddy-text-spacing_dwbo8_1 * > :last-child,
|
|
2158
|
+
._teddy-text-spacing_dwbo8_1 > :last-child {
|
|
2159
|
+
margin-bottom: 0;
|
|
2160
|
+
}@keyframes _fadeInAnimation_shhej_1 {
|
|
2161
|
+
0% {
|
|
2162
|
+
opacity: 0;
|
|
2033
2163
|
}
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
border-color: var(--teddy-color-functional-transparent);
|
|
2164
|
+
100% {
|
|
2165
|
+
opacity: 1;
|
|
2037
2166
|
}
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2167
|
+
}
|
|
2168
|
+
@keyframes _scaleInAnimation_shhej_1 {
|
|
2169
|
+
0% {
|
|
2170
|
+
scale: 0;
|
|
2041
2171
|
}
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
border-color: var(--teddy-color-functional-transparent);
|
|
2172
|
+
100% {
|
|
2173
|
+
scale: 100%;
|
|
2045
2174
|
}
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2175
|
+
}
|
|
2176
|
+
._teddy-text-field_shhej_17 {
|
|
2177
|
+
box-sizing: border-box;
|
|
2178
|
+
display: grid;
|
|
2179
|
+
grid-template-columns: 1fr auto;
|
|
2180
|
+
column-gap: var(--teddy-spacing-50);
|
|
2181
|
+
grid-template-areas: "label label" "input button" "error-list error-list" "helper-text helper-text";
|
|
2182
|
+
}
|
|
2183
|
+
._teddy-text-field__label_shhej_24 {
|
|
2184
|
+
grid-area: label;
|
|
2185
|
+
}
|
|
2186
|
+
._teddy-text-field__input-group_shhej_27 {
|
|
2187
|
+
grid-area: input;
|
|
2188
|
+
}
|
|
2189
|
+
:has(._teddy-text-field__button--attached_shhej_30) ._teddy-text-field__frame_shhej_30 {
|
|
2190
|
+
border-radius: var(--teddy-border-radius-md) 0 0 var(--teddy-border-radius-md);
|
|
2191
|
+
}
|
|
2192
|
+
._teddy-text-field__button_shhej_30 {
|
|
2193
|
+
grid-area: button;
|
|
2194
|
+
}
|
|
2195
|
+
._teddy-text-field__button--attached_shhej_30 {
|
|
2196
|
+
border-radius: 0 var(--teddy-border-radius-md) var(--teddy-border-radius-md) 0;
|
|
2197
|
+
}
|
|
2198
|
+
._teddy-text-field_shhej_17 > * + * {
|
|
2199
|
+
margin-top: var(--teddy-spacing-50);
|
|
2200
|
+
}
|
|
2201
|
+
._teddy-text-field__helper-text_shhej_42 {
|
|
2202
|
+
grid-area: helper-text;
|
|
2203
|
+
}
|
|
2204
|
+
._teddy-text-field__error-list_shhej_45 {
|
|
2205
|
+
grid-area: error-list;
|
|
2206
|
+
list-style: none;
|
|
2207
|
+
padding: 0;
|
|
2208
|
+
}
|
|
2209
|
+
._teddy-text-field__error-list_shhej_45 > * + * {
|
|
2210
|
+
margin-top: var(--teddy-spacing-50);
|
|
2211
|
+
}@keyframes _fadeInAnimation_mhz8x_1 {
|
|
2212
|
+
0% {
|
|
2213
|
+
opacity: 0;
|
|
2049
2214
|
}
|
|
2050
|
-
|
|
2051
|
-
|
|
2215
|
+
100% {
|
|
2216
|
+
opacity: 1;
|
|
2052
2217
|
}
|
|
2053
|
-
|
|
2054
|
-
|
|
2218
|
+
}
|
|
2219
|
+
@keyframes _scaleInAnimation_mhz8x_1 {
|
|
2220
|
+
0% {
|
|
2221
|
+
scale: 0;
|
|
2055
2222
|
}
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
border-color: var(--teddy-color-border-interactive-primary);
|
|
2223
|
+
100% {
|
|
2224
|
+
scale: 100%;
|
|
2059
2225
|
}
|
|
2060
|
-
|
|
2061
|
-
|
|
2226
|
+
}
|
|
2227
|
+
._teddy-input__input_mhz8x_17 {
|
|
2228
|
+
box-sizing: border-box;
|
|
2229
|
+
}
|
|
2230
|
+
@layer input {
|
|
2231
|
+
._teddy-input_mhz8x_17 {
|
|
2232
|
+
position: relative;
|
|
2233
|
+
cursor: text;
|
|
2234
|
+
display: flex;
|
|
2235
|
+
align-items: center;
|
|
2236
|
+
padding: 0 var(--teddy-spacing-150);
|
|
2237
|
+
gap: var(--teddy-spacing-50);
|
|
2238
|
+
color: var(--teddy-color-text-weak);
|
|
2062
2239
|
}
|
|
2063
|
-
._teddy-
|
|
2064
|
-
border-radius: var(--teddy-border-radius-xs);
|
|
2065
|
-
box-shadow: 0 0 0 var(--teddy-border-width-sm) var(--teddy-color-border-interactive-focus);
|
|
2066
|
-
content: "";
|
|
2067
|
-
opacity: 1;
|
|
2068
|
-
display: block;
|
|
2069
|
-
inset: calc(var(--teddy-spacing-25) * -1);
|
|
2240
|
+
._teddy-input__frame_mhz8x_31 {
|
|
2070
2241
|
position: absolute;
|
|
2242
|
+
inset: 0;
|
|
2243
|
+
border-radius: var(--teddy-border-radius-sm);
|
|
2244
|
+
border: var(--teddy-border-width-xs) solid var(--teddy-color-border-interactive-subtle);
|
|
2071
2245
|
pointer-events: none;
|
|
2246
|
+
z-index: 1;
|
|
2072
2247
|
}
|
|
2073
|
-
._teddy-
|
|
2074
|
-
|
|
2248
|
+
._teddy-input__clear-button_mhz8x_39 {
|
|
2249
|
+
margin-right: calc(var(--teddy-spacing-100) * -1);
|
|
2075
2250
|
}
|
|
2076
|
-
._teddy-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2251
|
+
._teddy-input__input_mhz8x_17 {
|
|
2252
|
+
border-radius: var(--teddy-border-radius-sm);
|
|
2253
|
+
border: none;
|
|
2254
|
+
margin: calc(var(--teddy-spacing-100) + var(--teddy-spacing-25)) 0;
|
|
2255
|
+
font-family: var(--teddy-typography-family-default);
|
|
2256
|
+
font-size: var(--teddy-typography-scale-100);
|
|
2257
|
+
line-height: 150%;
|
|
2258
|
+
overflow: hidden;
|
|
2259
|
+
text-overflow: ellipsis;
|
|
2260
|
+
font-style: normal;
|
|
2261
|
+
font-weight: var(--teddy-typography-weight-normal);
|
|
2262
|
+
outline: none;
|
|
2263
|
+
background: transparent;
|
|
2264
|
+
width: 100%;
|
|
2265
|
+
flex: 1 1 100%;
|
|
2266
|
+
color: var(--teddy-color-text-default);
|
|
2085
2267
|
}
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
will-change: transform;
|
|
2090
|
-
}
|
|
2268
|
+
._teddy-input__input_mhz8x_17:hover ~ ._teddy-input__frame_mhz8x_31 {
|
|
2269
|
+
border-width: var(--teddy-border-width-sm);
|
|
2270
|
+
border-color: var(--teddy-color-border-interactive-subtle-hover);
|
|
2091
2271
|
}
|
|
2092
|
-
._teddy-
|
|
2093
|
-
|
|
2272
|
+
._teddy-input__input_mhz8x_17:active:not(:disabled):not(:read-only) ~ ._teddy-input__frame_mhz8x_31, ._teddy-input__input_mhz8x_17:focus:not(:disabled):not(:read-only) ~ ._teddy-input__frame_mhz8x_31 {
|
|
2273
|
+
outline: var(--teddy-border-width-sm) solid var(--teddy-color-border-interactive-focus);
|
|
2274
|
+
outline-offset: calc(var(--teddy-spacing-10) * 2);
|
|
2275
|
+
border-width: var(--teddy-border-width-xs);
|
|
2276
|
+
border-color: var(--teddy-color-border-interactive-subtle-hover);
|
|
2094
2277
|
}
|
|
2095
|
-
._teddy-
|
|
2096
|
-
|
|
2097
|
-
transform: translate(calc(100% + var(--teddy-spacing-50)), -50%);
|
|
2278
|
+
._teddy-input__input_mhz8x_17:disabled {
|
|
2279
|
+
color: var(--teddy-color-text-weak);
|
|
2098
2280
|
}
|
|
2099
|
-
._teddy-
|
|
2100
|
-
|
|
2281
|
+
._teddy-input__input_mhz8x_17:disabled ~ ._teddy-input__frame_mhz8x_31 {
|
|
2282
|
+
border-width: var(--teddy-border-width-xs);
|
|
2283
|
+
border-color: var(--teddy-color-border-medium);
|
|
2101
2284
|
}
|
|
2102
|
-
._teddy-
|
|
2103
|
-
|
|
2104
|
-
inset: 50% auto auto calc(var(--teddy-spacing-150) + var(--teddy-spacing-10));
|
|
2105
|
-
opacity: 0;
|
|
2106
|
-
scale: 0;
|
|
2107
|
-
transform: translate(-50%, -50%);
|
|
2108
|
-
transform-origin: 0 50%;
|
|
2285
|
+
._teddy-input__input_mhz8x_17:read-only:not(:disabled) {
|
|
2286
|
+
color: var(--teddy-color-text-default);
|
|
2109
2287
|
}
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
transition: opacity var(--teddy-motion-duration-150) ease, scale var(--teddy-motion-duration-150) ease;
|
|
2113
|
-
}
|
|
2288
|
+
._teddy-input__input_mhz8x_17:read-only:not(:disabled) ~ ._teddy-input__frame_mhz8x_31 {
|
|
2289
|
+
border-width: var(--teddy-border-width-xs);
|
|
2114
2290
|
}
|
|
2115
|
-
._teddy-
|
|
2116
|
-
|
|
2117
|
-
|
|
2291
|
+
._teddy-input__input_mhz8x_17:read-only:not(:disabled):not(._teddy-input__input--valid_mhz8x_82):not(._teddy-input__input--invalid_mhz8x_82) ~ ._teddy-input__frame_mhz8x_31 {
|
|
2292
|
+
border-color: var(--teddy-color-border-medium);
|
|
2293
|
+
}
|
|
2294
|
+
._teddy-input__input--valid_mhz8x_82 ~ ._teddy-input__frame_mhz8x_31 {
|
|
2295
|
+
border-color: var(--teddy-color-border-status-success);
|
|
2118
2296
|
}
|
|
2297
|
+
._teddy-input__input--valid_mhz8x_82 ~ ._teddy-input__indicator_mhz8x_88 {
|
|
2298
|
+
color: var(--teddy-color-border-status-success);
|
|
2299
|
+
}
|
|
2300
|
+
._teddy-input__input--error_mhz8x_91:not(:hover) ~ ._teddy-input__frame_mhz8x_31 {
|
|
2301
|
+
border-color: var(--teddy-color-border-status-error);
|
|
2302
|
+
}
|
|
2303
|
+
._teddy-input_mhz8x_17 > *:not(._teddy-input__input_mhz8x_17) {
|
|
2304
|
+
flex: 0 0 auto;
|
|
2305
|
+
}
|
|
2306
|
+
._teddy-input__indicator_mhz8x_88 {
|
|
2307
|
+
animation: _fadeInAnimation_mhz8x_1 ease var(--teddy-motion-duration-300), _scaleInAnimation_mhz8x_1 ease var(--teddy-motion-duration-300);
|
|
2308
|
+
}
|
|
2309
|
+
._teddy-input_mhz8x_17:has(input:disabled) {
|
|
2310
|
+
background-color: var(--teddy-color-background-interactive-disabled);
|
|
2311
|
+
}
|
|
2312
|
+
._teddy-input_mhz8x_17:has(input:read-only) {
|
|
2313
|
+
background-color: var(--teddy-color-background-interactive-read-only);
|
|
2314
|
+
}
|
|
2315
|
+
}._teddy-helper-text_6xdzb_1 {
|
|
2316
|
+
font-family: var(--teddy-typography-family-default);
|
|
2317
|
+
font-weight: var(--teddy-typography-weight-normal);
|
|
2318
|
+
font-size: var(--teddy-typography-scale-75);
|
|
2319
|
+
line-height: var(--teddy-typography-line-height-loose);
|
|
2320
|
+
color: var(--teddy-color-text-medium);
|
|
2321
|
+
display: block;
|
|
2322
|
+
}
|
|
2323
|
+
._teddy-helper-text--disabled_6xdzb_9 {
|
|
2324
|
+
color: var(--teddy-color-text-weak);
|
|
2325
|
+
}._teddy-field-error-text_1735t_1 {
|
|
2326
|
+
font-family: var(--teddy-typography-family-default);
|
|
2327
|
+
font-weight: var(--teddy-typography-weight-normal);
|
|
2328
|
+
font-size: var(--teddy-typography-scale-100);
|
|
2329
|
+
line-height: var(--teddy-typography-line-height-loose);
|
|
2330
|
+
color: var(--teddy-color-text-status-error-strong);
|
|
2331
|
+
display: flex;
|
|
2332
|
+
flex-direction: row;
|
|
2333
|
+
gap: var(--teddy-spacing-50);
|
|
2334
|
+
align-items: center;
|
|
2335
|
+
}
|
|
2336
|
+
._teddy-field-error-text__indicator_1735t_12 {
|
|
2337
|
+
color: var(--teddy-color-text-status-error-medium);
|
|
2338
|
+
line-height: var(--teddy-typography-line-height-tight);
|
|
2119
2339
|
}@layer heading, link, accordion;
|
|
2120
2340
|
@layer accordion {
|
|
2121
|
-
._teddy-
|
|
2122
|
-
|
|
2341
|
+
._teddy-accordion_1arsz_3 {
|
|
2342
|
+
--indented-spacing: var(--teddy-spacing-200);
|
|
2343
|
+
}
|
|
2344
|
+
@media (min-width: 600px) {
|
|
2345
|
+
._teddy-accordion_1arsz_3 {
|
|
2346
|
+
--indented-spacing: var(--teddy-spacing-300);
|
|
2347
|
+
}
|
|
2348
|
+
}
|
|
2349
|
+
._teddy-accordion--indented_1arsz_11 ._teddy-accordion__header_1arsz_11 > *:first-child {
|
|
2350
|
+
padding-left: var(--indented-spacing);
|
|
2123
2351
|
}
|
|
2124
|
-
._teddy-accordion--
|
|
2125
|
-
padding-inline: var(--
|
|
2352
|
+
._teddy-accordion--indented_1arsz_11 ._teddy-accordion__content_1arsz_14 {
|
|
2353
|
+
padding-inline: var(--indented-spacing);
|
|
2126
2354
|
}
|
|
2127
|
-
._teddy-accordion--
|
|
2355
|
+
._teddy-accordion--negative_1arsz_17 ._teddy-accordion__header_1arsz_11 {
|
|
2128
2356
|
color: var(--teddy-color-text-interactive-primary-negative);
|
|
2129
2357
|
}
|
|
2130
|
-
._teddy-accordion--
|
|
2131
|
-
._teddy-accordion--
|
|
2358
|
+
._teddy-accordion--negative_1arsz_17 ._teddy-accordion__content_1arsz_14,
|
|
2359
|
+
._teddy-accordion--negative_1arsz_17 ._teddy-accordion__title_1arsz_21 {
|
|
2132
2360
|
color: var(--teddy-color-text-default-negative);
|
|
2133
2361
|
}
|
|
2134
|
-
._teddy-accordion--
|
|
2362
|
+
._teddy-accordion--negative_1arsz_17 ._teddy-accordion__trigger_1arsz_24:hover {
|
|
2135
2363
|
background-color: var(--teddy-color-background-interactive-transparent-negative-hover);
|
|
2136
2364
|
}
|
|
2137
2365
|
@media (prefers-reduced-motion: no-preference) {
|
|
2138
|
-
._teddy-accordion--
|
|
2366
|
+
._teddy-accordion--negative_1arsz_17 ._teddy-accordion__trigger_1arsz_24:active {
|
|
2139
2367
|
background-color: var(--teddy-color-background-interactive-transparent-negative-active);
|
|
2140
2368
|
}
|
|
2141
2369
|
}
|
|
2142
|
-
._teddy-accordion--
|
|
2370
|
+
._teddy-accordion--negative_1arsz_17 ._teddy-accordion__item_1arsz_32 {
|
|
2143
2371
|
border-color: var(--teddy-color-border-medium-negative);
|
|
2144
2372
|
}
|
|
2145
|
-
._teddy-accordion--
|
|
2373
|
+
._teddy-accordion--negative_1arsz_17 ._teddy-accordion__item_1arsz_32:last-child {
|
|
2146
2374
|
border-color: var(--teddy-color-border-medium-negative);
|
|
2147
2375
|
}
|
|
2148
|
-
._teddy-
|
|
2149
|
-
color: var(--teddy-color-text-default);
|
|
2150
|
-
}
|
|
2151
|
-
._teddy-accordion--info-area_1u2y1_30 ._teddy-accordion__content_1u2y1_6::after {
|
|
2152
|
-
height: var(--teddy-spacing-200);
|
|
2153
|
-
}
|
|
2154
|
-
._teddy-accordion--info-area_1u2y1_30 ._teddy-accordion__content_1u2y1_6,
|
|
2155
|
-
._teddy-accordion--info-area_1u2y1_30 ._teddy-accordion__title_1u2y1_13 {
|
|
2156
|
-
color: var(--teddy-color-text-default);
|
|
2157
|
-
}
|
|
2158
|
-
._teddy-accordion--info-area_1u2y1_30 ._teddy-accordion__item_1u2y1_24 {
|
|
2159
|
-
background-color: var(--teddy-color-background-interactive-inactive);
|
|
2160
|
-
border: none;
|
|
2161
|
-
}
|
|
2162
|
-
._teddy-accordion--info-area_1u2y1_30 ._teddy-accordion__item_1u2y1_24:last-child {
|
|
2163
|
-
border: none;
|
|
2164
|
-
}
|
|
2165
|
-
._teddy-accordion--info-area_1u2y1_30 ._teddy-accordion__item_1u2y1_24:not(:last-child) {
|
|
2166
|
-
position: relative;
|
|
2167
|
-
}
|
|
2168
|
-
._teddy-accordion--info-area_1u2y1_30 ._teddy-accordion__item_1u2y1_24:not(:last-child)::after {
|
|
2169
|
-
content: "";
|
|
2170
|
-
display: block;
|
|
2171
|
-
position: absolute;
|
|
2172
|
-
inset: auto var(--teddy-spacing-300) 0 var(--teddy-spacing-300);
|
|
2173
|
-
height: var(--teddy-border-width-xs);
|
|
2174
|
-
transform: translateY(50%);
|
|
2175
|
-
background-color: var(--teddy-color-border-weak);
|
|
2176
|
-
}
|
|
2177
|
-
._teddy-accordion--info-area_1u2y1_30 ._teddy-accordion__item_1u2y1_24:first-of-type {
|
|
2178
|
-
border-radius: var(--teddy-border-radius-md) var(--teddy-border-radius-md) 0 0;
|
|
2179
|
-
}
|
|
2180
|
-
._teddy-accordion--info-area_1u2y1_30 ._teddy-accordion__item_1u2y1_24:last-of-type {
|
|
2181
|
-
border-radius: 0 0 var(--teddy-border-radius-md) var(--teddy-border-radius-md);
|
|
2182
|
-
}
|
|
2183
|
-
._teddy-accordion--info-area_1u2y1_30 ._teddy-accordion__trigger_1u2y1_16:hover {
|
|
2184
|
-
background-color: var(--teddy-color-background-interactive-inactive);
|
|
2185
|
-
}
|
|
2186
|
-
@media (prefers-reduced-motion: no-preference) {
|
|
2187
|
-
._teddy-accordion--info-area_1u2y1_30 ._teddy-accordion__trigger_1u2y1_16:active {
|
|
2188
|
-
background-color: var(--teddy-color-background-interactive-disabled);
|
|
2189
|
-
}
|
|
2190
|
-
}
|
|
2191
|
-
._teddy-accordion_1u2y1_3:disabled {
|
|
2376
|
+
._teddy-accordion_1arsz_3:disabled {
|
|
2192
2377
|
background-color: var(--teddy-color-background-interactive-transparent);
|
|
2193
2378
|
}
|
|
2194
|
-
._teddy-
|
|
2379
|
+
._teddy-accordion__title_1arsz_21 {
|
|
2195
2380
|
margin-bottom: var(--teddy-spacing-300);
|
|
2196
2381
|
}
|
|
2197
2382
|
@media (min-width: 600px) {
|
|
2198
|
-
._teddy-
|
|
2383
|
+
._teddy-accordion__title_1arsz_21 {
|
|
2199
2384
|
margin-bottom: var(--teddy-spacing-400);
|
|
2200
2385
|
}
|
|
2201
2386
|
}
|
|
2202
|
-
._teddy-
|
|
2387
|
+
._teddy-accordion__item_1arsz_32 {
|
|
2203
2388
|
border-top: var(--teddy-border-width-xs) solid var(--teddy-color-border-weak);
|
|
2204
2389
|
}
|
|
2205
|
-
._teddy-
|
|
2390
|
+
._teddy-accordion__item_1arsz_32:first-child {
|
|
2206
2391
|
margin-top: 0;
|
|
2207
2392
|
}
|
|
2208
|
-
._teddy-
|
|
2393
|
+
._teddy-accordion__item_1arsz_32:last-child {
|
|
2209
2394
|
border-bottom: var(--teddy-border-width-xs) solid var(--teddy-color-border-weak);
|
|
2210
2395
|
}
|
|
2211
|
-
._teddy-
|
|
2396
|
+
._teddy-accordion__header_1arsz_11 {
|
|
2212
2397
|
background-color: var(--teddy-color-background-interactive-transparent);
|
|
2213
2398
|
display: grid;
|
|
2214
2399
|
grid-template-columns: minmax(0, 1fr) auto;
|
|
@@ -2217,7 +2402,7 @@
|
|
|
2217
2402
|
color: var(--teddy-color-text-interactive-primary);
|
|
2218
2403
|
font-weight: var(--teddy-typography-weight-bold);
|
|
2219
2404
|
}
|
|
2220
|
-
._teddy-
|
|
2405
|
+
._teddy-accordion__trigger_1arsz_24 {
|
|
2221
2406
|
all: unset;
|
|
2222
2407
|
font-family: inherit;
|
|
2223
2408
|
background-color: transparent;
|
|
@@ -2231,78 +2416,268 @@
|
|
|
2231
2416
|
transition-timing-function: var(--teddy-motion-easing-ease-in-out);
|
|
2232
2417
|
transition-property: background-color, color;
|
|
2233
2418
|
}
|
|
2234
|
-
._teddy-
|
|
2419
|
+
._teddy-accordion__trigger_1arsz_24:hover {
|
|
2235
2420
|
background-color: var(--teddy-color-background-interactive-transparent-hover);
|
|
2236
2421
|
}
|
|
2237
2422
|
@media (prefers-reduced-motion: no-preference) {
|
|
2238
|
-
._teddy-
|
|
2423
|
+
._teddy-accordion__trigger_1arsz_24:active {
|
|
2239
2424
|
background-color: var(--teddy-color-background-interactive-transparent-active);
|
|
2240
2425
|
}
|
|
2241
2426
|
}
|
|
2242
|
-
._teddy-
|
|
2427
|
+
._teddy-accordion__trigger_1arsz_24:focus-within {
|
|
2243
2428
|
outline: solid var(--teddy-border-width-sm) var(--teddy-color-border-interactive-focus);
|
|
2244
2429
|
outline-offset: var(--teddy-spacing-25);
|
|
2245
2430
|
z-index: 1;
|
|
2246
2431
|
}
|
|
2247
|
-
._teddy-
|
|
2432
|
+
._teddy-accordion__trigger_1arsz_24:focus-within:not(:focus-visible) {
|
|
2248
2433
|
outline: 0;
|
|
2249
2434
|
}
|
|
2250
|
-
._teddy-
|
|
2435
|
+
._teddy-accordion__trigger_1arsz_24:disabled {
|
|
2251
2436
|
cursor: not-allowed;
|
|
2252
2437
|
background-color: var(--teddy-color-background-interactive-disabled);
|
|
2253
2438
|
}
|
|
2254
|
-
._teddy-
|
|
2439
|
+
._teddy-accordion__trigger_1arsz_24 ._teddy-accordion__indicator_1arsz_101 {
|
|
2255
2440
|
flex-shrink: 0;
|
|
2256
2441
|
transform: rotate(0);
|
|
2257
|
-
margin: var(--
|
|
2442
|
+
margin: var(--indented-spacing);
|
|
2258
2443
|
}
|
|
2259
2444
|
@media (min-width: 1024px) {
|
|
2260
|
-
._teddy-
|
|
2445
|
+
._teddy-accordion__trigger_1arsz_24 ._teddy-accordion__indicator_1arsz_101 {
|
|
2261
2446
|
margin-block: var(--teddy-spacing-400);
|
|
2262
2447
|
}
|
|
2263
2448
|
}
|
|
2264
2449
|
@media (prefers-reduced-motion: no-preference) {
|
|
2265
|
-
._teddy-
|
|
2450
|
+
._teddy-accordion__trigger_1arsz_24 ._teddy-accordion__indicator--rotate_1arsz_112 {
|
|
2266
2451
|
transition: transform var(--teddy-motion-duration-300) var(--teddy-motion-easing-ease-in-out);
|
|
2267
2452
|
}
|
|
2268
2453
|
}
|
|
2269
|
-
._teddy-
|
|
2454
|
+
._teddy-accordion__trigger_1arsz_24[data-state=open] ._teddy-accordion__indicator_1arsz_101 {
|
|
2270
2455
|
transform: rotate(180deg);
|
|
2271
2456
|
}
|
|
2272
|
-
._teddy-
|
|
2457
|
+
._teddy-accordion__content_1arsz_14 {
|
|
2273
2458
|
overflow: hidden;
|
|
2274
2459
|
color: var(--teddy-color-text-default);
|
|
2275
2460
|
padding: 0 var(--teddy-spacing-300) 0 0;
|
|
2276
2461
|
}
|
|
2277
2462
|
@media (prefers-reduced-motion: no-preference) {
|
|
2278
|
-
._teddy-
|
|
2279
|
-
animation:
|
|
2463
|
+
._teddy-accordion__content_1arsz_14[data-state=open] {
|
|
2464
|
+
animation: _slideDown_1arsz_1 var(--teddy-motion-duration-300) var(--teddy-motion-easing-ease-in-out);
|
|
2280
2465
|
}
|
|
2281
|
-
._teddy-
|
|
2282
|
-
animation:
|
|
2466
|
+
._teddy-accordion__content_1arsz_14[data-state=closed] {
|
|
2467
|
+
animation: _slideUp_1arsz_1 var(--teddy-motion-duration-300) var(--teddy-motion-easing-ease-in-out);
|
|
2283
2468
|
}
|
|
2284
2469
|
}
|
|
2285
|
-
._teddy-
|
|
2470
|
+
._teddy-accordion__content_1arsz_14::after {
|
|
2286
2471
|
content: "";
|
|
2287
2472
|
display: block;
|
|
2288
2473
|
height: var(--teddy-spacing-400);
|
|
2289
2474
|
width: 100%;
|
|
2290
2475
|
}
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2476
|
+
._teddy-accordion--info-area_1arsz_138 ._teddy-accordion__header_1arsz_11 {
|
|
2477
|
+
color: var(--teddy-color-text-default);
|
|
2478
|
+
font-size: var(--teddy-typography-scale-100);
|
|
2479
|
+
}
|
|
2480
|
+
._teddy-accordion--info-area_1arsz_138 ._teddy-accordion__content_1arsz_14::after {
|
|
2481
|
+
height: var(--teddy-spacing-200);
|
|
2482
|
+
}
|
|
2483
|
+
._teddy-accordion--info-area_1arsz_138 ._teddy-accordion__indicator_1arsz_101 {
|
|
2484
|
+
margin-block: var(--teddy-spacing-200);
|
|
2485
|
+
}
|
|
2486
|
+
._teddy-accordion--info-area_1arsz_138 ._teddy-accordion__content_1arsz_14,
|
|
2487
|
+
._teddy-accordion--info-area_1arsz_138 ._teddy-accordion__title_1arsz_21 {
|
|
2488
|
+
color: var(--teddy-color-text-default);
|
|
2489
|
+
}
|
|
2490
|
+
._teddy-accordion--info-area_1arsz_138 ._teddy-accordion__item_1arsz_32 {
|
|
2491
|
+
background-color: var(--teddy-color-background-interactive-inactive);
|
|
2492
|
+
border: none;
|
|
2493
|
+
}
|
|
2494
|
+
._teddy-accordion--info-area_1arsz_138 ._teddy-accordion__item_1arsz_32:last-child {
|
|
2495
|
+
border: none;
|
|
2496
|
+
}
|
|
2497
|
+
._teddy-accordion--info-area_1arsz_138 ._teddy-accordion__item_1arsz_32:not(:last-child) {
|
|
2498
|
+
position: relative;
|
|
2499
|
+
}
|
|
2500
|
+
._teddy-accordion--info-area_1arsz_138 ._teddy-accordion__item_1arsz_32:not(:last-child)::after {
|
|
2501
|
+
content: "";
|
|
2502
|
+
display: block;
|
|
2503
|
+
position: absolute;
|
|
2504
|
+
inset: auto var(--indented-spacing) 0 var(--indented-spacing);
|
|
2505
|
+
height: var(--teddy-border-width-xs);
|
|
2506
|
+
transform: translateY(50%);
|
|
2507
|
+
background-color: var(--teddy-color-border-weak);
|
|
2508
|
+
}
|
|
2509
|
+
._teddy-accordion--info-area_1arsz_138 ._teddy-accordion__item_1arsz_32:first-of-type {
|
|
2510
|
+
border-radius: var(--teddy-border-radius-md) var(--teddy-border-radius-md) 0 0;
|
|
2511
|
+
}
|
|
2512
|
+
._teddy-accordion--info-area_1arsz_138 ._teddy-accordion__item_1arsz_32:last-of-type {
|
|
2513
|
+
border-radius: 0 0 var(--teddy-border-radius-md) var(--teddy-border-radius-md);
|
|
2514
|
+
}
|
|
2515
|
+
._teddy-accordion--info-area_1arsz_138 ._teddy-accordion__trigger_1arsz_24:hover {
|
|
2516
|
+
background-color: var(--teddy-color-background-interactive-inactive);
|
|
2517
|
+
}
|
|
2518
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
2519
|
+
._teddy-accordion--info-area_1arsz_138 ._teddy-accordion__trigger_1arsz_24:active {
|
|
2520
|
+
background-color: var(--teddy-color-background-interactive-disabled);
|
|
2521
|
+
}
|
|
2522
|
+
}
|
|
2523
|
+
@keyframes _slideDown_1arsz_1 {
|
|
2524
|
+
from {
|
|
2525
|
+
height: 0;
|
|
2526
|
+
}
|
|
2527
|
+
to {
|
|
2528
|
+
height: var(--radix-accordion-content-height);
|
|
2529
|
+
}
|
|
2530
|
+
}
|
|
2531
|
+
@keyframes _slideUp_1arsz_1 {
|
|
2532
|
+
from {
|
|
2533
|
+
height: var(--radix-accordion-content-height);
|
|
2534
|
+
}
|
|
2535
|
+
to {
|
|
2536
|
+
height: 0;
|
|
2537
|
+
}
|
|
2538
|
+
}
|
|
2539
|
+
}._teddy-global-navigation_1b1i5_1 {
|
|
2540
|
+
position: sticky;
|
|
2541
|
+
inset: 0 0 auto 0;
|
|
2542
|
+
}
|
|
2543
|
+
._teddy-global-navigation__mobile_1b1i5_5 {
|
|
2544
|
+
padding: var(--teddy-spacing-25) var(--teddy-spacing-200);
|
|
2545
|
+
border-bottom: var(--teddy-border-width-sm) solid var(--teddy-color-border-weak);
|
|
2546
|
+
}
|
|
2547
|
+
._teddy-global-navigation__mobile_1b1i5_5::before {
|
|
2548
|
+
content: "";
|
|
2549
|
+
display: block;
|
|
2550
|
+
width: var(--width-for-centering-element);
|
|
2551
|
+
}
|
|
2552
|
+
._teddy-global-navigation__mobile_1b1i5_5::after {
|
|
2553
|
+
content: "";
|
|
2554
|
+
display: block;
|
|
2555
|
+
width: var(--width-for-centering-element);
|
|
2556
|
+
}
|
|
2557
|
+
._teddy-global-navigation__link_1b1i5_19 {
|
|
2558
|
+
text-decoration: none;
|
|
2559
|
+
}@layer icon, toggle;
|
|
2560
|
+
._teddy-toggle__input_m5h3g_2::before {
|
|
2561
|
+
box-sizing: border-box;
|
|
2562
|
+
}
|
|
2563
|
+
|
|
2564
|
+
@layer toggle {
|
|
2565
|
+
._teddy-toggle_m5h3g_2 {
|
|
2566
|
+
width: fit-content;
|
|
2567
|
+
display: flex;
|
|
2568
|
+
align-items: center;
|
|
2569
|
+
position: relative;
|
|
2570
|
+
gap: var(--teddy-spacing-150);
|
|
2571
|
+
}
|
|
2572
|
+
._teddy-toggle__input_m5h3g_2 {
|
|
2573
|
+
all: unset;
|
|
2574
|
+
cursor: pointer;
|
|
2575
|
+
display: block;
|
|
2576
|
+
width: calc(var(--teddy-spacing-400) + var(--teddy-spacing-150));
|
|
2577
|
+
height: calc(var(--teddy-spacing-400) + var(--teddy-spacing-150));
|
|
2578
|
+
position: relative;
|
|
2579
|
+
color: var(--teddy-color-text-interactive-on-primary);
|
|
2580
|
+
}
|
|
2581
|
+
._teddy-toggle__input_m5h3g_2::before {
|
|
2582
|
+
content: "";
|
|
2583
|
+
display: block;
|
|
2584
|
+
position: absolute;
|
|
2585
|
+
inset: 0;
|
|
2586
|
+
height: var(--teddy-spacing-300);
|
|
2587
|
+
margin: auto 0;
|
|
2588
|
+
background-color: var(--teddy-color-text-interactive-on-primary);
|
|
2589
|
+
border: var(--teddy-border-width-xs) solid var(--teddy-color-border-interactive-primary);
|
|
2590
|
+
border-radius: var(--teddy-border-radius-full);
|
|
2591
|
+
}
|
|
2592
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
2593
|
+
._teddy-toggle__input_m5h3g_2::before {
|
|
2594
|
+
transition: background-color var(--teddy-motion-duration-150) ease, border-color var(--teddy-motion-duration-150) ease;
|
|
2595
|
+
}
|
|
2596
|
+
}
|
|
2597
|
+
._teddy-toggle__input_m5h3g_2[data-state=checked]::before {
|
|
2598
|
+
background-color: var(--teddy-color-background-interactive-primary);
|
|
2599
|
+
border-color: var(--teddy-color-functional-transparent);
|
|
2600
|
+
}
|
|
2601
|
+
._teddy-toggle__input_m5h3g_2[data-state=checked]:disabled::before {
|
|
2602
|
+
background-color: var(--teddy-color-background-interactive-disabled);
|
|
2603
|
+
border-color: var(--teddy-color-functional-transparent);
|
|
2604
|
+
}
|
|
2605
|
+
._teddy-toggle__input_m5h3g_2[data-state=checked]:hover:not(:disabled)::before {
|
|
2606
|
+
background-color: var(--teddy-color-background-interactive-primary-hover);
|
|
2607
|
+
border-color: var(--teddy-color-functional-transparent);
|
|
2608
|
+
}
|
|
2609
|
+
._teddy-toggle__input_m5h3g_2[data-state=checked]:active:not(:disabled)::before {
|
|
2610
|
+
background-color: var(--teddy-color-background-interactive-primary-active);
|
|
2611
|
+
border-color: var(--teddy-color-functional-transparent);
|
|
2612
|
+
}
|
|
2613
|
+
._teddy-toggle__input_m5h3g_2:disabled {
|
|
2614
|
+
cursor: default;
|
|
2615
|
+
}
|
|
2616
|
+
._teddy-toggle__input_m5h3g_2:disabled::before {
|
|
2617
|
+
border-color: var(--teddy-color-border-weak);
|
|
2618
|
+
}
|
|
2619
|
+
._teddy-toggle__input_m5h3g_2:hover:not(:disabled)::before {
|
|
2620
|
+
background-color: var(--teddy-color-background-interactive-transparent-hover);
|
|
2621
|
+
border-color: var(--teddy-color-border-interactive-primary);
|
|
2622
|
+
}
|
|
2623
|
+
._teddy-toggle__input_m5h3g_2:active:not(:disabled)::before {
|
|
2624
|
+
background-color: var(--teddy-color-background-interactive-transparent-active);
|
|
2625
|
+
}
|
|
2626
|
+
._teddy-toggle_m5h3g_2:focus-within::before {
|
|
2627
|
+
border-radius: var(--teddy-border-radius-xs);
|
|
2628
|
+
box-shadow: 0 0 0 var(--teddy-border-width-sm) var(--teddy-color-border-interactive-focus);
|
|
2629
|
+
content: "";
|
|
2630
|
+
opacity: 1;
|
|
2631
|
+
display: block;
|
|
2632
|
+
inset: calc(var(--teddy-spacing-25) * -1);
|
|
2633
|
+
position: absolute;
|
|
2634
|
+
pointer-events: none;
|
|
2635
|
+
}
|
|
2636
|
+
._teddy-toggle_m5h3g_2:focus-within:has(._teddy-toggle__input_m5h3g_2:not(:focus-visible))::before {
|
|
2637
|
+
opacity: 0;
|
|
2638
|
+
}
|
|
2639
|
+
._teddy-toggle__thumb_m5h3g_81 {
|
|
2640
|
+
position: absolute;
|
|
2641
|
+
display: block;
|
|
2642
|
+
height: calc(var(--teddy-spacing-200) + var(--teddy-spacing-25));
|
|
2643
|
+
width: calc(var(--teddy-spacing-200) + var(--teddy-spacing-25));
|
|
2644
|
+
border-radius: var(--teddy-border-radius-full);
|
|
2645
|
+
background-color: var(--teddy-color-background-interactive-primary);
|
|
2646
|
+
inset: 50% auto auto var(--teddy-spacing-10);
|
|
2647
|
+
transform: translate(var(--teddy-spacing-25), -50%);
|
|
2648
|
+
}
|
|
2649
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
2650
|
+
._teddy-toggle__thumb_m5h3g_81 {
|
|
2651
|
+
transition: transform var(--teddy-motion-duration-150) ease, background-color var(--teddy-motion-duration-150) ease;
|
|
2652
|
+
will-change: transform;
|
|
2653
|
+
}
|
|
2654
|
+
}
|
|
2655
|
+
._teddy-toggle__thumb_m5h3g_81[data-disabled] {
|
|
2656
|
+
background-color: var(--teddy-color-background-interactive-disabled);
|
|
2657
|
+
}
|
|
2658
|
+
._teddy-toggle__thumb_m5h3g_81[data-state=checked] {
|
|
2659
|
+
background-color: var(--teddy-color-text-interactive-on-primary);
|
|
2660
|
+
transform: translate(calc(100% + var(--teddy-spacing-50)), -50%);
|
|
2661
|
+
}
|
|
2662
|
+
._teddy-toggle__thumb_m5h3g_81[data-state=checked][data-disabled] {
|
|
2663
|
+
background-color: var(--teddy-color-text-interactive-on-primary);
|
|
2664
|
+
}
|
|
2665
|
+
._teddy-toggle__indicator_m5h3g_107 {
|
|
2666
|
+
position: absolute;
|
|
2667
|
+
inset: 50% auto auto calc(var(--teddy-spacing-150) + var(--teddy-spacing-10));
|
|
2668
|
+
opacity: 0;
|
|
2669
|
+
scale: 0;
|
|
2670
|
+
transform: translate(-50%, -50%);
|
|
2671
|
+
transform-origin: 0 50%;
|
|
2672
|
+
}
|
|
2673
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
2674
|
+
._teddy-toggle__indicator_m5h3g_107 {
|
|
2675
|
+
transition: opacity var(--teddy-motion-duration-150) ease, scale var(--teddy-motion-duration-150) ease;
|
|
2297
2676
|
}
|
|
2298
2677
|
}
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
}
|
|
2303
|
-
to {
|
|
2304
|
-
height: 0;
|
|
2305
|
-
}
|
|
2678
|
+
._teddy-toggle__input_m5h3g_2[data-state=checked] ._teddy-toggle__indicator_m5h3g_107 {
|
|
2679
|
+
opacity: 1;
|
|
2680
|
+
scale: 1;
|
|
2306
2681
|
}
|
|
2307
2682
|
}._teddy-badge_1fsdh_1 {
|
|
2308
2683
|
font-family: var(--teddy-typography-family-default);
|
|
@@ -2382,244 +2757,6 @@
|
|
|
2382
2757
|
._teddy-badge--error_1fsdh_72._teddy-badge--alert-badge_1fsdh_19 {
|
|
2383
2758
|
background-color: var(--teddy-color-text-status-error-strong);
|
|
2384
2759
|
border-color: var(--teddy-color-background-status-error-strong);
|
|
2385
|
-
}._teddy-field-error-text_1735t_1 {
|
|
2386
|
-
font-family: var(--teddy-typography-family-default);
|
|
2387
|
-
font-weight: var(--teddy-typography-weight-normal);
|
|
2388
|
-
font-size: var(--teddy-typography-scale-100);
|
|
2389
|
-
line-height: var(--teddy-typography-line-height-loose);
|
|
2390
|
-
color: var(--teddy-color-text-status-error-strong);
|
|
2391
|
-
display: flex;
|
|
2392
|
-
flex-direction: row;
|
|
2393
|
-
gap: var(--teddy-spacing-50);
|
|
2394
|
-
align-items: center;
|
|
2395
|
-
}
|
|
2396
|
-
._teddy-field-error-text__indicator_1735t_12 {
|
|
2397
|
-
color: var(--teddy-color-text-status-error-medium);
|
|
2398
|
-
line-height: var(--teddy-typography-line-height-tight);
|
|
2399
|
-
}._teddy-helper-text_6xdzb_1 {
|
|
2400
|
-
font-family: var(--teddy-typography-family-default);
|
|
2401
|
-
font-weight: var(--teddy-typography-weight-normal);
|
|
2402
|
-
font-size: var(--teddy-typography-scale-75);
|
|
2403
|
-
line-height: var(--teddy-typography-line-height-loose);
|
|
2404
|
-
color: var(--teddy-color-text-medium);
|
|
2405
|
-
display: block;
|
|
2406
|
-
}
|
|
2407
|
-
._teddy-helper-text--disabled_6xdzb_9 {
|
|
2408
|
-
color: var(--teddy-color-text-weak);
|
|
2409
|
-
}@keyframes _fadeInAnimation_mhz8x_1 {
|
|
2410
|
-
0% {
|
|
2411
|
-
opacity: 0;
|
|
2412
|
-
}
|
|
2413
|
-
100% {
|
|
2414
|
-
opacity: 1;
|
|
2415
|
-
}
|
|
2416
|
-
}
|
|
2417
|
-
@keyframes _scaleInAnimation_mhz8x_1 {
|
|
2418
|
-
0% {
|
|
2419
|
-
scale: 0;
|
|
2420
|
-
}
|
|
2421
|
-
100% {
|
|
2422
|
-
scale: 100%;
|
|
2423
|
-
}
|
|
2424
|
-
}
|
|
2425
|
-
._teddy-input__input_mhz8x_17 {
|
|
2426
|
-
box-sizing: border-box;
|
|
2427
|
-
}
|
|
2428
|
-
@layer input {
|
|
2429
|
-
._teddy-input_mhz8x_17 {
|
|
2430
|
-
position: relative;
|
|
2431
|
-
cursor: text;
|
|
2432
|
-
display: flex;
|
|
2433
|
-
align-items: center;
|
|
2434
|
-
padding: 0 var(--teddy-spacing-150);
|
|
2435
|
-
gap: var(--teddy-spacing-50);
|
|
2436
|
-
color: var(--teddy-color-text-weak);
|
|
2437
|
-
}
|
|
2438
|
-
._teddy-input__frame_mhz8x_31 {
|
|
2439
|
-
position: absolute;
|
|
2440
|
-
inset: 0;
|
|
2441
|
-
border-radius: var(--teddy-border-radius-sm);
|
|
2442
|
-
border: var(--teddy-border-width-xs) solid var(--teddy-color-border-interactive-subtle);
|
|
2443
|
-
pointer-events: none;
|
|
2444
|
-
z-index: 1;
|
|
2445
|
-
}
|
|
2446
|
-
._teddy-input__clear-button_mhz8x_39 {
|
|
2447
|
-
margin-right: calc(var(--teddy-spacing-100) * -1);
|
|
2448
|
-
}
|
|
2449
|
-
._teddy-input__input_mhz8x_17 {
|
|
2450
|
-
border-radius: var(--teddy-border-radius-sm);
|
|
2451
|
-
border: none;
|
|
2452
|
-
margin: calc(var(--teddy-spacing-100) + var(--teddy-spacing-25)) 0;
|
|
2453
|
-
font-family: var(--teddy-typography-family-default);
|
|
2454
|
-
font-size: var(--teddy-typography-scale-100);
|
|
2455
|
-
line-height: 150%;
|
|
2456
|
-
overflow: hidden;
|
|
2457
|
-
text-overflow: ellipsis;
|
|
2458
|
-
font-style: normal;
|
|
2459
|
-
font-weight: var(--teddy-typography-weight-normal);
|
|
2460
|
-
outline: none;
|
|
2461
|
-
background: transparent;
|
|
2462
|
-
width: 100%;
|
|
2463
|
-
flex: 1 1 100%;
|
|
2464
|
-
color: var(--teddy-color-text-default);
|
|
2465
|
-
}
|
|
2466
|
-
._teddy-input__input_mhz8x_17:hover ~ ._teddy-input__frame_mhz8x_31 {
|
|
2467
|
-
border-width: var(--teddy-border-width-sm);
|
|
2468
|
-
border-color: var(--teddy-color-border-interactive-subtle-hover);
|
|
2469
|
-
}
|
|
2470
|
-
._teddy-input__input_mhz8x_17:active:not(:disabled):not(:read-only) ~ ._teddy-input__frame_mhz8x_31, ._teddy-input__input_mhz8x_17:focus:not(:disabled):not(:read-only) ~ ._teddy-input__frame_mhz8x_31 {
|
|
2471
|
-
outline: var(--teddy-border-width-sm) solid var(--teddy-color-border-interactive-focus);
|
|
2472
|
-
outline-offset: calc(var(--teddy-spacing-10) * 2);
|
|
2473
|
-
border-width: var(--teddy-border-width-xs);
|
|
2474
|
-
border-color: var(--teddy-color-border-interactive-subtle-hover);
|
|
2475
|
-
}
|
|
2476
|
-
._teddy-input__input_mhz8x_17:disabled {
|
|
2477
|
-
color: var(--teddy-color-text-weak);
|
|
2478
|
-
}
|
|
2479
|
-
._teddy-input__input_mhz8x_17:disabled ~ ._teddy-input__frame_mhz8x_31 {
|
|
2480
|
-
border-width: var(--teddy-border-width-xs);
|
|
2481
|
-
border-color: var(--teddy-color-border-medium);
|
|
2482
|
-
}
|
|
2483
|
-
._teddy-input__input_mhz8x_17:read-only:not(:disabled) {
|
|
2484
|
-
color: var(--teddy-color-text-default);
|
|
2485
|
-
}
|
|
2486
|
-
._teddy-input__input_mhz8x_17:read-only:not(:disabled) ~ ._teddy-input__frame_mhz8x_31 {
|
|
2487
|
-
border-width: var(--teddy-border-width-xs);
|
|
2488
|
-
}
|
|
2489
|
-
._teddy-input__input_mhz8x_17:read-only:not(:disabled):not(._teddy-input__input--valid_mhz8x_82):not(._teddy-input__input--invalid_mhz8x_82) ~ ._teddy-input__frame_mhz8x_31 {
|
|
2490
|
-
border-color: var(--teddy-color-border-medium);
|
|
2491
|
-
}
|
|
2492
|
-
._teddy-input__input--valid_mhz8x_82 ~ ._teddy-input__frame_mhz8x_31 {
|
|
2493
|
-
border-color: var(--teddy-color-border-status-success);
|
|
2494
|
-
}
|
|
2495
|
-
._teddy-input__input--valid_mhz8x_82 ~ ._teddy-input__indicator_mhz8x_88 {
|
|
2496
|
-
color: var(--teddy-color-border-status-success);
|
|
2497
|
-
}
|
|
2498
|
-
._teddy-input__input--error_mhz8x_91:not(:hover) ~ ._teddy-input__frame_mhz8x_31 {
|
|
2499
|
-
border-color: var(--teddy-color-border-status-error);
|
|
2500
|
-
}
|
|
2501
|
-
._teddy-input_mhz8x_17 > *:not(._teddy-input__input_mhz8x_17) {
|
|
2502
|
-
flex: 0 0 auto;
|
|
2503
|
-
}
|
|
2504
|
-
._teddy-input__indicator_mhz8x_88 {
|
|
2505
|
-
animation: _fadeInAnimation_mhz8x_1 ease var(--teddy-motion-duration-300), _scaleInAnimation_mhz8x_1 ease var(--teddy-motion-duration-300);
|
|
2506
|
-
}
|
|
2507
|
-
._teddy-input_mhz8x_17:has(input:disabled) {
|
|
2508
|
-
background-color: var(--teddy-color-background-interactive-disabled);
|
|
2509
|
-
}
|
|
2510
|
-
._teddy-input_mhz8x_17:has(input:read-only) {
|
|
2511
|
-
background-color: var(--teddy-color-background-interactive-read-only);
|
|
2512
|
-
}
|
|
2513
|
-
}@keyframes _fadeInAnimation_shhej_1 {
|
|
2514
|
-
0% {
|
|
2515
|
-
opacity: 0;
|
|
2516
|
-
}
|
|
2517
|
-
100% {
|
|
2518
|
-
opacity: 1;
|
|
2519
|
-
}
|
|
2520
|
-
}
|
|
2521
|
-
@keyframes _scaleInAnimation_shhej_1 {
|
|
2522
|
-
0% {
|
|
2523
|
-
scale: 0;
|
|
2524
|
-
}
|
|
2525
|
-
100% {
|
|
2526
|
-
scale: 100%;
|
|
2527
|
-
}
|
|
2528
|
-
}
|
|
2529
|
-
._teddy-text-field_shhej_17 {
|
|
2530
|
-
box-sizing: border-box;
|
|
2531
|
-
display: grid;
|
|
2532
|
-
grid-template-columns: 1fr auto;
|
|
2533
|
-
column-gap: var(--teddy-spacing-50);
|
|
2534
|
-
grid-template-areas: "label label" "input button" "error-list error-list" "helper-text helper-text";
|
|
2535
|
-
}
|
|
2536
|
-
._teddy-text-field__label_shhej_24 {
|
|
2537
|
-
grid-area: label;
|
|
2538
|
-
}
|
|
2539
|
-
._teddy-text-field__input-group_shhej_27 {
|
|
2540
|
-
grid-area: input;
|
|
2541
|
-
}
|
|
2542
|
-
:has(._teddy-text-field__button--attached_shhej_30) ._teddy-text-field__frame_shhej_30 {
|
|
2543
|
-
border-radius: var(--teddy-border-radius-md) 0 0 var(--teddy-border-radius-md);
|
|
2544
|
-
}
|
|
2545
|
-
._teddy-text-field__button_shhej_30 {
|
|
2546
|
-
grid-area: button;
|
|
2547
|
-
}
|
|
2548
|
-
._teddy-text-field__button--attached_shhej_30 {
|
|
2549
|
-
border-radius: 0 var(--teddy-border-radius-md) var(--teddy-border-radius-md) 0;
|
|
2550
|
-
}
|
|
2551
|
-
._teddy-text-field_shhej_17 > * + * {
|
|
2552
|
-
margin-top: var(--teddy-spacing-50);
|
|
2553
|
-
}
|
|
2554
|
-
._teddy-text-field__helper-text_shhej_42 {
|
|
2555
|
-
grid-area: helper-text;
|
|
2556
|
-
}
|
|
2557
|
-
._teddy-text-field__error-list_shhej_45 {
|
|
2558
|
-
grid-area: error-list;
|
|
2559
|
-
list-style: none;
|
|
2560
|
-
padding: 0;
|
|
2561
|
-
}
|
|
2562
|
-
._teddy-text-field__error-list_shhej_45 > * + * {
|
|
2563
|
-
margin-top: var(--teddy-spacing-50);
|
|
2564
|
-
}._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--subsection_],
|
|
2565
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--subsection-100_] {
|
|
2566
|
-
margin-bottom: var(--teddy-spacing-50);
|
|
2567
|
-
}
|
|
2568
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--overline-100_],
|
|
2569
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--additional-100_],
|
|
2570
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--title-100_],
|
|
2571
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--title-200_],
|
|
2572
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--title-300_] {
|
|
2573
|
-
margin-bottom: var(--teddy-spacing-100);
|
|
2574
|
-
}
|
|
2575
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--overline-200_] {
|
|
2576
|
-
margin-bottom: var(--teddy-spacing-150);
|
|
2577
|
-
}
|
|
2578
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-100_],
|
|
2579
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-200_] {
|
|
2580
|
-
margin-bottom: var(--teddy-spacing-200);
|
|
2581
|
-
}
|
|
2582
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-100_] + [class*=_teddy-heading--title-100_],
|
|
2583
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-200_] + [class*=_teddy-heading--title-100_] {
|
|
2584
|
-
margin-top: var(--teddy-spacing-300);
|
|
2585
|
-
}
|
|
2586
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-100_] + [class*=_teddy-heading--title-200_],
|
|
2587
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-200_] + [class*=_teddy-heading--title-200_] {
|
|
2588
|
-
margin-top: var(--teddy-spacing-400);
|
|
2589
|
-
}
|
|
2590
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-100_] + [class*=_teddy-heading--title-300_],
|
|
2591
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-100_] + [class*=_teddy-heading--title-400_],
|
|
2592
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-100_] + [class*=_teddy-heading--title-500_],
|
|
2593
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-100_] + [class*=_teddy-heading--title-600_],
|
|
2594
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-100_] + [class*=_teddy-heading--title-700_],
|
|
2595
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-200_] + [class*=_teddy-heading--title-300_],
|
|
2596
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-200_] + [class*=_teddy-heading--title-400_],
|
|
2597
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-200_] + [class*=_teddy-heading--title-500_],
|
|
2598
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-200_] + [class*=_teddy-heading--title-600_],
|
|
2599
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--paragraph-200_] + [class*=_teddy-heading--title-700_] {
|
|
2600
|
-
margin-top: var(--teddy-spacing-600);
|
|
2601
|
-
}
|
|
2602
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--title-400_],
|
|
2603
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--title-500_] {
|
|
2604
|
-
margin-bottom: var(--teddy-spacing-250);
|
|
2605
|
-
}
|
|
2606
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--title-600_],
|
|
2607
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--title-700_],
|
|
2608
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--display-25_],
|
|
2609
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--display-50_],
|
|
2610
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--display-100_],
|
|
2611
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-heading--display-200_] {
|
|
2612
|
-
margin-bottom: var(--teddy-spacing-300);
|
|
2613
|
-
}
|
|
2614
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--preamble-100_] {
|
|
2615
|
-
margin-bottom: var(--teddy-spacing-400);
|
|
2616
|
-
}
|
|
2617
|
-
._teddy-text-spacing_dwbo8_1 [class*=_teddy-text--preamble-200_] {
|
|
2618
|
-
margin-bottom: var(--teddy-spacing-600);
|
|
2619
|
-
}
|
|
2620
|
-
._teddy-text-spacing_dwbo8_1 * > :last-child,
|
|
2621
|
-
._teddy-text-spacing_dwbo8_1 > :last-child {
|
|
2622
|
-
margin-bottom: 0;
|
|
2623
2760
|
}@keyframes _teddy-fade-in_3n21u_1 {
|
|
2624
2761
|
from {
|
|
2625
2762
|
opacity: 0;
|