@seed-design/css 1.0.6 → 1.1.0
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/all.css +885 -514
- package/all.min.css +1 -1
- package/base.css +32 -0
- package/base.min.css +1 -1
- package/package.json +1 -1
- package/recipes/action-button.css +8 -1
- package/recipes/app-screen.css +16 -0
- package/recipes/app-screen.d.ts +4 -0
- package/recipes/app-screen.mjs +6 -1
- package/recipes/article.css +0 -3
- package/recipes/bottom-sheet-handle.css +24 -0
- package/recipes/bottom-sheet-handle.d.ts +21 -0
- package/recipes/bottom-sheet-handle.mjs +36 -0
- package/recipes/bottom-sheet.css +55 -32
- package/recipes/callout.css +2 -0
- package/recipes/field-label.css +29 -0
- package/recipes/field-label.d.ts +24 -0
- package/recipes/field-label.mjs +47 -0
- package/recipes/field.css +63 -0
- package/recipes/field.d.ts +21 -0
- package/recipes/field.mjs +60 -0
- package/recipes/input-button.css +98 -0
- package/recipes/input-button.d.ts +21 -0
- package/recipes/input-button.mjs +64 -0
- package/recipes/list-item.css +1 -1
- package/recipes/page-banner.css +6 -1
- package/recipes/page-banner.d.ts +1 -1
- package/recipes/page-banner.mjs +6 -2
- package/recipes/slider-marker.css +42 -0
- package/recipes/slider-marker.d.ts +22 -0
- package/recipes/slider-marker.mjs +30 -0
- package/recipes/slider-tick.css +19 -0
- package/recipes/slider-tick.d.ts +22 -0
- package/recipes/slider-tick.mjs +29 -0
- package/recipes/slider.css +174 -0
- package/recipes/slider.d.ts +21 -0
- package/recipes/slider.mjs +68 -0
- package/recipes/text-input.css +156 -0
- package/recipes/text-input.d.ts +24 -0
- package/recipes/text-input.mjs +59 -0
- package/vars/component/bottom-sheet-handle.d.ts +24 -0
- package/vars/component/bottom-sheet-handle.mjs +24 -0
- package/vars/component/bottom-sheet.d.ts +2 -2
- package/vars/component/bottom-sheet.mjs +2 -2
- package/vars/component/field-label.d.ts +25 -0
- package/vars/component/field-label.mjs +25 -0
- package/vars/component/field.d.ts +72 -0
- package/vars/component/field.mjs +72 -0
- package/vars/component/index.d.ts +8 -1
- package/vars/component/index.mjs +8 -1
- package/vars/component/input-button.d.ts +78 -0
- package/vars/component/input-button.mjs +78 -0
- package/vars/component/list-item.d.ts +1 -1
- package/vars/component/list-item.mjs +1 -1
- package/vars/component/page-banner.d.ts +1 -1
- package/vars/component/page-banner.mjs +1 -1
- package/vars/component/slider-thumb.d.ts +25 -0
- package/vars/component/slider-thumb.mjs +25 -0
- package/vars/component/slider-tick.d.ts +23 -0
- package/vars/component/slider-tick.mjs +23 -0
- package/vars/component/slider.d.ts +74 -0
- package/vars/component/slider.mjs +74 -0
- package/vars/component/text-input.d.ts +162 -0
- package/vars/component/text-input.mjs +162 -0
- package/recipes/text-field.css +0 -379
- package/recipes/text-field.d.ts +0 -24
- package/recipes/text-field.mjs +0 -104
- package/vars/component/text-field.d.ts +0 -294
- package/vars/component/text-field.mjs +0 -294
package/all.css
CHANGED
|
@@ -745,12 +745,12 @@
|
|
|
745
745
|
|
|
746
746
|
.seed-action-button {
|
|
747
747
|
transition: background-color var(--seed-duration-d4) var(--seed-timing-function-easing);
|
|
748
|
-
font-weight: var(--seed-font-weight-bold);
|
|
749
748
|
}
|
|
750
749
|
|
|
751
750
|
.seed-action-button--variant_brandSolid {
|
|
752
751
|
background: var(--seed-color-bg-brand-solid);
|
|
753
752
|
color: var(--seed-color-palette-static-white);
|
|
753
|
+
font-weight: var(--seed-font-weight-bold);
|
|
754
754
|
--seed-prefix-icon-color: var(--seed-color-palette-static-white);
|
|
755
755
|
--seed-suffix-icon-color: var(--seed-color-palette-static-white);
|
|
756
756
|
--seed-icon-color: var(--seed-color-palette-static-white);
|
|
@@ -777,6 +777,7 @@
|
|
|
777
777
|
.seed-action-button--variant_neutralSolid {
|
|
778
778
|
background: var(--seed-color-bg-neutral-inverted);
|
|
779
779
|
color: var(--seed-color-fg-neutral-inverted);
|
|
780
|
+
font-weight: var(--seed-font-weight-bold);
|
|
780
781
|
--seed-prefix-icon-color: var(--seed-color-fg-neutral-inverted);
|
|
781
782
|
--seed-suffix-icon-color: var(--seed-color-fg-neutral-inverted);
|
|
782
783
|
--seed-icon-color: var(--seed-color-fg-neutral-inverted);
|
|
@@ -803,6 +804,7 @@
|
|
|
803
804
|
.seed-action-button--variant_neutralWeak {
|
|
804
805
|
background: var(--seed-color-bg-neutral-weak);
|
|
805
806
|
color: var(--seed-color-fg-neutral);
|
|
807
|
+
font-weight: var(--seed-font-weight-bold);
|
|
806
808
|
--seed-prefix-icon-color: var(--seed-color-fg-neutral);
|
|
807
809
|
--seed-suffix-icon-color: var(--seed-color-fg-neutral);
|
|
808
810
|
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
@@ -829,6 +831,7 @@
|
|
|
829
831
|
.seed-action-button--variant_criticalSolid {
|
|
830
832
|
background: var(--seed-color-bg-critical-solid);
|
|
831
833
|
color: var(--seed-color-palette-static-white);
|
|
834
|
+
font-weight: var(--seed-font-weight-bold);
|
|
832
835
|
--seed-prefix-icon-color: var(--seed-color-palette-static-white);
|
|
833
836
|
--seed-suffix-icon-color: var(--seed-color-palette-static-white);
|
|
834
837
|
--seed-icon-color: var(--seed-color-palette-static-white);
|
|
@@ -858,6 +861,7 @@
|
|
|
858
861
|
border-width: 1px;
|
|
859
862
|
border-color: var(--seed-color-stroke-neutral-muted);
|
|
860
863
|
color: var(--seed-color-fg-brand);
|
|
864
|
+
font-weight: var(--seed-font-weight-bold);
|
|
861
865
|
--seed-prefix-icon-color: var(--seed-color-fg-brand);
|
|
862
866
|
--seed-suffix-icon-color: var(--seed-color-fg-brand);
|
|
863
867
|
--seed-icon-color: var(--seed-color-fg-brand);
|
|
@@ -888,6 +892,7 @@
|
|
|
888
892
|
border-width: 1px;
|
|
889
893
|
border-color: var(--seed-color-stroke-neutral-muted);
|
|
890
894
|
color: var(--seed-color-fg-neutral);
|
|
895
|
+
font-weight: var(--seed-font-weight-bold);
|
|
891
896
|
--seed-prefix-icon-color: var(--seed-color-fg-neutral);
|
|
892
897
|
--seed-suffix-icon-color: var(--seed-color-fg-neutral);
|
|
893
898
|
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
@@ -918,6 +923,8 @@
|
|
|
918
923
|
--seed-prefix-icon-color: var(--seed-box-color);
|
|
919
924
|
--seed-suffix-icon-color: var(--seed-box-color);
|
|
920
925
|
--seed-icon-color: var(--seed-box-color);
|
|
926
|
+
--seed-font-weight: var(--seed-font-weight-bold);
|
|
927
|
+
font-weight: var(--seed-font-weight);
|
|
921
928
|
--track-color: var(--seed-color-palette-gray-500);
|
|
922
929
|
--range-color: var(--seed-color-fg-neutral);
|
|
923
930
|
background: #fff0;
|
|
@@ -2010,6 +2017,24 @@
|
|
|
2010
2017
|
padding-bottom: var(--seed-safe-area-bottom);
|
|
2011
2018
|
}
|
|
2012
2019
|
|
|
2020
|
+
.seed-app-screen__layer--tone_transparent {
|
|
2021
|
+
--transparent-gradient-dim-height: 120px;
|
|
2022
|
+
--transparent-gradient-dim-offset: -54px;
|
|
2023
|
+
--transparent-gradient-dim-background: linear-gradient(180deg, #00000059 0%, #0000 100%);
|
|
2024
|
+
}
|
|
2025
|
+
|
|
2026
|
+
.seed-app-screen__layer--tone_transparent:after {
|
|
2027
|
+
content: "";
|
|
2028
|
+
height: var(--transparent-gradient-dim-height);
|
|
2029
|
+
transform: translateY(var(--transparent-gradient-dim-offset));
|
|
2030
|
+
background: var(--transparent-gradient-dim-background);
|
|
2031
|
+
display: block;
|
|
2032
|
+
position: absolute;
|
|
2033
|
+
top: 0;
|
|
2034
|
+
left: 0;
|
|
2035
|
+
right: 0;
|
|
2036
|
+
}
|
|
2037
|
+
|
|
2013
2038
|
.seed-article {
|
|
2014
2039
|
user-select: text;
|
|
2015
2040
|
word-break: normal;
|
|
@@ -2021,10 +2046,6 @@
|
|
|
2021
2046
|
word-break: keep-all;
|
|
2022
2047
|
}
|
|
2023
2048
|
|
|
2024
|
-
.seed-article::selection {
|
|
2025
|
-
background-color: var(--seed-color-palette-carrot-300);
|
|
2026
|
-
}
|
|
2027
|
-
|
|
2028
2049
|
.seed-avatar__root {
|
|
2029
2050
|
box-sizing: border-box;
|
|
2030
2051
|
vertical-align: top;
|
|
@@ -2489,25 +2510,30 @@
|
|
|
2489
2510
|
inset: 0;
|
|
2490
2511
|
}
|
|
2491
2512
|
|
|
2492
|
-
.seed-bottom-sheet__backdrop:
|
|
2493
|
-
animation:
|
|
2513
|
+
.seed-bottom-sheet__backdrop:is([data-state="open"], [data-open])[data-snap-points="false"] {
|
|
2514
|
+
animation-name: fade-in;
|
|
2515
|
+
animation-duration: var(--seed-duration-d6);
|
|
2516
|
+
animation-timing-function: var(--seed-timing-function-enter);
|
|
2517
|
+
}
|
|
2518
|
+
|
|
2519
|
+
.seed-bottom-sheet__backdrop:not(:is([data-state="open"], [data-open]))[data-snap-points="false"] {
|
|
2520
|
+
animation-name: fade-out;
|
|
2521
|
+
animation-duration: var(--seed-duration-d4);
|
|
2494
2522
|
animation-timing-function: var(--seed-timing-function-exit);
|
|
2495
|
-
animation-duration: var(--seed-duration-d2);
|
|
2496
|
-
--seed-exit-translate-x: 0;
|
|
2497
|
-
--seed-exit-translate-y: 0;
|
|
2498
|
-
--seed-exit-opacity: 0;
|
|
2499
|
-
--seed-exit-scale: 1;
|
|
2500
|
-
animation-fill-mode: forwards;
|
|
2501
2523
|
}
|
|
2502
2524
|
|
|
2503
|
-
.seed-bottom-sheet__backdrop:is([data-state="open"], [data-open]) {
|
|
2504
|
-
|
|
2525
|
+
.seed-bottom-sheet__backdrop[data-snap-points="true"], .seed-bottom-sheet__backdrop:not(:is([data-state="open"], [data-open]))[data-snap-points="true"]:not([data-snap-points-overlay="true"]) {
|
|
2526
|
+
opacity: 0;
|
|
2527
|
+
}
|
|
2528
|
+
|
|
2529
|
+
.seed-bottom-sheet__backdrop:is([data-state="open"], [data-open])[data-snap-points-overlay="true"] {
|
|
2530
|
+
opacity: 1;
|
|
2531
|
+
}
|
|
2532
|
+
|
|
2533
|
+
.seed-bottom-sheet__backdrop:is([data-state="open"], [data-open])[data-snap-points="true"][data-should-overlay-animate="true"] {
|
|
2534
|
+
animation-name: fade-in;
|
|
2535
|
+
animation-duration: var(--seed-duration-d6);
|
|
2505
2536
|
animation-timing-function: var(--seed-timing-function-enter);
|
|
2506
|
-
animation-duration: var(--seed-duration-d2);
|
|
2507
|
-
--seed-enter-translate-x: 0;
|
|
2508
|
-
--seed-enter-translate-y: 0;
|
|
2509
|
-
--seed-enter-opacity: 0;
|
|
2510
|
-
--seed-enter-scale: 1;
|
|
2511
2537
|
}
|
|
2512
2538
|
|
|
2513
2539
|
.seed-bottom-sheet__content {
|
|
@@ -2517,31 +2543,52 @@
|
|
|
2517
2543
|
background: var(--seed-color-bg-layer-floating);
|
|
2518
2544
|
border-top-left-radius: var(--seed-radius-r6);
|
|
2519
2545
|
border-top-right-radius: var(--seed-radius-r6);
|
|
2546
|
+
touch-action: none;
|
|
2547
|
+
will-change: transform;
|
|
2548
|
+
transition: transform var(--seed-duration-d6) var(--seed-timing-function-enter-expressive);
|
|
2549
|
+
animation-duration: var(--seed-duration-d6);
|
|
2550
|
+
animation-timing-function: var(--seed-timing-function-enter-expressive);
|
|
2520
2551
|
flex-direction: column;
|
|
2521
2552
|
flex: 1;
|
|
2522
2553
|
display: flex;
|
|
2523
2554
|
position: relative;
|
|
2524
2555
|
}
|
|
2525
2556
|
|
|
2526
|
-
.seed-bottom-sheet__content:
|
|
2527
|
-
animation:
|
|
2528
|
-
animation-
|
|
2557
|
+
.seed-bottom-sheet__content:is([data-state="open"], [data-open])[data-snap-points="false"] {
|
|
2558
|
+
animation-name: drawer-slide-from-bottom;
|
|
2559
|
+
animation-duration: var(--seed-duration-d6);
|
|
2560
|
+
animation-timing-function: var(--seed-timing-function-enter-expressive);
|
|
2561
|
+
}
|
|
2562
|
+
|
|
2563
|
+
.seed-bottom-sheet__content:not(:is([data-state="open"], [data-open]))[data-snap-points="false"] {
|
|
2564
|
+
animation-name: drawer-slide-to-bottom;
|
|
2529
2565
|
animation-duration: var(--seed-duration-d4);
|
|
2530
|
-
--seed-
|
|
2531
|
-
--seed-exit-translate-y: 100%;
|
|
2532
|
-
--seed-exit-opacity: 1;
|
|
2533
|
-
--seed-exit-scale: 1;
|
|
2534
|
-
animation-fill-mode: forwards;
|
|
2566
|
+
animation-timing-function: var(--seed-timing-function-exit);
|
|
2535
2567
|
}
|
|
2536
2568
|
|
|
2537
|
-
.seed-bottom-sheet__content
|
|
2538
|
-
|
|
2539
|
-
|
|
2569
|
+
.seed-bottom-sheet__content[data-snap-points="true"] {
|
|
2570
|
+
transform: translate3d(0, var(--initial-transform, 100%), 0);
|
|
2571
|
+
}
|
|
2572
|
+
|
|
2573
|
+
.seed-bottom-sheet__content:is([data-state="open"], [data-open])[data-delayed-snap-points="true"] {
|
|
2574
|
+
animation-name: drawer-slide-from-bottom;
|
|
2540
2575
|
animation-duration: var(--seed-duration-d6);
|
|
2541
|
-
--seed-enter-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2576
|
+
animation-timing-function: var(--seed-timing-function-enter-expressive);
|
|
2577
|
+
}
|
|
2578
|
+
|
|
2579
|
+
.seed-bottom-sheet__content[data-delayed-snap-points="true"] {
|
|
2580
|
+
transform: translate3d(0, var(--snap-point-height, 0), 0);
|
|
2581
|
+
}
|
|
2582
|
+
|
|
2583
|
+
.seed-bottom-sheet__content:after {
|
|
2584
|
+
content: "";
|
|
2585
|
+
background: inherit;
|
|
2586
|
+
z-index: -1;
|
|
2587
|
+
height: 200vh;
|
|
2588
|
+
position: absolute;
|
|
2589
|
+
top: 100%;
|
|
2590
|
+
left: 0;
|
|
2591
|
+
right: 0;
|
|
2545
2592
|
}
|
|
2546
2593
|
|
|
2547
2594
|
.seed-bottom-sheet__header {
|
|
@@ -2599,6 +2646,7 @@
|
|
|
2599
2646
|
right: var(--seed-dimension-x5);
|
|
2600
2647
|
border-radius: var(--seed-radius-full);
|
|
2601
2648
|
background: var(--seed-color-bg-neutral-weak);
|
|
2649
|
+
cursor: pointer;
|
|
2602
2650
|
--seed-icon-size: 14px;
|
|
2603
2651
|
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
2604
2652
|
border: none;
|
|
@@ -2628,10 +2676,39 @@
|
|
|
2628
2676
|
padding-right: 50px;
|
|
2629
2677
|
}
|
|
2630
2678
|
|
|
2679
|
+
.seed-bottom-sheet-handle__root {
|
|
2680
|
+
background-color: var(--seed-color-palette-gray-400);
|
|
2681
|
+
width: 36px;
|
|
2682
|
+
height: 4px;
|
|
2683
|
+
transition: background-color var(--seed-duration-d4) var(--seed-timing-function-easing);
|
|
2684
|
+
touch-action: pan-y;
|
|
2685
|
+
border-radius: 9999px;
|
|
2686
|
+
position: absolute;
|
|
2687
|
+
top: 6px;
|
|
2688
|
+
left: 50%;
|
|
2689
|
+
transform: translateX(-50%);
|
|
2690
|
+
}
|
|
2691
|
+
|
|
2692
|
+
.seed-bottom-sheet-handle__root:is(:active, [data-active]) {
|
|
2693
|
+
background-color: var(--seed-color-palette-gray-500);
|
|
2694
|
+
}
|
|
2695
|
+
|
|
2696
|
+
.seed-bottom-sheet-handle__touchArea {
|
|
2697
|
+
touch-action: inherit;
|
|
2698
|
+
width: 44px;
|
|
2699
|
+
height: 44px;
|
|
2700
|
+
position: absolute;
|
|
2701
|
+
top: 50%;
|
|
2702
|
+
left: 50%;
|
|
2703
|
+
transform: translate(-50%, -50%);
|
|
2704
|
+
}
|
|
2705
|
+
|
|
2631
2706
|
.seed-callout__root {
|
|
2632
2707
|
box-sizing: border-box;
|
|
2633
2708
|
-webkit-font-smoothing: antialiased;
|
|
2634
2709
|
-moz-osx-font-smoothing: grayscale;
|
|
2710
|
+
font-family: inherit;
|
|
2711
|
+
font-size: unset;
|
|
2635
2712
|
text-align: start;
|
|
2636
2713
|
width: 100%;
|
|
2637
2714
|
min-height: 50px;
|
|
@@ -2643,7 +2720,6 @@
|
|
|
2643
2720
|
--seed-prefix-icon-size: var(--seed-dimension-x4);
|
|
2644
2721
|
--seed-suffix-icon-size: var(--seed-dimension-x4);
|
|
2645
2722
|
border: none;
|
|
2646
|
-
font-family: inherit;
|
|
2647
2723
|
display: flex;
|
|
2648
2724
|
}
|
|
2649
2725
|
|
|
@@ -2652,6 +2728,7 @@
|
|
|
2652
2728
|
}
|
|
2653
2729
|
|
|
2654
2730
|
.seed-callout__content {
|
|
2731
|
+
line-height: var(--seed-line-height-t4);
|
|
2655
2732
|
margin-inline-end: auto;
|
|
2656
2733
|
}
|
|
2657
2734
|
|
|
@@ -3981,6 +4058,113 @@
|
|
|
3981
4058
|
background: var(--seed-color-bg-layer-floating-pressed);
|
|
3982
4059
|
}
|
|
3983
4060
|
|
|
4061
|
+
.seed-field__root {
|
|
4062
|
+
gap: var(--seed-dimension-x2);
|
|
4063
|
+
flex-direction: column;
|
|
4064
|
+
width: 100%;
|
|
4065
|
+
display: flex;
|
|
4066
|
+
}
|
|
4067
|
+
|
|
4068
|
+
.seed-field__header {
|
|
4069
|
+
padding-inline: var(--seed-dimension-x0_5);
|
|
4070
|
+
justify-content: space-between;
|
|
4071
|
+
align-items: center;
|
|
4072
|
+
gap: var(--seed-dimension-x2_5);
|
|
4073
|
+
display: flex;
|
|
4074
|
+
}
|
|
4075
|
+
|
|
4076
|
+
.seed-field__footer {
|
|
4077
|
+
padding-inline: var(--seed-dimension-x0_5);
|
|
4078
|
+
justify-content: space-between;
|
|
4079
|
+
align-items: flex-start;
|
|
4080
|
+
gap: var(--seed-dimension-x2);
|
|
4081
|
+
display: flex;
|
|
4082
|
+
}
|
|
4083
|
+
|
|
4084
|
+
.seed-field__description {
|
|
4085
|
+
color: var(--seed-color-fg-neutral-subtle);
|
|
4086
|
+
font-weight: var(--seed-font-weight-regular);
|
|
4087
|
+
font-size: var(--seed-font-size-t4);
|
|
4088
|
+
line-height: var(--seed-line-height-t4);
|
|
4089
|
+
--seed-prefix-icon-size: var(--seed-dimension-x4);
|
|
4090
|
+
--seed-prefix-icon-color: var(--seed-color-fg-neutral-subtle);
|
|
4091
|
+
--seed-prefix-icon-margin-right: var(--seed-dimension-x1_5);
|
|
4092
|
+
--seed-prefix-icon-margin-top: calc((var(--seed-line-height-t4) - var(--seed-dimension-x4)) / 2);
|
|
4093
|
+
display: flex;
|
|
4094
|
+
}
|
|
4095
|
+
|
|
4096
|
+
.seed-field__errorMessage {
|
|
4097
|
+
color: var(--seed-color-fg-critical);
|
|
4098
|
+
font-weight: var(--seed-font-weight-regular);
|
|
4099
|
+
font-size: var(--seed-font-size-t4);
|
|
4100
|
+
line-height: var(--seed-line-height-t4);
|
|
4101
|
+
--seed-prefix-icon-size: var(--seed-dimension-x4);
|
|
4102
|
+
--seed-prefix-icon-color: var(--seed-color-fg-critical);
|
|
4103
|
+
--seed-prefix-icon-margin-right: var(--seed-dimension-x1_5);
|
|
4104
|
+
--seed-prefix-icon-margin-top: calc((var(--seed-line-height-t4) - var(--seed-dimension-x4)) / 2);
|
|
4105
|
+
display: flex;
|
|
4106
|
+
}
|
|
4107
|
+
|
|
4108
|
+
.seed-field__characterCount {
|
|
4109
|
+
color: var(--seed-color-fg-neutral);
|
|
4110
|
+
font-weight: var(--seed-font-weight-regular);
|
|
4111
|
+
font-size: var(--seed-font-size-t4);
|
|
4112
|
+
line-height: var(--seed-line-height-t4);
|
|
4113
|
+
}
|
|
4114
|
+
|
|
4115
|
+
.seed-field__characterCount[data-empty]:not(:is(:invalid, [data-invalid])) {
|
|
4116
|
+
color: var(--seed-color-fg-neutral-subtle);
|
|
4117
|
+
}
|
|
4118
|
+
|
|
4119
|
+
.seed-field__characterCount:is(:invalid, [data-invalid]) {
|
|
4120
|
+
color: var(--seed-color-fg-critical);
|
|
4121
|
+
}
|
|
4122
|
+
|
|
4123
|
+
.seed-field__maxCharacterCount {
|
|
4124
|
+
color: var(--seed-color-fg-neutral-subtle);
|
|
4125
|
+
font-weight: var(--seed-font-weight-regular);
|
|
4126
|
+
font-size: var(--seed-font-size-t4);
|
|
4127
|
+
line-height: var(--seed-line-height-t4);
|
|
4128
|
+
}
|
|
4129
|
+
|
|
4130
|
+
.seed-field__maxCharacterCount:is(:invalid, [data-invalid]) {
|
|
4131
|
+
color: var(--seed-color-fg-critical);
|
|
4132
|
+
}
|
|
4133
|
+
|
|
4134
|
+
.seed-field-label__root {
|
|
4135
|
+
color: var(--seed-color-fg-neutral);
|
|
4136
|
+
font-size: var(--seed-font-size-t5);
|
|
4137
|
+
line-height: var(--seed-line-height-t5);
|
|
4138
|
+
}
|
|
4139
|
+
|
|
4140
|
+
.seed-field-label__indicatorText {
|
|
4141
|
+
vertical-align: bottom;
|
|
4142
|
+
color: var(--seed-color-fg-neutral-subtle);
|
|
4143
|
+
font-size: var(--seed-font-size-t4);
|
|
4144
|
+
line-height: var(--seed-line-height-t5);
|
|
4145
|
+
font-weight: var(--seed-font-weight-regular);
|
|
4146
|
+
padding-inline-start: .25rem;
|
|
4147
|
+
display: inline;
|
|
4148
|
+
}
|
|
4149
|
+
|
|
4150
|
+
.seed-field-label__indicatorIcon {
|
|
4151
|
+
vertical-align: top;
|
|
4152
|
+
width: .375rem;
|
|
4153
|
+
height: .375rem;
|
|
4154
|
+
color: var(--seed-color-fg-critical);
|
|
4155
|
+
margin-block-start: .25rem;
|
|
4156
|
+
margin-inline-start: .125rem;
|
|
4157
|
+
display: inline;
|
|
4158
|
+
}
|
|
4159
|
+
|
|
4160
|
+
.seed-field-label__root--weight_medium {
|
|
4161
|
+
font-weight: var(--seed-font-weight-medium);
|
|
4162
|
+
}
|
|
4163
|
+
|
|
4164
|
+
.seed-field-label__root--weight_bold {
|
|
4165
|
+
font-weight: var(--seed-font-weight-bold);
|
|
4166
|
+
}
|
|
4167
|
+
|
|
3984
4168
|
.seed-floating-action-button__root {
|
|
3985
4169
|
box-sizing: border-box;
|
|
3986
4170
|
cursor: pointer;
|
|
@@ -4333,61 +4517,174 @@
|
|
|
4333
4517
|
color: var(--seed-color-palette-static-white);
|
|
4334
4518
|
}
|
|
4335
4519
|
|
|
4336
|
-
.seed-
|
|
4337
|
-
cursor: pointer;
|
|
4520
|
+
.seed-input-button__root {
|
|
4338
4521
|
box-sizing: border-box;
|
|
4339
|
-
|
|
4340
|
-
|
|
4341
|
-
|
|
4342
|
-
|
|
4343
|
-
|
|
4522
|
+
isolation: isolate;
|
|
4523
|
+
width: 100%;
|
|
4524
|
+
height: var(--seed-dimension-x13);
|
|
4525
|
+
align-items: center;
|
|
4526
|
+
gap: var(--seed-dimension-x2_5);
|
|
4527
|
+
padding-inline: var(--seed-dimension-x4);
|
|
4528
|
+
display: flex;
|
|
4529
|
+
position: relative;
|
|
4530
|
+
}
|
|
4531
|
+
|
|
4532
|
+
.seed-input-button__button {
|
|
4533
|
+
z-index: -1;
|
|
4534
|
+
cursor: pointer;
|
|
4535
|
+
border-radius: var(--seed-radius-r3);
|
|
4536
|
+
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-neutral-weak);
|
|
4537
|
+
transition: box-shadow var(--seed-duration-d3) var(--seed-timing-function-easing), background-color var(--seed-duration-d3) var(--seed-timing-function-easing);
|
|
4344
4538
|
background-color: #0000;
|
|
4345
4539
|
border: none;
|
|
4540
|
+
position: absolute;
|
|
4541
|
+
inset: 0;
|
|
4542
|
+
}
|
|
4543
|
+
|
|
4544
|
+
.seed-input-button__button:is(:disabled, [disabled], [data-disabled]) {
|
|
4545
|
+
cursor: not-allowed;
|
|
4546
|
+
background-color: var(--seed-color-bg-disabled);
|
|
4547
|
+
}
|
|
4548
|
+
|
|
4549
|
+
.seed-input-button__button:is(:active, [data-active]) {
|
|
4550
|
+
background-color: var(--seed-color-bg-layer-default-pressed);
|
|
4551
|
+
}
|
|
4552
|
+
|
|
4553
|
+
.seed-input-button__button:is(:focus, [data-focus]) {
|
|
4346
4554
|
outline: none;
|
|
4347
|
-
align-items: center;
|
|
4348
|
-
padding-block: 0;
|
|
4349
|
-
padding-inline: 0;
|
|
4350
|
-
font-family: inherit;
|
|
4351
|
-
display: inline-flex;
|
|
4352
4555
|
}
|
|
4353
4556
|
|
|
4354
|
-
.seed-
|
|
4355
|
-
|
|
4557
|
+
.seed-input-button__button:is(:invalid, [data-invalid]) {
|
|
4558
|
+
box-shadow: inset 0 0 0 2px var(--seed-color-stroke-critical-solid);
|
|
4356
4559
|
}
|
|
4357
4560
|
|
|
4358
|
-
.seed-
|
|
4561
|
+
.seed-input-button__value {
|
|
4562
|
+
font-size: var(--seed-font-size-t5);
|
|
4563
|
+
line-height: var(--seed-line-height-t5);
|
|
4359
4564
|
font-weight: var(--seed-font-weight-regular);
|
|
4565
|
+
color: var(--seed-color-fg-neutral);
|
|
4566
|
+
text-overflow: ellipsis;
|
|
4567
|
+
white-space: nowrap;
|
|
4568
|
+
pointer-events: none;
|
|
4569
|
+
flex-grow: 1;
|
|
4570
|
+
overflow: hidden;
|
|
4360
4571
|
}
|
|
4361
4572
|
|
|
4362
|
-
.seed-
|
|
4363
|
-
|
|
4364
|
-
line-height: var(--seed-line-height-t6);
|
|
4365
|
-
gap: var(--seed-dimension-x0_5);
|
|
4366
|
-
--seed-suffix-icon-size: var(--seed-dimension-x4);
|
|
4573
|
+
.seed-input-button__value:is(:disabled, [disabled], [data-disabled]) {
|
|
4574
|
+
color: var(--seed-color-fg-disabled);
|
|
4367
4575
|
}
|
|
4368
4576
|
|
|
4369
|
-
.seed-
|
|
4577
|
+
.seed-input-button__placeholder {
|
|
4370
4578
|
font-size: var(--seed-font-size-t5);
|
|
4371
4579
|
line-height: var(--seed-line-height-t5);
|
|
4372
|
-
|
|
4373
|
-
|
|
4580
|
+
font-weight: var(--seed-font-weight-regular);
|
|
4581
|
+
color: var(--seed-color-fg-placeholder);
|
|
4582
|
+
text-overflow: ellipsis;
|
|
4583
|
+
white-space: nowrap;
|
|
4584
|
+
pointer-events: none;
|
|
4585
|
+
flex-grow: 1;
|
|
4586
|
+
overflow: hidden;
|
|
4374
4587
|
}
|
|
4375
4588
|
|
|
4376
|
-
.seed-
|
|
4377
|
-
|
|
4378
|
-
line-height: var(--seed-line-height-t4);
|
|
4379
|
-
gap: var(--seed-dimension-x0_5);
|
|
4380
|
-
--seed-suffix-icon-size: var(--seed-dimension-x3);
|
|
4589
|
+
.seed-input-button__placeholder:is(:disabled, [disabled], [data-disabled]) {
|
|
4590
|
+
color: var(--seed-color-fg-disabled);
|
|
4381
4591
|
}
|
|
4382
4592
|
|
|
4383
|
-
.seed-
|
|
4384
|
-
|
|
4385
|
-
|
|
4386
|
-
|
|
4387
|
-
|
|
4388
|
-
|
|
4389
|
-
|
|
4390
|
-
|
|
4593
|
+
.seed-input-button__prefixText {
|
|
4594
|
+
font-size: var(--seed-font-size-t5);
|
|
4595
|
+
line-height: var(--seed-line-height-t5);
|
|
4596
|
+
font-weight: var(--seed-font-weight-regular);
|
|
4597
|
+
color: var(--seed-color-fg-neutral-muted);
|
|
4598
|
+
pointer-events: none;
|
|
4599
|
+
}
|
|
4600
|
+
|
|
4601
|
+
.seed-input-button__prefixIcon {
|
|
4602
|
+
width: var(--seed-dimension-x5);
|
|
4603
|
+
height: var(--seed-dimension-x5);
|
|
4604
|
+
color: var(--seed-color-fg-neutral-muted);
|
|
4605
|
+
pointer-events: none;
|
|
4606
|
+
flex-shrink: 0;
|
|
4607
|
+
}
|
|
4608
|
+
|
|
4609
|
+
.seed-input-button__suffixText {
|
|
4610
|
+
font-size: var(--seed-font-size-t5);
|
|
4611
|
+
line-height: var(--seed-line-height-t5);
|
|
4612
|
+
font-weight: var(--seed-font-weight-regular);
|
|
4613
|
+
color: var(--seed-color-fg-neutral-muted);
|
|
4614
|
+
pointer-events: none;
|
|
4615
|
+
}
|
|
4616
|
+
|
|
4617
|
+
.seed-input-button__suffixIcon {
|
|
4618
|
+
width: var(--seed-dimension-x5);
|
|
4619
|
+
height: var(--seed-dimension-x5);
|
|
4620
|
+
color: var(--seed-color-fg-neutral-muted);
|
|
4621
|
+
pointer-events: none;
|
|
4622
|
+
flex-shrink: 0;
|
|
4623
|
+
}
|
|
4624
|
+
|
|
4625
|
+
.seed-input-button__clearButton {
|
|
4626
|
+
cursor: pointer;
|
|
4627
|
+
--seed-icon-size: 22px;
|
|
4628
|
+
--seed-icon-color: var(--seed-color-fg-neutral-subtle);
|
|
4629
|
+
background-color: #0000;
|
|
4630
|
+
border: none;
|
|
4631
|
+
}
|
|
4632
|
+
|
|
4633
|
+
.seed-link-content {
|
|
4634
|
+
cursor: pointer;
|
|
4635
|
+
box-sizing: border-box;
|
|
4636
|
+
-webkit-font-smoothing: antialiased;
|
|
4637
|
+
-moz-osx-font-smoothing: grayscale;
|
|
4638
|
+
text-align: center;
|
|
4639
|
+
color: var(--seed-box-color);
|
|
4640
|
+
--seed-suffix-icon-color: var(--seed-box-color);
|
|
4641
|
+
background-color: #0000;
|
|
4642
|
+
border: none;
|
|
4643
|
+
outline: none;
|
|
4644
|
+
align-items: center;
|
|
4645
|
+
padding-block: 0;
|
|
4646
|
+
padding-inline: 0;
|
|
4647
|
+
font-family: inherit;
|
|
4648
|
+
display: inline-flex;
|
|
4649
|
+
}
|
|
4650
|
+
|
|
4651
|
+
.seed-link-content--weight_bold {
|
|
4652
|
+
font-weight: var(--seed-font-weight-bold);
|
|
4653
|
+
}
|
|
4654
|
+
|
|
4655
|
+
.seed-link-content--weight_regular {
|
|
4656
|
+
font-weight: var(--seed-font-weight-regular);
|
|
4657
|
+
}
|
|
4658
|
+
|
|
4659
|
+
.seed-link-content--size_t6 {
|
|
4660
|
+
font-size: var(--seed-font-size-t6);
|
|
4661
|
+
line-height: var(--seed-line-height-t6);
|
|
4662
|
+
gap: var(--seed-dimension-x0_5);
|
|
4663
|
+
--seed-suffix-icon-size: var(--seed-dimension-x4);
|
|
4664
|
+
}
|
|
4665
|
+
|
|
4666
|
+
.seed-link-content--size_t5 {
|
|
4667
|
+
font-size: var(--seed-font-size-t5);
|
|
4668
|
+
line-height: var(--seed-line-height-t5);
|
|
4669
|
+
gap: var(--seed-dimension-x0_5);
|
|
4670
|
+
--seed-suffix-icon-size: var(--seed-dimension-x3_5);
|
|
4671
|
+
}
|
|
4672
|
+
|
|
4673
|
+
.seed-link-content--size_t4 {
|
|
4674
|
+
font-size: var(--seed-font-size-t4);
|
|
4675
|
+
line-height: var(--seed-line-height-t4);
|
|
4676
|
+
gap: var(--seed-dimension-x0_5);
|
|
4677
|
+
--seed-suffix-icon-size: var(--seed-dimension-x3);
|
|
4678
|
+
}
|
|
4679
|
+
|
|
4680
|
+
.seed-list-header {
|
|
4681
|
+
align-items: center;
|
|
4682
|
+
gap: var(--seed-dimension-x2_5);
|
|
4683
|
+
width: 100%;
|
|
4684
|
+
padding-inline: var(--seed-dimension-spacing-x-global-gutter);
|
|
4685
|
+
padding-block: var(--seed-dimension-x2);
|
|
4686
|
+
font-size: var(--seed-font-size-t4);
|
|
4687
|
+
line-height: var(--seed-line-height-t4);
|
|
4391
4688
|
justify-content: space-between;
|
|
4392
4689
|
display: flex;
|
|
4393
4690
|
}
|
|
@@ -4409,7 +4706,7 @@
|
|
|
4409
4706
|
z-index: 0;
|
|
4410
4707
|
width: 100%;
|
|
4411
4708
|
padding-inline: var(--seed-dimension-spacing-x-global-gutter);
|
|
4412
|
-
padding-block: var(--seed-dimension-
|
|
4709
|
+
padding-block: var(--seed-dimension-x3);
|
|
4413
4710
|
--seed-box-align-items: center;
|
|
4414
4711
|
align-items: var(--seed-box-align-items);
|
|
4415
4712
|
transition-property: background-color;
|
|
@@ -4883,6 +5180,8 @@
|
|
|
4883
5180
|
box-sizing: border-box;
|
|
4884
5181
|
-webkit-font-smoothing: antialiased;
|
|
4885
5182
|
-moz-osx-font-smoothing: grayscale;
|
|
5183
|
+
font-family: inherit;
|
|
5184
|
+
font-size: unset;
|
|
4886
5185
|
text-align: start;
|
|
4887
5186
|
width: 100%;
|
|
4888
5187
|
min-height: var(--seed-dimension-x10);
|
|
@@ -4896,7 +5195,6 @@
|
|
|
4896
5195
|
--seed-suffix-icon-align-self: center;
|
|
4897
5196
|
border: none;
|
|
4898
5197
|
align-items: flex-start;
|
|
4899
|
-
font-family: inherit;
|
|
4900
5198
|
display: flex;
|
|
4901
5199
|
}
|
|
4902
5200
|
|
|
@@ -4904,7 +5202,7 @@
|
|
|
4904
5202
|
cursor: pointer;
|
|
4905
5203
|
}
|
|
4906
5204
|
|
|
4907
|
-
.seed-page-
|
|
5205
|
+
.seed-page-banner__content {
|
|
4908
5206
|
justify-content: space-between;
|
|
4909
5207
|
align-items: center;
|
|
4910
5208
|
gap: var(--seed-dimension-x1_5);
|
|
@@ -4913,6 +5211,11 @@
|
|
|
4913
5211
|
display: flex;
|
|
4914
5212
|
}
|
|
4915
5213
|
|
|
5214
|
+
.seed-page-banner__body {
|
|
5215
|
+
line-height: var(--seed-line-height-t4);
|
|
5216
|
+
flex-grow: 1;
|
|
5217
|
+
}
|
|
5218
|
+
|
|
4916
5219
|
.seed-page-banner__title {
|
|
4917
5220
|
font-size: var(--seed-font-size-t4);
|
|
4918
5221
|
line-height: var(--seed-line-height-t4);
|
|
@@ -5603,177 +5906,454 @@
|
|
|
5603
5906
|
background-image: linear-gradient(90deg, var(--seed-gradient-shimmer-magic));
|
|
5604
5907
|
}
|
|
5605
5908
|
|
|
5606
|
-
.seed-
|
|
5607
|
-
|
|
5608
|
-
|
|
5609
|
-
|
|
5909
|
+
.seed-slider__root {
|
|
5910
|
+
align-items: stretch;
|
|
5911
|
+
gap: var(--seed-dimension-x0_5);
|
|
5912
|
+
user-select: none;
|
|
5913
|
+
touch-action: none;
|
|
5914
|
+
flex-direction: column;
|
|
5610
5915
|
width: 100%;
|
|
5611
|
-
max-width: 560px;
|
|
5612
|
-
padding-inline: var(--seed-dimension-x2_5);
|
|
5613
|
-
padding-block: var(--seed-dimension-x2_5);
|
|
5614
|
-
min-height: 44px;
|
|
5615
|
-
animation: seed-enter;
|
|
5616
|
-
animation-timing-function: var(--seed-timing-function-enter);
|
|
5617
|
-
animation-duration: var(--seed-duration-d3);
|
|
5618
|
-
--seed-enter-translate-x: 0;
|
|
5619
|
-
--seed-enter-translate-y: 0;
|
|
5620
|
-
--seed-enter-opacity: 0;
|
|
5621
|
-
--seed-enter-scale: .8;
|
|
5622
|
-
align-items: center;
|
|
5623
5916
|
display: flex;
|
|
5624
5917
|
}
|
|
5625
5918
|
|
|
5626
|
-
.seed-
|
|
5627
|
-
animation: seed-exit;
|
|
5628
|
-
animation-timing-function: var(--seed-timing-function-exit);
|
|
5629
|
-
animation-duration: var(--seed-duration-d2);
|
|
5630
|
-
--seed-exit-translate-x: 0;
|
|
5631
|
-
--seed-exit-translate-y: 0;
|
|
5632
|
-
--seed-exit-opacity: 0;
|
|
5633
|
-
--seed-exit-scale: .8;
|
|
5634
|
-
animation-fill-mode: forwards;
|
|
5635
|
-
}
|
|
5636
|
-
|
|
5637
|
-
.seed-snackbar__content {
|
|
5638
|
-
padding-inline: var(--seed-dimension-x1_5);
|
|
5639
|
-
justify-content: space-between;
|
|
5919
|
+
.seed-slider__control {
|
|
5640
5920
|
align-items: center;
|
|
5641
|
-
|
|
5642
|
-
flex-grow: 1;
|
|
5921
|
+
height: 26px;
|
|
5643
5922
|
display: flex;
|
|
5923
|
+
position: relative;
|
|
5644
5924
|
}
|
|
5645
5925
|
|
|
5646
|
-
.seed-
|
|
5647
|
-
color: var(--seed-color-
|
|
5648
|
-
|
|
5649
|
-
|
|
5650
|
-
|
|
5651
|
-
margin: 0;
|
|
5652
|
-
}
|
|
5653
|
-
|
|
5654
|
-
.seed-snackbar__prefixIcon {
|
|
5655
|
-
width: 24px;
|
|
5656
|
-
height: 24px;
|
|
5657
|
-
padding-right: var(--seed-dimension-x0_5);
|
|
5658
|
-
flex-shrink: 0;
|
|
5659
|
-
}
|
|
5660
|
-
|
|
5661
|
-
.seed-snackbar__actionButton {
|
|
5662
|
-
box-sizing: border-box;
|
|
5663
|
-
cursor: pointer;
|
|
5664
|
-
text-transform: none;
|
|
5665
|
-
-webkit-font-smoothing: antialiased;
|
|
5666
|
-
-moz-osx-font-smoothing: grayscale;
|
|
5667
|
-
background-color: unset;
|
|
5668
|
-
color: var(--seed-color-fg-brand);
|
|
5669
|
-
font-size: var(--seed-font-size-t4);
|
|
5670
|
-
line-height: var(--seed-line-height-t4);
|
|
5671
|
-
font-weight: var(--seed-font-weight-bold);
|
|
5672
|
-
border: none;
|
|
5673
|
-
outline: none;
|
|
5674
|
-
flex-shrink: 0;
|
|
5675
|
-
justify-content: center;
|
|
5676
|
-
align-items: center;
|
|
5677
|
-
text-decoration: none;
|
|
5678
|
-
display: inline-flex;
|
|
5926
|
+
.seed-slider__track {
|
|
5927
|
+
background-color: var(--seed-color-palette-gray-400);
|
|
5928
|
+
height: var(--seed-dimension-x1);
|
|
5929
|
+
border-radius: var(--seed-radius-full);
|
|
5930
|
+
flex-grow: 1;
|
|
5679
5931
|
position: relative;
|
|
5932
|
+
overflow: hidden;
|
|
5680
5933
|
}
|
|
5681
5934
|
|
|
5682
|
-
.seed-
|
|
5683
|
-
|
|
5684
|
-
|
|
5685
|
-
|
|
5686
|
-
|
|
5687
|
-
background: none;
|
|
5688
|
-
min-height: 44px;
|
|
5935
|
+
.seed-slider__range {
|
|
5936
|
+
background-color: var(--seed-color-fg-neutral);
|
|
5937
|
+
height: 100%;
|
|
5938
|
+
transition: left var(--seed-duration-d3) var(--seed-timing-function-easing), right var(--seed-duration-d3) var(--seed-timing-function-easing);
|
|
5939
|
+
will-change: left, right;
|
|
5689
5940
|
position: absolute;
|
|
5690
|
-
transform: translateY(-50%);
|
|
5691
5941
|
}
|
|
5692
5942
|
|
|
5693
|
-
.seed-
|
|
5694
|
-
|
|
5943
|
+
.seed-slider__range[data-dir="ltr"] {
|
|
5944
|
+
left: var(--range-start);
|
|
5945
|
+
right: var(--range-end);
|
|
5695
5946
|
}
|
|
5696
5947
|
|
|
5697
|
-
.seed-
|
|
5698
|
-
|
|
5948
|
+
.seed-slider__range[data-dir="rtl"] {
|
|
5949
|
+
right: var(--range-start);
|
|
5950
|
+
left: var(--range-end);
|
|
5699
5951
|
}
|
|
5700
5952
|
|
|
5701
|
-
.seed-
|
|
5702
|
-
color: var(--seed-color-fg-
|
|
5953
|
+
.seed-slider__range:is(:disabled, [disabled], [data-disabled]) {
|
|
5954
|
+
background-color: var(--seed-color-fg-disabled);
|
|
5703
5955
|
}
|
|
5704
5956
|
|
|
5705
|
-
.seed-
|
|
5706
|
-
|
|
5707
|
-
left: calc(env(safe-area-inset-left, 0px));
|
|
5708
|
-
right: calc(env(safe-area-inset-right, 0px));
|
|
5709
|
-
bottom: calc(env(safe-area-inset-bottom, 0px) + var(--snackbar-region-offset, 0px));
|
|
5710
|
-
padding-inline: var(--seed-dimension-x2);
|
|
5711
|
-
padding-block: var(--seed-dimension-x2);
|
|
5712
|
-
transition-property: bottom;
|
|
5713
|
-
transition-duration: var(--seed-duration-d4);
|
|
5714
|
-
transition-timing-function: var(--seed-timing-function-easing);
|
|
5715
|
-
flex-direction: column;
|
|
5716
|
-
align-items: center;
|
|
5717
|
-
display: flex;
|
|
5957
|
+
.seed-slider__range[data-dragging] {
|
|
5958
|
+
transition: none;
|
|
5718
5959
|
}
|
|
5719
5960
|
|
|
5720
|
-
.seed-
|
|
5721
|
-
|
|
5722
|
-
|
|
5723
|
-
|
|
5724
|
-
|
|
5725
|
-
|
|
5726
|
-
|
|
5727
|
-
|
|
5728
|
-
position: relative;
|
|
5961
|
+
.seed-slider__thumb {
|
|
5962
|
+
width: var(--seed-dimension-x5);
|
|
5963
|
+
height: var(--seed-dimension-x5);
|
|
5964
|
+
transition: left var(--seed-duration-d3) var(--seed-timing-function-easing), right var(--seed-duration-d3) var(--seed-timing-function-easing), opacity var(--seed-duration-d2) var(--seed-timing-function-easing);
|
|
5965
|
+
will-change: left, right, opacity;
|
|
5966
|
+
position: absolute;
|
|
5967
|
+
top: 50%;
|
|
5968
|
+
transform: translate(-50%, -50%);
|
|
5729
5969
|
}
|
|
5730
5970
|
|
|
5731
|
-
.seed-
|
|
5732
|
-
|
|
5971
|
+
.seed-slider__thumb[data-ssr] {
|
|
5972
|
+
opacity: 0;
|
|
5733
5973
|
}
|
|
5734
5974
|
|
|
5735
|
-
.seed-
|
|
5736
|
-
|
|
5737
|
-
color: var(--seed-color-fg-neutral);
|
|
5738
|
-
transition: opacity var(--seed-duration-d1) var(--seed-timing-function-easing);
|
|
5975
|
+
.seed-slider__thumb[data-dir="ltr"] {
|
|
5976
|
+
left: calc(var(--thumb-position) * 1% + var(--thumb-offset));
|
|
5739
5977
|
}
|
|
5740
5978
|
|
|
5741
|
-
.seed-
|
|
5742
|
-
|
|
5979
|
+
.seed-slider__thumb[data-dir="rtl"] {
|
|
5980
|
+
right: calc(var(--thumb-position) * 1% + var(--thumb-offset));
|
|
5743
5981
|
}
|
|
5744
5982
|
|
|
5745
|
-
.seed-
|
|
5746
|
-
|
|
5747
|
-
|
|
5748
|
-
|
|
5983
|
+
.seed-slider__thumb:after {
|
|
5984
|
+
content: "";
|
|
5985
|
+
background-color: var(--seed-color-bg-neutral-inverted);
|
|
5986
|
+
border-radius: var(--seed-radius-full);
|
|
5987
|
+
transition: transform var(--seed-duration-d3) var(--seed-timing-function-easing);
|
|
5988
|
+
will-change: transform;
|
|
5989
|
+
position: absolute;
|
|
5990
|
+
inset: 0;
|
|
5749
5991
|
}
|
|
5750
5992
|
|
|
5751
|
-
.seed-
|
|
5752
|
-
|
|
5753
|
-
line-height: var(--seed-line-height-t3);
|
|
5754
|
-
margin-top: calc(12px - .5625rem);
|
|
5993
|
+
.seed-slider__thumb:is(:disabled, [disabled], [data-disabled]):after {
|
|
5994
|
+
background-color: var(--seed-color-fg-disabled);
|
|
5755
5995
|
}
|
|
5756
5996
|
|
|
5757
|
-
.seed-
|
|
5758
|
-
|
|
5759
|
-
gap: var(--seed-dimension-x2);
|
|
5760
|
-
--switch-mark-margin-top: calc((var(--seed-dimension-x6) - 24px) / 2);
|
|
5997
|
+
.seed-slider__thumb[data-dragging] {
|
|
5998
|
+
transition: none;
|
|
5761
5999
|
}
|
|
5762
6000
|
|
|
5763
|
-
.seed-
|
|
5764
|
-
|
|
5765
|
-
line-height: var(--seed-line-height-t4);
|
|
5766
|
-
margin-top: calc(12px - .59375rem);
|
|
6001
|
+
.seed-slider__thumb[data-thumb-dragging]:after {
|
|
6002
|
+
transform: scale(1.2);
|
|
5767
6003
|
}
|
|
5768
6004
|
|
|
5769
|
-
.seed-
|
|
5770
|
-
|
|
5771
|
-
gap: var(--seed-dimension-x2_5);
|
|
5772
|
-
--switch-mark-margin-top: calc((var(--seed-dimension-x8) - 32px) / 2);
|
|
6005
|
+
.seed-slider__thumb:is(:focus, [data-focus]) {
|
|
6006
|
+
outline: none;
|
|
5773
6007
|
}
|
|
5774
6008
|
|
|
5775
|
-
.seed-
|
|
5776
|
-
|
|
6009
|
+
.seed-slider__markers {
|
|
6010
|
+
height: var(--seed-line-height-t3);
|
|
6011
|
+
position: relative;
|
|
6012
|
+
}
|
|
6013
|
+
|
|
6014
|
+
.seed-slider__valueIndicatorRoot {
|
|
6015
|
+
background: var(--seed-color-bg-neutral-inverted);
|
|
6016
|
+
padding-inline: var(--seed-dimension-x1_5);
|
|
6017
|
+
padding-block: var(--seed-dimension-x0_5);
|
|
6018
|
+
border-radius: var(--seed-radius-r1);
|
|
6019
|
+
color: var(--seed-color-fg-neutral-inverted);
|
|
6020
|
+
font-size: var(--seed-font-size-t1);
|
|
6021
|
+
line-height: var(--seed-line-height-t1);
|
|
6022
|
+
font-weight: var(--seed-font-weight-medium);
|
|
6023
|
+
white-space: pre-wrap;
|
|
6024
|
+
text-align: center;
|
|
6025
|
+
width: max-content;
|
|
6026
|
+
bottom: calc(100% + var(--seed-dimension-x3));
|
|
6027
|
+
opacity: 0;
|
|
6028
|
+
flex-direction: column;
|
|
6029
|
+
display: flex;
|
|
6030
|
+
position: absolute;
|
|
6031
|
+
}
|
|
6032
|
+
|
|
6033
|
+
.seed-slider__valueIndicatorRoot[data-dir="ltr"] {
|
|
6034
|
+
left: calc(var(--indicator-position) * 1% + var(--indicator-offset));
|
|
6035
|
+
transform: translateX(-50%);
|
|
6036
|
+
}
|
|
6037
|
+
|
|
6038
|
+
.seed-slider__valueIndicatorRoot[data-dir="rtl"] {
|
|
6039
|
+
right: calc(var(--indicator-position) * 1% + var(--indicator-offset));
|
|
6040
|
+
transform: translateX(50%);
|
|
6041
|
+
}
|
|
6042
|
+
|
|
6043
|
+
.seed-slider__valueIndicatorRoot[data-thumb-dragging] {
|
|
6044
|
+
opacity: 1;
|
|
6045
|
+
}
|
|
6046
|
+
|
|
6047
|
+
.seed-slider__valueIndicatorRoot[data-thumb-dragging][data-dir="ltr"] {
|
|
6048
|
+
animation: seed-enter;
|
|
6049
|
+
animation-timing-function: var(--seed-timing-function-enter);
|
|
6050
|
+
animation-duration: var(--seed-duration-d4);
|
|
6051
|
+
--seed-enter-translate-x: -50%;
|
|
6052
|
+
--seed-enter-translate-y: var(--seed-dimension-x3);
|
|
6053
|
+
--seed-enter-opacity: 0;
|
|
6054
|
+
--seed-enter-scale: .9;
|
|
6055
|
+
}
|
|
6056
|
+
|
|
6057
|
+
.seed-slider__valueIndicatorRoot[data-thumb-dragging][data-dir="rtl"] {
|
|
6058
|
+
animation: seed-enter;
|
|
6059
|
+
animation-timing-function: var(--seed-timing-function-enter);
|
|
6060
|
+
animation-duration: var(--seed-duration-d4);
|
|
6061
|
+
--seed-enter-translate-x: 50%;
|
|
6062
|
+
--seed-enter-translate-y: var(--seed-dimension-x3);
|
|
6063
|
+
--seed-enter-opacity: 0;
|
|
6064
|
+
--seed-enter-scale: .9;
|
|
6065
|
+
}
|
|
6066
|
+
|
|
6067
|
+
.seed-slider__valueIndicatorRoot:not([data-thumb-dragging])[data-dir="ltr"] {
|
|
6068
|
+
animation: seed-exit;
|
|
6069
|
+
animation-timing-function: var(--seed-timing-function-easing);
|
|
6070
|
+
animation-duration: var(--seed-duration-d4);
|
|
6071
|
+
--seed-exit-translate-x: -50%;
|
|
6072
|
+
--seed-exit-translate-y: var(--seed-dimension-x3);
|
|
6073
|
+
--seed-exit-opacity: 0;
|
|
6074
|
+
--seed-exit-scale: 1;
|
|
6075
|
+
animation-fill-mode: forwards;
|
|
6076
|
+
}
|
|
6077
|
+
|
|
6078
|
+
.seed-slider__valueIndicatorRoot:not([data-thumb-dragging])[data-dir="rtl"] {
|
|
6079
|
+
animation: seed-exit;
|
|
6080
|
+
animation-timing-function: var(--seed-timing-function-easing);
|
|
6081
|
+
animation-duration: var(--seed-duration-d4);
|
|
6082
|
+
--seed-exit-translate-x: 50%;
|
|
6083
|
+
--seed-exit-translate-y: var(--seed-dimension-x3);
|
|
6084
|
+
--seed-exit-opacity: 0;
|
|
6085
|
+
--seed-exit-scale: 1;
|
|
6086
|
+
animation-fill-mode: forwards;
|
|
6087
|
+
}
|
|
6088
|
+
|
|
6089
|
+
.seed-slider__valueIndicatorRoot:is(:hidden, [hidden], [data-hidden]) {
|
|
6090
|
+
display: none !important;
|
|
6091
|
+
}
|
|
6092
|
+
|
|
6093
|
+
.seed-slider__valueIndicatorArrow {
|
|
6094
|
+
width: var(--seed-dimension-x2_5);
|
|
6095
|
+
height: var(--seed-dimension-x2_5);
|
|
6096
|
+
position: absolute;
|
|
6097
|
+
top: 100%;
|
|
6098
|
+
left: 50%;
|
|
6099
|
+
transform: translateX(-50%);
|
|
6100
|
+
}
|
|
6101
|
+
|
|
6102
|
+
.seed-slider__valueIndicatorArrowTip {
|
|
6103
|
+
fill: var(--seed-color-bg-neutral-inverted);
|
|
6104
|
+
width: var(--seed-dimension-x2_5);
|
|
6105
|
+
height: 7px;
|
|
6106
|
+
display: block;
|
|
6107
|
+
}
|
|
6108
|
+
|
|
6109
|
+
.seed-slider-marker {
|
|
6110
|
+
width: max-content;
|
|
6111
|
+
color: var(--seed-color-fg-neutral-muted);
|
|
6112
|
+
font-weight: var(--seed-font-weight-regular);
|
|
6113
|
+
font-size: var(--seed-font-size-t3);
|
|
6114
|
+
line-height: var(--seed-line-height-t3);
|
|
6115
|
+
position: absolute;
|
|
6116
|
+
top: 0;
|
|
6117
|
+
bottom: 0;
|
|
6118
|
+
}
|
|
6119
|
+
|
|
6120
|
+
.seed-slider-marker[data-dir="ltr"] {
|
|
6121
|
+
left: calc(var(--marker-position) * 1% + var(--marker-offset));
|
|
6122
|
+
}
|
|
6123
|
+
|
|
6124
|
+
.seed-slider-marker[data-dir="rtl"] {
|
|
6125
|
+
right: calc(var(--marker-position) * 1% + var(--marker-offset));
|
|
6126
|
+
}
|
|
6127
|
+
|
|
6128
|
+
.seed-slider-marker:is(:disabled, [disabled], [data-disabled]) {
|
|
6129
|
+
color: var(--seed-color-fg-disabled);
|
|
6130
|
+
}
|
|
6131
|
+
|
|
6132
|
+
.seed-slider-marker--align_start[data-dir="ltr"] {
|
|
6133
|
+
text-align: left;
|
|
6134
|
+
}
|
|
6135
|
+
|
|
6136
|
+
.seed-slider-marker--align_start[data-dir="rtl"] {
|
|
6137
|
+
text-align: right;
|
|
6138
|
+
}
|
|
6139
|
+
|
|
6140
|
+
.seed-slider-marker--align_center {
|
|
6141
|
+
text-align: center;
|
|
6142
|
+
}
|
|
6143
|
+
|
|
6144
|
+
.seed-slider-marker--align_center[data-dir="ltr"] {
|
|
6145
|
+
transform: translateX(-50%);
|
|
6146
|
+
}
|
|
6147
|
+
|
|
6148
|
+
.seed-slider-marker--align_center[data-dir="rtl"] {
|
|
6149
|
+
transform: translateX(50%);
|
|
6150
|
+
}
|
|
6151
|
+
|
|
6152
|
+
.seed-slider-marker--align_end[data-dir="ltr"] {
|
|
6153
|
+
text-align: right;
|
|
6154
|
+
transform: translateX(-100%);
|
|
6155
|
+
}
|
|
6156
|
+
|
|
6157
|
+
.seed-slider-marker--align_end[data-dir="rtl"] {
|
|
6158
|
+
text-align: left;
|
|
6159
|
+
transform: translateX(100%);
|
|
6160
|
+
}
|
|
6161
|
+
|
|
6162
|
+
.seed-slider-tick {
|
|
6163
|
+
background-color: var(--seed-color-fg-neutral-inverted);
|
|
6164
|
+
height: 100%;
|
|
6165
|
+
position: absolute;
|
|
6166
|
+
top: 50%;
|
|
6167
|
+
transform: translate(-50%, -50%);
|
|
6168
|
+
}
|
|
6169
|
+
|
|
6170
|
+
.seed-slider-tick[data-dir="ltr"] {
|
|
6171
|
+
left: calc(var(--tick-position) * 1% + var(--tick-offset));
|
|
6172
|
+
}
|
|
6173
|
+
|
|
6174
|
+
.seed-slider-tick[data-dir="rtl"] {
|
|
6175
|
+
right: calc(var(--tick-position) * 1% + var(--tick-offset));
|
|
6176
|
+
}
|
|
6177
|
+
|
|
6178
|
+
.seed-slider-tick--weight_thin {
|
|
6179
|
+
width: 1px;
|
|
6180
|
+
}
|
|
6181
|
+
|
|
6182
|
+
.seed-slider-tick--weight_thick {
|
|
6183
|
+
width: var(--seed-dimension-x1);
|
|
6184
|
+
}
|
|
6185
|
+
|
|
6186
|
+
.seed-snackbar__root {
|
|
6187
|
+
box-sizing: border-box;
|
|
6188
|
+
background: var(--seed-color-bg-neutral-inverted);
|
|
6189
|
+
border-radius: var(--seed-radius-r2);
|
|
6190
|
+
width: 100%;
|
|
6191
|
+
max-width: 560px;
|
|
6192
|
+
padding-inline: var(--seed-dimension-x2_5);
|
|
6193
|
+
padding-block: var(--seed-dimension-x2_5);
|
|
6194
|
+
min-height: 44px;
|
|
6195
|
+
animation: seed-enter;
|
|
6196
|
+
animation-timing-function: var(--seed-timing-function-enter);
|
|
6197
|
+
animation-duration: var(--seed-duration-d3);
|
|
6198
|
+
--seed-enter-translate-x: 0;
|
|
6199
|
+
--seed-enter-translate-y: 0;
|
|
6200
|
+
--seed-enter-opacity: 0;
|
|
6201
|
+
--seed-enter-scale: .8;
|
|
6202
|
+
align-items: center;
|
|
6203
|
+
display: flex;
|
|
6204
|
+
}
|
|
6205
|
+
|
|
6206
|
+
.seed-snackbar__root:not([data-open]) {
|
|
6207
|
+
animation: seed-exit;
|
|
6208
|
+
animation-timing-function: var(--seed-timing-function-exit);
|
|
6209
|
+
animation-duration: var(--seed-duration-d2);
|
|
6210
|
+
--seed-exit-translate-x: 0;
|
|
6211
|
+
--seed-exit-translate-y: 0;
|
|
6212
|
+
--seed-exit-opacity: 0;
|
|
6213
|
+
--seed-exit-scale: .8;
|
|
6214
|
+
animation-fill-mode: forwards;
|
|
6215
|
+
}
|
|
6216
|
+
|
|
6217
|
+
.seed-snackbar__content {
|
|
6218
|
+
padding-inline: var(--seed-dimension-x1_5);
|
|
6219
|
+
justify-content: space-between;
|
|
6220
|
+
align-items: center;
|
|
6221
|
+
gap: var(--seed-dimension-x2_5);
|
|
6222
|
+
flex-grow: 1;
|
|
6223
|
+
display: flex;
|
|
6224
|
+
}
|
|
6225
|
+
|
|
6226
|
+
.seed-snackbar__message {
|
|
6227
|
+
color: var(--seed-color-fg-neutral-inverted);
|
|
6228
|
+
font-size: var(--seed-font-size-t4);
|
|
6229
|
+
line-height: var(--seed-line-height-t4);
|
|
6230
|
+
font-weight: var(--seed-font-weight-regular);
|
|
6231
|
+
margin: 0;
|
|
6232
|
+
}
|
|
6233
|
+
|
|
6234
|
+
.seed-snackbar__prefixIcon {
|
|
6235
|
+
width: 24px;
|
|
6236
|
+
height: 24px;
|
|
6237
|
+
padding-right: var(--seed-dimension-x0_5);
|
|
6238
|
+
flex-shrink: 0;
|
|
6239
|
+
}
|
|
6240
|
+
|
|
6241
|
+
.seed-snackbar__actionButton {
|
|
6242
|
+
box-sizing: border-box;
|
|
6243
|
+
cursor: pointer;
|
|
6244
|
+
text-transform: none;
|
|
6245
|
+
-webkit-font-smoothing: antialiased;
|
|
6246
|
+
-moz-osx-font-smoothing: grayscale;
|
|
6247
|
+
background-color: unset;
|
|
6248
|
+
color: var(--seed-color-fg-brand);
|
|
6249
|
+
font-size: var(--seed-font-size-t4);
|
|
6250
|
+
line-height: var(--seed-line-height-t4);
|
|
6251
|
+
font-weight: var(--seed-font-weight-bold);
|
|
6252
|
+
border: none;
|
|
6253
|
+
outline: none;
|
|
6254
|
+
flex-shrink: 0;
|
|
6255
|
+
justify-content: center;
|
|
6256
|
+
align-items: center;
|
|
6257
|
+
text-decoration: none;
|
|
6258
|
+
display: inline-flex;
|
|
6259
|
+
position: relative;
|
|
6260
|
+
}
|
|
6261
|
+
|
|
6262
|
+
.seed-snackbar__actionButton:after {
|
|
6263
|
+
content: "";
|
|
6264
|
+
top: 50%;
|
|
6265
|
+
left: calc(-1 * var(--seed-dimension-x2));
|
|
6266
|
+
right: calc(-1 * var(--seed-dimension-x2));
|
|
6267
|
+
background: none;
|
|
6268
|
+
min-height: 44px;
|
|
6269
|
+
position: absolute;
|
|
6270
|
+
transform: translateY(-50%);
|
|
6271
|
+
}
|
|
6272
|
+
|
|
6273
|
+
.seed-snackbar__prefixIcon--variant_default {
|
|
6274
|
+
display: none;
|
|
6275
|
+
}
|
|
6276
|
+
|
|
6277
|
+
.seed-snackbar__prefixIcon--variant_positive {
|
|
6278
|
+
color: var(--seed-color-fg-positive);
|
|
6279
|
+
}
|
|
6280
|
+
|
|
6281
|
+
.seed-snackbar__prefixIcon--variant_critical {
|
|
6282
|
+
color: var(--seed-color-fg-critical);
|
|
6283
|
+
}
|
|
6284
|
+
|
|
6285
|
+
.seed-snackbar-region {
|
|
6286
|
+
z-index: 2147483647;
|
|
6287
|
+
left: calc(env(safe-area-inset-left, 0px));
|
|
6288
|
+
right: calc(env(safe-area-inset-right, 0px));
|
|
6289
|
+
bottom: calc(env(safe-area-inset-bottom, 0px) + var(--snackbar-region-offset, 0px));
|
|
6290
|
+
padding-inline: var(--seed-dimension-x2);
|
|
6291
|
+
padding-block: var(--seed-dimension-x2);
|
|
6292
|
+
transition-property: bottom;
|
|
6293
|
+
transition-duration: var(--seed-duration-d4);
|
|
6294
|
+
transition-timing-function: var(--seed-timing-function-easing);
|
|
6295
|
+
flex-direction: column;
|
|
6296
|
+
align-items: center;
|
|
6297
|
+
display: flex;
|
|
6298
|
+
}
|
|
6299
|
+
|
|
6300
|
+
.seed-switch__root {
|
|
6301
|
+
box-sizing: border-box;
|
|
6302
|
+
vertical-align: top;
|
|
6303
|
+
isolation: isolate;
|
|
6304
|
+
cursor: pointer;
|
|
6305
|
+
justify-content: space-between;
|
|
6306
|
+
align-items: flex-start;
|
|
6307
|
+
display: inline-flex;
|
|
6308
|
+
position: relative;
|
|
6309
|
+
}
|
|
6310
|
+
|
|
6311
|
+
.seed-switch__root:is(:disabled, [disabled], [data-disabled]) {
|
|
6312
|
+
cursor: not-allowed;
|
|
6313
|
+
}
|
|
6314
|
+
|
|
6315
|
+
.seed-switch__label {
|
|
6316
|
+
font-weight: var(--seed-font-weight-medium);
|
|
6317
|
+
color: var(--seed-color-fg-neutral);
|
|
6318
|
+
transition: opacity var(--seed-duration-d1) var(--seed-timing-function-easing);
|
|
6319
|
+
}
|
|
6320
|
+
|
|
6321
|
+
.seed-switch__label:is(:disabled, [disabled], [data-disabled]) {
|
|
6322
|
+
opacity: .58;
|
|
6323
|
+
}
|
|
6324
|
+
|
|
6325
|
+
.seed-switch__root--size_16 {
|
|
6326
|
+
min-height: var(--seed-dimension-x6);
|
|
6327
|
+
gap: var(--seed-dimension-x1_5);
|
|
6328
|
+
--switch-mark-margin-top: calc((var(--seed-dimension-x6) - 16px) / 2);
|
|
6329
|
+
}
|
|
6330
|
+
|
|
6331
|
+
.seed-switch__label--size_16 {
|
|
6332
|
+
font-size: var(--seed-font-size-t3);
|
|
6333
|
+
line-height: var(--seed-line-height-t3);
|
|
6334
|
+
margin-top: calc(12px - .5625rem);
|
|
6335
|
+
}
|
|
6336
|
+
|
|
6337
|
+
.seed-switch__root--size_24 {
|
|
6338
|
+
min-height: var(--seed-dimension-x6);
|
|
6339
|
+
gap: var(--seed-dimension-x2);
|
|
6340
|
+
--switch-mark-margin-top: calc((var(--seed-dimension-x6) - 24px) / 2);
|
|
6341
|
+
}
|
|
6342
|
+
|
|
6343
|
+
.seed-switch__label--size_24 {
|
|
6344
|
+
font-size: var(--seed-font-size-t4);
|
|
6345
|
+
line-height: var(--seed-line-height-t4);
|
|
6346
|
+
margin-top: calc(12px - .59375rem);
|
|
6347
|
+
}
|
|
6348
|
+
|
|
6349
|
+
.seed-switch__root--size_32 {
|
|
6350
|
+
min-height: var(--seed-dimension-x8);
|
|
6351
|
+
gap: var(--seed-dimension-x2_5);
|
|
6352
|
+
--switch-mark-margin-top: calc((var(--seed-dimension-x8) - 32px) / 2);
|
|
6353
|
+
}
|
|
6354
|
+
|
|
6355
|
+
.seed-switch__label--size_32 {
|
|
6356
|
+
font-size: var(--seed-font-size-t5);
|
|
5777
6357
|
line-height: var(--seed-line-height-t5);
|
|
5778
6358
|
margin-top: calc(16px - .6875rem);
|
|
5779
6359
|
}
|
|
@@ -6360,410 +6940,169 @@
|
|
|
6360
6940
|
text-decoration-line: underline;
|
|
6361
6941
|
}
|
|
6362
6942
|
|
|
6363
|
-
.seed-text-
|
|
6364
|
-
flex-direction: column;
|
|
6365
|
-
width: 100%;
|
|
6366
|
-
display: flex;
|
|
6367
|
-
}
|
|
6368
|
-
|
|
6369
|
-
.seed-text-field__label {
|
|
6370
|
-
color: var(--seed-color-fg-neutral);
|
|
6371
|
-
font-weight: var(--seed-font-weight-bold);
|
|
6372
|
-
}
|
|
6373
|
-
|
|
6374
|
-
.seed-text-field__indicator {
|
|
6375
|
-
color: var(--seed-color-fg-neutral);
|
|
6376
|
-
font-weight: var(--seed-font-weight-regular);
|
|
6377
|
-
}
|
|
6378
|
-
|
|
6379
|
-
.seed-text-field__field {
|
|
6380
|
-
border-style: solid;
|
|
6381
|
-
border-width: 1px;
|
|
6382
|
-
border-color: var(--seed-color-stroke-neutral-weak);
|
|
6943
|
+
.seed-text-input__root {
|
|
6383
6944
|
align-items: center;
|
|
6945
|
+
gap: var(--seed-dimension-x2_5);
|
|
6946
|
+
width: 100%;
|
|
6947
|
+
transition: box-shadow var(--seed-duration-d3) var(--seed-timing-function-easing);
|
|
6384
6948
|
display: flex;
|
|
6385
6949
|
overflow: hidden;
|
|
6386
6950
|
}
|
|
6387
6951
|
|
|
6388
|
-
.seed-text-
|
|
6389
|
-
border-color: var(--seed-color-stroke-neutral-contrast);
|
|
6390
|
-
}
|
|
6391
|
-
|
|
6392
|
-
.seed-text-field__field:is(:invalid, [data-invalid]) {
|
|
6393
|
-
background-color: var(--seed-color-bg-critical-weak);
|
|
6394
|
-
border-color: var(--seed-color-stroke-critical-weak);
|
|
6395
|
-
}
|
|
6396
|
-
|
|
6397
|
-
.seed-text-field__field:is(:invalid, [data-invalid]):is(:focus, [data-focus]) {
|
|
6398
|
-
background-color: #0000;
|
|
6399
|
-
}
|
|
6400
|
-
|
|
6401
|
-
.seed-text-field__field:is(:disabled, [disabled], [data-disabled]), .seed-text-field__field[data-readonly] {
|
|
6402
|
-
background-color: var(--seed-color-bg-disabled);
|
|
6403
|
-
}
|
|
6404
|
-
|
|
6405
|
-
.seed-text-field__prefixText {
|
|
6406
|
-
color: var(--seed-color-fg-neutral);
|
|
6407
|
-
}
|
|
6408
|
-
|
|
6409
|
-
.seed-text-field__prefixText:is(:disabled, [disabled], [data-disabled]) {
|
|
6410
|
-
color: var(--seed-color-fg-disabled);
|
|
6411
|
-
}
|
|
6412
|
-
|
|
6413
|
-
.seed-text-field__prefixIcon {
|
|
6414
|
-
color: var(--seed-color-fg-neutral);
|
|
6415
|
-
flex-shrink: 0;
|
|
6416
|
-
}
|
|
6417
|
-
|
|
6418
|
-
.seed-text-field__prefixIcon:is(:disabled, [disabled], [data-disabled]) {
|
|
6419
|
-
color: var(--seed-color-fg-disabled);
|
|
6420
|
-
}
|
|
6421
|
-
|
|
6422
|
-
.seed-text-field__suffixText {
|
|
6423
|
-
color: var(--seed-color-fg-neutral);
|
|
6424
|
-
}
|
|
6425
|
-
|
|
6426
|
-
.seed-text-field__suffixText:is(:disabled, [disabled], [data-disabled]) {
|
|
6427
|
-
color: var(--seed-color-fg-disabled);
|
|
6428
|
-
}
|
|
6429
|
-
|
|
6430
|
-
.seed-text-field__suffixIcon {
|
|
6431
|
-
color: var(--seed-color-fg-neutral);
|
|
6432
|
-
flex-shrink: 0;
|
|
6433
|
-
}
|
|
6434
|
-
|
|
6435
|
-
.seed-text-field__suffixIcon:is(:disabled, [disabled], [data-disabled]) {
|
|
6436
|
-
color: var(--seed-color-fg-disabled);
|
|
6437
|
-
}
|
|
6438
|
-
|
|
6439
|
-
.seed-text-field__value {
|
|
6952
|
+
.seed-text-input__value {
|
|
6440
6953
|
box-sizing: border-box;
|
|
6441
6954
|
font: inherit;
|
|
6442
6955
|
resize: none;
|
|
6443
|
-
height: 100%;
|
|
6444
6956
|
color: var(--seed-color-fg-neutral);
|
|
6957
|
+
font-weight: var(--seed-font-weight-regular);
|
|
6445
6958
|
background: none;
|
|
6446
6959
|
border: none;
|
|
6447
6960
|
outline: none;
|
|
6448
6961
|
flex-grow: 1;
|
|
6962
|
+
align-self: stretch;
|
|
6963
|
+
padding-inline: 0;
|
|
6449
6964
|
}
|
|
6450
6965
|
|
|
6451
|
-
.seed-text-
|
|
6966
|
+
.seed-text-input__value:is(input) {
|
|
6452
6967
|
width: 0;
|
|
6453
|
-
padding-inline: 0;
|
|
6454
6968
|
}
|
|
6455
6969
|
|
|
6456
|
-
.seed-text-
|
|
6457
|
-
|
|
6458
|
-
|
|
6459
|
-
padding-inline: 0;
|
|
6970
|
+
.seed-text-input__value:is(textarea) {
|
|
6971
|
+
min-height: 95px;
|
|
6972
|
+
padding-block: var(--seed-dimension-x3_5);
|
|
6460
6973
|
}
|
|
6461
6974
|
|
|
6462
|
-
.seed-text-
|
|
6975
|
+
.seed-text-input__value::placeholder {
|
|
6463
6976
|
color: var(--seed-color-fg-placeholder);
|
|
6464
|
-
}
|
|
6465
|
-
|
|
6466
|
-
.seed-text-field__value:is(:disabled, [disabled], [data-disabled]), .seed-text-field__value:is(:disabled, [disabled], [data-disabled])::placeholder {
|
|
6467
|
-
color: var(--seed-color-fg-disabled);
|
|
6468
|
-
}
|
|
6469
|
-
|
|
6470
|
-
.seed-text-field__footer {
|
|
6471
|
-
justify-content: space-between;
|
|
6472
|
-
align-items: flex-start;
|
|
6473
|
-
display: flex;
|
|
6474
|
-
}
|
|
6475
|
-
|
|
6476
|
-
.seed-text-field__description {
|
|
6477
6977
|
font-weight: var(--seed-font-weight-regular);
|
|
6478
|
-
color: var(--seed-color-fg-neutral-subtle);
|
|
6479
|
-
}
|
|
6480
|
-
|
|
6481
|
-
.seed-text-field__errorMessage {
|
|
6482
|
-
color: var(--seed-color-fg-critical);
|
|
6483
|
-
flex-direction: row;
|
|
6484
|
-
align-items: center;
|
|
6485
|
-
display: flex;
|
|
6486
6978
|
}
|
|
6487
6979
|
|
|
6488
|
-
.seed-text-
|
|
6489
|
-
|
|
6980
|
+
.seed-text-input__value:is(:disabled, [disabled], [data-disabled]), .seed-text-input__value:is(:disabled, [disabled], [data-disabled])::placeholder {
|
|
6981
|
+
color: var(--seed-color-fg-disabled);
|
|
6490
6982
|
}
|
|
6491
6983
|
|
|
6492
|
-
.seed-text-
|
|
6493
|
-
|
|
6494
|
-
margin-inline-start: auto;
|
|
6495
|
-
display: flex;
|
|
6984
|
+
.seed-text-input__value[data-readonly], .seed-text-input__value[data-readonly]::placeholder {
|
|
6985
|
+
color: var(--seed-color-fg-neutral-muted);
|
|
6496
6986
|
}
|
|
6497
6987
|
|
|
6498
|
-
.seed-text-
|
|
6499
|
-
color: var(--seed-color-fg-neutral);
|
|
6988
|
+
.seed-text-input__prefixText {
|
|
6989
|
+
color: var(--seed-color-fg-neutral-muted);
|
|
6500
6990
|
font-weight: var(--seed-font-weight-regular);
|
|
6501
6991
|
}
|
|
6502
6992
|
|
|
6503
|
-
.seed-text-
|
|
6504
|
-
color: var(--seed-color-fg-neutral-
|
|
6993
|
+
.seed-text-input__prefixIcon {
|
|
6994
|
+
color: var(--seed-color-fg-neutral-muted);
|
|
6995
|
+
flex-shrink: 0;
|
|
6505
6996
|
}
|
|
6506
6997
|
|
|
6507
|
-
.seed-text-
|
|
6508
|
-
color: var(--seed-color-fg-neutral-
|
|
6998
|
+
.seed-text-input__suffixText {
|
|
6999
|
+
color: var(--seed-color-fg-neutral-muted);
|
|
6509
7000
|
font-weight: var(--seed-font-weight-regular);
|
|
6510
7001
|
}
|
|
6511
7002
|
|
|
6512
|
-
.seed-text-
|
|
6513
|
-
|
|
6514
|
-
|
|
6515
|
-
}
|
|
6516
|
-
|
|
6517
|
-
.seed-text-field__label--size_xlarge, .seed-text-field__indicator--size_xlarge {
|
|
6518
|
-
font-size: var(--seed-font-size-t5);
|
|
6519
|
-
line-height: var(--seed-line-height-t5);
|
|
6520
|
-
}
|
|
6521
|
-
|
|
6522
|
-
.seed-text-field__field--size_xlarge {
|
|
6523
|
-
border-radius: var(--seed-radius-r2_5);
|
|
6524
|
-
gap: var(--seed-dimension-x2);
|
|
6525
|
-
min-height: 56px;
|
|
6526
|
-
}
|
|
6527
|
-
|
|
6528
|
-
.seed-text-field__value--size_xlarge {
|
|
6529
|
-
padding-block: var(--seed-dimension-x3);
|
|
6530
|
-
}
|
|
6531
|
-
|
|
6532
|
-
.seed-text-field__value--size_xlarge:first-child {
|
|
6533
|
-
padding-inline-start: var(--seed-dimension-x4);
|
|
6534
|
-
}
|
|
6535
|
-
|
|
6536
|
-
.seed-text-field__value--size_xlarge:last-child {
|
|
6537
|
-
padding-inline-end: var(--seed-dimension-x4);
|
|
6538
|
-
}
|
|
6539
|
-
|
|
6540
|
-
.seed-text-field__value--size_xlarge, .seed-text-field__prefixText--size_xlarge {
|
|
6541
|
-
font-size: var(--seed-font-size-t6);
|
|
6542
|
-
line-height: var(--seed-line-height-t6);
|
|
6543
|
-
}
|
|
6544
|
-
|
|
6545
|
-
.seed-text-field__prefixText--size_xlarge:first-child {
|
|
6546
|
-
margin-inline-start: var(--seed-dimension-x4);
|
|
6547
|
-
}
|
|
6548
|
-
|
|
6549
|
-
.seed-text-field__prefixIcon--size_xlarge {
|
|
6550
|
-
width: var(--seed-dimension-x5);
|
|
6551
|
-
height: var(--seed-dimension-x5);
|
|
6552
|
-
}
|
|
6553
|
-
|
|
6554
|
-
.seed-text-field__prefixIcon--size_xlarge:first-child {
|
|
6555
|
-
margin-inline-start: var(--seed-dimension-x4);
|
|
6556
|
-
}
|
|
6557
|
-
|
|
6558
|
-
.seed-text-field__suffixText--size_xlarge {
|
|
6559
|
-
font-size: var(--seed-font-size-t6);
|
|
6560
|
-
line-height: var(--seed-line-height-t6);
|
|
6561
|
-
}
|
|
6562
|
-
|
|
6563
|
-
.seed-text-field__suffixText--size_xlarge:last-child {
|
|
6564
|
-
margin-inline-end: var(--seed-dimension-x4);
|
|
6565
|
-
}
|
|
6566
|
-
|
|
6567
|
-
.seed-text-field__suffixIcon--size_xlarge {
|
|
6568
|
-
width: var(--seed-dimension-x5);
|
|
6569
|
-
height: var(--seed-dimension-x5);
|
|
6570
|
-
}
|
|
6571
|
-
|
|
6572
|
-
.seed-text-field__suffixIcon--size_xlarge:last-child {
|
|
6573
|
-
margin-inline-end: var(--seed-dimension-x4);
|
|
6574
|
-
}
|
|
6575
|
-
|
|
6576
|
-
.seed-text-field__footer--size_xlarge {
|
|
6577
|
-
gap: var(--seed-dimension-x3_5);
|
|
6578
|
-
padding-top: var(--seed-dimension-x2);
|
|
6579
|
-
min-height: 20px;
|
|
7003
|
+
.seed-text-input__suffixIcon {
|
|
7004
|
+
color: var(--seed-color-fg-neutral-muted);
|
|
7005
|
+
flex-shrink: 0;
|
|
6580
7006
|
}
|
|
6581
7007
|
|
|
6582
|
-
.seed-text-
|
|
6583
|
-
|
|
6584
|
-
|
|
7008
|
+
.seed-text-input__root--variant_outline {
|
|
7009
|
+
min-height: var(--seed-dimension-x13);
|
|
7010
|
+
border-radius: var(--seed-radius-r3);
|
|
7011
|
+
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-neutral-weak);
|
|
6585
7012
|
}
|
|
6586
7013
|
|
|
6587
|
-
.seed-text-
|
|
6588
|
-
|
|
6589
|
-
height: var(--seed-dimension-x4);
|
|
6590
|
-
margin-right: var(--seed-dimension-x1);
|
|
7014
|
+
.seed-text-input__root--variant_outline:not([data-readonly]):is(:focus, [data-focus]) {
|
|
7015
|
+
box-shadow: inset 0 0 0 2px var(--seed-color-stroke-neutral-contrast);
|
|
6591
7016
|
}
|
|
6592
7017
|
|
|
6593
|
-
.seed-text-
|
|
6594
|
-
|
|
6595
|
-
line-height: var(--seed-line-height-t2);
|
|
7018
|
+
.seed-text-input__root--variant_outline:is(:invalid, [data-invalid]), .seed-text-input__root--variant_outline:is(:invalid, [data-invalid]):is(:focus, [data-focus]) {
|
|
7019
|
+
box-shadow: inset 0 0 0 2px var(--seed-color-stroke-critical-solid);
|
|
6596
7020
|
}
|
|
6597
7021
|
|
|
6598
|
-
.seed-text-
|
|
6599
|
-
|
|
6600
|
-
gap: var(--seed-dimension-x1_5);
|
|
7022
|
+
.seed-text-input__root--variant_outline:is(:disabled, [disabled], [data-disabled]) {
|
|
7023
|
+
background-color: var(--seed-color-bg-disabled);
|
|
6601
7024
|
}
|
|
6602
7025
|
|
|
6603
|
-
.seed-text-
|
|
7026
|
+
.seed-text-input__value--variant_outline {
|
|
6604
7027
|
font-size: var(--seed-font-size-t5);
|
|
6605
7028
|
line-height: var(--seed-line-height-t5);
|
|
6606
7029
|
}
|
|
6607
7030
|
|
|
6608
|
-
.seed-text-
|
|
6609
|
-
border-radius: var(--seed-radius-r2_5);
|
|
6610
|
-
gap: var(--seed-dimension-x2);
|
|
6611
|
-
min-height: 52px;
|
|
6612
|
-
}
|
|
6613
|
-
|
|
6614
|
-
.seed-text-field__value--size_large {
|
|
6615
|
-
padding-block: var(--seed-dimension-x3);
|
|
6616
|
-
}
|
|
6617
|
-
|
|
6618
|
-
.seed-text-field__value--size_large:first-child {
|
|
7031
|
+
.seed-text-input__value--variant_outline:first-child {
|
|
6619
7032
|
padding-inline-start: var(--seed-dimension-x4);
|
|
6620
7033
|
}
|
|
6621
7034
|
|
|
6622
|
-
.seed-text-
|
|
7035
|
+
.seed-text-input__value--variant_outline:last-child {
|
|
6623
7036
|
padding-inline-end: var(--seed-dimension-x4);
|
|
6624
7037
|
}
|
|
6625
7038
|
|
|
6626
|
-
.seed-text-
|
|
7039
|
+
.seed-text-input__value--variant_outline::placeholder, .seed-text-input__prefixText--variant_outline {
|
|
6627
7040
|
font-size: var(--seed-font-size-t5);
|
|
6628
7041
|
line-height: var(--seed-line-height-t5);
|
|
6629
7042
|
}
|
|
6630
7043
|
|
|
6631
|
-
.seed-text-
|
|
7044
|
+
.seed-text-input__prefixText--variant_outline:first-child {
|
|
6632
7045
|
margin-inline-start: var(--seed-dimension-x4);
|
|
6633
7046
|
}
|
|
6634
7047
|
|
|
6635
|
-
.seed-text-
|
|
7048
|
+
.seed-text-input__prefixIcon--variant_outline {
|
|
6636
7049
|
width: var(--seed-dimension-x5);
|
|
6637
7050
|
height: var(--seed-dimension-x5);
|
|
6638
7051
|
}
|
|
6639
7052
|
|
|
6640
|
-
.seed-text-
|
|
7053
|
+
.seed-text-input__prefixIcon--variant_outline:first-child {
|
|
6641
7054
|
margin-inline-start: var(--seed-dimension-x4);
|
|
6642
7055
|
}
|
|
6643
7056
|
|
|
6644
|
-
.seed-text-
|
|
7057
|
+
.seed-text-input__suffixText--variant_outline {
|
|
6645
7058
|
font-size: var(--seed-font-size-t5);
|
|
6646
7059
|
line-height: var(--seed-line-height-t5);
|
|
6647
7060
|
}
|
|
6648
7061
|
|
|
6649
|
-
.seed-text-
|
|
7062
|
+
.seed-text-input__suffixText--variant_outline:last-child {
|
|
6650
7063
|
margin-inline-end: var(--seed-dimension-x4);
|
|
6651
7064
|
}
|
|
6652
7065
|
|
|
6653
|
-
.seed-text-
|
|
7066
|
+
.seed-text-input__suffixIcon--variant_outline {
|
|
6654
7067
|
width: var(--seed-dimension-x5);
|
|
6655
7068
|
height: var(--seed-dimension-x5);
|
|
6656
7069
|
}
|
|
6657
7070
|
|
|
6658
|
-
.seed-text-
|
|
7071
|
+
.seed-text-input__suffixIcon--variant_outline:last-child {
|
|
6659
7072
|
margin-inline-end: var(--seed-dimension-x4);
|
|
6660
7073
|
}
|
|
6661
7074
|
|
|
6662
|
-
.seed-text-
|
|
6663
|
-
|
|
6664
|
-
|
|
6665
|
-
min-height: 20px;
|
|
6666
|
-
}
|
|
6667
|
-
|
|
6668
|
-
.seed-text-field__description--size_large, .seed-text-field__errorMessage--size_large {
|
|
6669
|
-
font-size: var(--seed-font-size-t4);
|
|
6670
|
-
line-height: var(--seed-line-height-t4);
|
|
6671
|
-
}
|
|
6672
|
-
|
|
6673
|
-
.seed-text-field__errorIcon--size_large {
|
|
6674
|
-
width: var(--seed-dimension-x4);
|
|
6675
|
-
height: var(--seed-dimension-x4);
|
|
6676
|
-
margin-right: var(--seed-dimension-x1);
|
|
6677
|
-
}
|
|
6678
|
-
|
|
6679
|
-
.seed-text-field__characterCount--size_large, .seed-text-field__maxCharacterCount--size_large {
|
|
6680
|
-
font-size: var(--seed-font-size-t2);
|
|
6681
|
-
line-height: var(--seed-line-height-t2);
|
|
6682
|
-
}
|
|
6683
|
-
|
|
6684
|
-
.seed-text-field__header--size_medium {
|
|
6685
|
-
padding-bottom: var(--seed-dimension-x3);
|
|
6686
|
-
}
|
|
6687
|
-
|
|
6688
|
-
.seed-text-field__label--size_medium, .seed-text-field__indicator--size_medium {
|
|
6689
|
-
font-size: var(--seed-font-size-t4);
|
|
6690
|
-
line-height: var(--seed-line-height-t4);
|
|
6691
|
-
}
|
|
6692
|
-
|
|
6693
|
-
.seed-text-field__field--size_medium {
|
|
6694
|
-
border-radius: var(--seed-radius-r2);
|
|
6695
|
-
gap: var(--seed-dimension-x1_5);
|
|
6696
|
-
min-height: 40px;
|
|
6697
|
-
}
|
|
6698
|
-
|
|
6699
|
-
.seed-text-field__value--size_medium {
|
|
6700
|
-
padding-block: var(--seed-dimension-x2_5);
|
|
6701
|
-
}
|
|
6702
|
-
|
|
6703
|
-
.seed-text-field__value--size_medium:first-child {
|
|
6704
|
-
padding-inline-start: var(--seed-dimension-x3_5);
|
|
6705
|
-
}
|
|
6706
|
-
|
|
6707
|
-
.seed-text-field__value--size_medium:last-child {
|
|
6708
|
-
padding-inline-end: var(--seed-dimension-x3_5);
|
|
6709
|
-
}
|
|
6710
|
-
|
|
6711
|
-
.seed-text-field__value--size_medium, .seed-text-field__prefixText--size_medium {
|
|
6712
|
-
font-size: var(--seed-font-size-t4);
|
|
6713
|
-
line-height: var(--seed-line-height-t4);
|
|
6714
|
-
}
|
|
6715
|
-
|
|
6716
|
-
.seed-text-field__prefixText--size_medium:first-child {
|
|
6717
|
-
margin-inline-start: var(--seed-dimension-x3_5);
|
|
6718
|
-
}
|
|
6719
|
-
|
|
6720
|
-
.seed-text-field__prefixIcon--size_medium {
|
|
6721
|
-
width: var(--seed-dimension-x4);
|
|
6722
|
-
height: var(--seed-dimension-x4);
|
|
6723
|
-
}
|
|
6724
|
-
|
|
6725
|
-
.seed-text-field__prefixIcon--size_medium:first-child {
|
|
6726
|
-
margin-inline-start: var(--seed-dimension-x3_5);
|
|
6727
|
-
}
|
|
6728
|
-
|
|
6729
|
-
.seed-text-field__suffixText--size_medium {
|
|
6730
|
-
font-size: var(--seed-font-size-t4);
|
|
6731
|
-
line-height: var(--seed-line-height-t4);
|
|
6732
|
-
}
|
|
6733
|
-
|
|
6734
|
-
.seed-text-field__suffixText--size_medium:last-child {
|
|
6735
|
-
margin-inline-end: var(--seed-dimension-x3_5);
|
|
7075
|
+
.seed-text-input__root--variant_underline {
|
|
7076
|
+
min-height: var(--seed-dimension-x10);
|
|
7077
|
+
box-shadow: inset 0 calc(1px * -1) 0 0 var(--seed-color-stroke-neutral-weak);
|
|
6736
7078
|
}
|
|
6737
7079
|
|
|
6738
|
-
.seed-text-
|
|
6739
|
-
|
|
6740
|
-
height: var(--seed-dimension-x4);
|
|
7080
|
+
.seed-text-input__root--variant_underline:not([data-readonly]):is(:focus, [data-focus]) {
|
|
7081
|
+
box-shadow: inset 0 calc(2px * -1) 0 0 var(--seed-color-stroke-neutral-contrast);
|
|
6741
7082
|
}
|
|
6742
7083
|
|
|
6743
|
-
.seed-text-
|
|
6744
|
-
|
|
7084
|
+
.seed-text-input__root--variant_underline:is(:invalid, [data-invalid]), .seed-text-input__root--variant_underline:is(:invalid, [data-invalid]):is(:focus, [data-focus]) {
|
|
7085
|
+
box-shadow: inset 0 calc(2px * -1) 0 0 var(--seed-color-stroke-critical-solid);
|
|
6745
7086
|
}
|
|
6746
7087
|
|
|
6747
|
-
.seed-text-
|
|
6748
|
-
|
|
6749
|
-
|
|
6750
|
-
min-height: var(--seed-dimension-x4);
|
|
7088
|
+
.seed-text-input__value--variant_underline, .seed-text-input__value--variant_underline::placeholder, .seed-text-input__prefixText--variant_underline {
|
|
7089
|
+
font-size: var(--seed-font-size-t6);
|
|
7090
|
+
line-height: var(--seed-line-height-t6);
|
|
6751
7091
|
}
|
|
6752
7092
|
|
|
6753
|
-
.seed-text-
|
|
6754
|
-
|
|
6755
|
-
|
|
7093
|
+
.seed-text-input__prefixIcon--variant_underline {
|
|
7094
|
+
width: var(--seed-dimension-x6);
|
|
7095
|
+
height: var(--seed-dimension-x6);
|
|
6756
7096
|
}
|
|
6757
7097
|
|
|
6758
|
-
.seed-text-
|
|
6759
|
-
|
|
6760
|
-
height: var(--seed-
|
|
6761
|
-
margin-right: var(--seed-dimension-x1);
|
|
7098
|
+
.seed-text-input__suffixText--variant_underline {
|
|
7099
|
+
font-size: var(--seed-font-size-t6);
|
|
7100
|
+
line-height: var(--seed-line-height-t6);
|
|
6762
7101
|
}
|
|
6763
7102
|
|
|
6764
|
-
.seed-text-
|
|
6765
|
-
|
|
6766
|
-
|
|
7103
|
+
.seed-text-input__suffixIcon--variant_underline {
|
|
7104
|
+
width: var(--seed-dimension-x6);
|
|
7105
|
+
height: var(--seed-dimension-x6);
|
|
6767
7106
|
}
|
|
6768
7107
|
|
|
6769
7108
|
.seed-toggle-button {
|
|
@@ -6970,3 +7309,35 @@
|
|
|
6970
7309
|
stroke-dashoffset: calc(var(--circumference) * -1);
|
|
6971
7310
|
}
|
|
6972
7311
|
}
|
|
7312
|
+
|
|
7313
|
+
@keyframes fade-in {
|
|
7314
|
+
from {
|
|
7315
|
+
opacity: 0;
|
|
7316
|
+
}
|
|
7317
|
+
|
|
7318
|
+
to {
|
|
7319
|
+
opacity: 1;
|
|
7320
|
+
}
|
|
7321
|
+
}
|
|
7322
|
+
|
|
7323
|
+
@keyframes fade-out {
|
|
7324
|
+
to {
|
|
7325
|
+
opacity: 0;
|
|
7326
|
+
}
|
|
7327
|
+
}
|
|
7328
|
+
|
|
7329
|
+
@keyframes drawer-slide-from-bottom {
|
|
7330
|
+
from {
|
|
7331
|
+
transform: translate3d(0, var(--initial-transform, 100%), 0);
|
|
7332
|
+
}
|
|
7333
|
+
|
|
7334
|
+
to {
|
|
7335
|
+
transform: translate3d(0, var(--snap-point-height, 0), 0);
|
|
7336
|
+
}
|
|
7337
|
+
}
|
|
7338
|
+
|
|
7339
|
+
@keyframes drawer-slide-to-bottom {
|
|
7340
|
+
to {
|
|
7341
|
+
transform: translate3d(0, var(--initial-transform, 100%), 0);
|
|
7342
|
+
}
|
|
7343
|
+
}
|