@seed-design/css 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/all.css +290 -54
- package/all.min.css +1 -1
- package/base.css +41 -28
- package/base.min.css +1 -1
- package/package.json +1 -1
- package/recipes/app-bar-main.css +12 -12
- package/recipes/app-bar.css +18 -18
- package/recipes/app-screen.css +20 -20
- package/recipes/chip.css +190 -0
- package/recipes/chip.d.ts +32 -0
- package/recipes/chip.mjs +80 -0
- package/theming/index.cjs +7 -1
- package/theming/index.d.ts +2 -0
- package/theming/index.mjs +7 -1
- package/vars/component/chip.d.ts +373 -0
- package/vars/component/chip.mjs +373 -0
- package/vars/component/index.d.ts +1 -0
- package/vars/component/index.mjs +1 -0
- package/vars/gradient.d.ts +4 -3
- package/vars/gradient.mjs +4 -3
package/README.md
CHANGED
package/all.css
CHANGED
|
@@ -17,6 +17,17 @@
|
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
+
:root {
|
|
21
|
+
--seed-font-size-multiplier: 1;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
@supports (font: -apple-system-body) {
|
|
25
|
+
html[data-seed-platform="ios"][data-seed-font-scaling="enabled"] {
|
|
26
|
+
--seed-font-size-multiplier: .9412;
|
|
27
|
+
font: -apple-system-body;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
20
31
|
.seed-loading-indicator {
|
|
21
32
|
display: inline-flex;
|
|
22
33
|
position: absolute;
|
|
@@ -223,32 +234,32 @@
|
|
|
223
234
|
--seed-duration-d4: .2s;
|
|
224
235
|
--seed-duration-d5: .25s;
|
|
225
236
|
--seed-duration-d6: .3s;
|
|
226
|
-
--seed-font-size-t1: .6875rem;
|
|
227
|
-
--seed-font-size-t2: .75rem;
|
|
228
|
-
--seed-font-size-t3: .8125rem;
|
|
229
|
-
--seed-font-size-t4: .875rem;
|
|
230
|
-
--seed-font-size-t5: 1rem;
|
|
231
|
-
--seed-font-size-t6: 1.125rem;
|
|
232
|
-
--seed-font-size-t7: 1.25rem;
|
|
233
|
-
--seed-font-size-t8: 1.375rem;
|
|
234
|
-
--seed-font-size-t9: 1.5rem;
|
|
235
|
-
--seed-font-size-t10: 1.625rem;
|
|
237
|
+
--seed-font-size-t1: calc(.6875rem * var(--seed-font-size-multiplier));
|
|
238
|
+
--seed-font-size-t2: calc(.75rem * var(--seed-font-size-multiplier));
|
|
239
|
+
--seed-font-size-t3: calc(.8125rem * var(--seed-font-size-multiplier));
|
|
240
|
+
--seed-font-size-t4: calc(.875rem * var(--seed-font-size-multiplier));
|
|
241
|
+
--seed-font-size-t5: calc(1rem * var(--seed-font-size-multiplier));
|
|
242
|
+
--seed-font-size-t6: calc(1.125rem * var(--seed-font-size-multiplier));
|
|
243
|
+
--seed-font-size-t7: calc(1.25rem * var(--seed-font-size-multiplier));
|
|
244
|
+
--seed-font-size-t8: calc(1.375rem * var(--seed-font-size-multiplier));
|
|
245
|
+
--seed-font-size-t9: calc(1.5rem * var(--seed-font-size-multiplier));
|
|
246
|
+
--seed-font-size-t10: calc(1.625rem * var(--seed-font-size-multiplier));
|
|
236
247
|
--seed-font-size-t2-static: 12px;
|
|
237
248
|
--seed-font-size-t5-static: 16px;
|
|
238
249
|
--seed-font-size-t6-static: 18px;
|
|
239
250
|
--seed-font-weight-regular: 400;
|
|
240
251
|
--seed-font-weight-medium: 500;
|
|
241
252
|
--seed-font-weight-bold: 700;
|
|
242
|
-
--seed-line-height-t1: .9375rem;
|
|
243
|
-
--seed-line-height-t2: 1rem;
|
|
244
|
-
--seed-line-height-t3: 1.125rem;
|
|
245
|
-
--seed-line-height-t4: 1.1875rem;
|
|
246
|
-
--seed-line-height-t5: 1.375rem;
|
|
247
|
-
--seed-line-height-t6: 1.5rem;
|
|
248
|
-
--seed-line-height-t7: 1.6875rem;
|
|
249
|
-
--seed-line-height-t8: 1.875rem;
|
|
250
|
-
--seed-line-height-t9: 2rem;
|
|
251
|
-
--seed-line-height-t10: 2.1875rem;
|
|
253
|
+
--seed-line-height-t1: calc(.9375rem * var(--seed-font-size-multiplier));
|
|
254
|
+
--seed-line-height-t2: calc(1rem * var(--seed-font-size-multiplier));
|
|
255
|
+
--seed-line-height-t3: calc(1.125rem * var(--seed-font-size-multiplier));
|
|
256
|
+
--seed-line-height-t4: calc(1.1875rem * var(--seed-font-size-multiplier));
|
|
257
|
+
--seed-line-height-t5: calc(1.375rem * var(--seed-font-size-multiplier));
|
|
258
|
+
--seed-line-height-t6: calc(1.5rem * var(--seed-font-size-multiplier));
|
|
259
|
+
--seed-line-height-t7: calc(1.6875rem * var(--seed-font-size-multiplier));
|
|
260
|
+
--seed-line-height-t8: calc(1.875rem * var(--seed-font-size-multiplier));
|
|
261
|
+
--seed-line-height-t9: calc(2rem * var(--seed-font-size-multiplier));
|
|
262
|
+
--seed-line-height-t10: calc(2.1875rem * var(--seed-font-size-multiplier));
|
|
252
263
|
--seed-radius-r0_5: 2px;
|
|
253
264
|
--seed-radius-r1: 4px;
|
|
254
265
|
--seed-radius-r1_5: 6px;
|
|
@@ -433,12 +444,13 @@
|
|
|
433
444
|
--seed-color-manner-temp-l5-text: #d28500;
|
|
434
445
|
--seed-color-manner-temp-l6-bg: #fff0e5;
|
|
435
446
|
--seed-color-manner-temp-l6-text: #f06000;
|
|
436
|
-
--seed-gradient-
|
|
437
|
-
--seed-gradient-
|
|
438
|
-
--seed-gradient-fade-neutral: #fff 0%, #fff0 100%;
|
|
447
|
+
--seed-gradient-fade-layer-floating: #fff0 0%, #000 100%;
|
|
448
|
+
--seed-gradient-fade-layer-default: #fff0 0%, #000 100%;
|
|
439
449
|
--seed-gradient-glow-magic: #fef6f7 0%, #fef0e7 80%, #f9f7f5 100%;
|
|
450
|
+
--seed-gradient-shimmer-magic: #fff9f500 0%, #fff9f58a 46%, #fff9f58a 54%, #fff9f500 100%;
|
|
440
451
|
--seed-gradient-glow-magic-pressed: #fbf0f2 0%, #ffe8db 80%, #f5f2ef 100%;
|
|
441
|
-
--seed-gradient-
|
|
452
|
+
--seed-gradient-shimmer-neutral: #fff0 0%, #fff6 46%, #fff6 54%, #fff0 100%;
|
|
453
|
+
--seed-gradient-highlight-magic: #f60 20%, #d25aca 100%;
|
|
442
454
|
}
|
|
443
455
|
|
|
444
456
|
:root[data-seed-color-mode="system"][data-seed-user-color-scheme="dark"], :root[data-seed-color-mode="dark-only"], :root [data-seed-color-mode="dark-only"] {
|
|
@@ -606,12 +618,13 @@
|
|
|
606
618
|
--seed-color-manner-temp-l5-text: #ffa100;
|
|
607
619
|
--seed-color-manner-temp-l6-bg: #2e1d12;
|
|
608
620
|
--seed-color-manner-temp-l6-text: #ff9147;
|
|
609
|
-
--seed-gradient-
|
|
610
|
-
--seed-gradient-
|
|
611
|
-
--seed-gradient-fade-neutral: #1d2025 0%, #1d202500 100%;
|
|
621
|
+
--seed-gradient-fade-layer-floating: #1d202500 0%, #000 100%;
|
|
622
|
+
--seed-gradient-fade-layer-default: #16171b00 0%, #000 100%;
|
|
612
623
|
--seed-gradient-glow-magic: #2d252d 0%, #3a312b 80%, #333232 100%;
|
|
624
|
+
--seed-gradient-shimmer-magic: #fff9f500 0%, #fff9f51a 46%, #fff9f51a 54%, #fff9f500 100%;
|
|
613
625
|
--seed-gradient-glow-magic-pressed: #3e333e 0%, #51453e 80%, #434242 100%;
|
|
614
|
-
--seed-gradient-
|
|
626
|
+
--seed-gradient-shimmer-neutral: #fff0 0%, #ffffff1a 46%, #ffffff1a 54%, #fff0 100%;
|
|
627
|
+
--seed-gradient-highlight-magic: #f60 20%, #d25aca 100%;
|
|
615
628
|
}
|
|
616
629
|
|
|
617
630
|
.seed-avatar__root {
|
|
@@ -2855,6 +2868,229 @@
|
|
|
2855
2868
|
min-width: var(--seed-dimension-x8);
|
|
2856
2869
|
}
|
|
2857
2870
|
|
|
2871
|
+
.seed-chip__root {
|
|
2872
|
+
box-sizing: border-box;
|
|
2873
|
+
cursor: pointer;
|
|
2874
|
+
text-transform: none;
|
|
2875
|
+
text-align: start;
|
|
2876
|
+
white-space: nowrap;
|
|
2877
|
+
-webkit-font-smoothing: antialiased;
|
|
2878
|
+
-moz-osx-font-smoothing: grayscale;
|
|
2879
|
+
border-radius: var(--seed-radius-full);
|
|
2880
|
+
transition-duration: var(--seed-duration-d4);
|
|
2881
|
+
transition-timing-function: var(--seed-timing-function-easing);
|
|
2882
|
+
border: none;
|
|
2883
|
+
flex-shrink: 0;
|
|
2884
|
+
justify-content: center;
|
|
2885
|
+
align-items: center;
|
|
2886
|
+
line-height: 1;
|
|
2887
|
+
transition-property: background-color, color, border-color, box-shadow;
|
|
2888
|
+
display: inline-flex;
|
|
2889
|
+
}
|
|
2890
|
+
|
|
2891
|
+
.seed-chip__root:is(:focus, [data-focus]) {
|
|
2892
|
+
outline: none;
|
|
2893
|
+
}
|
|
2894
|
+
|
|
2895
|
+
.seed-chip__root:is(:disabled, [disabled], [data-disabled]) {
|
|
2896
|
+
cursor: not-allowed;
|
|
2897
|
+
}
|
|
2898
|
+
|
|
2899
|
+
.seed-chip__root {
|
|
2900
|
+
--seed-icon-color: inherit;
|
|
2901
|
+
}
|
|
2902
|
+
|
|
2903
|
+
.seed-chip__label {
|
|
2904
|
+
font-weight: var(--seed-font-weight-medium);
|
|
2905
|
+
padding-inline: var(--seed-dimension-x1_5);
|
|
2906
|
+
color: inherit;
|
|
2907
|
+
justify-content: center;
|
|
2908
|
+
align-items: center;
|
|
2909
|
+
display: inline-flex;
|
|
2910
|
+
}
|
|
2911
|
+
|
|
2912
|
+
.seed-chip__prefixIcon {
|
|
2913
|
+
padding-left: var(--seed-dimension-x1_5);
|
|
2914
|
+
--seed-icon-color: inherit;
|
|
2915
|
+
flex-shrink: 0;
|
|
2916
|
+
align-items: center;
|
|
2917
|
+
display: inline-flex;
|
|
2918
|
+
}
|
|
2919
|
+
|
|
2920
|
+
.seed-chip__prefixAvatar {
|
|
2921
|
+
flex-shrink: 0;
|
|
2922
|
+
align-items: center;
|
|
2923
|
+
display: inline-flex;
|
|
2924
|
+
}
|
|
2925
|
+
|
|
2926
|
+
.seed-chip__suffixIcon {
|
|
2927
|
+
padding-right: var(--seed-dimension-x1_5);
|
|
2928
|
+
--seed-icon-color: inherit;
|
|
2929
|
+
flex-shrink: 0;
|
|
2930
|
+
align-items: center;
|
|
2931
|
+
display: inline-flex;
|
|
2932
|
+
}
|
|
2933
|
+
|
|
2934
|
+
.seed-chip__root--variant_solid {
|
|
2935
|
+
background: var(--seed-color-bg-neutral-weak);
|
|
2936
|
+
color: var(--seed-color-fg-neutral);
|
|
2937
|
+
}
|
|
2938
|
+
|
|
2939
|
+
.seed-chip__root--variant_solid:is(:checked, [data-checked]) {
|
|
2940
|
+
box-shadow: none;
|
|
2941
|
+
background: var(--seed-color-bg-neutral-inverted);
|
|
2942
|
+
color: var(--seed-color-fg-neutral-inverted);
|
|
2943
|
+
--seed-icon-color: var(--seed-color-fg-neutral-inverted);
|
|
2944
|
+
}
|
|
2945
|
+
|
|
2946
|
+
.seed-chip__root--variant_solid:is(:active, [data-active]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
2947
|
+
background: var(--seed-color-bg-neutral-weak-pressed);
|
|
2948
|
+
color: var(--seed-color-fg-neutral);
|
|
2949
|
+
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
2950
|
+
}
|
|
2951
|
+
|
|
2952
|
+
.seed-chip__root--variant_solid:is(:checked, [data-checked]):is(:active, [data-active]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
2953
|
+
background: var(--seed-color-bg-neutral-inverted-pressed);
|
|
2954
|
+
color: var(--seed-color-fg-neutral-inverted);
|
|
2955
|
+
--seed-icon-color: var(--seed-color-fg-neutral-inverted);
|
|
2956
|
+
}
|
|
2957
|
+
|
|
2958
|
+
.seed-chip__root--variant_solid:is(:disabled, [disabled], [data-disabled]) {
|
|
2959
|
+
opacity: .5;
|
|
2960
|
+
}
|
|
2961
|
+
|
|
2962
|
+
.seed-chip__root--variant_solid {
|
|
2963
|
+
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
2964
|
+
}
|
|
2965
|
+
|
|
2966
|
+
.seed-chip__root--variant_outlineStrong {
|
|
2967
|
+
background: var(--seed-color-bg-layer-default);
|
|
2968
|
+
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-neutral);
|
|
2969
|
+
color: var(--seed-color-fg-neutral);
|
|
2970
|
+
}
|
|
2971
|
+
|
|
2972
|
+
.seed-chip__root--variant_outlineStrong:is(:active, [data-active]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
2973
|
+
background: var(--seed-color-bg-layer-default-pressed);
|
|
2974
|
+
color: var(--seed-color-fg-neutral);
|
|
2975
|
+
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
2976
|
+
}
|
|
2977
|
+
|
|
2978
|
+
.seed-chip__root--variant_outlineStrong:is(:checked, [data-checked]) {
|
|
2979
|
+
background: var(--seed-color-bg-neutral-inverted);
|
|
2980
|
+
color: var(--seed-color-fg-neutral-inverted);
|
|
2981
|
+
--seed-icon-color: var(--seed-color-fg-neutral-inverted);
|
|
2982
|
+
}
|
|
2983
|
+
|
|
2984
|
+
.seed-chip__root--variant_outlineStrong:is(:checked, [data-checked]):is(:active, [data-active]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
2985
|
+
background: var(--seed-color-bg-neutral-inverted-pressed);
|
|
2986
|
+
color: var(--seed-color-fg-neutral-inverted);
|
|
2987
|
+
--seed-icon-color: var(--seed-color-fg-neutral-inverted);
|
|
2988
|
+
}
|
|
2989
|
+
|
|
2990
|
+
.seed-chip__root--variant_outlineStrong:is(:disabled, [disabled], [data-disabled]) {
|
|
2991
|
+
opacity: .5;
|
|
2992
|
+
}
|
|
2993
|
+
|
|
2994
|
+
.seed-chip__root--variant_outlineStrong {
|
|
2995
|
+
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
2996
|
+
}
|
|
2997
|
+
|
|
2998
|
+
.seed-chip__root--variant_outlineWeak {
|
|
2999
|
+
background: var(--seed-color-bg-layer-default);
|
|
3000
|
+
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-neutral);
|
|
3001
|
+
color: var(--seed-color-fg-neutral);
|
|
3002
|
+
}
|
|
3003
|
+
|
|
3004
|
+
.seed-chip__root--variant_outlineWeak:is(:active, [data-active]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
3005
|
+
background: var(--seed-color-bg-layer-default-pressed);
|
|
3006
|
+
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-neutral);
|
|
3007
|
+
color: var(--seed-color-fg-neutral);
|
|
3008
|
+
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
3009
|
+
}
|
|
3010
|
+
|
|
3011
|
+
.seed-chip__root--variant_outlineWeak:is(:checked, [data-checked]) {
|
|
3012
|
+
background: var(--seed-color-bg-neutral-weak);
|
|
3013
|
+
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-field-focused);
|
|
3014
|
+
color: var(--seed-color-fg-neutral);
|
|
3015
|
+
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
3016
|
+
}
|
|
3017
|
+
|
|
3018
|
+
.seed-chip__root--variant_outlineWeak:is(:checked, [data-checked]):is(:active, [data-active]):not(:is(:disabled, [disabled], [data-disabled])) {
|
|
3019
|
+
background: var(--seed-color-bg-neutral-weak-pressed);
|
|
3020
|
+
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-field-focused);
|
|
3021
|
+
color: var(--seed-color-fg-neutral);
|
|
3022
|
+
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
3023
|
+
}
|
|
3024
|
+
|
|
3025
|
+
.seed-chip__root--variant_outlineWeak:is(:disabled, [disabled], [data-disabled]) {
|
|
3026
|
+
opacity: .5;
|
|
3027
|
+
}
|
|
3028
|
+
|
|
3029
|
+
.seed-chip__root--variant_outlineWeak {
|
|
3030
|
+
--seed-icon-color: var(--seed-color-fg-neutral);
|
|
3031
|
+
}
|
|
3032
|
+
|
|
3033
|
+
.seed-chip__root--size_large {
|
|
3034
|
+
height: 40px;
|
|
3035
|
+
padding-inline: var(--seed-dimension-x2_5);
|
|
3036
|
+
--seed-icon-size: var(--seed-dimension-x4);
|
|
3037
|
+
}
|
|
3038
|
+
|
|
3039
|
+
.seed-chip__label--size_large {
|
|
3040
|
+
font-size: var(--seed-font-size-t4);
|
|
3041
|
+
line-height: var(--seed-line-height-t4);
|
|
3042
|
+
}
|
|
3043
|
+
|
|
3044
|
+
.seed-chip__prefixIcon--size_large, .seed-chip__suffixIcon--size_large {
|
|
3045
|
+
--seed-icon-size: var(--seed-dimension-x4);
|
|
3046
|
+
}
|
|
3047
|
+
|
|
3048
|
+
.seed-chip__root--size_medium {
|
|
3049
|
+
height: 36px;
|
|
3050
|
+
padding-inline: var(--seed-dimension-x2);
|
|
3051
|
+
--seed-icon-size: var(--seed-dimension-x4);
|
|
3052
|
+
}
|
|
3053
|
+
|
|
3054
|
+
.seed-chip__label--size_medium {
|
|
3055
|
+
font-size: var(--seed-font-size-t4);
|
|
3056
|
+
line-height: var(--seed-line-height-t4);
|
|
3057
|
+
}
|
|
3058
|
+
|
|
3059
|
+
.seed-chip__prefixIcon--size_medium {
|
|
3060
|
+
--seed-icon-size: var(--seed-dimension-x4);
|
|
3061
|
+
}
|
|
3062
|
+
|
|
3063
|
+
.seed-chip__suffixIcon--size_medium {
|
|
3064
|
+
--seed-icon-size: var(--seed-dimension-x3_5);
|
|
3065
|
+
}
|
|
3066
|
+
|
|
3067
|
+
.seed-chip__root--size_small {
|
|
3068
|
+
height: 32px;
|
|
3069
|
+
padding-inline: var(--seed-dimension-x1_5);
|
|
3070
|
+
--seed-icon-size: var(--seed-dimension-x3_5);
|
|
3071
|
+
}
|
|
3072
|
+
|
|
3073
|
+
.seed-chip__label--size_small {
|
|
3074
|
+
font-size: var(--seed-font-size-t4);
|
|
3075
|
+
line-height: var(--seed-line-height-t4);
|
|
3076
|
+
}
|
|
3077
|
+
|
|
3078
|
+
.seed-chip__prefixIcon--size_small, .seed-chip__suffixIcon--size_small {
|
|
3079
|
+
--seed-icon-size: var(--seed-dimension-x3_5);
|
|
3080
|
+
}
|
|
3081
|
+
|
|
3082
|
+
.seed-chip__root--size_small-layout_iconOnly {
|
|
3083
|
+
min-width: var(--seed-dimension-x8);
|
|
3084
|
+
}
|
|
3085
|
+
|
|
3086
|
+
.seed-chip__root--size_medium-layout_iconOnly {
|
|
3087
|
+
min-width: var(--seed-dimension-x9);
|
|
3088
|
+
}
|
|
3089
|
+
|
|
3090
|
+
.seed-chip__root--size_large-layout_iconOnly {
|
|
3091
|
+
min-width: var(--seed-dimension-x10);
|
|
3092
|
+
}
|
|
3093
|
+
|
|
2858
3094
|
.seed-control-chip {
|
|
2859
3095
|
box-sizing: border-box;
|
|
2860
3096
|
cursor: pointer;
|
|
@@ -5015,8 +5251,8 @@
|
|
|
5015
5251
|
--seed-enter-translate-y: 0;
|
|
5016
5252
|
--seed-enter-opacity: 1;
|
|
5017
5253
|
--seed-enter-scale: 1;
|
|
5018
|
-
|
|
5019
|
-
|
|
5254
|
+
transform: translate3d(var(--swipe-back-target, var(--swipe-back-displacement, 0)), 0, 0);
|
|
5255
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
5020
5256
|
}
|
|
5021
5257
|
|
|
5022
5258
|
[data-global-transition-state="exit-active"] .seed-app-screen__layer--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
@@ -5025,7 +5261,7 @@
|
|
|
5025
5261
|
--seed-exit-translate-y: 0;
|
|
5026
5262
|
--seed-exit-opacity: 1;
|
|
5027
5263
|
--seed-exit-scale: 1;
|
|
5028
|
-
animation: .
|
|
5264
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) forwards seed-exit;
|
|
5029
5265
|
}
|
|
5030
5266
|
|
|
5031
5267
|
[data-global-transition-state="enter-done"] .seed-app-screen__layer--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
@@ -5033,8 +5269,8 @@
|
|
|
5033
5269
|
--seed-enter-translate-y: 0;
|
|
5034
5270
|
--seed-enter-opacity: 1;
|
|
5035
5271
|
--seed-enter-scale: 1;
|
|
5036
|
-
|
|
5037
|
-
|
|
5272
|
+
transform: translate3d(var(--swipe-back-target, var(--swipe-back-displacement, 0)), 0, 0);
|
|
5273
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
5038
5274
|
}
|
|
5039
5275
|
|
|
5040
5276
|
[data-swipe-back-state="swiping"] .seed-app-screen__layer--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
@@ -5047,7 +5283,7 @@
|
|
|
5047
5283
|
--seed-exit-translate-y: 0;
|
|
5048
5284
|
--seed-exit-opacity: 1;
|
|
5049
5285
|
--seed-exit-scale: 1;
|
|
5050
|
-
animation: .
|
|
5286
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) forwards seed-exit;
|
|
5051
5287
|
transform: translate3d(0, 0, 0);
|
|
5052
5288
|
}
|
|
5053
5289
|
|
|
@@ -5056,7 +5292,7 @@
|
|
|
5056
5292
|
--seed-enter-translate-y: 0;
|
|
5057
5293
|
--seed-enter-opacity: 1;
|
|
5058
5294
|
--seed-enter-scale: 1;
|
|
5059
|
-
animation: .
|
|
5295
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
5060
5296
|
transform: translate3d(0, 0, 0);
|
|
5061
5297
|
}
|
|
5062
5298
|
|
|
@@ -5066,7 +5302,7 @@
|
|
|
5066
5302
|
--seed-exit-translate-y: 0;
|
|
5067
5303
|
--seed-exit-opacity: 1;
|
|
5068
5304
|
--seed-exit-scale: 1;
|
|
5069
|
-
animation: .
|
|
5305
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) forwards seed-exit;
|
|
5070
5306
|
}
|
|
5071
5307
|
|
|
5072
5308
|
[data-swipe-back-state="swiping"] .seed-app-screen__layer--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|
|
@@ -5080,7 +5316,7 @@
|
|
|
5080
5316
|
--seed-enter-opacity: 0;
|
|
5081
5317
|
--seed-enter-scale: 1;
|
|
5082
5318
|
opacity: 1;
|
|
5083
|
-
animation: .
|
|
5319
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
5084
5320
|
}
|
|
5085
5321
|
|
|
5086
5322
|
[data-global-transition-state="exit-active"] .seed-app-screen__dim--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
@@ -5089,7 +5325,7 @@
|
|
|
5089
5325
|
--seed-exit-translate-y: 0;
|
|
5090
5326
|
--seed-exit-opacity: 0;
|
|
5091
5327
|
--seed-exit-scale: 1;
|
|
5092
|
-
animation: .
|
|
5328
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) forwards seed-exit;
|
|
5093
5329
|
}
|
|
5094
5330
|
|
|
5095
5331
|
[data-global-transition-state="enter-done"] .seed-app-screen__dim--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
@@ -5098,7 +5334,7 @@
|
|
|
5098
5334
|
--seed-enter-opacity: calc(1 - var(--swipe-back-displacement-ratio, 0));
|
|
5099
5335
|
--seed-enter-scale: 1;
|
|
5100
5336
|
opacity: 1;
|
|
5101
|
-
animation: .
|
|
5337
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
5102
5338
|
}
|
|
5103
5339
|
|
|
5104
5340
|
[data-swipe-back-state="swiping"] .seed-app-screen__dim--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
@@ -5273,7 +5509,7 @@
|
|
|
5273
5509
|
--seed-enter-translate-y: 0;
|
|
5274
5510
|
--seed-enter-opacity: 1;
|
|
5275
5511
|
--seed-enter-scale: 1;
|
|
5276
|
-
animation: .
|
|
5512
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
5277
5513
|
transform: translate3d(0, 0, 0);
|
|
5278
5514
|
}
|
|
5279
5515
|
|
|
@@ -5283,7 +5519,7 @@
|
|
|
5283
5519
|
--seed-exit-translate-y: 0;
|
|
5284
5520
|
--seed-exit-opacity: 1;
|
|
5285
5521
|
--seed-exit-scale: 1;
|
|
5286
|
-
animation: .
|
|
5522
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) forwards seed-exit;
|
|
5287
5523
|
}
|
|
5288
5524
|
|
|
5289
5525
|
[data-global-transition-state="enter-done"] .seed-app-bar__root--transitionStyle_slideFromRightIOS[data-activity-is-top]:before {
|
|
@@ -5291,7 +5527,7 @@
|
|
|
5291
5527
|
--seed-enter-translate-y: 0;
|
|
5292
5528
|
--seed-enter-opacity: 1;
|
|
5293
5529
|
--seed-enter-scale: 1;
|
|
5294
|
-
animation: .
|
|
5530
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
5295
5531
|
transform: translate3d(0, 0, 0);
|
|
5296
5532
|
}
|
|
5297
5533
|
|
|
@@ -5301,7 +5537,7 @@
|
|
|
5301
5537
|
--seed-enter-opacity: 0;
|
|
5302
5538
|
--seed-enter-scale: 1;
|
|
5303
5539
|
opacity: 1;
|
|
5304
|
-
animation: .
|
|
5540
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
5305
5541
|
}
|
|
5306
5542
|
|
|
5307
5543
|
[data-global-transition-state="exit-active"] .seed-app-bar__icon--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
@@ -5310,7 +5546,7 @@
|
|
|
5310
5546
|
--seed-exit-translate-y: 0;
|
|
5311
5547
|
--seed-exit-opacity: 0;
|
|
5312
5548
|
--seed-exit-scale: 1;
|
|
5313
|
-
animation: .
|
|
5549
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) forwards seed-exit;
|
|
5314
5550
|
}
|
|
5315
5551
|
|
|
5316
5552
|
[data-global-transition-state="enter-done"] .seed-app-bar__icon--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
@@ -5319,7 +5555,7 @@
|
|
|
5319
5555
|
--seed-enter-opacity: calc(1 - var(--swipe-back-displacement-ratio, 0));
|
|
5320
5556
|
--seed-enter-scale: 1;
|
|
5321
5557
|
opacity: 1;
|
|
5322
|
-
animation: .
|
|
5558
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
5323
5559
|
}
|
|
5324
5560
|
|
|
5325
5561
|
[data-swipe-back-state="swiping"] .seed-app-bar__icon--transitionStyle_slideFromRightIOS[data-activity-is-top]:not(#\#) {
|
|
@@ -5333,7 +5569,7 @@
|
|
|
5333
5569
|
--seed-exit-translate-y: 0;
|
|
5334
5570
|
--seed-exit-opacity: 0;
|
|
5335
5571
|
--seed-exit-scale: 1;
|
|
5336
|
-
animation: .
|
|
5572
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) forwards seed-exit;
|
|
5337
5573
|
}
|
|
5338
5574
|
|
|
5339
5575
|
[data-global-transition-state="exit-active"][data-top-activity-type="full-screen"] .seed-app-bar__icon--transitionStyle_slideFromRightIOS:not([data-activity-is-top]) {
|
|
@@ -5342,7 +5578,7 @@
|
|
|
5342
5578
|
--seed-enter-opacity: calc(1 - var(--swipe-back-displacement-ratio, 0));
|
|
5343
5579
|
--seed-enter-scale: 1;
|
|
5344
5580
|
opacity: 1;
|
|
5345
|
-
animation: .
|
|
5581
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
5346
5582
|
}
|
|
5347
5583
|
|
|
5348
5584
|
[data-global-transition-state="enter-done"][data-top-activity-type="full-screen"] .seed-app-bar__icon--transitionStyle_slideFromRightIOS:not([data-activity-is-top]) {
|
|
@@ -5351,7 +5587,7 @@
|
|
|
5351
5587
|
--seed-exit-translate-y: 0;
|
|
5352
5588
|
--seed-exit-opacity: 0;
|
|
5353
5589
|
--seed-exit-scale: 1;
|
|
5354
|
-
animation: .
|
|
5590
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) forwards seed-exit;
|
|
5355
5591
|
}
|
|
5356
5592
|
|
|
5357
5593
|
[data-swipe-back-state="swiping"] .seed-app-bar__icon--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|
|
@@ -5452,7 +5688,7 @@
|
|
|
5452
5688
|
--seed-enter-opacity: 0;
|
|
5453
5689
|
--seed-enter-scale: 1;
|
|
5454
5690
|
opacity: 1;
|
|
5455
|
-
animation: .
|
|
5691
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
5456
5692
|
transform: translate3d(0, 0, 0);
|
|
5457
5693
|
}
|
|
5458
5694
|
|
|
@@ -5463,7 +5699,7 @@
|
|
|
5463
5699
|
--seed-exit-translate-y: 0;
|
|
5464
5700
|
--seed-exit-opacity: 0;
|
|
5465
5701
|
--seed-exit-scale: 1;
|
|
5466
|
-
animation: .
|
|
5702
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) forwards seed-exit;
|
|
5467
5703
|
}
|
|
5468
5704
|
|
|
5469
5705
|
[data-global-transition-state="enter-done"] .seed-app-bar-main__root--transitionStyle_slideFromRightIOS[data-activity-is-top] {
|
|
@@ -5472,7 +5708,7 @@
|
|
|
5472
5708
|
--seed-enter-opacity: calc(1 - var(--swipe-back-displacement-ratio, 0));
|
|
5473
5709
|
--seed-enter-scale: 1;
|
|
5474
5710
|
opacity: 1;
|
|
5475
|
-
animation: .
|
|
5711
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
5476
5712
|
transform: translate3d(0, 0, 0);
|
|
5477
5713
|
}
|
|
5478
5714
|
|
|
@@ -5488,7 +5724,7 @@
|
|
|
5488
5724
|
--seed-exit-translate-y: 0;
|
|
5489
5725
|
--seed-exit-opacity: 0;
|
|
5490
5726
|
--seed-exit-scale: 1;
|
|
5491
|
-
animation: .
|
|
5727
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) forwards seed-exit;
|
|
5492
5728
|
transform: translate3d(0, 0, 0);
|
|
5493
5729
|
}
|
|
5494
5730
|
|
|
@@ -5498,7 +5734,7 @@
|
|
|
5498
5734
|
--seed-enter-opacity: calc(1 - var(--swipe-back-displacement-ratio, 0));
|
|
5499
5735
|
--seed-enter-scale: 1;
|
|
5500
5736
|
opacity: 1;
|
|
5501
|
-
animation: .
|
|
5737
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) seed-enter;
|
|
5502
5738
|
transform: translate3d(0, 0, 0);
|
|
5503
5739
|
}
|
|
5504
5740
|
|
|
@@ -5509,7 +5745,7 @@
|
|
|
5509
5745
|
--seed-exit-translate-y: 0;
|
|
5510
5746
|
--seed-exit-opacity: 0;
|
|
5511
5747
|
--seed-exit-scale: 1;
|
|
5512
|
-
animation: .
|
|
5748
|
+
animation: .35s cubic-bezier(.2, .1, .21, .99) forwards seed-exit;
|
|
5513
5749
|
}
|
|
5514
5750
|
|
|
5515
5751
|
[data-swipe-back-state="swiping"] .seed-app-bar-main__root--transitionStyle_slideFromRightIOS:not([data-activity-is-top]):not(#\#) {
|