@phillips/seldon 1.181.0 → 1.182.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/AddToCalendar/AddToCalendar.js +1 -1
- package/dist/components/Article/Article.js +2 -2
- package/dist/components/ComboBox/ComboBox.js +115 -116
- package/dist/components/ComposedModal/ComposedModal.js +2 -2
- package/dist/components/ExitGateCard/ExitGateCard.js +2 -2
- package/dist/components/FavoritingTileButton/FavoritingTileButton.js +15 -15
- package/dist/components/Filter/FilterHeader.js +1 -1
- package/dist/components/Link/types.d.ts +1 -2
- package/dist/components/Link/types.js +1 -1
- package/dist/components/NotificationBanner/NotificationBanner.stories.d.ts +12 -0
- package/dist/components/Text/Text.js +1 -1
- package/dist/components/Text/types.d.ts +0 -17
- package/dist/components/Text/types.js +3 -3
- package/dist/components/Text/utils.js +6 -6
- package/dist/patterns/AccountPageHeader/AccountPageHeader.js +21 -21
- package/dist/patterns/BidSnapshot/BidMessage.js +6 -6
- package/dist/patterns/FavoritesCollectionTile/FavoritesCollectionTile.js +1 -1
- package/dist/patterns/FiltersInline/FilterButton.js +8 -8
- package/dist/patterns/FiltersInline/FilterDropdownMenuDesktop.js +41 -41
- package/dist/patterns/FiltersInline/FilterDropdownMenuMobile.js +38 -38
- package/dist/patterns/SaleCard/SaleCard.js +25 -25
- package/dist/patterns/SaleHeaderBanner/SaleHeaderBanner.js +45 -45
- package/dist/patterns/SaleHeaderBanner/SaleHeaderBrowseAuctions.js +7 -7
- package/dist/patterns/UserManagement/UserManagement.js +10 -10
- package/dist/patterns/ViewingDetails/ViewingDetails.js +12 -12
- package/dist/scss/_type.scss +63 -142
- package/dist/scss/_vars.scss +49 -74
- package/dist/scss/_vars.scss.js +51 -76
- package/dist/scss/components/Accordion/_accordion.scss +4 -4
- package/dist/scss/components/AddToCalendar/_addToCalendar.scss +2 -2
- package/dist/scss/components/Article/_article.scss +0 -5
- package/dist/scss/components/Breadcrumb/_breadcrumb.scss +1 -1
- package/dist/scss/components/Button/_button.scss +1 -1
- package/dist/scss/components/ComboBox/_combobox.scss +4 -4
- package/dist/scss/components/Countdown/_countdown.scss +2 -2
- package/dist/scss/components/Countdown/_duration.scss +1 -1
- package/dist/scss/components/Detail/_detail.scss +1 -1
- package/dist/scss/components/Drawer/_drawerHeader.scss +2 -2
- package/dist/scss/components/Dropdown/_dropdown.scss +2 -2
- package/dist/scss/components/Filter/_filter.scss +3 -3
- package/dist/scss/components/Icon/_icon.stories.scss +1 -1
- package/dist/scss/components/Input/_input.scss +3 -3
- package/dist/scss/components/Link/_link.scss +4 -4
- package/dist/scss/components/Navigation/_navigation.scss +4 -1
- package/dist/scss/components/NotificationBanner/_notificationBanner.scss +35 -0
- package/dist/scss/components/Pagination/_pagination.scss +1 -1
- package/dist/scss/components/Search/_search.scss +5 -10
- package/dist/scss/components/Tabs/_tabs.scss +1 -1
- package/dist/scss/components/Tags/_tags.scss +1 -1
- package/dist/scss/components/TextArea/_textArea.scss +2 -2
- package/dist/scss/components/TextSymbol/_textSymbol.scss +2 -2
- package/dist/scss/patterns/SaleHeaderBanner/_saleHeaderBanner.scss +1 -1
- package/dist/scss/patterns/Social/_social.scss +1 -1
- package/dist/scss/patterns/Subscribe/_subscribe.scss +3 -3
- package/dist/scss/site-furniture/Footer/_footer.scss +2 -2
- package/dist/scss/site-furniture/Header/_header.scss +5 -1
- package/dist/site-furniture/Footer/Footer.js +1 -1
- package/package.json +1 -1
package/dist/scss/_vars.scss.js
CHANGED
|
@@ -1,41 +1,6 @@
|
|
|
1
|
-
const
|
|
1
|
+
const e = `// prefix
|
|
2
2
|
$px: seldon;
|
|
3
3
|
|
|
4
|
-
@mixin font-size-vars--sm {
|
|
5
|
-
--font-size-micro: 0.25rem;
|
|
6
|
-
--font-size-xsm: 0.5rem;
|
|
7
|
-
--font-size-sm: 0.75rem;
|
|
8
|
-
--font-size-md: 1rem;
|
|
9
|
-
--font-size-lg: 1.25rem;
|
|
10
|
-
--font-size-xl: 1.5rem;
|
|
11
|
-
--font-size-xxl: 1.75rem;
|
|
12
|
-
--font-size-xxxl: 2rem;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
@mixin font-size-vars--md {
|
|
16
|
-
@include font-size-vars--sm;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
@mixin font-size-vars--lg {
|
|
20
|
-
--font-size-micro: 0.5rem;
|
|
21
|
-
--font-size-xsm: 0.75rem;
|
|
22
|
-
--font-size-sm: 1rem;
|
|
23
|
-
--font-size-md: 1.25rem;
|
|
24
|
-
--font-size-lg: 1.5rem;
|
|
25
|
-
--font-size-xl: 1.75rem;
|
|
26
|
-
--font-size-xxl: 2rem;
|
|
27
|
-
--font-size-xxxl: 2.25rem;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
$font-size-micro: var(--font-size-micro);
|
|
31
|
-
$font-size-xsm: var(--font-size-xsm);
|
|
32
|
-
$font-size-sm: var(--font-size-sm);
|
|
33
|
-
$font-size-md: var(--font-size-md);
|
|
34
|
-
$font-size-lg: var(--font-size-lg);
|
|
35
|
-
$font-size-xl: var(--font-size-xl);
|
|
36
|
-
$font-size-xxl: var(--font-size-xxl);
|
|
37
|
-
$font-size-xxxl: var(--font-size-xxxl);
|
|
38
|
-
|
|
39
4
|
////////////////////////
|
|
40
5
|
/// COlORS:
|
|
41
6
|
///////////////////////
|
|
@@ -118,40 +83,19 @@ $text-family: $DistinctText;
|
|
|
118
83
|
|
|
119
84
|
// Used with the labelText mixin
|
|
120
85
|
// @include labelText($label)
|
|
121
|
-
$labelLg: 'labelLg';
|
|
122
|
-
$labelLgBold: 'labelLgBold';
|
|
123
|
-
$labelMd: 'labelMd';
|
|
124
|
-
$labelMdBold: 'labelMdBold';
|
|
125
|
-
$labelSm: 'labelSm';
|
|
126
|
-
$labelSmBold: 'labelSmBold';
|
|
127
86
|
$button: 'button';
|
|
128
87
|
$link: 'link';
|
|
129
|
-
$linkBold: 'linkBold';
|
|
130
88
|
$email: 'email';
|
|
131
89
|
$label: 'label';
|
|
132
90
|
$badge: 'badge';
|
|
133
91
|
|
|
134
|
-
// Body styles
|
|
135
|
-
$bodyLg: 'bodyLg';
|
|
136
|
-
$bodyMd: 'bodyMd';
|
|
137
|
-
$bodySm: 'bodySm';
|
|
138
|
-
$bodyLgBold: 'bodyLgBold';
|
|
139
|
-
$bodyMdBold: 'bodyMdBold';
|
|
140
|
-
$bodySmBold: 'bodySmBold';
|
|
141
|
-
|
|
142
92
|
// Used with the hText mixin
|
|
143
93
|
$blockquote: 'blockquote';
|
|
144
94
|
$heading1: 'heading1';
|
|
145
95
|
$heading2: 'heading2';
|
|
146
96
|
$heading3: 'heading3';
|
|
147
|
-
$heading3Italic: 'heading3Italic';
|
|
148
97
|
$heading4: 'heading4';
|
|
149
|
-
$heading4Italic: 'heading4Italic';
|
|
150
98
|
$heading5: 'heading5';
|
|
151
|
-
|
|
152
|
-
// Eyebrow tokens
|
|
153
|
-
$eyebrowLg: 'eyebrowLg';
|
|
154
|
-
$eyebrowSm: 'eyebrowSm';
|
|
155
99
|
$title1: 'title1';
|
|
156
100
|
$title2: 'title2';
|
|
157
101
|
$title3: 'title3';
|
|
@@ -166,11 +110,9 @@ $snwHeaderLink: 'snwHeaderLink';
|
|
|
166
110
|
$snwFlyoutLink: 'snwFlyoutLink';
|
|
167
111
|
$snwHeadingHero1: 'snwHeadingHero1';
|
|
168
112
|
$snwHeadingHero2: 'snwHeadingHero2';
|
|
169
|
-
$text-tokens: $
|
|
170
|
-
$
|
|
171
|
-
$
|
|
172
|
-
$title4, $body1, $body2, $body3, $string1, $string2, $string3, $snwFlyoutLink, $snwHeaderLink, $snwHeadingHero1,
|
|
173
|
-
$snwHeadingHero2;
|
|
113
|
+
$text-tokens: $button, $link, $email, $label, $badge, $blockquote, $heading1, $heading2, $heading3, $heading4, $heading5,
|
|
114
|
+
$title1, $title2, $title3, $title4, $body1, $body2, $body3, $string1, $string2, $string3, $snwFlyoutLink,
|
|
115
|
+
$snwHeaderLink, $snwHeadingHero1, $snwHeadingHero2;
|
|
174
116
|
|
|
175
117
|
////////////////////////
|
|
176
118
|
/// Breakpoint TOKENS to be used for min-width comparisons, make sure they match BREAKPOINTS in constants.ts
|
|
@@ -185,14 +127,20 @@ $breakpoint-xl: 1801px;
|
|
|
185
127
|
///////////////////////
|
|
186
128
|
// @TODO: These tokens need to be aligned with the new values from the design system https://www.figma.com/design/hMu9IWH5N3KamJy8tLFdyV/EASEL-Compendium%3A-Tokens%2C-Components-%26-Patterns?node-id=7263-1361&node-type=canvas&m=dev
|
|
187
129
|
// Once we update ObjectTile and other components will need to be updated to match the new token.
|
|
188
|
-
|
|
189
|
-
$line-height-default: 1.2;
|
|
190
|
-
$line-height-body: 1.4;
|
|
191
|
-
|
|
192
130
|
:root {
|
|
193
131
|
--desktop-max-width: 120rem;
|
|
194
132
|
--quote-size: 1.5rem;
|
|
195
133
|
--quote-line-height: 2rem;
|
|
134
|
+
--heading-size1: 1.5rem;
|
|
135
|
+
--heading-line-height-size1: 1.75rem;
|
|
136
|
+
--heading-size2: 1.5rem;
|
|
137
|
+
--heading-line-height-size2: 1.75rem;
|
|
138
|
+
--heading-size3: 1.25rem;
|
|
139
|
+
--heading-line-height-size3: 1.5rem;
|
|
140
|
+
--heading-size4: 1rem;
|
|
141
|
+
--heading-line-height-size4: 1.25rem;
|
|
142
|
+
--heading-size5: 0.75rem;
|
|
143
|
+
--heading-line-height-size5: 1rem;
|
|
196
144
|
--string-size1: 1rem;
|
|
197
145
|
--string-line-height-size1: 1.25rem;
|
|
198
146
|
--string-size2: 0.75rem;
|
|
@@ -224,16 +172,22 @@ $line-height-body: 1.4;
|
|
|
224
172
|
--snw-heading-hero-line-height-size1: 2.375rem;
|
|
225
173
|
--snw-heading-hero-size2: 1.625rem;
|
|
226
174
|
--snw-heading-hero-line-height-size2: 1.9375rem;
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
--font-size-step: 0.25rem;
|
|
230
|
-
--body-size-step: 0.5rem;
|
|
231
|
-
|
|
232
|
-
@include font-size-vars--sm;
|
|
175
|
+
--snw-note-size: 0.75rem;
|
|
176
|
+
--snw-note-line-height: 1rem;
|
|
233
177
|
|
|
234
178
|
@media (min-width: $breakpoint-md) {
|
|
235
179
|
--quote-size: 1.75rem;
|
|
236
180
|
--quote-line-height: 2.25rem;
|
|
181
|
+
--heading-size1: 1.75rem;
|
|
182
|
+
--heading-line-height-size1: 2rem;
|
|
183
|
+
--heading-size2: 1.75rem;
|
|
184
|
+
--heading-line-height-size2: 2rem;
|
|
185
|
+
--heading-size3: 1.5rem;
|
|
186
|
+
--heading-line-height-size3: 1.75rem;
|
|
187
|
+
--heading-size4: 1.25rem;
|
|
188
|
+
--heading-line-height-size4: 1.5rem;
|
|
189
|
+
--heading-size5: 1rem;
|
|
190
|
+
--heading-line-height-size5: 1.25rem;
|
|
237
191
|
--string-size1: 1.25rem;
|
|
238
192
|
--string-line-height-size1: 1.5rem;
|
|
239
193
|
--string-size2: 1rem;
|
|
@@ -272,6 +226,16 @@ $line-height-body: 1.4;
|
|
|
272
226
|
@media (min-width: $breakpoint-xl) {
|
|
273
227
|
--quote-size: 2rem;
|
|
274
228
|
--quote-line-height: 2.5rem;
|
|
229
|
+
--heading-size1: 2rem;
|
|
230
|
+
--heading-line-height-size1: 2.25rem;
|
|
231
|
+
--heading-size2: 2rem;
|
|
232
|
+
--heading-line-height-size2: 2.25rem;
|
|
233
|
+
--heading-size3: 1.75rem;
|
|
234
|
+
--heading-line-height-size3: 2rem;
|
|
235
|
+
--heading-size4: 1.5rem;
|
|
236
|
+
--heading-line-height-size4: 1.75rem;
|
|
237
|
+
--heading-size5: 1.25rem;
|
|
238
|
+
--heading-line-height-size5: 1.5rem;
|
|
275
239
|
--string-size1: 1.5rem;
|
|
276
240
|
--string-line-height-size1: 1.75rem;
|
|
277
241
|
--string-size2: 1.25rem;
|
|
@@ -297,9 +261,6 @@ $line-height-body: 1.4;
|
|
|
297
261
|
--snw-header-link-line-height: 1.75rem;
|
|
298
262
|
--snw-flyout-link-size: 1.125rem;
|
|
299
263
|
--snw-flyout-link-line-height: 2.125rem;
|
|
300
|
-
|
|
301
|
-
// FONT SIZES
|
|
302
|
-
@include font-size-vars--lg;
|
|
303
264
|
}
|
|
304
265
|
}
|
|
305
266
|
|
|
@@ -309,6 +270,18 @@ $title-size2: var(--heading-size2);
|
|
|
309
270
|
$title-size3: var(--heading-size3);
|
|
310
271
|
$title-size4: var(--heading-size4);
|
|
311
272
|
|
|
273
|
+
// HEADING
|
|
274
|
+
$heading-size1: var(--heading-size1);
|
|
275
|
+
$heading-line-height-size1: var(--heading-line-height-size1);
|
|
276
|
+
$heading-size2: var(--heading-size2);
|
|
277
|
+
$heading-line-height-size2: var(--heading-line-height-size2);
|
|
278
|
+
$heading-size3: var(--heading-size3);
|
|
279
|
+
$heading-line-height-size3: var(--heading-line-height-size3);
|
|
280
|
+
$heading-size4: var(--heading-size4);
|
|
281
|
+
$heading-line-height-size4: var(--heading-line-height-size4);
|
|
282
|
+
$heading-size5: var(--heading-size5);
|
|
283
|
+
$heading-line-height-size5: var(--heading-line-height-size5);
|
|
284
|
+
|
|
312
285
|
// BODY
|
|
313
286
|
$body-size1: var(--body-size1);
|
|
314
287
|
$body-line-height-size1: var(--body-line-height-size1);
|
|
@@ -351,6 +324,8 @@ $snw-heading-hero-line-height2: var(--snw-heading-hero-line-height-size2);
|
|
|
351
324
|
|
|
352
325
|
// SNOWFLAKES
|
|
353
326
|
$snowflake-menu-padding: 1.25rem;
|
|
327
|
+
$snowflake-note-size: var(--snw-note-size);
|
|
328
|
+
$snowflake-note-line-height: var(--snw-note-line-height);
|
|
354
329
|
|
|
355
330
|
/* stylelint-disable-next-line no-duplicate-selectors */
|
|
356
331
|
:root {
|
|
@@ -474,5 +449,5 @@ $search-size: var(--search-size);
|
|
|
474
449
|
$header-height: var(--header-height);
|
|
475
450
|
`;
|
|
476
451
|
export {
|
|
477
|
-
|
|
452
|
+
e as default
|
|
478
453
|
};
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
&__content--lg {
|
|
37
|
-
@include text($
|
|
37
|
+
@include text($body2);
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
&--transition[data-state='open'] {
|
|
@@ -124,15 +124,15 @@
|
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
&__text {
|
|
127
|
-
@include text($labelMd);
|
|
128
|
-
|
|
129
127
|
flex: auto;
|
|
130
128
|
font-variation-settings: 'wght' 600;
|
|
131
129
|
text-align: left;
|
|
130
|
+
|
|
131
|
+
@include text($string2);
|
|
132
132
|
}
|
|
133
133
|
|
|
134
134
|
&__text--lg {
|
|
135
|
-
@include text($
|
|
135
|
+
@include text($body1);
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
&__icon {
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
&-atcb-item-link {
|
|
48
|
-
@include text($
|
|
48
|
+
@include text($body-size2);
|
|
49
49
|
|
|
50
50
|
background: none;
|
|
51
51
|
border: none;
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
span {
|
|
69
|
-
@include text($
|
|
69
|
+
@include text($body-size2);
|
|
70
70
|
|
|
71
71
|
font-variation-settings: 'wght' 400;
|
|
72
72
|
text-decoration: none;
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
&__input {
|
|
26
|
-
@include text($
|
|
26
|
+
@include text($string2);
|
|
27
27
|
|
|
28
28
|
accent-color: $soft-black;
|
|
29
29
|
border: 1px solid $keyline-gray;
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
&__label {
|
|
64
|
-
@include text($
|
|
64
|
+
@include text($string2);
|
|
65
65
|
|
|
66
66
|
color: $pure-black;
|
|
67
67
|
display: inline-block;
|
|
@@ -146,7 +146,7 @@
|
|
|
146
146
|
padding: $padding-micro $padding-xsm;
|
|
147
147
|
transition: background-color 0.1s ease;
|
|
148
148
|
|
|
149
|
-
@include text($
|
|
149
|
+
@include text($string2);
|
|
150
150
|
|
|
151
151
|
&:hover,
|
|
152
152
|
&[data-selected='true'] {
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
}
|
|
170
170
|
|
|
171
171
|
&__item__invalid-text {
|
|
172
|
-
@include text($
|
|
172
|
+
@include text($string2);
|
|
173
173
|
|
|
174
174
|
align-items: center;
|
|
175
175
|
display: flex;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@use '../../allPartials' as *;
|
|
2
2
|
|
|
3
3
|
.#{$px}-countdown {
|
|
4
|
-
@include text($
|
|
4
|
+
@include text($body2);
|
|
5
5
|
|
|
6
6
|
align-items: center;
|
|
7
7
|
border-bottom: none;
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
&__countdown-container {
|
|
21
|
-
@include text($
|
|
21
|
+
@include text($heading5);
|
|
22
22
|
|
|
23
23
|
align-items: center;
|
|
24
24
|
display: flex;
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
@include DistinctDisplay;
|
|
30
30
|
|
|
31
31
|
color: $primary-black;
|
|
32
|
-
font-size: $
|
|
32
|
+
font-size: $heading-size4;
|
|
33
33
|
font-variation-settings: 'wght' 600;
|
|
34
|
-
line-height: $line-height-
|
|
34
|
+
line-height: $body-line-height-size1;
|
|
35
35
|
margin-top: 4px; // better visual align with the close icon
|
|
36
36
|
overflow: hidden;
|
|
37
37
|
text-align: center;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@use '../../allPartials' as *;
|
|
2
2
|
|
|
3
3
|
.#{$px}-dropdown {
|
|
4
|
-
@include text($
|
|
4
|
+
@include text($body3);
|
|
5
5
|
|
|
6
6
|
&__trigger {
|
|
7
7
|
align-items: center;
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
&__item {
|
|
80
|
-
@include text($
|
|
80
|
+
@include text($body3);
|
|
81
81
|
|
|
82
82
|
align-items: center;
|
|
83
83
|
display: flex;
|
|
@@ -37,7 +37,7 @@ $chevron-scale: 0.8;
|
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
&__back {
|
|
40
|
-
@include text($
|
|
40
|
+
@include text($body2); // workaround where the tertiary button text is not scaling at different breakpoints
|
|
41
41
|
|
|
42
42
|
margin-top: $spacing-sm;
|
|
43
43
|
}
|
|
@@ -64,7 +64,7 @@ $chevron-scale: 0.8;
|
|
|
64
64
|
height: unset;
|
|
65
65
|
|
|
66
66
|
&__label {
|
|
67
|
-
@include text($
|
|
67
|
+
@include text($body2);
|
|
68
68
|
|
|
69
69
|
color: inherit;
|
|
70
70
|
margin-bottom: 0;
|
|
@@ -84,7 +84,7 @@ $chevron-scale: 0.8;
|
|
|
84
84
|
}
|
|
85
85
|
|
|
86
86
|
&__view-all {
|
|
87
|
-
@include text($
|
|
87
|
+
@include text($body2); // workaround where the tertiary button text is not scaling at different breakpoints
|
|
88
88
|
}
|
|
89
89
|
|
|
90
90
|
&.is-opening {
|
|
@@ -14,7 +14,7 @@ $lg: #{$px}-input--lg;
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
&__label {
|
|
17
|
-
@include text($
|
|
17
|
+
@include text($string2);
|
|
18
18
|
|
|
19
19
|
color: $pure-black;
|
|
20
20
|
font-variation-settings: 'wght' 600;
|
|
@@ -28,7 +28,7 @@ $lg: #{$px}-input--lg;
|
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
&__wrapper {
|
|
31
|
-
@include text($
|
|
31
|
+
@include text($string2);
|
|
32
32
|
|
|
33
33
|
accent-color: $soft-black;
|
|
34
34
|
align-items: center;
|
|
@@ -72,7 +72,7 @@ $lg: #{$px}-input--lg;
|
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
&__input {
|
|
75
|
-
@include text($
|
|
75
|
+
@include text($string2);
|
|
76
76
|
|
|
77
77
|
accent-color: $soft-black;
|
|
78
78
|
border: 1px solid $keyline-gray;
|
|
@@ -20,15 +20,15 @@
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
&--email {
|
|
23
|
-
@include text($
|
|
23
|
+
@include text($email);
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
&--link {
|
|
27
|
-
@include text($
|
|
27
|
+
@include text($link);
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
&--snwHeaderLink {
|
|
31
|
-
@include text($
|
|
31
|
+
@include text($snwHeaderLink);
|
|
32
32
|
|
|
33
33
|
padding: 0.5rem 0.625rem calc(0.5rem + 2px); // 1 px so that the bottom border of the nav counts as part of the button
|
|
34
34
|
position: relative;
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
&--snwFlyoutLink {
|
|
52
52
|
border-bottom: 1px solid transparent;
|
|
53
53
|
|
|
54
|
-
@include text($
|
|
54
|
+
@include text($snwFlyoutLink);
|
|
55
55
|
|
|
56
56
|
&:hover,
|
|
57
57
|
&:focus-visible {
|
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
display: flex;
|
|
6
6
|
height: fit-content;
|
|
7
7
|
justify-content: center;
|
|
8
|
-
width: 100vw;
|
|
9
8
|
|
|
10
9
|
&__list-container {
|
|
11
10
|
display: flex;
|
|
@@ -22,6 +21,10 @@
|
|
|
22
21
|
border-top: unset;
|
|
23
22
|
}
|
|
24
23
|
|
|
24
|
+
@include isHeaderMobile {
|
|
25
|
+
padding: 0 $spacing-md;
|
|
26
|
+
}
|
|
27
|
+
|
|
25
28
|
.#{$px}-nav__item + .#{$px}-accordion {
|
|
26
29
|
border-top: 0;
|
|
27
30
|
}
|
|
@@ -2,10 +2,45 @@
|
|
|
2
2
|
|
|
3
3
|
.#{$px}-notification-banner {
|
|
4
4
|
background: $light-gray;
|
|
5
|
+
color: $pure-black;
|
|
6
|
+
font-size: $snowflake-note-size;
|
|
7
|
+
font-variation-settings: 'wght' 600;
|
|
5
8
|
left: 0;
|
|
9
|
+
line-height: $snowflake-note-line-height;
|
|
6
10
|
padding: $spacing-sm $spacing-md;
|
|
7
11
|
position: fixed;
|
|
12
|
+
text-align: center;
|
|
8
13
|
top: 0;
|
|
9
14
|
width: 100%;
|
|
10
15
|
z-index: $z-index-notification-banner;
|
|
16
|
+
|
|
17
|
+
> * {
|
|
18
|
+
font-size: $snowflake-note-size;
|
|
19
|
+
font-variation-settings: 'wght' 600;
|
|
20
|
+
line-height: $snowflake-note-line-height;
|
|
21
|
+
text-align: center;
|
|
22
|
+
|
|
23
|
+
a {
|
|
24
|
+
cursor: pointer;
|
|
25
|
+
text-decoration: underline;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
> .#{$px}-notification-banner-content {
|
|
30
|
+
color: $pure-black;
|
|
31
|
+
font-size: $snowflake-note-size;
|
|
32
|
+
font-variation-settings: 'wght' 600;
|
|
33
|
+
line-height: $snowflake-note-line-height;
|
|
34
|
+
text-align: center;
|
|
35
|
+
|
|
36
|
+
a {
|
|
37
|
+
cursor: pointer;
|
|
38
|
+
text-decoration: underline;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.#{$px}-notification-banner-link {
|
|
43
|
+
cursor: pointer;
|
|
44
|
+
text-decoration: underline;
|
|
45
|
+
}
|
|
11
46
|
}
|
|
@@ -41,10 +41,6 @@
|
|
|
41
41
|
transition: width 0.25s ease-in 0.2s;
|
|
42
42
|
width: 100%;
|
|
43
43
|
}
|
|
44
|
-
|
|
45
|
-
@include isHeaderMobile {
|
|
46
|
-
left: $spacing-md;
|
|
47
|
-
}
|
|
48
44
|
}
|
|
49
45
|
|
|
50
46
|
&__input-status-icon {
|
|
@@ -112,7 +108,7 @@
|
|
|
112
108
|
|
|
113
109
|
@include isHeaderMobile {
|
|
114
110
|
height: calc(var(--spacing-md) + var(--search-size));
|
|
115
|
-
line-height:
|
|
111
|
+
line-height: calc(var(--spacing-md) + var(--search-size));
|
|
116
112
|
padding: $spacing-md 0;
|
|
117
113
|
position: relative;
|
|
118
114
|
top: calc($spacing-md * -1);
|
|
@@ -137,22 +133,21 @@
|
|
|
137
133
|
.#{$px}-search__container {
|
|
138
134
|
@include isHeaderMobile {
|
|
139
135
|
border-bottom: 1px solid $light-gray;
|
|
140
|
-
|
|
141
|
-
|
|
136
|
+
margin-right: $spacing-md;
|
|
137
|
+
padding-left: $spacing-md;
|
|
142
138
|
position: relative;
|
|
143
|
-
width:
|
|
139
|
+
width: 100%;
|
|
144
140
|
}
|
|
145
141
|
|
|
146
142
|
&__inner {
|
|
147
143
|
cursor: pointer;
|
|
148
144
|
display: flex;
|
|
149
145
|
justify-content: space-between;
|
|
150
|
-
padding: 0
|
|
146
|
+
padding: 0;
|
|
151
147
|
pointer-events: all;
|
|
152
148
|
|
|
153
149
|
@include isHeaderDesktop {
|
|
154
150
|
cursor: default;
|
|
155
|
-
padding: 0;
|
|
156
151
|
}
|
|
157
152
|
|
|
158
153
|
@include isHeaderMobile {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@use '../../allPartials' as *;
|
|
2
2
|
|
|
3
3
|
.#{$px}-text-area {
|
|
4
|
-
@include text($
|
|
4
|
+
@include text($string2);
|
|
5
5
|
|
|
6
6
|
accent-color: $soft-black;
|
|
7
7
|
border: 1px solid $keyline-gray;
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
&__label {
|
|
41
|
-
@include text($
|
|
41
|
+
@include text($string2);
|
|
42
42
|
|
|
43
43
|
color: $pure-black;
|
|
44
44
|
font-variation-settings: 'wght' 600;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
@use '../../allPartials' as *;
|
|
2
2
|
|
|
3
3
|
.#{$px}-text-symbol {
|
|
4
|
-
@include text($
|
|
4
|
+
@include text($heading4);
|
|
5
5
|
|
|
6
6
|
display: inline-flex;
|
|
7
7
|
gap: $spacing-micro;
|
|
8
8
|
|
|
9
9
|
&--estimation {
|
|
10
|
-
@include text($
|
|
10
|
+
@include text($heading5);
|
|
11
11
|
|
|
12
12
|
margin-left: 0.25rem;
|
|
13
13
|
}
|