@seed-design/lynx-css 0.2.0-alpha.3 → 0.2.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 +433 -258
- package/all.min.css +1 -1
- package/base.css +9 -242
- package/base.min.css +1 -1
- package/package.json +1 -1
- package/recipes/action-button.css +0 -1
- package/recipes/app-bar-main.css +67 -0
- package/recipes/app-bar-main.d.ts +36 -0
- package/recipes/app-bar-main.mjs +63 -0
- package/recipes/app-bar.css +101 -0
- package/recipes/app-bar.d.ts +32 -0
- package/recipes/app-bar.mjs +74 -0
- package/recipes/badge.css +157 -0
- package/recipes/badge.d.ts +32 -0
- package/recipes/badge.mjs +131 -0
- package/recipes/bottom-sheet-handle.css +5 -4
- package/recipes/bottom-sheet.css +3 -2
- package/recipes/checkbox-group.css +1 -1
- package/recipes/checkbox-group.d.ts +1 -3
- package/recipes/checkbox-group.mjs +2 -12
- package/recipes/checkbox.css +5 -3
- package/recipes/checkmark.css +1 -0
- package/recipes/radio-group.css +1 -1
- package/recipes/radio-group.d.ts +1 -3
- package/recipes/radio-group.mjs +2 -12
- package/recipes/radio.css +5 -3
- package/recipes/radiomark.css +1 -0
- package/recipes/switch.css +7 -5
- package/recipes/switchmark.css +6 -0
- package/recipes/tag-group-item.css +1 -0
- package/recipes/tag-group.css +6 -0
- package/recipes/tag-group.d.ts +1 -1
- package/recipes/tag-group.mjs +4 -0
- package/vars/component/chip.d.ts +21 -1
- package/vars/component/chip.mjs +21 -1
- package/vars/component/list-item.d.ts +8 -3
- package/vars/component/list-item.mjs +6 -3
- package/vars/component/menu-sheet.d.ts +2 -2
- package/vars/component/menu-sheet.mjs +2 -2
- package/vars/component/top-navigation.d.ts +0 -9
- package/vars/component/top-navigation.mjs +0 -9
- package/vars/duration.d.ts +2 -1
- package/vars/duration.mjs +2 -1
- package/vars/timing-function.d.ts +2 -1
- package/vars/timing-function.mjs +2 -1
- package/all.layered.css +0 -1953
- package/all.layered.min.css +0 -1
- package/base.layered.css +0 -865
- package/base.layered.min.css +0 -1
- package/recipes/action-button.layered.css +0 -406
- package/recipes/action-button.layered.mjs +0 -212
- package/recipes/bottom-sheet-handle.layered.css +0 -21
- package/recipes/bottom-sheet-handle.layered.mjs +0 -36
- package/recipes/bottom-sheet.layered.css +0 -106
- package/recipes/bottom-sheet.layered.mjs +0 -76
- package/recipes/checkbox-group.layered.css +0 -7
- package/recipes/checkbox-group.layered.mjs +0 -46
- package/recipes/checkbox.layered.css +0 -42
- package/recipes/checkbox.layered.mjs +0 -53
- package/recipes/checkmark.layered.css +0 -146
- package/recipes/checkmark.layered.mjs +0 -220
- package/recipes/radio-group.layered.css +0 -7
- package/recipes/radio-group.layered.mjs +0 -46
- package/recipes/radio.layered.css +0 -42
- package/recipes/radio.layered.mjs +0 -53
- package/recipes/radiomark.layered.css +0 -112
- package/recipes/radiomark.layered.mjs +0 -121
- package/recipes/switch.layered.css +0 -48
- package/recipes/switch.layered.mjs +0 -49
- package/recipes/switchmark.layered.css +0 -88
- package/recipes/switchmark.layered.mjs +0 -90
- package/recipes/tag-group-item.layered.css +0 -43
- package/recipes/tag-group-item.layered.mjs +0 -55
- package/recipes/tag-group.layered.css +0 -31
- package/recipes/tag-group.layered.mjs +0 -44
package/all.css
CHANGED
|
@@ -1,30 +1,24 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
.seed-loading-indicator {
|
|
5
|
-
display: inline-flex;
|
|
6
|
-
position: absolute;
|
|
1
|
+
text {
|
|
2
|
+
background-color: var(--seed-color-bg-transparent);
|
|
7
3
|
}
|
|
8
4
|
|
|
9
5
|
.seed-icon, .seed-prefix-icon, .seed-suffix-icon {
|
|
10
6
|
flex-shrink: 0;
|
|
11
7
|
justify-content: center;
|
|
12
8
|
align-items: center;
|
|
13
|
-
display:
|
|
9
|
+
display: flex;
|
|
14
10
|
}
|
|
15
11
|
|
|
16
12
|
.seed-icon {
|
|
17
13
|
width: var(--seed-icon-size);
|
|
18
14
|
height: var(--seed-icon-size);
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.seed-icon__text {
|
|
22
15
|
color: var(--seed-icon-color, currentColor);
|
|
23
16
|
}
|
|
24
17
|
|
|
25
18
|
.seed-prefix-icon {
|
|
26
19
|
width: var(--seed-prefix-icon-size);
|
|
27
20
|
height: var(--seed-prefix-icon-size);
|
|
21
|
+
color: var(--seed-prefix-icon-color, currentColor);
|
|
28
22
|
margin-left: var(--seed-prefix-icon-margin-left, 0);
|
|
29
23
|
margin-right: var(--seed-prefix-icon-margin-right, 0);
|
|
30
24
|
margin-top: var(--seed-prefix-icon-margin-top, 0);
|
|
@@ -33,13 +27,10 @@
|
|
|
33
27
|
justify-self: var(--seed-prefix-icon-justify-self);
|
|
34
28
|
}
|
|
35
29
|
|
|
36
|
-
.seed-prefix-icon__text {
|
|
37
|
-
color: var(--seed-prefix-icon-color, currentColor);
|
|
38
|
-
}
|
|
39
|
-
|
|
40
30
|
.seed-suffix-icon {
|
|
41
31
|
width: var(--seed-suffix-icon-size);
|
|
42
32
|
height: var(--seed-suffix-icon-size);
|
|
33
|
+
color: var(--seed-suffix-icon-color, currentColor);
|
|
43
34
|
margin-left: var(--seed-suffix-icon-margin-left, 0);
|
|
44
35
|
margin-right: var(--seed-suffix-icon-margin-right, 0);
|
|
45
36
|
margin-top: var(--seed-suffix-icon-margin-top, 0);
|
|
@@ -48,226 +39,6 @@
|
|
|
48
39
|
justify-self: var(--seed-suffix-icon-justify-self);
|
|
49
40
|
}
|
|
50
41
|
|
|
51
|
-
.seed-suffix-icon__text {
|
|
52
|
-
color: var(--seed-suffix-icon-color, currentColor);
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.seed-count__text {
|
|
56
|
-
font-size: var(--seed-count-font-size);
|
|
57
|
-
line-height: var(--seed-count-line-height);
|
|
58
|
-
font-weight: var(--seed-count-font-weight);
|
|
59
|
-
color: var(--seed-count-color);
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.seed-box {
|
|
63
|
-
--seed-box-background: transparent;
|
|
64
|
-
background: var(--seed-box-background);
|
|
65
|
-
--seed-box-border-style: solid;
|
|
66
|
-
--seed-box-border-color: transparent;
|
|
67
|
-
border-style: var(--seed-box-border-style);
|
|
68
|
-
border-color: var(--seed-box-border-color);
|
|
69
|
-
--seed-box-border-width: 0;
|
|
70
|
-
--seed-box-border-top-width: var(--seed-box-border-width);
|
|
71
|
-
--seed-box-border-bottom-width: var(--seed-box-border-width);
|
|
72
|
-
--seed-box-border-left-width: var(--seed-box-border-width);
|
|
73
|
-
--seed-box-border-right-width: var(--seed-box-border-width);
|
|
74
|
-
border-top-width: var(--seed-box-border-top-width);
|
|
75
|
-
border-bottom-width: var(--seed-box-border-bottom-width);
|
|
76
|
-
border-left-width: var(--seed-box-border-left-width);
|
|
77
|
-
border-right-width: var(--seed-box-border-right-width);
|
|
78
|
-
--seed-box-padding: 0;
|
|
79
|
-
--seed-box-padding-y: var(--seed-box-padding);
|
|
80
|
-
--seed-box-padding-x: var(--seed-box-padding);
|
|
81
|
-
--seed-box-padding-bottom: var(--seed-box-padding-y);
|
|
82
|
-
--seed-box-padding-top: var(--seed-box-padding-y);
|
|
83
|
-
--seed-box-padding-left: var(--seed-box-padding-x);
|
|
84
|
-
--seed-box-padding-right: var(--seed-box-padding-x);
|
|
85
|
-
padding-top: var(--seed-box-padding-top);
|
|
86
|
-
padding-bottom: var(--seed-box-padding-bottom);
|
|
87
|
-
padding-left: var(--seed-box-padding-left);
|
|
88
|
-
padding-right: var(--seed-box-padding-right);
|
|
89
|
-
--seed-box-bleed-bottom: 0px;
|
|
90
|
-
--seed-box-bleed-top: 0px;
|
|
91
|
-
--seed-box-bleed-left: 0px;
|
|
92
|
-
--seed-box-bleed-right: 0px;
|
|
93
|
-
margin-top: calc(var(--seed-box-bleed-top) * -1);
|
|
94
|
-
margin-bottom: calc(var(--seed-box-bleed-bottom) * -1);
|
|
95
|
-
margin-left: calc(var(--seed-box-bleed-left) * -1);
|
|
96
|
-
margin-right: calc(var(--seed-box-bleed-right) * -1);
|
|
97
|
-
--seed-box-min-height: auto;
|
|
98
|
-
--seed-box-max-height: none;
|
|
99
|
-
--seed-box-height: auto;
|
|
100
|
-
--seed-box-min-width: auto;
|
|
101
|
-
--seed-box-max-width: none;
|
|
102
|
-
--seed-box-width: auto;
|
|
103
|
-
min-height: var(--seed-box-min-height);
|
|
104
|
-
max-height: var(--seed-box-max-height);
|
|
105
|
-
height: var(--seed-box-height);
|
|
106
|
-
min-width: var(--seed-box-min-width);
|
|
107
|
-
max-width: var(--seed-box-max-width);
|
|
108
|
-
width: var(--seed-box-width);
|
|
109
|
-
--seed-box-top: auto;
|
|
110
|
-
--seed-box-bottom: auto;
|
|
111
|
-
--seed-box-left: auto;
|
|
112
|
-
--seed-box-right: auto;
|
|
113
|
-
top: var(--seed-box-top);
|
|
114
|
-
bottom: var(--seed-box-bottom);
|
|
115
|
-
left: var(--seed-box-left);
|
|
116
|
-
right: var(--seed-box-right);
|
|
117
|
-
--seed-box-border-radius: 0;
|
|
118
|
-
--seed-box-border-bottom-left-radius: var(--seed-box-border-radius);
|
|
119
|
-
--seed-box-border-bottom-right-radius: var(--seed-box-border-radius);
|
|
120
|
-
--seed-box-border-top-left-radius: var(--seed-box-border-radius);
|
|
121
|
-
--seed-box-border-top-right-radius: var(--seed-box-border-radius);
|
|
122
|
-
border-bottom-left-radius: var(--seed-box-border-bottom-left-radius);
|
|
123
|
-
border-bottom-right-radius: var(--seed-box-border-bottom-right-radius);
|
|
124
|
-
border-top-left-radius: var(--seed-box-border-top-left-radius);
|
|
125
|
-
border-top-right-radius: var(--seed-box-border-top-right-radius);
|
|
126
|
-
--seed-box-box-shadow: none;
|
|
127
|
-
box-shadow: var(--seed-box-box-shadow);
|
|
128
|
-
--seed-box-display: block;
|
|
129
|
-
--seed-box-position: relative;
|
|
130
|
-
display: var(--seed-box-display);
|
|
131
|
-
position: var(--seed-box-position);
|
|
132
|
-
--seed-box-unstable-transform: none;
|
|
133
|
-
transform: var(--seed-box-unstable-transform);
|
|
134
|
-
--seed-box-z-index: auto;
|
|
135
|
-
z-index: var(--seed-box-z-index);
|
|
136
|
-
--seed-box-overflow-x: visible;
|
|
137
|
-
--seed-box-overflow-y: visible;
|
|
138
|
-
overflow-x: var(--seed-box-overflow-x);
|
|
139
|
-
overflow-y: var(--seed-box-overflow-y);
|
|
140
|
-
--seed-box-flex-grow: 0;
|
|
141
|
-
--seed-box-flex-shrink: 1;
|
|
142
|
-
flex-grow: var(--seed-box-flex-grow);
|
|
143
|
-
flex-shrink: var(--seed-box-flex-shrink);
|
|
144
|
-
--seed-box-flex-direction: row;
|
|
145
|
-
--seed-box-flex-wrap: nowrap;
|
|
146
|
-
--seed-box-justify-content: flex-start;
|
|
147
|
-
--seed-box-justify-self: auto;
|
|
148
|
-
--seed-box-align-items: stretch;
|
|
149
|
-
--seed-box-align-content: stretch;
|
|
150
|
-
--seed-box-align-self: auto;
|
|
151
|
-
--seed-box-gap: 0px;
|
|
152
|
-
flex-direction: var(--seed-box-flex-direction);
|
|
153
|
-
flex-wrap: var(--seed-box-flex-wrap);
|
|
154
|
-
justify-content: var(--seed-box-justify-content);
|
|
155
|
-
justify-self: var(--seed-box-justify-self);
|
|
156
|
-
align-items: var(--seed-box-align-items);
|
|
157
|
-
align-content: var(--seed-box-align-content);
|
|
158
|
-
align-self: var(--seed-box-align-self);
|
|
159
|
-
gap: var(--seed-box-gap);
|
|
160
|
-
--seed-box-grid-column: auto;
|
|
161
|
-
--seed-box-grid-row: auto;
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
.seed-box__text {
|
|
165
|
-
--seed-box-background: transparent;
|
|
166
|
-
--seed-box-border-style: solid;
|
|
167
|
-
--seed-box-border-color: transparent;
|
|
168
|
-
--seed-box-border-width: 0;
|
|
169
|
-
--seed-box-border-top-width: var(--seed-box-border-width);
|
|
170
|
-
--seed-box-border-bottom-width: var(--seed-box-border-width);
|
|
171
|
-
--seed-box-border-left-width: var(--seed-box-border-width);
|
|
172
|
-
--seed-box-border-right-width: var(--seed-box-border-width);
|
|
173
|
-
--seed-box-padding: 0;
|
|
174
|
-
--seed-box-padding-y: var(--seed-box-padding);
|
|
175
|
-
--seed-box-padding-x: var(--seed-box-padding);
|
|
176
|
-
--seed-box-padding-bottom: var(--seed-box-padding-y);
|
|
177
|
-
--seed-box-padding-top: var(--seed-box-padding-y);
|
|
178
|
-
--seed-box-padding-left: var(--seed-box-padding-x);
|
|
179
|
-
--seed-box-padding-right: var(--seed-box-padding-x);
|
|
180
|
-
--seed-box-bleed-bottom: 0px;
|
|
181
|
-
--seed-box-bleed-top: 0px;
|
|
182
|
-
--seed-box-bleed-left: 0px;
|
|
183
|
-
--seed-box-bleed-right: 0px;
|
|
184
|
-
--seed-box-min-height: auto;
|
|
185
|
-
--seed-box-max-height: none;
|
|
186
|
-
--seed-box-height: auto;
|
|
187
|
-
--seed-box-min-width: auto;
|
|
188
|
-
--seed-box-max-width: none;
|
|
189
|
-
--seed-box-width: auto;
|
|
190
|
-
--seed-box-top: auto;
|
|
191
|
-
--seed-box-bottom: auto;
|
|
192
|
-
--seed-box-left: auto;
|
|
193
|
-
--seed-box-right: auto;
|
|
194
|
-
--seed-box-border-radius: 0;
|
|
195
|
-
--seed-box-border-bottom-left-radius: var(--seed-box-border-radius);
|
|
196
|
-
--seed-box-border-bottom-right-radius: var(--seed-box-border-radius);
|
|
197
|
-
--seed-box-border-top-left-radius: var(--seed-box-border-radius);
|
|
198
|
-
--seed-box-border-top-right-radius: var(--seed-box-border-radius);
|
|
199
|
-
--seed-box-box-shadow: none;
|
|
200
|
-
--seed-box-display: block;
|
|
201
|
-
--seed-box-position: relative;
|
|
202
|
-
--seed-box-unstable-transform: none;
|
|
203
|
-
--seed-box-z-index: auto;
|
|
204
|
-
--seed-box-overflow-x: visible;
|
|
205
|
-
--seed-box-overflow-y: visible;
|
|
206
|
-
--seed-box-flex-grow: 0;
|
|
207
|
-
--seed-box-flex-shrink: 1;
|
|
208
|
-
--seed-box-flex-direction: row;
|
|
209
|
-
--seed-box-flex-wrap: nowrap;
|
|
210
|
-
--seed-box-justify-content: flex-start;
|
|
211
|
-
--seed-box-justify-self: auto;
|
|
212
|
-
--seed-box-align-items: stretch;
|
|
213
|
-
--seed-box-align-content: stretch;
|
|
214
|
-
--seed-box-align-self: auto;
|
|
215
|
-
--seed-box-gap: 0px;
|
|
216
|
-
--seed-box-grid-column: auto;
|
|
217
|
-
--seed-box-grid-row: auto;
|
|
218
|
-
transform: var(--seed-box-unstable-transform);
|
|
219
|
-
color: var(--seed-box-color);
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
.seed-box.seed-box--has-active-bg_true:active {
|
|
223
|
-
background: var(--seed-box-background--active);
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
.seed-grid {
|
|
227
|
-
--seed-grid-columns: auto;
|
|
228
|
-
grid-template-columns: var(--seed-grid-columns);
|
|
229
|
-
--seed-grid-rows: auto;
|
|
230
|
-
grid-template-rows: var(--seed-grid-rows);
|
|
231
|
-
--seed-grid-auto-flow: row;
|
|
232
|
-
grid-auto-flow: var(--seed-grid-auto-flow);
|
|
233
|
-
--seed-grid-auto-columns: auto;
|
|
234
|
-
grid-auto-columns: var(--seed-grid-auto-columns);
|
|
235
|
-
--seed-grid-auto-rows: auto;
|
|
236
|
-
grid-auto-rows: var(--seed-grid-auto-rows);
|
|
237
|
-
--seed-grid-justify-items: stretch;
|
|
238
|
-
justify-items: var(--seed-grid-justify-items);
|
|
239
|
-
display: grid;
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
.seed-grid__text {
|
|
243
|
-
--seed-grid-columns: auto;
|
|
244
|
-
--seed-grid-rows: auto;
|
|
245
|
-
--seed-grid-auto-flow: row;
|
|
246
|
-
--seed-grid-auto-columns: auto;
|
|
247
|
-
--seed-grid-auto-rows: auto;
|
|
248
|
-
--seed-grid-justify-items: stretch;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
.seed-consistent-width:before {
|
|
252
|
-
visibility: hidden;
|
|
253
|
-
height: 0;
|
|
254
|
-
display: block;
|
|
255
|
-
}
|
|
256
|
-
|
|
257
|
-
.seed-consistent-width__text:before {
|
|
258
|
-
font-weight: var(--seed-font-weight-regular);
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
.seed-consistent-width:after {
|
|
262
|
-
visibility: hidden;
|
|
263
|
-
height: 0;
|
|
264
|
-
display: block;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
.seed-consistent-width__text:after {
|
|
268
|
-
font-weight: var(--seed-font-weight-bold);
|
|
269
|
-
}
|
|
270
|
-
|
|
271
42
|
:root {
|
|
272
43
|
--seed-dimension-x0_5: 2px;
|
|
273
44
|
--seed-dimension-x1: 4px;
|
|
@@ -301,6 +72,7 @@
|
|
|
301
72
|
--seed-duration-d5: .25s;
|
|
302
73
|
--seed-duration-d6: .3s;
|
|
303
74
|
--seed-duration-color-transition: var(--seed-duration-d3);
|
|
75
|
+
--seed-duration-pressed-scale: var(--seed-duration-d3);
|
|
304
76
|
--seed-font-size-t1: 11sp;
|
|
305
77
|
--seed-font-size-t2: 12sp;
|
|
306
78
|
--seed-font-size-t3: 13sp;
|
|
@@ -361,6 +133,7 @@
|
|
|
361
133
|
--seed-timing-function-exit: cubic-bezier(.35, 0, 1, 1);
|
|
362
134
|
--seed-timing-function-enter-expressive: cubic-bezier(.03, .4, .1, 1);
|
|
363
135
|
--seed-timing-function-exit-expressive: cubic-bezier(.35, 0, .95, .55);
|
|
136
|
+
--seed-timing-function-pressed-scale: cubic-bezier(0, 0, .15, 1);
|
|
364
137
|
}
|
|
365
138
|
|
|
366
139
|
:root, :root.seed-user-color-scheme-light, :root.seed-color-mode-light-only, .seed-color-mode-light-only {
|
|
@@ -816,7 +589,6 @@
|
|
|
816
589
|
}
|
|
817
590
|
|
|
818
591
|
.seed-action-button__text {
|
|
819
|
-
font-family: inherit;
|
|
820
592
|
font-weight: var(--seed-font-weight-bold);
|
|
821
593
|
transition: color var(--seed-duration-color-transition) var(--seed-timing-function-easing);
|
|
822
594
|
}
|
|
@@ -839,9 +611,9 @@
|
|
|
839
611
|
display: flex;
|
|
840
612
|
position: absolute;
|
|
841
613
|
top: 0;
|
|
842
|
-
right: 0;
|
|
843
614
|
bottom: 0;
|
|
844
615
|
left: 0;
|
|
616
|
+
right: 0;
|
|
845
617
|
}
|
|
846
618
|
|
|
847
619
|
.seed-action-button__root--variant_brandSolid {
|
|
@@ -1190,17 +962,403 @@
|
|
|
1190
962
|
background: var(--seed-color-bg-transparent-pressed);
|
|
1191
963
|
}
|
|
1192
964
|
|
|
965
|
+
.seed-app-bar__root {
|
|
966
|
+
z-index: var(--z-index-app-bar);
|
|
967
|
+
flex-direction: row;
|
|
968
|
+
align-items: flex-end;
|
|
969
|
+
width: 100%;
|
|
970
|
+
display: flex;
|
|
971
|
+
position: relative;
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
.seed-app-bar__background {
|
|
975
|
+
z-index: -1;
|
|
976
|
+
position: absolute;
|
|
977
|
+
top: 0;
|
|
978
|
+
bottom: 0;
|
|
979
|
+
left: 0;
|
|
980
|
+
right: 0;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
.seed-app-bar__left {
|
|
984
|
+
z-index: 1;
|
|
985
|
+
flex-direction: row;
|
|
986
|
+
align-items: center;
|
|
987
|
+
height: 100%;
|
|
988
|
+
display: flex;
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
.seed-app-bar__right {
|
|
992
|
+
z-index: 1;
|
|
993
|
+
flex-direction: row;
|
|
994
|
+
align-items: center;
|
|
995
|
+
height: 100%;
|
|
996
|
+
margin-left: auto;
|
|
997
|
+
display: flex;
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
.seed-app-bar__iconButton {
|
|
1001
|
+
border-radius: var(--seed-radius-r1);
|
|
1002
|
+
background: none;
|
|
1003
|
+
border-width: 0;
|
|
1004
|
+
justify-content: center;
|
|
1005
|
+
align-items: center;
|
|
1006
|
+
padding: 0;
|
|
1007
|
+
display: flex;
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
.seed-app-bar__icon {
|
|
1011
|
+
flex-shrink: 0;
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
.seed-app-bar__custom {
|
|
1015
|
+
flex-direction: row;
|
|
1016
|
+
align-items: center;
|
|
1017
|
+
display: flex;
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
.seed-app-bar__root--theme_cupertino {
|
|
1021
|
+
height: calc(44px + var(--seed-safe-area-top));
|
|
1022
|
+
padding-left: var(--seed-dimension-x4);
|
|
1023
|
+
padding-right: var(--seed-dimension-x4);
|
|
1024
|
+
padding-top: var(--seed-safe-area-top);
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
.seed-app-bar__left--theme_cupertino, .seed-app-bar__right--theme_cupertino {
|
|
1028
|
+
height: 44px;
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
.seed-app-bar__iconButton--theme_cupertino {
|
|
1032
|
+
width: 44px;
|
|
1033
|
+
height: 44px;
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
.seed-app-bar__icon--theme_cupertino {
|
|
1037
|
+
width: 24px;
|
|
1038
|
+
height: 24px;
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
.seed-app-bar__root--theme_android {
|
|
1042
|
+
height: calc(56px + var(--seed-safe-area-top));
|
|
1043
|
+
padding-left: var(--seed-dimension-x4);
|
|
1044
|
+
padding-right: var(--seed-dimension-x4);
|
|
1045
|
+
padding-top: var(--seed-safe-area-top);
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
.seed-app-bar__left--theme_android {
|
|
1049
|
+
height: 56px;
|
|
1050
|
+
padding-right: 16px;
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
.seed-app-bar__right--theme_android {
|
|
1054
|
+
height: 56px;
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
.seed-app-bar__iconButton--theme_android {
|
|
1058
|
+
width: 44px;
|
|
1059
|
+
height: 44px;
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
.seed-app-bar__icon--theme_android {
|
|
1063
|
+
width: 24px;
|
|
1064
|
+
height: 24px;
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
.seed-app-bar__background--tone_layer {
|
|
1068
|
+
background: var(--seed-color-bg-layer-default);
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
.seed-app-bar__icon--tone_layer {
|
|
1072
|
+
color: var(--seed-color-fg-neutral);
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
.seed-app-bar__background--tone_transparent {
|
|
1076
|
+
background: none;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
.seed-app-bar__icon--tone_transparent {
|
|
1080
|
+
color: var(--seed-color-palette-static-white);
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
.seed-app-bar-main__root {
|
|
1084
|
+
flex-direction: column;
|
|
1085
|
+
flex: 1;
|
|
1086
|
+
min-width: 0;
|
|
1087
|
+
display: flex;
|
|
1088
|
+
}
|
|
1089
|
+
|
|
1090
|
+
.seed-app-bar-main__title, .seed-app-bar-main__subtitle {
|
|
1091
|
+
white-space: nowrap;
|
|
1092
|
+
text-overflow: ellipsis;
|
|
1093
|
+
overflow: hidden;
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
.seed-app-bar-main__title--layout_titleOnly {
|
|
1097
|
+
font-size: var(--seed-font-size-t6);
|
|
1098
|
+
font-weight: var(--seed-font-weight-bold);
|
|
1099
|
+
line-height: var(--seed-line-height-t6);
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
.seed-app-bar-main__title--layout_withSubtitle {
|
|
1103
|
+
font-size: var(--seed-font-size-t5);
|
|
1104
|
+
font-weight: var(--seed-font-weight-bold);
|
|
1105
|
+
line-height: var(--seed-line-height-t5);
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1108
|
+
.seed-app-bar-main__subtitle--layout_withSubtitle {
|
|
1109
|
+
font-size: var(--seed-font-size-t2);
|
|
1110
|
+
font-weight: var(--seed-font-weight-regular);
|
|
1111
|
+
line-height: var(--seed-line-height-t2);
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
.seed-app-bar-main__root--theme_cupertino {
|
|
1115
|
+
text-align: center;
|
|
1116
|
+
top: var(--seed-safe-area-top);
|
|
1117
|
+
padding-left: var(--centered-title-padding-x, 0);
|
|
1118
|
+
padding-right: var(--centered-title-padding-x, 0);
|
|
1119
|
+
justify-content: center;
|
|
1120
|
+
align-items: center;
|
|
1121
|
+
position: absolute;
|
|
1122
|
+
bottom: 0;
|
|
1123
|
+
left: 0;
|
|
1124
|
+
right: 0;
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
.seed-app-bar-main__root--theme_android {
|
|
1128
|
+
justify-content: center;
|
|
1129
|
+
align-items: flex-start;
|
|
1130
|
+
width: 100%;
|
|
1131
|
+
height: 56px;
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
.seed-app-bar-main__root--tone_layer, .seed-app-bar-main__title--tone_layer {
|
|
1135
|
+
color: var(--seed-color-fg-neutral);
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
.seed-app-bar-main__subtitle--tone_layer {
|
|
1139
|
+
color: var(--seed-color-fg-neutral-muted);
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
.seed-app-bar-main__root--tone_transparent, .seed-app-bar-main__title--tone_transparent, .seed-app-bar-main__subtitle--tone_transparent {
|
|
1143
|
+
color: var(--seed-color-palette-static-white);
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
.seed-badge__root {
|
|
1147
|
+
flex-direction: row;
|
|
1148
|
+
flex-shrink: 0;
|
|
1149
|
+
align-items: center;
|
|
1150
|
+
display: flex;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
.seed-badge__root:dir(ltr) {
|
|
1154
|
+
text-align: left;
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
.seed-badge__root:dir(rtl) {
|
|
1158
|
+
text-align: right;
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
.seed-badge__label {
|
|
1162
|
+
text-overflow: ellipsis;
|
|
1163
|
+
white-space: nowrap;
|
|
1164
|
+
flex-shrink: 1;
|
|
1165
|
+
max-width: 100%;
|
|
1166
|
+
overflow: hidden;
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
.seed-badge__root--size_medium {
|
|
1170
|
+
max-width: 7.5rem;
|
|
1171
|
+
min-height: var(--seed-dimension-x5);
|
|
1172
|
+
padding-left: var(--seed-dimension-x1_5);
|
|
1173
|
+
padding-right: var(--seed-dimension-x1_5);
|
|
1174
|
+
padding-top: var(--seed-dimension-x0_5);
|
|
1175
|
+
padding-bottom: var(--seed-dimension-x0_5);
|
|
1176
|
+
border-radius: var(--seed-radius-r1);
|
|
1177
|
+
}
|
|
1178
|
+
|
|
1179
|
+
.seed-badge__label--size_medium {
|
|
1180
|
+
font-size: var(--seed-font-size-t1);
|
|
1181
|
+
line-height: var(--seed-line-height-t1);
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
.seed-badge__root--size_large {
|
|
1185
|
+
max-width: 6.75rem;
|
|
1186
|
+
min-height: var(--seed-dimension-x6);
|
|
1187
|
+
padding-left: var(--seed-dimension-x2);
|
|
1188
|
+
padding-right: var(--seed-dimension-x2);
|
|
1189
|
+
padding-top: var(--seed-dimension-x1);
|
|
1190
|
+
padding-bottom: var(--seed-dimension-x1);
|
|
1191
|
+
border-radius: var(--seed-radius-r1_5);
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
.seed-badge__label--size_large {
|
|
1195
|
+
font-size: var(--seed-font-size-t2);
|
|
1196
|
+
line-height: var(--seed-line-height-t2);
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
.seed-badge__label--variant_weak {
|
|
1200
|
+
font-weight: var(--seed-font-weight-medium);
|
|
1201
|
+
}
|
|
1202
|
+
|
|
1203
|
+
.seed-badge__label--variant_solid, .seed-badge__label--variant_outline {
|
|
1204
|
+
font-weight: var(--seed-font-weight-bold);
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
.seed-badge__root--tone_neutral-variant_weak {
|
|
1208
|
+
background-color: var(--seed-color-bg-neutral-weak);
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1211
|
+
.seed-badge__label--tone_neutral-variant_weak {
|
|
1212
|
+
color: var(--seed-color-fg-neutral-muted);
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
.seed-badge__root--tone_neutral-variant_solid {
|
|
1216
|
+
background-color: var(--seed-color-palette-gray-800);
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
.seed-badge__label--tone_neutral-variant_solid {
|
|
1220
|
+
color: var(--seed-color-fg-neutral-inverted);
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
.seed-badge__root--tone_neutral-variant_outline {
|
|
1224
|
+
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-neutral-muted);
|
|
1225
|
+
}
|
|
1226
|
+
|
|
1227
|
+
.seed-badge__label--tone_neutral-variant_outline {
|
|
1228
|
+
color: var(--seed-color-fg-neutral-muted);
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1231
|
+
.seed-badge__root--tone_brand-variant_weak {
|
|
1232
|
+
background-color: var(--seed-color-bg-brand-weak);
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1235
|
+
.seed-badge__label--tone_brand-variant_weak {
|
|
1236
|
+
color: var(--seed-color-fg-brand-contrast);
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1239
|
+
.seed-badge__root--tone_brand-variant_solid {
|
|
1240
|
+
background-color: var(--seed-color-bg-brand-solid);
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1243
|
+
.seed-badge__label--tone_brand-variant_solid {
|
|
1244
|
+
color: var(--seed-color-palette-static-white);
|
|
1245
|
+
}
|
|
1246
|
+
|
|
1247
|
+
.seed-badge__root--tone_brand-variant_outline {
|
|
1248
|
+
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-brand-weak);
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
.seed-badge__label--tone_brand-variant_outline {
|
|
1252
|
+
color: var(--seed-color-fg-brand);
|
|
1253
|
+
}
|
|
1254
|
+
|
|
1255
|
+
.seed-badge__root--tone_informative-variant_weak {
|
|
1256
|
+
background-color: var(--seed-color-bg-informative-weak);
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
.seed-badge__label--tone_informative-variant_weak {
|
|
1260
|
+
color: var(--seed-color-fg-informative-contrast);
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1263
|
+
.seed-badge__root--tone_informative-variant_solid {
|
|
1264
|
+
background-color: var(--seed-color-bg-informative-solid);
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1267
|
+
.seed-badge__label--tone_informative-variant_solid {
|
|
1268
|
+
color: var(--seed-color-palette-static-white);
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
.seed-badge__root--tone_informative-variant_outline {
|
|
1272
|
+
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-informative-weak);
|
|
1273
|
+
}
|
|
1274
|
+
|
|
1275
|
+
.seed-badge__label--tone_informative-variant_outline {
|
|
1276
|
+
color: var(--seed-color-fg-informative);
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
.seed-badge__root--tone_positive-variant_weak {
|
|
1280
|
+
background-color: var(--seed-color-bg-positive-weak);
|
|
1281
|
+
}
|
|
1282
|
+
|
|
1283
|
+
.seed-badge__label--tone_positive-variant_weak {
|
|
1284
|
+
color: var(--seed-color-fg-positive-contrast);
|
|
1285
|
+
}
|
|
1286
|
+
|
|
1287
|
+
.seed-badge__root--tone_positive-variant_solid {
|
|
1288
|
+
background-color: var(--seed-color-bg-positive-solid);
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
.seed-badge__label--tone_positive-variant_solid {
|
|
1292
|
+
color: var(--seed-color-palette-static-white);
|
|
1293
|
+
}
|
|
1294
|
+
|
|
1295
|
+
.seed-badge__root--tone_positive-variant_outline {
|
|
1296
|
+
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-positive-weak);
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1299
|
+
.seed-badge__label--tone_positive-variant_outline {
|
|
1300
|
+
color: var(--seed-color-fg-positive);
|
|
1301
|
+
}
|
|
1302
|
+
|
|
1303
|
+
.seed-badge__root--tone_warning-variant_weak {
|
|
1304
|
+
background-color: var(--seed-color-bg-warning-weak);
|
|
1305
|
+
}
|
|
1306
|
+
|
|
1307
|
+
.seed-badge__label--tone_warning-variant_weak {
|
|
1308
|
+
color: var(--seed-color-fg-warning-contrast);
|
|
1309
|
+
}
|
|
1310
|
+
|
|
1311
|
+
.seed-badge__root--tone_warning-variant_solid {
|
|
1312
|
+
background-color: var(--seed-color-bg-warning-solid);
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
.seed-badge__label--tone_warning-variant_solid {
|
|
1316
|
+
color: var(--seed-color-palette-static-black-alpha-900);
|
|
1317
|
+
}
|
|
1318
|
+
|
|
1319
|
+
.seed-badge__root--tone_warning-variant_outline {
|
|
1320
|
+
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-warning-weak);
|
|
1321
|
+
}
|
|
1322
|
+
|
|
1323
|
+
.seed-badge__label--tone_warning-variant_outline {
|
|
1324
|
+
color: var(--seed-color-fg-warning);
|
|
1325
|
+
}
|
|
1326
|
+
|
|
1327
|
+
.seed-badge__root--tone_critical-variant_weak {
|
|
1328
|
+
background-color: var(--seed-color-bg-critical-weak);
|
|
1329
|
+
}
|
|
1330
|
+
|
|
1331
|
+
.seed-badge__label--tone_critical-variant_weak {
|
|
1332
|
+
color: var(--seed-color-fg-critical-contrast);
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1335
|
+
.seed-badge__root--tone_critical-variant_solid {
|
|
1336
|
+
background-color: var(--seed-color-bg-critical-solid);
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1339
|
+
.seed-badge__label--tone_critical-variant_solid {
|
|
1340
|
+
color: var(--seed-color-palette-static-white);
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1343
|
+
.seed-badge__root--tone_critical-variant_outline {
|
|
1344
|
+
box-shadow: inset 0 0 0 1px var(--seed-color-stroke-critical-weak);
|
|
1345
|
+
}
|
|
1346
|
+
|
|
1347
|
+
.seed-badge__label--tone_critical-variant_outline {
|
|
1348
|
+
color: var(--seed-color-fg-critical);
|
|
1349
|
+
}
|
|
1350
|
+
|
|
1193
1351
|
.seed-bottom-sheet__positioner {
|
|
1194
|
-
--sheet-z-index:
|
|
1352
|
+
--sheet-z-index: 20;
|
|
1195
1353
|
z-index: calc(var(--sheet-z-index) + var(--layer-index, 0));
|
|
1196
1354
|
justify-content: center;
|
|
1197
1355
|
align-items: flex-end;
|
|
1198
1356
|
display: flex;
|
|
1199
1357
|
position: fixed;
|
|
1200
1358
|
top: 0;
|
|
1201
|
-
right: 0;
|
|
1202
1359
|
bottom: 0;
|
|
1203
1360
|
left: 0;
|
|
1361
|
+
right: 0;
|
|
1204
1362
|
}
|
|
1205
1363
|
|
|
1206
1364
|
.seed-bottom-sheet__backdrop {
|
|
@@ -1209,9 +1367,9 @@
|
|
|
1209
1367
|
z-index: calc(var(--sheet-z-index) + var(--layer-index, 0));
|
|
1210
1368
|
position: fixed;
|
|
1211
1369
|
top: 0;
|
|
1212
|
-
right: 0;
|
|
1213
1370
|
bottom: 0;
|
|
1214
1371
|
left: 0;
|
|
1372
|
+
right: 0;
|
|
1215
1373
|
}
|
|
1216
1374
|
|
|
1217
1375
|
.seed-bottom-sheet__content {
|
|
@@ -1219,7 +1377,6 @@
|
|
|
1219
1377
|
background: var(--seed-color-bg-layer-floating);
|
|
1220
1378
|
border-top-left-radius: var(--seed-radius-r6);
|
|
1221
1379
|
border-top-right-radius: var(--seed-radius-r6);
|
|
1222
|
-
padding-bottom: env(safe-area-inset-bottom);
|
|
1223
1380
|
flex-direction: column;
|
|
1224
1381
|
flex: 1;
|
|
1225
1382
|
display: flex;
|
|
@@ -1254,9 +1411,11 @@
|
|
|
1254
1411
|
}
|
|
1255
1412
|
|
|
1256
1413
|
.seed-bottom-sheet__body {
|
|
1414
|
+
min-height: 0;
|
|
1257
1415
|
padding-left: var(--seed-dimension-spacing-x-global-gutter);
|
|
1258
1416
|
padding-right: var(--seed-dimension-spacing-x-global-gutter);
|
|
1259
1417
|
flex-direction: column;
|
|
1418
|
+
flex: 1;
|
|
1260
1419
|
display: flex;
|
|
1261
1420
|
}
|
|
1262
1421
|
|
|
@@ -1301,22 +1460,23 @@
|
|
|
1301
1460
|
width: 36px;
|
|
1302
1461
|
height: 4px;
|
|
1303
1462
|
position: absolute;
|
|
1304
|
-
top:
|
|
1463
|
+
top: 50%;
|
|
1305
1464
|
left: 50%;
|
|
1306
|
-
transform:
|
|
1465
|
+
transform: translate(-50%, -50%);
|
|
1307
1466
|
}
|
|
1308
1467
|
|
|
1309
1468
|
.seed-bottom-sheet-handle__touchArea {
|
|
1469
|
+
z-index: 1;
|
|
1310
1470
|
width: 44px;
|
|
1311
1471
|
height: 44px;
|
|
1312
1472
|
position: absolute;
|
|
1313
|
-
top:
|
|
1473
|
+
top: -14px;
|
|
1314
1474
|
left: 50%;
|
|
1315
|
-
transform:
|
|
1475
|
+
transform: translateX(-50%);
|
|
1316
1476
|
}
|
|
1317
1477
|
|
|
1318
1478
|
.seed-checkbox__root {
|
|
1319
|
-
align-items:
|
|
1479
|
+
align-items: flex-start;
|
|
1320
1480
|
gap: var(--seed-dimension-x2);
|
|
1321
1481
|
display: flex;
|
|
1322
1482
|
position: relative;
|
|
@@ -1336,6 +1496,7 @@
|
|
|
1336
1496
|
|
|
1337
1497
|
.seed-checkbox__root--size_medium {
|
|
1338
1498
|
min-height: var(--seed-dimension-x8);
|
|
1499
|
+
--checkmark-margin-top: calc((var(--seed-dimension-x8) - var(--seed-dimension-x5)) / 2);
|
|
1339
1500
|
}
|
|
1340
1501
|
|
|
1341
1502
|
.seed-checkbox__label--size_medium {
|
|
@@ -1345,6 +1506,7 @@
|
|
|
1345
1506
|
|
|
1346
1507
|
.seed-checkbox__root--size_large {
|
|
1347
1508
|
min-height: var(--seed-dimension-x9);
|
|
1509
|
+
--checkmark-margin-top: calc((var(--seed-dimension-x9) - var(--seed-dimension-x6)) / 2);
|
|
1348
1510
|
}
|
|
1349
1511
|
|
|
1350
1512
|
.seed-checkbox__label--size_large {
|
|
@@ -1356,13 +1518,14 @@
|
|
|
1356
1518
|
color: var(--seed-color-fg-disabled);
|
|
1357
1519
|
}
|
|
1358
1520
|
|
|
1359
|
-
.seed-checkbox-
|
|
1521
|
+
.seed-checkbox-group__root {
|
|
1360
1522
|
gap: var(--seed-dimension-x1);
|
|
1361
1523
|
flex-direction: column;
|
|
1362
1524
|
display: flex;
|
|
1363
1525
|
}
|
|
1364
1526
|
|
|
1365
1527
|
.seed-checkmark__root {
|
|
1528
|
+
margin-top: var(--checkmark-margin-top, 0);
|
|
1366
1529
|
transition: background-color var(--seed-duration-color-transition) var(--seed-timing-function-easing);
|
|
1367
1530
|
flex: none;
|
|
1368
1531
|
justify-content: center;
|
|
@@ -1508,7 +1671,7 @@
|
|
|
1508
1671
|
}
|
|
1509
1672
|
|
|
1510
1673
|
.seed-radio__root {
|
|
1511
|
-
align-items:
|
|
1674
|
+
align-items: flex-start;
|
|
1512
1675
|
gap: var(--seed-dimension-x2);
|
|
1513
1676
|
display: flex;
|
|
1514
1677
|
position: relative;
|
|
@@ -1528,6 +1691,7 @@
|
|
|
1528
1691
|
|
|
1529
1692
|
.seed-radio__root--size_medium {
|
|
1530
1693
|
min-height: var(--seed-dimension-x8);
|
|
1694
|
+
--radiomark-margin-top: calc((var(--seed-dimension-x8) - var(--seed-dimension-x5)) / 2);
|
|
1531
1695
|
}
|
|
1532
1696
|
|
|
1533
1697
|
.seed-radio__label--size_medium {
|
|
@@ -1537,6 +1701,7 @@
|
|
|
1537
1701
|
|
|
1538
1702
|
.seed-radio__root--size_large {
|
|
1539
1703
|
min-height: var(--seed-dimension-x9);
|
|
1704
|
+
--radiomark-margin-top: calc((var(--seed-dimension-x9) - var(--seed-dimension-x6)) / 2);
|
|
1540
1705
|
}
|
|
1541
1706
|
|
|
1542
1707
|
.seed-radio__label--size_large {
|
|
@@ -1548,13 +1713,14 @@
|
|
|
1548
1713
|
color: var(--seed-color-fg-disabled);
|
|
1549
1714
|
}
|
|
1550
1715
|
|
|
1551
|
-
.seed-radio-
|
|
1716
|
+
.seed-radio-group__root {
|
|
1552
1717
|
gap: var(--seed-dimension-x1);
|
|
1553
1718
|
flex-direction: column;
|
|
1554
1719
|
display: flex;
|
|
1555
1720
|
}
|
|
1556
1721
|
|
|
1557
1722
|
.seed-radiomark__root {
|
|
1723
|
+
margin-top: var(--radiomark-margin-top, 0);
|
|
1558
1724
|
border-style: solid;
|
|
1559
1725
|
border-width: 1px;
|
|
1560
1726
|
border-color: var(--seed-color-stroke-neutral-weak);
|
|
@@ -1666,8 +1832,7 @@
|
|
|
1666
1832
|
}
|
|
1667
1833
|
|
|
1668
1834
|
.seed-switch__root {
|
|
1669
|
-
|
|
1670
|
-
align-items: center;
|
|
1835
|
+
align-items: flex-start;
|
|
1671
1836
|
display: flex;
|
|
1672
1837
|
position: relative;
|
|
1673
1838
|
}
|
|
@@ -1686,6 +1851,7 @@
|
|
|
1686
1851
|
.seed-switch__label--size_16 {
|
|
1687
1852
|
font-size: var(--seed-font-size-t3);
|
|
1688
1853
|
line-height: var(--seed-line-height-t3);
|
|
1854
|
+
margin-top: calc(var(--seed-dimension-x6) / 2 - var(--seed-line-height-t3) / 2);
|
|
1689
1855
|
}
|
|
1690
1856
|
|
|
1691
1857
|
.seed-switch__root--size_24 {
|
|
@@ -1696,6 +1862,7 @@
|
|
|
1696
1862
|
.seed-switch__label--size_24 {
|
|
1697
1863
|
font-size: var(--seed-font-size-t4);
|
|
1698
1864
|
line-height: var(--seed-line-height-t4);
|
|
1865
|
+
margin-top: calc(var(--seed-dimension-x6) / 2 - var(--seed-line-height-t4) / 2);
|
|
1699
1866
|
}
|
|
1700
1867
|
|
|
1701
1868
|
.seed-switch__root--size_32 {
|
|
@@ -1706,6 +1873,7 @@
|
|
|
1706
1873
|
.seed-switch__label--size_32 {
|
|
1707
1874
|
font-size: var(--seed-font-size-t5);
|
|
1708
1875
|
line-height: var(--seed-line-height-t5);
|
|
1876
|
+
margin-top: calc(var(--seed-dimension-x8) / 2 - var(--seed-line-height-t5) / 2);
|
|
1709
1877
|
}
|
|
1710
1878
|
|
|
1711
1879
|
.seed-switch__label--disabled_true {
|
|
@@ -1737,6 +1905,8 @@
|
|
|
1737
1905
|
.seed-switchmark__root--size_16 {
|
|
1738
1906
|
min-width: 26px;
|
|
1739
1907
|
min-height: 16px;
|
|
1908
|
+
margin-top: calc((var(--seed-dimension-x6) - 16px) / 2);
|
|
1909
|
+
margin-bottom: calc((var(--seed-dimension-x6) - 16px) / 2);
|
|
1740
1910
|
padding: 2px;
|
|
1741
1911
|
}
|
|
1742
1912
|
|
|
@@ -1748,6 +1918,8 @@
|
|
|
1748
1918
|
.seed-switchmark__root--size_24 {
|
|
1749
1919
|
min-width: 38px;
|
|
1750
1920
|
min-height: 24px;
|
|
1921
|
+
margin-top: calc((var(--seed-dimension-x6) - 24px) / 2);
|
|
1922
|
+
margin-bottom: calc((var(--seed-dimension-x6) - 24px) / 2);
|
|
1751
1923
|
padding: 2px;
|
|
1752
1924
|
}
|
|
1753
1925
|
|
|
@@ -1759,6 +1931,8 @@
|
|
|
1759
1931
|
.seed-switchmark__root--size_32 {
|
|
1760
1932
|
min-width: 52px;
|
|
1761
1933
|
min-height: 32px;
|
|
1934
|
+
margin-top: calc((var(--seed-dimension-x8) - 32px) / 2);
|
|
1935
|
+
margin-bottom: calc((var(--seed-dimension-x8) - 32px) / 2);
|
|
1762
1936
|
padding: 3px;
|
|
1763
1937
|
}
|
|
1764
1938
|
|
|
@@ -1806,6 +1980,13 @@
|
|
|
1806
1980
|
display: flex;
|
|
1807
1981
|
}
|
|
1808
1982
|
|
|
1983
|
+
.seed-tag-group__separatorWrapper {
|
|
1984
|
+
flex-direction: row;
|
|
1985
|
+
flex-shrink: 0;
|
|
1986
|
+
align-items: center;
|
|
1987
|
+
display: flex;
|
|
1988
|
+
}
|
|
1989
|
+
|
|
1809
1990
|
.seed-tag-group__separator {
|
|
1810
1991
|
color: var(--seed-color-palette-gray-600);
|
|
1811
1992
|
font-weight: var(--seed-font-weight-regular);
|
|
@@ -1909,12 +2090,6 @@
|
|
|
1909
2090
|
}
|
|
1910
2091
|
}
|
|
1911
2092
|
|
|
1912
|
-
@keyframes progress-circle-head {
|
|
1913
|
-
}
|
|
1914
|
-
|
|
1915
|
-
@keyframes progress-circle-tail {
|
|
1916
|
-
}
|
|
1917
|
-
|
|
1918
2093
|
@keyframes fade-in {
|
|
1919
2094
|
from {
|
|
1920
2095
|
opacity: 0;
|
|
@@ -1933,7 +2108,7 @@
|
|
|
1933
2108
|
|
|
1934
2109
|
@keyframes drawer-slide-from-bottom {
|
|
1935
2110
|
from {
|
|
1936
|
-
transform: translate3d(0, var(--
|
|
2111
|
+
transform: translate3d(0, var(--seed-drawer-start-transform, 100%), 0);
|
|
1937
2112
|
}
|
|
1938
2113
|
|
|
1939
2114
|
to {
|
|
@@ -1943,6 +2118,6 @@
|
|
|
1943
2118
|
|
|
1944
2119
|
@keyframes drawer-slide-to-bottom {
|
|
1945
2120
|
to {
|
|
1946
|
-
transform: translate3d(0, var(--
|
|
2121
|
+
transform: translate3d(0, var(--seed-drawer-start-transform, 100%), 0);
|
|
1947
2122
|
}
|
|
1948
2123
|
}
|