@7shifts/sous-chef 4.4.1 → 4.5.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/dist/forms/ColorField/ColorOverlay/ColorOverlay.d.ts +1 -1
- package/dist/forms/ColorField/ColorOverlay/domain.d.ts +27 -0
- package/dist/foundation/tokens/color/color-constants.d.ts +23 -0
- package/dist/foundation/tokens/color/color-types.d.ts +1 -1
- package/dist/icons/components/image/IconSchool.d.ts +10 -0
- package/dist/icons/components/image/index.d.ts +1 -0
- package/dist/index.css +69 -139
- package/dist/index.css.map +1 -1
- package/dist/index.js +542 -362
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +534 -363
- package/dist/index.modern.js.map +1 -1
- package/dist/overlay/DropdownListItem/DropdownListItem.d.ts +3 -1
- package/dist/overlay/hooks/useSubmenu.d.ts +1 -0
- package/llms-instructions/guidelines/Accordion.guidelines.md +36 -0
- package/llms-instructions/guidelines/ActionList.guidelines.md +59 -0
- package/llms-instructions/guidelines/Avatar.guidelines.md +51 -0
- package/llms-instructions/guidelines/Badge.guidelines.md +40 -0
- package/llms-instructions/guidelines/Breadcrumbs.guidelines.md +41 -0
- package/llms-instructions/guidelines/Button.guidelines.md +41 -0
- package/llms-instructions/guidelines/Calendar.guidelines.md +40 -0
- package/llms-instructions/guidelines/Card.guidelines.md +58 -0
- package/llms-instructions/guidelines/Chip.guidelines.md +64 -0
- package/llms-instructions/guidelines/CircularProgress.guidelines.md +28 -0
- package/llms-instructions/guidelines/DataTable.guidelines.md +88 -0
- package/llms-instructions/guidelines/DateFilter.guidelines.md +32 -0
- package/llms-instructions/guidelines/Dropdown.guidelines.md +54 -0
- package/llms-instructions/guidelines/EmptyState.guidelines.md +58 -0
- package/llms-instructions/guidelines/Forms.guidelines.md +99 -0
- package/llms-instructions/guidelines/HintModal.guidelines.md +47 -0
- package/llms-instructions/guidelines/Icons.guidelines.md +59 -0
- package/llms-instructions/guidelines/InkIllustrations.guidelines.md +38 -0
- package/llms-instructions/guidelines/InlineBanner.guidelines.md +52 -0
- package/llms-instructions/guidelines/Link.guidelines.md +26 -0
- package/llms-instructions/guidelines/MicroBanner.guidelines.md +21 -0
- package/llms-instructions/guidelines/Modal.guidelines.md +52 -0
- package/llms-instructions/guidelines/PaginationControls.guidelines.md +21 -0
- package/llms-instructions/guidelines/Paywall.guidelines.md +57 -0
- package/llms-instructions/guidelines/PersistentBanner.guidelines.md +33 -0
- package/llms-instructions/guidelines/Pill.guidelines.md +55 -0
- package/llms-instructions/guidelines/Popover.guidelines.md +42 -0
- package/llms-instructions/guidelines/ProgressBar.guidelines.md +35 -0
- package/llms-instructions/guidelines/SegmentedControl.guidelines.md +21 -0
- package/llms-instructions/guidelines/Skeleton.guidelines.md +30 -0
- package/llms-instructions/guidelines/Spinner.guidelines.md +32 -0
- package/llms-instructions/guidelines/Toast.guidelines.md +34 -0
- package/llms-instructions/guidelines/Toggle.guidelines.md +19 -0
- package/llms-instructions/guidelines/ToolbarSelect.guidelines.md +22 -0
- package/llms-instructions/guidelines/Tooltip.guidelines.md +45 -0
- package/llms-instructions/llms-components.md +61 -261
- package/llms-instructions/llms-icons-and-illustrations.md +2 -0
- package/llms-instructions/llms-tokens.md +97 -16
- package/package.json +6 -1
|
@@ -5,5 +5,5 @@ type Props = {
|
|
|
5
5
|
selectedColor?: string;
|
|
6
6
|
onSelect: (color: string) => void;
|
|
7
7
|
};
|
|
8
|
-
declare const ColorsOverlay: (
|
|
8
|
+
declare const ColorsOverlay: (props: Props) => React.JSX.Element;
|
|
9
9
|
export default ColorsOverlay;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export declare const GAP = 8;
|
|
2
|
+
type Size = {
|
|
3
|
+
width: number;
|
|
4
|
+
height: number;
|
|
5
|
+
};
|
|
6
|
+
type Position = {
|
|
7
|
+
top: number;
|
|
8
|
+
left: number;
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* Calculates where the color overlay should be positioned relative to its
|
|
12
|
+
* trigger so it stays within the viewport. Placements are tried in this order
|
|
13
|
+
* and the first one that fits is used:
|
|
14
|
+
* 1. Bottom, aligned to the left edge of the trigger
|
|
15
|
+
* 2. Bottom, aligned to the right edge of the trigger
|
|
16
|
+
* 3. Top, aligned to the left edge of the trigger
|
|
17
|
+
* 4. Top, aligned to the right edge of the trigger (fallback)
|
|
18
|
+
*
|
|
19
|
+
* Fit is evaluated in viewport coordinates; the returned position is in
|
|
20
|
+
* document coordinates (scroll offsets applied) for an absolutely positioned
|
|
21
|
+
* overlay.
|
|
22
|
+
*/
|
|
23
|
+
export declare const calculateOverlayPosition: (triggerRect: DOMRect, overlaySize: Size, viewport: Size, scroll: {
|
|
24
|
+
x: number;
|
|
25
|
+
y: number;
|
|
26
|
+
}, gap?: number) => Position;
|
|
27
|
+
export {};
|
|
@@ -186,7 +186,30 @@ export declare const COLORS: {
|
|
|
186
186
|
readonly 'hover-lighten': "var(--color-hover-lighten)";
|
|
187
187
|
readonly 'hover-darken': "var(--color-hover-darken)";
|
|
188
188
|
readonly 'brand-neutrals-caviar-dynamic': "var(--color-brand-neutrals-caviar-dynamic)";
|
|
189
|
+
readonly 'brand-neutrals-caviar-hue': "var(--color-brand-neutrals-caviar-hue)";
|
|
189
190
|
readonly 'brand-neutrals-chefscoat-dynamic': "var(--color-brand-neutrals-chefscoat-dynamic)";
|
|
191
|
+
readonly 'brand-neutrals-chefscoat-hue': "var(--color-brand-neutrals-chefscoat-hue)";
|
|
192
|
+
readonly 'brand-neutrals-marshmallow-hue': "var(--color-brand-neutrals-marshmallow-hue)";
|
|
193
|
+
readonly 'brand-neutrals-oat-hue': "var(--color-brand-neutrals-oat-hue)";
|
|
194
|
+
readonly 'brand-neutrals-earl-hue': "var(--color-brand-neutrals-earl-hue)";
|
|
195
|
+
readonly 'brand-primary-spritz-hue': "var(--color-brand-primary-spritz-hue)";
|
|
196
|
+
readonly 'brand-primary-spritz-tint': "var(--color-brand-primary-spritz-tint)";
|
|
197
|
+
readonly 'brand-primary-spritz-shade': "var(--color-brand-primary-spritz-shade)";
|
|
198
|
+
readonly 'brand-primary-curacao-hue': "var(--color-brand-primary-curacao-hue)";
|
|
199
|
+
readonly 'brand-primary-curacao-tint': "var(--color-brand-primary-curacao-tint)";
|
|
200
|
+
readonly 'brand-primary-curacao-shade': "var(--color-brand-primary-curacao-shade)";
|
|
201
|
+
readonly 'brand-primary-mojito-hue': "var(--color-brand-primary-mojito-hue)";
|
|
202
|
+
readonly 'brand-primary-mojito-tint': "var(--color-brand-primary-mojito-tint)";
|
|
203
|
+
readonly 'brand-primary-mojito-shade': "var(--color-brand-primary-mojito-shade)";
|
|
204
|
+
readonly 'brand-primary-empress-hue': "var(--color-brand-primary-empress-hue)";
|
|
205
|
+
readonly 'brand-primary-empress-tint': "var(--color-brand-primary-empress-tint)";
|
|
206
|
+
readonly 'brand-primary-empress-shade': "var(--color-brand-primary-empress-shade)";
|
|
207
|
+
readonly 'brand-secondary-ice-hue': "var(--color-brand-secondary-ice-hue)";
|
|
208
|
+
readonly 'brand-secondary-zest-hue': "var(--color-brand-secondary-zest-hue)";
|
|
209
|
+
readonly 'brand-secondary-lavender-hue': "var(--color-brand-secondary-lavender-hue)";
|
|
210
|
+
readonly 'brand-secondary-ranch-hue': "var(--color-brand-secondary-ranch-hue)";
|
|
211
|
+
readonly 'brand-secondary-pesto-hue': "var(--color-brand-secondary-pesto-hue)";
|
|
212
|
+
readonly 'brand-secondary-babaganoush-hue': "var(--color-brand-secondary-babaganoush-hue)";
|
|
190
213
|
readonly 'on-graphic-black': "var(--color-on-graphic-black)";
|
|
191
214
|
readonly 'on-graphic-white': "var(--color-on-graphic-white)";
|
|
192
215
|
readonly 'canvas-background-color': "var(--color-canvas-background-color)";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type Color = 'white' | 'black' | 'tangerine-100' | 'tangerine-200' | 'tangerine-300' | 'tangerine-400' | 'tangerine-500' | 'tangerine-600' | 'eggplant-100' | 'eggplant-200' | 'eggplant-300' | 'eggplant-400' | 'eggplant-500' | 'eggplant-600' | 'mint-100' | 'mint-200' | 'mint-300' | 'mint-400' | 'mint-500' | 'mint-600' | 'radish-100' | 'radish-200' | 'radish-300' | 'radish-400' | 'radish-500' | 'radish-600' | 'blueberry-100' | 'blueberry-200' | 'blueberry-300' | 'blueberry-400' | 'blueberry-500' | 'blueberry-600' | 'banana-100' | 'banana-200' | 'banana-300' | 'banana-400' | 'banana-500' | 'banana-600' | 'grey-100' | 'grey-200' | 'grey-300' | 'grey-400' | 'grey-500' | 'grey-600' | 'oat-100' | 'oat-200' | 'oat-300' | 'oat-400' | 'oat-500' | 'oat-600' | 'lime-100' | 'lime-200' | 'lime-300' | 'lime-400' | 'lime-500' | 'lime-600' | 'blackberry-100' | 'blackberry-200' | 'blackberry-300' | 'blackberry-400' | 'blackberry-500' | 'blackberry-600' | 'seq-1' | 'seq-2' | 'seq-3' | 'seq-4' | 'seq-5' | 'seq-6' | 'seq-7' | 'seq-8' | 'seq-9' | 'seq-10' | 'seq-11' | 'seq-12' | 'seq-13' | 'seq-14' | 'seq-15' | 'seq-16' | 'seq-17' | 'seq-18' | 'seq-19' | 'seq-20' | 'neutral-color' | 'neutral-on-color' | 'neutral-container' | 'neutral-on-container' | 'neutral-container-variant' | 'neutral-on-container-variant' | 'neutral-black-transparent-05' | 'neutral-black-transparent-10' | 'neutral-black-transparent-15' | 'neutral-black-transparent-20' | 'neutral-black-transparent-30' | 'neutral-black-transparent-40' | 'neutral-black-transparent-50' | 'neutral-black-transparent-60' | 'neutral-black-transparent-70' | 'neutral-black-transparent-80' | 'neutral-black-transparent-90' | 'neutral-white-transparent-05' | 'neutral-white-transparent-10' | 'neutral-white-transparent-15' | 'neutral-white-transparent-20' | 'neutral-white-transparent-30' | 'neutral-white-transparent-40' | 'neutral-white-transparent-50' | 'neutral-white-transparent-60' | 'neutral-white-transparent-70' | 'neutral-white-transparent-80' | 'neutral-white-transparent-90' | 'surface-color-overlay' | 'surface-color-dim' | 'surface-color' | 'surface-on-color-disabled' | 'surface-on-color-subtle' | 'surface-on-color' | 'surface-on-color-bold' | 'surface-container' | 'surface-container-high' | 'surface-container-highest' | 'surface-container-disabled' | 'surface-container-disabled-variant' | 'surface-on-container-disabled' | 'surface-inverse' | 'surface-on-inverse' | 'surface-on-inverse-disabled' | 'outline' | 'outline-variant' | 'outline-inverse' | 'primary-color' | 'primary-on-color' | 'primary-color-variant' | 'primary-on-color-variant' | 'primary-container' | 'primary-on-container' | 'primary-container-variant' | 'primary-on-container-variant' | 'secondary-color' | 'secondary-on-color' | 'secondary-container' | 'secondary-on-container' | 'secondary-container-variant' | 'secondary-on-container-variant' | 'tertiary-color' | 'tertiary-on-color' | 'tertiary-container' | 'tertiary-on-container' | 'tertiary-container-variant' | 'tertiary-on-container-variant' | 'success-color' | 'success-on-color' | 'success-container' | 'success-on-container' | 'success-container-variant' | 'success-on-container-variant' | 'danger-color' | 'danger-on-color' | 'danger-container' | 'danger-on-container' | 'danger-container-variant' | 'danger-on-container-variant' | 'info-color' | 'info-on-color' | 'info-container' | 'info-on-container' | 'info-container-variant' | 'info-on-container-variant' | 'upsell-color' | 'upsell-on-color' | 'upsell-color-variant' | 'upsell-on-color-variant' | 'upsell-container' | 'upsell-on-container' | 'upsell-container-variant' | 'upsell-on-container-variant' | 'warning-color' | 'warning-on-color' | 'warning-container' | 'warning-on-container' | 'warning-container-variant' | 'warning-on-container-variant' | 'shadow-overlay' | 'shadow-active' | 'hover-inverse' | 'hover-lighten' | 'hover-darken' | 'brand-neutrals-caviar-dynamic' | 'brand-neutrals-chefscoat-dynamic' | 'on-graphic-black' | 'on-graphic-white' | 'canvas-background-color';
|
|
1
|
+
export type Color = 'white' | 'black' | 'tangerine-100' | 'tangerine-200' | 'tangerine-300' | 'tangerine-400' | 'tangerine-500' | 'tangerine-600' | 'eggplant-100' | 'eggplant-200' | 'eggplant-300' | 'eggplant-400' | 'eggplant-500' | 'eggplant-600' | 'mint-100' | 'mint-200' | 'mint-300' | 'mint-400' | 'mint-500' | 'mint-600' | 'radish-100' | 'radish-200' | 'radish-300' | 'radish-400' | 'radish-500' | 'radish-600' | 'blueberry-100' | 'blueberry-200' | 'blueberry-300' | 'blueberry-400' | 'blueberry-500' | 'blueberry-600' | 'banana-100' | 'banana-200' | 'banana-300' | 'banana-400' | 'banana-500' | 'banana-600' | 'grey-100' | 'grey-200' | 'grey-300' | 'grey-400' | 'grey-500' | 'grey-600' | 'oat-100' | 'oat-200' | 'oat-300' | 'oat-400' | 'oat-500' | 'oat-600' | 'lime-100' | 'lime-200' | 'lime-300' | 'lime-400' | 'lime-500' | 'lime-600' | 'blackberry-100' | 'blackberry-200' | 'blackberry-300' | 'blackberry-400' | 'blackberry-500' | 'blackberry-600' | 'seq-1' | 'seq-2' | 'seq-3' | 'seq-4' | 'seq-5' | 'seq-6' | 'seq-7' | 'seq-8' | 'seq-9' | 'seq-10' | 'seq-11' | 'seq-12' | 'seq-13' | 'seq-14' | 'seq-15' | 'seq-16' | 'seq-17' | 'seq-18' | 'seq-19' | 'seq-20' | 'neutral-color' | 'neutral-on-color' | 'neutral-container' | 'neutral-on-container' | 'neutral-container-variant' | 'neutral-on-container-variant' | 'neutral-black-transparent-05' | 'neutral-black-transparent-10' | 'neutral-black-transparent-15' | 'neutral-black-transparent-20' | 'neutral-black-transparent-30' | 'neutral-black-transparent-40' | 'neutral-black-transparent-50' | 'neutral-black-transparent-60' | 'neutral-black-transparent-70' | 'neutral-black-transparent-80' | 'neutral-black-transparent-90' | 'neutral-white-transparent-05' | 'neutral-white-transparent-10' | 'neutral-white-transparent-15' | 'neutral-white-transparent-20' | 'neutral-white-transparent-30' | 'neutral-white-transparent-40' | 'neutral-white-transparent-50' | 'neutral-white-transparent-60' | 'neutral-white-transparent-70' | 'neutral-white-transparent-80' | 'neutral-white-transparent-90' | 'surface-color-overlay' | 'surface-color-dim' | 'surface-color' | 'surface-on-color-disabled' | 'surface-on-color-subtle' | 'surface-on-color' | 'surface-on-color-bold' | 'surface-container' | 'surface-container-high' | 'surface-container-highest' | 'surface-container-disabled' | 'surface-container-disabled-variant' | 'surface-on-container-disabled' | 'surface-inverse' | 'surface-on-inverse' | 'surface-on-inverse-disabled' | 'outline' | 'outline-variant' | 'outline-inverse' | 'primary-color' | 'primary-on-color' | 'primary-color-variant' | 'primary-on-color-variant' | 'primary-container' | 'primary-on-container' | 'primary-container-variant' | 'primary-on-container-variant' | 'secondary-color' | 'secondary-on-color' | 'secondary-container' | 'secondary-on-container' | 'secondary-container-variant' | 'secondary-on-container-variant' | 'tertiary-color' | 'tertiary-on-color' | 'tertiary-container' | 'tertiary-on-container' | 'tertiary-container-variant' | 'tertiary-on-container-variant' | 'success-color' | 'success-on-color' | 'success-container' | 'success-on-container' | 'success-container-variant' | 'success-on-container-variant' | 'danger-color' | 'danger-on-color' | 'danger-container' | 'danger-on-container' | 'danger-container-variant' | 'danger-on-container-variant' | 'info-color' | 'info-on-color' | 'info-container' | 'info-on-container' | 'info-container-variant' | 'info-on-container-variant' | 'upsell-color' | 'upsell-on-color' | 'upsell-color-variant' | 'upsell-on-color-variant' | 'upsell-container' | 'upsell-on-container' | 'upsell-container-variant' | 'upsell-on-container-variant' | 'warning-color' | 'warning-on-color' | 'warning-container' | 'warning-on-container' | 'warning-container-variant' | 'warning-on-container-variant' | 'shadow-overlay' | 'shadow-active' | 'hover-inverse' | 'hover-lighten' | 'hover-darken' | 'brand-neutrals-caviar-dynamic' | 'brand-neutrals-caviar-hue' | 'brand-neutrals-chefscoat-dynamic' | 'brand-neutrals-chefscoat-hue' | 'brand-neutrals-marshmallow-hue' | 'brand-neutrals-oat-hue' | 'brand-neutrals-earl-hue' | 'brand-primary-spritz-hue' | 'brand-primary-spritz-tint' | 'brand-primary-spritz-shade' | 'brand-primary-curacao-hue' | 'brand-primary-curacao-tint' | 'brand-primary-curacao-shade' | 'brand-primary-mojito-hue' | 'brand-primary-mojito-tint' | 'brand-primary-mojito-shade' | 'brand-primary-empress-hue' | 'brand-primary-empress-tint' | 'brand-primary-empress-shade' | 'brand-secondary-ice-hue' | 'brand-secondary-zest-hue' | 'brand-secondary-lavender-hue' | 'brand-secondary-ranch-hue' | 'brand-secondary-pesto-hue' | 'brand-secondary-babaganoush-hue' | 'on-graphic-black' | 'on-graphic-white' | 'canvas-background-color';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize, IconVariant } from '../../types';
|
|
3
|
+
type Props = {
|
|
4
|
+
size?: IconSize;
|
|
5
|
+
color?: string;
|
|
6
|
+
testId?: string;
|
|
7
|
+
variant?: IconVariant;
|
|
8
|
+
} & React.SVGProps<SVGSVGElement>;
|
|
9
|
+
declare const IconSchool: React.ForwardRefExoticComponent<Omit<Props, 'ref'>>;
|
|
10
|
+
export default IconSchool;
|
|
@@ -23,6 +23,7 @@ export { default as IconNotesMedical } from './IconNotesMedical';
|
|
|
23
23
|
export { default as IconPlateUtensils } from './IconPlateUtensils';
|
|
24
24
|
export { default as IconPlug } from './IconPlug';
|
|
25
25
|
export { default as IconRocket } from './IconRocket';
|
|
26
|
+
export { default as IconSchool } from './IconSchool';
|
|
26
27
|
export { default as IconSparkle } from './IconSparkle';
|
|
27
28
|
export { default as IconStickyNoteLines } from './IconStickyNoteLines';
|
|
28
29
|
export { default as IconStore } from './IconStore';
|
package/dist/index.css
CHANGED
|
@@ -1,23 +1,7 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: "SF Pro";
|
|
3
|
-
src: url("https://cdn.7shifts.com/fonts/SFPro/SFPRODISPLAYTHIN.OTF") format("opentype");
|
|
4
|
-
font-weight: 100;
|
|
5
|
-
font-style: normal;
|
|
6
|
-
/* Preload the font */
|
|
7
|
-
unicode-range: U+0000-00FF; /* Basic Latin */
|
|
8
|
-
}
|
|
9
|
-
@font-face {
|
|
10
|
-
font-family: "SF Pro";
|
|
11
|
-
src: url("https://cdn.7shifts.com/fonts/SFPro/SFPRODISPLAYLIGHT.OTF") format("opentype");
|
|
12
|
-
font-weight: 200;
|
|
13
|
-
font-style: normal;
|
|
14
|
-
/* Preload the font */
|
|
15
|
-
unicode-range: U+0000-00FF; /* Basic Latin */
|
|
16
|
-
}
|
|
17
1
|
@font-face {
|
|
18
2
|
font-family: "SF Pro";
|
|
19
3
|
src: url("https://cdn.7shifts.com/fonts/SFPro/SFPRODISPLAYREGULAR.OTF") format("opentype");
|
|
20
|
-
font-weight:
|
|
4
|
+
font-weight: normal;
|
|
21
5
|
font-style: normal;
|
|
22
6
|
/* Preload the font */
|
|
23
7
|
unicode-range: U+0000-00FF; /* Basic Latin */
|
|
@@ -25,43 +9,11 @@
|
|
|
25
9
|
@font-face {
|
|
26
10
|
font-family: "SF Pro";
|
|
27
11
|
src: url("https://cdn.7shifts.com/fonts/SFPro/SFPRODISPLAYMEDIUM.OTF") format("opentype");
|
|
28
|
-
font-weight: 400;
|
|
29
|
-
font-style: normal;
|
|
30
|
-
/* Preload the font */
|
|
31
|
-
unicode-range: U+0000-00FF; /* Basic Latin */
|
|
32
|
-
}
|
|
33
|
-
@font-face {
|
|
34
|
-
font-family: "SF Pro";
|
|
35
|
-
src: url("https://cdn.7shifts.com/fonts/SFPro/SFPRODISPLAYSEMIBOLD.OTF") format("opentype");
|
|
36
|
-
font-weight: 500;
|
|
37
|
-
font-style: normal;
|
|
38
|
-
/* Preload the font */
|
|
39
|
-
unicode-range: U+0000-00FF; /* Basic Latin */
|
|
40
|
-
}
|
|
41
|
-
@font-face {
|
|
42
|
-
font-family: "SF Pro";
|
|
43
|
-
src: url("https://cdn.7shifts.com/fonts/SFPro/SFPRODISPLAYBOLD.OTF") format("opentype");
|
|
44
12
|
font-weight: 600;
|
|
45
13
|
font-style: normal;
|
|
46
14
|
/* Preload the font */
|
|
47
15
|
unicode-range: U+0000-00FF; /* Basic Latin */
|
|
48
16
|
}
|
|
49
|
-
@font-face {
|
|
50
|
-
font-family: "SF Pro";
|
|
51
|
-
src: url("https://cdn.7shifts.com/fonts/SFPro/SFPRODISPLAYHEAVY.OTF") format("opentype");
|
|
52
|
-
font-weight: 700;
|
|
53
|
-
font-style: normal;
|
|
54
|
-
/* Preload the font */
|
|
55
|
-
unicode-range: U+0000-00FF; /* Basic Latin */
|
|
56
|
-
}
|
|
57
|
-
@font-face {
|
|
58
|
-
font-family: "SF Pro";
|
|
59
|
-
src: url("https://cdn.7shifts.com/fonts/SFPro/SFPRODISPLAYBLACK.OTF") format("opentype");
|
|
60
|
-
font-weight: 800;
|
|
61
|
-
font-style: normal;
|
|
62
|
-
/* Preload the font */
|
|
63
|
-
unicode-range: U+0000-00FF; /* Basic Latin */
|
|
64
|
-
}
|
|
65
17
|
@font-face {
|
|
66
18
|
font-family: "Universal Sans Display";
|
|
67
19
|
src: url("https://cdn.7shifts.com/fonts/UniversalSans/Universal-Sans-Display-500.ttf");
|
|
@@ -87,14 +39,10 @@
|
|
|
87
39
|
--font-line-height-500: 1.75rem;
|
|
88
40
|
--font-line-height-600: 2rem;
|
|
89
41
|
--font-line-height-700: 2.75rem;
|
|
90
|
-
--p-font-weight-
|
|
91
|
-
--p-font-weight-
|
|
92
|
-
--p-font-weight-normal: 300;
|
|
93
|
-
--p-font-weight-medium: 400;
|
|
42
|
+
--p-font-weight-light: 300;
|
|
43
|
+
--p-font-weight-normal: 400;
|
|
94
44
|
--p-font-weight-semibold: 500;
|
|
95
45
|
--p-font-weight-bold: 600;
|
|
96
|
-
--p-font-weight-heavy: 700;
|
|
97
|
-
--p-font-weight-black: 800;
|
|
98
46
|
}
|
|
99
47
|
:root {
|
|
100
48
|
--color-white: #fff;
|
|
@@ -594,7 +542,7 @@ body * {
|
|
|
594
542
|
font-size: var(--font-size-200);
|
|
595
543
|
line-height: var(--font-line-height-200);
|
|
596
544
|
font-weight: var(--p-font-weight-normal);
|
|
597
|
-
font-weight: var(--p-font-weight-
|
|
545
|
+
font-weight: var(--p-font-weight-bold);
|
|
598
546
|
padding: 0;
|
|
599
547
|
width: auto;
|
|
600
548
|
float: none;
|
|
@@ -632,7 +580,7 @@ Just for future references:
|
|
|
632
580
|
font-size: var(--font-size-200);
|
|
633
581
|
line-height: var(--font-line-height-200);
|
|
634
582
|
font-weight: var(--p-font-weight-normal);
|
|
635
|
-
font-weight: var(--p-font-weight-
|
|
583
|
+
font-weight: var(--p-font-weight-bold);
|
|
636
584
|
padding: 0;
|
|
637
585
|
width: auto;
|
|
638
586
|
float: none;
|
|
@@ -809,7 +757,7 @@ Just for future references:
|
|
|
809
757
|
font-size: var(--font-size-200);
|
|
810
758
|
line-height: var(--font-line-height-200);
|
|
811
759
|
font-weight: var(--p-font-weight-normal);
|
|
812
|
-
font-weight: var(--p-font-weight-
|
|
760
|
+
font-weight: var(--p-font-weight-bold);
|
|
813
761
|
}
|
|
814
762
|
|
|
815
763
|
._MjV6R {
|
|
@@ -845,7 +793,7 @@ Just for future references:
|
|
|
845
793
|
font-size: var(--font-size-200);
|
|
846
794
|
line-height: var(--font-line-height-200);
|
|
847
795
|
font-weight: var(--p-font-weight-normal);
|
|
848
|
-
font-weight: var(--p-font-weight-
|
|
796
|
+
font-weight: var(--p-font-weight-bold);
|
|
849
797
|
line-height: normal;
|
|
850
798
|
text-align: center;
|
|
851
799
|
padding: 9px 12px;
|
|
@@ -1295,7 +1243,7 @@ Just for future references:
|
|
|
1295
1243
|
font-size: var(--font-size-200);
|
|
1296
1244
|
line-height: var(--font-line-height-200);
|
|
1297
1245
|
font-weight: var(--p-font-weight-normal);
|
|
1298
|
-
font-weight: var(--p-font-weight-
|
|
1246
|
+
font-weight: var(--p-font-weight-bold);
|
|
1299
1247
|
padding: 0;
|
|
1300
1248
|
width: auto;
|
|
1301
1249
|
float: none;
|
|
@@ -1326,30 +1274,30 @@ h1._6SgoN {
|
|
|
1326
1274
|
font-family: var(--font-family-heading);
|
|
1327
1275
|
font-size: var(--font-size-600);
|
|
1328
1276
|
line-height: var(--font-line-height-600);
|
|
1329
|
-
font-weight: var(--p-font-weight-
|
|
1277
|
+
font-weight: var(--p-font-weight-semibold);
|
|
1330
1278
|
}
|
|
1331
1279
|
h1._i2LHD {
|
|
1332
|
-
font-weight: var(--p-font-weight-
|
|
1280
|
+
font-weight: var(--p-font-weight-bold);
|
|
1333
1281
|
}
|
|
1334
1282
|
|
|
1335
1283
|
h2._6SgoN {
|
|
1336
1284
|
font-family: var(--font-family-heading);
|
|
1337
1285
|
font-size: var(--font-size-500);
|
|
1338
1286
|
line-height: var(--font-line-height-500);
|
|
1339
|
-
font-weight: var(--p-font-weight-
|
|
1287
|
+
font-weight: var(--p-font-weight-semibold);
|
|
1340
1288
|
}
|
|
1341
1289
|
h2._i2LHD {
|
|
1342
|
-
font-weight: var(--p-font-weight-
|
|
1290
|
+
font-weight: var(--p-font-weight-bold);
|
|
1343
1291
|
}
|
|
1344
1292
|
|
|
1345
1293
|
h3._6SgoN {
|
|
1346
1294
|
font-family: var(--font-family-heading);
|
|
1347
1295
|
font-size: var(--font-size-400);
|
|
1348
1296
|
line-height: var(--font-line-height-400);
|
|
1349
|
-
font-weight: var(--p-font-weight-
|
|
1297
|
+
font-weight: var(--p-font-weight-semibold);
|
|
1350
1298
|
}
|
|
1351
1299
|
h3._i2LHD {
|
|
1352
|
-
font-weight: var(--p-font-weight-
|
|
1300
|
+
font-weight: var(--p-font-weight-bold);
|
|
1353
1301
|
}
|
|
1354
1302
|
|
|
1355
1303
|
h4._6SgoN {
|
|
@@ -1359,7 +1307,7 @@ h4._6SgoN {
|
|
|
1359
1307
|
font-weight: var(--p-font-weight-normal);
|
|
1360
1308
|
}
|
|
1361
1309
|
h4._i2LHD {
|
|
1362
|
-
font-weight: var(--p-font-weight-
|
|
1310
|
+
font-weight: var(--p-font-weight-bold);
|
|
1363
1311
|
}
|
|
1364
1312
|
|
|
1365
1313
|
h5._6SgoN {
|
|
@@ -1369,7 +1317,7 @@ h5._6SgoN {
|
|
|
1369
1317
|
font-weight: var(--p-font-weight-normal);
|
|
1370
1318
|
}
|
|
1371
1319
|
h5._i2LHD {
|
|
1372
|
-
font-weight: var(--p-font-weight-
|
|
1320
|
+
font-weight: var(--p-font-weight-bold);
|
|
1373
1321
|
}
|
|
1374
1322
|
|
|
1375
1323
|
._6SgoN {
|
|
@@ -1391,7 +1339,7 @@ h5._i2LHD {
|
|
|
1391
1339
|
font-family: var(--font-family-heading);
|
|
1392
1340
|
font-size: var(--font-size-700);
|
|
1393
1341
|
line-height: var(--font-line-height-700);
|
|
1394
|
-
font-weight: var(--p-font-weight-
|
|
1342
|
+
font-weight: var(--p-font-weight-semibold);
|
|
1395
1343
|
}
|
|
1396
1344
|
._yZbuO {
|
|
1397
1345
|
font-family: var(--font-family-body);
|
|
@@ -1400,8 +1348,8 @@ h5._i2LHD {
|
|
|
1400
1348
|
font-weight: var(--p-font-weight-normal);
|
|
1401
1349
|
}
|
|
1402
1350
|
._i2LHD {
|
|
1403
|
-
font-weight: var(--p-font-weight-
|
|
1404
|
-
font-weight: var(--p-font-weight-
|
|
1351
|
+
font-weight: var(--p-font-weight-bold);
|
|
1352
|
+
font-weight: var(--p-font-weight-bold);
|
|
1405
1353
|
}
|
|
1406
1354
|
._NgSTT {
|
|
1407
1355
|
font-style: italic;
|
|
@@ -1578,12 +1526,16 @@ h5._i2LHD {
|
|
|
1578
1526
|
max-width: 300px;
|
|
1579
1527
|
border-radius: var(--border-radius-400);
|
|
1580
1528
|
}
|
|
1529
|
+
.dropdown-pane--custom-width ._W12mF {
|
|
1530
|
+
min-width: 0;
|
|
1531
|
+
max-width: none;
|
|
1532
|
+
}
|
|
1581
1533
|
._Zu9cD {
|
|
1582
1534
|
background-color: var(--color-primary-container-variant);
|
|
1583
1535
|
}
|
|
1584
1536
|
._Zu9cD ._xS6fS {
|
|
1585
1537
|
color: var(--color-primary-on-container-variant);
|
|
1586
|
-
font-weight: var(--p-font-weight-
|
|
1538
|
+
font-weight: var(--p-font-weight-bold);
|
|
1587
1539
|
}
|
|
1588
1540
|
._Zu9cD ._7EI7m {
|
|
1589
1541
|
color: var(--color-primary-on-container-variant);
|
|
@@ -1647,12 +1599,36 @@ h5._i2LHD {
|
|
|
1647
1599
|
._ObP6B {
|
|
1648
1600
|
display: flex;
|
|
1649
1601
|
gap: 12px;
|
|
1602
|
+
align-self: stretch;
|
|
1650
1603
|
align-items: center;
|
|
1651
1604
|
}
|
|
1652
1605
|
._UA23u {
|
|
1653
1606
|
width: 16px;
|
|
1654
1607
|
height: 16px;
|
|
1655
1608
|
}
|
|
1609
|
+
._rvaeI {
|
|
1610
|
+
background: none;
|
|
1611
|
+
border: none;
|
|
1612
|
+
box-sizing: border-box;
|
|
1613
|
+
align-self: stretch;
|
|
1614
|
+
margin-top: -8px;
|
|
1615
|
+
margin-right: -12px;
|
|
1616
|
+
margin-bottom: -8px;
|
|
1617
|
+
margin-left: 0;
|
|
1618
|
+
padding: 0 12px;
|
|
1619
|
+
border-radius: var(--border-radius-400);
|
|
1620
|
+
display: flex;
|
|
1621
|
+
align-items: center;
|
|
1622
|
+
justify-content: center;
|
|
1623
|
+
color: var(--color-surface-on-color-subtle);
|
|
1624
|
+
cursor: pointer;
|
|
1625
|
+
}
|
|
1626
|
+
._rvaeI:hover:not(:disabled) {
|
|
1627
|
+
background-color: var(--color-hover-darken);
|
|
1628
|
+
}
|
|
1629
|
+
._rvaeI:disabled {
|
|
1630
|
+
cursor: auto;
|
|
1631
|
+
}
|
|
1656
1632
|
._dpo67 {
|
|
1657
1633
|
display: flex;
|
|
1658
1634
|
align-items: center;
|
|
@@ -1853,7 +1829,7 @@ h5._i2LHD {
|
|
|
1853
1829
|
font-size: var(--font-size-200);
|
|
1854
1830
|
line-height: var(--font-line-height-200);
|
|
1855
1831
|
font-weight: var(--p-font-weight-normal);
|
|
1856
|
-
font-weight: var(--p-font-weight-
|
|
1832
|
+
font-weight: var(--p-font-weight-bold);
|
|
1857
1833
|
background: var(--color-surface-container-high);
|
|
1858
1834
|
color: var(--color-surface-on-color-bold);
|
|
1859
1835
|
border-left: 2px solid var(--color-outline);
|
|
@@ -1968,7 +1944,7 @@ h5._i2LHD {
|
|
|
1968
1944
|
font-family: var(--font-family-heading);
|
|
1969
1945
|
font-size: var(--font-size-500);
|
|
1970
1946
|
line-height: var(--font-line-height-500);
|
|
1971
|
-
font-weight: var(--p-font-weight-
|
|
1947
|
+
font-weight: var(--p-font-weight-semibold);
|
|
1972
1948
|
color: var(--color-surface-on-color-bold);
|
|
1973
1949
|
padding: 0;
|
|
1974
1950
|
}
|
|
@@ -2085,7 +2061,7 @@ h5._i2LHD {
|
|
|
2085
2061
|
|
|
2086
2062
|
._X7MoW:not(._AeJUw) {
|
|
2087
2063
|
color: var(--color-primary-color);
|
|
2088
|
-
font-weight: var(--p-font-weight-
|
|
2064
|
+
font-weight: var(--p-font-weight-bold);
|
|
2089
2065
|
text-decoration: underline;
|
|
2090
2066
|
}
|
|
2091
2067
|
|
|
@@ -2104,21 +2080,6 @@ h5._i2LHD {
|
|
|
2104
2080
|
color: var(--color-surface-on-color-disabled);
|
|
2105
2081
|
}
|
|
2106
2082
|
|
|
2107
|
-
._Mlgd- {
|
|
2108
|
-
position: relative;
|
|
2109
|
-
z-index: 1;
|
|
2110
|
-
display: inline-flex;
|
|
2111
|
-
align-items: center;
|
|
2112
|
-
margin: 0;
|
|
2113
|
-
padding: 0 0.25em;
|
|
2114
|
-
white-space: nowrap;
|
|
2115
|
-
color: currentColor;
|
|
2116
|
-
border: 0;
|
|
2117
|
-
border: 2px solid transparent;
|
|
2118
|
-
font-size: var(--rdp-caption-font-size);
|
|
2119
|
-
font-weight: var(--p-font-weight-medium);
|
|
2120
|
-
}
|
|
2121
|
-
|
|
2122
2083
|
._eK8pw._eK8pw._eK8pw._eK8pw:not(:disabled) {
|
|
2123
2084
|
background-color: var(--color-primary-container-variant);
|
|
2124
2085
|
color: var(--color-primary-on-container-variant);
|
|
@@ -2184,7 +2145,7 @@ h5._i2LHD {
|
|
|
2184
2145
|
|
|
2185
2146
|
._Snv-V:not(._Zf-6C) {
|
|
2186
2147
|
color: var(--color-primary-color);
|
|
2187
|
-
font-weight: var(--p-font-weight-
|
|
2148
|
+
font-weight: var(--p-font-weight-bold);
|
|
2188
2149
|
text-decoration: underline;
|
|
2189
2150
|
}
|
|
2190
2151
|
|
|
@@ -2203,21 +2164,6 @@ h5._i2LHD {
|
|
|
2203
2164
|
color: var(--color-surface-on-color-disabled);
|
|
2204
2165
|
}
|
|
2205
2166
|
|
|
2206
|
-
._-s7XO {
|
|
2207
|
-
position: relative;
|
|
2208
|
-
z-index: 1;
|
|
2209
|
-
display: inline-flex;
|
|
2210
|
-
align-items: center;
|
|
2211
|
-
margin: 0;
|
|
2212
|
-
padding: 0 0.25em;
|
|
2213
|
-
white-space: nowrap;
|
|
2214
|
-
color: currentColor;
|
|
2215
|
-
border: 0;
|
|
2216
|
-
border: 2px solid transparent;
|
|
2217
|
-
font-size: var(--rdp-caption-font-size);
|
|
2218
|
-
font-weight: var(--p-font-weight-medium);
|
|
2219
|
-
}
|
|
2220
|
-
|
|
2221
2167
|
._e0lOH._e0lOH {
|
|
2222
2168
|
color: var(--color-primary-on-container-variant);
|
|
2223
2169
|
border-radius: 0;
|
|
@@ -2420,7 +2366,7 @@ input:disabled + ._kmvBP::after {
|
|
|
2420
2366
|
font-size: var(--font-size-100);
|
|
2421
2367
|
line-height: var(--font-line-height-100);
|
|
2422
2368
|
font-weight: var(--p-font-weight-normal);
|
|
2423
|
-
font-weight: var(--p-font-weight-
|
|
2369
|
+
font-weight: var(--p-font-weight-bold);
|
|
2424
2370
|
padding: 0 16px 8px 16px;
|
|
2425
2371
|
background-color: unset;
|
|
2426
2372
|
color: var(--color-surface-on-color-bold);
|
|
@@ -2524,7 +2470,7 @@ input:disabled + ._kmvBP::after {
|
|
|
2524
2470
|
font-size: var(--font-size-200);
|
|
2525
2471
|
line-height: var(--font-line-height-200);
|
|
2526
2472
|
font-weight: var(--p-font-weight-normal);
|
|
2527
|
-
font-weight: var(--p-font-weight-
|
|
2473
|
+
font-weight: var(--p-font-weight-bold);
|
|
2528
2474
|
}
|
|
2529
2475
|
._mp1Ok tr td {
|
|
2530
2476
|
background: var(--color-surface-container-high);
|
|
@@ -2644,7 +2590,7 @@ input:disabled + ._kmvBP::after {
|
|
|
2644
2590
|
font-size: var(--font-size-200);
|
|
2645
2591
|
line-height: var(--font-line-height-200);
|
|
2646
2592
|
font-weight: var(--p-font-weight-normal);
|
|
2647
|
-
font-weight: var(--p-font-weight-
|
|
2593
|
+
font-weight: var(--p-font-weight-bold);
|
|
2648
2594
|
color: var(--color-surface-on-color-bold);
|
|
2649
2595
|
}
|
|
2650
2596
|
|
|
@@ -3453,7 +3399,7 @@ input:disabled + ._kmvBP::after {
|
|
|
3453
3399
|
background-color: var(--color-surface-color);
|
|
3454
3400
|
padding: 16px;
|
|
3455
3401
|
color: var(--color-surface-on-color-bold);
|
|
3456
|
-
font-weight: var(--p-font-weight-
|
|
3402
|
+
font-weight: var(--p-font-weight-bold);
|
|
3457
3403
|
position: sticky;
|
|
3458
3404
|
top: 0;
|
|
3459
3405
|
z-index: 2;
|
|
@@ -3612,7 +3558,7 @@ input:disabled + ._kmvBP::after {
|
|
|
3612
3558
|
box-sizing: border-box;
|
|
3613
3559
|
}
|
|
3614
3560
|
._Mn-1P {
|
|
3615
|
-
font-weight: var(--p-font-weight-
|
|
3561
|
+
font-weight: var(--p-font-weight-bold);
|
|
3616
3562
|
font-size: var(--font-size-normal);
|
|
3617
3563
|
border: none;
|
|
3618
3564
|
background-color: transparent;
|
|
@@ -3655,7 +3601,7 @@ input:disabled + ._kmvBP::after {
|
|
|
3655
3601
|
font-size: var(--font-size-200);
|
|
3656
3602
|
line-height: var(--font-line-height-200);
|
|
3657
3603
|
font-weight: var(--p-font-weight-normal);
|
|
3658
|
-
font-weight: var(--p-font-weight-
|
|
3604
|
+
font-weight: var(--p-font-weight-bold);
|
|
3659
3605
|
position: relative;
|
|
3660
3606
|
background-color: transparent;
|
|
3661
3607
|
color: var(--color-surface-on-color-bold);
|
|
@@ -3689,7 +3635,7 @@ input:disabled + ._kmvBP::after {
|
|
|
3689
3635
|
font-family: var(--font-family-heading);
|
|
3690
3636
|
font-size: var(--font-size-400);
|
|
3691
3637
|
line-height: var(--font-line-height-400);
|
|
3692
|
-
font-weight: var(--p-font-weight-
|
|
3638
|
+
font-weight: var(--p-font-weight-semibold);
|
|
3693
3639
|
margin: 0;
|
|
3694
3640
|
}
|
|
3695
3641
|
._zybxx {
|
|
@@ -3796,7 +3742,7 @@ input:disabled + ._kmvBP::after {
|
|
|
3796
3742
|
font-size: var(--font-size-200);
|
|
3797
3743
|
line-height: var(--font-line-height-200);
|
|
3798
3744
|
font-weight: var(--p-font-weight-normal);
|
|
3799
|
-
font-weight: var(--p-font-weight-
|
|
3745
|
+
font-weight: var(--p-font-weight-bold);
|
|
3800
3746
|
color: var(--color-surface-on-color-bold);
|
|
3801
3747
|
display: flex;
|
|
3802
3748
|
align-items: center;
|
|
@@ -3874,7 +3820,7 @@ input:focus-visible + ._JXakU, input:focus-visible + ._ZxEwG {
|
|
|
3874
3820
|
font-size: var(--font-size-200);
|
|
3875
3821
|
line-height: var(--font-line-height-200);
|
|
3876
3822
|
font-weight: var(--p-font-weight-normal);
|
|
3877
|
-
font-weight: var(--p-font-weight-
|
|
3823
|
+
font-weight: var(--p-font-weight-bold);
|
|
3878
3824
|
padding: 0;
|
|
3879
3825
|
width: auto;
|
|
3880
3826
|
float: none;
|
|
@@ -3901,7 +3847,7 @@ input:focus-visible + ._JXakU, input:focus-visible + ._ZxEwG {
|
|
|
3901
3847
|
font-size: var(--font-size-200);
|
|
3902
3848
|
line-height: var(--font-line-height-200);
|
|
3903
3849
|
font-weight: var(--p-font-weight-normal);
|
|
3904
|
-
font-weight: var(--p-font-weight-
|
|
3850
|
+
font-weight: var(--p-font-weight-bold);
|
|
3905
3851
|
padding: 0;
|
|
3906
3852
|
width: auto;
|
|
3907
3853
|
float: none;
|
|
@@ -3920,7 +3866,7 @@ input:focus-visible + ._JXakU, input:focus-visible + ._ZxEwG {
|
|
|
3920
3866
|
font-size: var(--font-size-200);
|
|
3921
3867
|
line-height: var(--font-line-height-200);
|
|
3922
3868
|
font-weight: var(--p-font-weight-normal);
|
|
3923
|
-
font-weight: var(--p-font-weight-
|
|
3869
|
+
font-weight: var(--p-font-weight-bold);
|
|
3924
3870
|
padding: 0;
|
|
3925
3871
|
width: auto;
|
|
3926
3872
|
float: none;
|
|
@@ -3994,7 +3940,7 @@ input:checked ~ ._P588B {
|
|
|
3994
3940
|
font-size: var(--font-size-200);
|
|
3995
3941
|
line-height: var(--font-line-height-200);
|
|
3996
3942
|
font-weight: var(--p-font-weight-normal);
|
|
3997
|
-
font-weight: var(--p-font-weight-
|
|
3943
|
+
font-weight: var(--p-font-weight-bold);
|
|
3998
3944
|
padding: 0;
|
|
3999
3945
|
width: auto;
|
|
4000
3946
|
float: none;
|
|
@@ -4361,7 +4307,7 @@ input:disabled + ._Yfxkl::after {
|
|
|
4361
4307
|
|
|
4362
4308
|
._lFzs7:not(._TjttB) {
|
|
4363
4309
|
color: var(--color-primary-color);
|
|
4364
|
-
font-weight: var(--p-font-weight-
|
|
4310
|
+
font-weight: var(--p-font-weight-bold);
|
|
4365
4311
|
text-decoration: underline;
|
|
4366
4312
|
}
|
|
4367
4313
|
|
|
@@ -4380,21 +4326,6 @@ input:disabled + ._Yfxkl::after {
|
|
|
4380
4326
|
color: var(--color-surface-on-color-disabled);
|
|
4381
4327
|
}
|
|
4382
4328
|
|
|
4383
|
-
._rpq6- {
|
|
4384
|
-
position: relative;
|
|
4385
|
-
z-index: 1;
|
|
4386
|
-
display: inline-flex;
|
|
4387
|
-
align-items: center;
|
|
4388
|
-
margin: 0;
|
|
4389
|
-
padding: 0 0.25em;
|
|
4390
|
-
white-space: nowrap;
|
|
4391
|
-
color: currentColor;
|
|
4392
|
-
border: 0;
|
|
4393
|
-
border: 2px solid transparent;
|
|
4394
|
-
font-size: var(--rdp-caption-font-size);
|
|
4395
|
-
font-weight: var(--p-font-weight-medium);
|
|
4396
|
-
}
|
|
4397
|
-
|
|
4398
4329
|
._rJolM._rJolM {
|
|
4399
4330
|
color: var(--color-primary-color);
|
|
4400
4331
|
border-radius: 0;
|
|
@@ -5695,7 +5626,7 @@ input._TEU6N {
|
|
|
5695
5626
|
font-family: var(--font-family-heading);
|
|
5696
5627
|
font-size: var(--font-size-500);
|
|
5697
5628
|
line-height: var(--font-line-height-500);
|
|
5698
|
-
font-weight: var(--p-font-weight-
|
|
5629
|
+
font-weight: var(--p-font-weight-semibold);
|
|
5699
5630
|
width: 40px;
|
|
5700
5631
|
height: 40px;
|
|
5701
5632
|
}
|
|
@@ -5707,7 +5638,7 @@ input._TEU6N {
|
|
|
5707
5638
|
font-family: var(--font-family-heading);
|
|
5708
5639
|
font-size: var(--font-size-600);
|
|
5709
5640
|
line-height: var(--font-line-height-600);
|
|
5710
|
-
font-weight: var(--p-font-weight-
|
|
5641
|
+
font-weight: var(--p-font-weight-semibold);
|
|
5711
5642
|
width: 80px;
|
|
5712
5643
|
height: 80px;
|
|
5713
5644
|
}
|
|
@@ -5729,7 +5660,7 @@ input._TEU6N {
|
|
|
5729
5660
|
font-size: var(--font-size-100);
|
|
5730
5661
|
line-height: var(--font-line-height-100);
|
|
5731
5662
|
font-weight: var(--p-font-weight-normal);
|
|
5732
|
-
font-weight: var(--p-font-weight-
|
|
5663
|
+
font-weight: var(--p-font-weight-bold);
|
|
5733
5664
|
border-radius: var(--border-radius-300);
|
|
5734
5665
|
padding: 2px 8px;
|
|
5735
5666
|
display: inline-block;
|
|
@@ -5780,7 +5711,7 @@ input._TEU6N {
|
|
|
5780
5711
|
font-size: var(--font-size-200);
|
|
5781
5712
|
line-height: var(--font-line-height-200);
|
|
5782
5713
|
font-weight: var(--p-font-weight-normal);
|
|
5783
|
-
font-weight: var(--p-font-weight-
|
|
5714
|
+
font-weight: var(--p-font-weight-bold);
|
|
5784
5715
|
border-radius: 25px;
|
|
5785
5716
|
padding: 5px 12px;
|
|
5786
5717
|
max-width: -moz-fit-content;
|
|
@@ -5970,7 +5901,6 @@ input._TEU6N {
|
|
|
5970
5901
|
text-overflow: ellipsis;
|
|
5971
5902
|
color: var(--nav-object-normal-color);
|
|
5972
5903
|
font-family: var(--font-family-body);
|
|
5973
|
-
font-weight: var(--p-font-weight-medium);
|
|
5974
5904
|
}
|
|
5975
5905
|
._MFqwx {
|
|
5976
5906
|
position: absolute;
|