@kaizen/components 0.0.0-canary-package-bundler-v2-20241113055116 → 0.0.0-canary-link-button-wip-canary-20241121010628
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/codemods/README.md +16 -1
- package/codemods/upgradeIconV1/getNewIconPropsFromOldIconName.ts +9 -9
- package/dist/cjs/EmptyState/EmptyState.cjs +15 -17
- package/dist/cjs/EmptyState/EmptyState.module.css.cjs +20 -0
- package/dist/cjs/Filter/FilterBar/FilterBar.cjs +1 -3
- package/dist/cjs/Filter/FilterBar/FilterBar.module.css.cjs +0 -1
- package/dist/cjs/GuidanceBlock/GuidanceBlock.cjs +1 -1
- package/dist/cjs/GuidanceBlock/GuidanceBlock.module.css.cjs +28 -0
- package/dist/cjs/__actions__/Button/v3/Button.cjs +43 -8
- package/dist/cjs/__actions__/Button/v3/Button.module.css.cjs +21 -0
- package/dist/cjs/__actions__/Button/v3/subcomponents/ButtonContent/ButtonContent.cjs +37 -0
- package/dist/cjs/__actions__/Button/v3/subcomponents/ButtonContent/ButtonContent.module.css.cjs +9 -0
- package/dist/cjs/__actions__/Button/v3/subcomponents/PendingContent/PendingContent.cjs +35 -0
- package/dist/cjs/__actions__/Button/v3/subcomponents/PendingContent/PendingContent.module.css.cjs +8 -0
- package/dist/cjs/__overlays__/Tooltip/v3/Tooltip.cjs +2 -2
- package/dist/esm/Calendar/CalendarPopover/CalendarPopover.mjs +1 -1
- package/dist/esm/EmptyState/EmptyState.mjs +16 -18
- package/dist/esm/EmptyState/EmptyState.module.css.mjs +18 -0
- package/dist/esm/Filter/FilterBar/FilterBar.mjs +1 -3
- package/dist/esm/Filter/FilterBar/FilterBar.module.css.mjs +0 -1
- package/dist/esm/Filter/FilterMultiSelect/subcomponents/ListBox/ListBox.mjs +1 -1
- package/dist/esm/GuidanceBlock/GuidanceBlock.mjs +1 -1
- package/dist/esm/GuidanceBlock/GuidanceBlock.module.css.mjs +26 -0
- package/dist/esm/MultiSelect/subcomponents/Popover/Popover.mjs +1 -1
- package/dist/esm/RichTextEditor/RichTextEditor/RichTextEditor.mjs +1 -1
- package/dist/esm/RichTextEditor/RichTextEditor/schema.mjs +1 -1
- package/dist/esm/RichTextEditor/utils/schema/nodes.mjs +1 -1
- package/dist/esm/TimeField/TimeField.mjs +1 -1
- package/dist/esm/__actions__/Button/v3/Button.mjs +44 -9
- package/dist/esm/__actions__/Button/v3/Button.module.css.mjs +19 -0
- package/dist/esm/__actions__/Button/v3/subcomponents/ButtonContent/ButtonContent.mjs +28 -0
- package/dist/esm/__actions__/Button/v3/subcomponents/ButtonContent/ButtonContent.module.css.mjs +7 -0
- package/dist/esm/__actions__/Button/v3/subcomponents/PendingContent/PendingContent.mjs +26 -0
- package/dist/esm/__actions__/Button/v3/subcomponents/PendingContent/PendingContent.module.css.mjs +6 -0
- package/dist/esm/__overlays__/Tooltip/v1/Tooltip.mjs +1 -1
- package/dist/esm/__overlays__/Tooltip/v3/Tooltip.mjs +1 -1
- package/dist/styles.css +568 -488
- package/dist/types/EmptyState/EmptyState.d.ts +2 -1
- package/dist/types/__actions__/Button/v3/Button.d.ts +17 -4
- package/dist/types/__actions__/Button/v3/index.d.ts +1 -0
- package/dist/types/__actions__/Button/v3/subcomponents/ButtonContent/ButtonContent.d.ts +11 -0
- package/dist/types/__actions__/Button/v3/subcomponents/ButtonContent/index.d.ts +1 -0
- package/dist/types/__actions__/Button/v3/subcomponents/PendingContent/PendingContent.d.ts +5 -0
- package/dist/types/__actions__/Button/v3/subcomponents/PendingContent/index.d.ts +1 -0
- package/dist/types/__actions__/Button/v3/subcomponents/index.d.ts +2 -0
- package/dist/types/__actions__/Button/v3/types.d.ts +21 -0
- package/dist/types/__actions__/LinkButton/index.d.ts +1 -0
- package/dist/types/__actions__/LinkButton/v3/LinkButton.d.ts +11 -0
- package/dist/types/__actions__/LinkButton/v3/index.d.ts +1 -0
- package/package.json +8 -8
- package/src/EmptyState/EmptyState.module.css +114 -0
- package/src/EmptyState/EmptyState.tsx +18 -20
- package/src/EmptyState/_docs/EmptyState.stickersheet.stories.tsx +55 -39
- package/src/Filter/FilterBar/FilterBar.module.css +0 -4
- package/src/Filter/FilterBar/FilterBar.tsx +12 -14
- package/src/GuidanceBlock/{GuidanceBlock.module.scss → GuidanceBlock.module.css} +60 -114
- package/src/GuidanceBlock/GuidanceBlock.tsx +1 -1
- package/src/__actions__/Button/v3/Button.module.css +235 -0
- package/src/__actions__/Button/v3/Button.tsx +95 -29
- package/src/__actions__/Button/v3/_docs/Button--api-specification.mdx +151 -0
- package/src/__actions__/Button/v3/_docs/Button--usage-guidelines.mdx +30 -0
- package/src/__actions__/Button/v3/_docs/Button.docs.stories.tsx +112 -50
- package/src/__actions__/Button/v3/_docs/Button.spec.stories.tsx +80 -120
- package/src/__actions__/Button/v3/_docs/Button.stickersheet.stories.tsx +183 -81
- package/src/__actions__/Button/v3/index.ts +1 -0
- package/src/__actions__/Button/v3/subcomponents/ButtonContent/ButtonContent.module.css +19 -0
- package/src/__actions__/Button/v3/subcomponents/ButtonContent/ButtonContent.tsx +40 -0
- package/src/__actions__/Button/v3/subcomponents/ButtonContent/index.ts +1 -0
- package/src/__actions__/Button/v3/subcomponents/PendingContent/PendingContent.module.css +16 -0
- package/src/__actions__/Button/v3/subcomponents/PendingContent/PendingContent.tsx +28 -0
- package/src/__actions__/Button/v3/subcomponents/PendingContent/index.ts +1 -0
- package/src/__actions__/Button/v3/subcomponents/index.ts +2 -0
- package/src/__actions__/Button/v3/types.ts +25 -0
- package/src/__actions__/LinkButton/index.ts +1 -0
- package/src/__actions__/LinkButton/v3/LinkButton.module.css +4 -0
- package/src/__actions__/LinkButton/v3/LinkButton.tsx +71 -0
- package/src/__actions__/LinkButton/v3/_docs/LinkButton--api-specification.mdx +200 -0
- package/src/__actions__/LinkButton/v3/_docs/LinkButton.doc.stories.tsx +131 -0
- package/src/__actions__/LinkButton/v3/_docs/LinkButton.spec.stories.tsx +100 -0
- package/src/__actions__/LinkButton/v3/index.ts +1 -0
- package/src/__actions__/Menu/v3/_docs/Menu.docs.stories.tsx +54 -18
- package/src/__actions__/Menu/v3/_docs/Menu.spec.stories.tsx +30 -10
- package/src/__actions__/Menu/v3/_docs/Menu.stories.tsx +12 -4
- package/src/__future__/Icon/_docs/Icon.docs.stories.tsx +7 -7
- package/src/__overlays__/Tooltip/v3/Tooltip.tsx +1 -1
- package/src/__overlays__/Tooltip/v3/_docs/Tooltip.spec.stories.tsx +2 -0
- package/dist/cjs/EmptyState/EmptyState.module.scss.cjs +0 -23
- package/dist/cjs/GuidanceBlock/GuidanceBlock.module.scss.cjs +0 -33
- package/dist/cjs/__actions__/Button/v3/Button.module.scss.cjs +0 -9
- package/dist/esm/EmptyState/EmptyState.module.scss.mjs +0 -21
- package/dist/esm/GuidanceBlock/GuidanceBlock.module.scss.mjs +0 -31
- package/dist/esm/__actions__/Button/v3/Button.module.scss.mjs +0 -7
- package/src/EmptyState/EmptyState.module.scss +0 -177
- package/src/EmptyState/EmptyState.spec.tsx +0 -48
- package/src/EmptyState/_mixins.scss +0 -44
- package/src/__actions__/Button/v3/Button.module.scss +0 -104
- package/src/__actions__/Button/v3/_docs/ApiSpecification.mdx +0 -173
- package/src/__actions__/Button/v3/_docs/Button.mdx +0 -41
- package/src/__actions__/Button/v3/_docs/Button.stories.tsx +0 -98
package/dist/styles.css
CHANGED
|
@@ -1,4 +1,37 @@
|
|
|
1
1
|
@layer tokens, normalize, reset;@layer tokens{:root{--theme-key:heart;--animation-easing-function-ease-in-out:cubic-bezier(0.455,0.03,0.515,0.955);--animation-easing-function-ease-in:cubic-bezier(0.55,0.085,0.68,0.53);--animation-easing-function-ease-out:cubic-bezier(0.25,0.46,0.45,0.94);--animation-easing-function-linear:linear;--animation-easing-function-bounce-in:cubic-bezier(0.485,0.155,0.24,1.245);--animation-easing-function-bounce-out:cubic-bezier(0.485,0.155,0.515,0.845);--animation-easing-function-bounce-in-out:cubic-bezier(0.76,-0.245,0.24,1.245);--animation-duration-instant:0ms;--animation-duration-immediate:100ms;--animation-duration-rapid:200ms;--animation-duration-fast:300ms;--animation-duration-slow:400ms;--animation-duration-deliberate:700ms;--border-solid-border-width:2px;--border-solid-border-radius:7px;--border-solid-border-style:solid;--border-solid-border-color:#e1e2ea;--border-solid-border-color-rgb:225,226,234;--border-dashed-border-width:2px;--border-dashed-border-radius:7px;--border-dashed-border-style:dashed;--border-borderless-border-width:2px;--border-borderless-border-radius:7px;--border-borderless-border-style:solid;--border-borderless-border-color:transparent;--border-borderless-border-color-rgb:0,0,0;--border-focus-ring-border-width:2px;--border-focus-ring-border-radius:10px;--border-focus-ring-border-style:solid;--border-width-1:1px;--color-purple-100:#f4edf8;--color-purple-100-rgb:244,237,248;--color-purple-200:#dfc9ea;--color-purple-200-rgb:223,201,234;--color-purple-300:#c9a5dd;--color-purple-300-rgb:201,165,221;--color-purple-400:#ae67b1;--color-purple-400-rgb:174,103,177;--color-purple-500:#844587;--color-purple-500-rgb:132,69,135;--color-purple-600:#5f3361;--color-purple-600-rgb:95,51,97;--color-purple-700:#4a234d;--color-purple-700-rgb:74,35,77;--color-purple-800:#2f2438;--color-purple-800-rgb:47,36,56;--color-blue-100:#e6f6ff;--color-blue-100-rgb:230,246,255;--color-blue-200:#bde2f5;--color-blue-200-rgb:189,226,245;--color-blue-300:#73c0e8;--color-blue-300-rgb:115,192,232;--color-blue-400:#008bd6;--color-blue-400-rgb:0,139,214;--color-blue-500:#0168b3;--color-blue-500-rgb:1,104,179;--color-blue-600:#004970;--color-blue-600-rgb:0,73,112;--color-blue-700:#003157;--color-blue-700-rgb:0,49,87;--color-green-100:#e8f8f4;--color-green-100-rgb:232,248,244;--color-green-200:#c4ede2;--color-green-200-rgb:196,237,226;--color-green-300:#8fdbc7;--color-green-300-rgb:143,219,199;--color-green-400:#5dcaad;--color-green-400-rgb:93,202,173;--color-green-500:#3f9a86;--color-green-500-rgb:63,154,134;--color-green-600:#2c7d67;--color-green-600-rgb:44,125,103;--color-green-700:#22594a;--color-green-700-rgb:34,89,74;--color-yellow-100:#fff9e4;--color-yellow-100-rgb:255,249,228;--color-yellow-200:#ffeeb3;--color-yellow-200-rgb:255,238,179;--color-yellow-300:#ffe36e;--color-yellow-300-rgb:255,227,110;--color-yellow-400:#ffca4d;--color-yellow-400-rgb:255,202,77;--color-yellow-500:#ffb600;--color-yellow-500-rgb:255,182,0;--color-yellow-600:#c68600;--color-yellow-600-rgb:198,134,0;--color-yellow-700:#876400;--color-yellow-700-rgb:135,100,0;--color-red-100:#fdeaee;--color-red-100-rgb:253,234,238;--color-red-200:#f9c2cb;--color-red-200-rgb:249,194,203;--color-red-300:#f597a8;--color-red-300-rgb:245,151,168;--color-red-400:#e0707d;--color-red-400-rgb:224,112,125;--color-red-500:#c93b55;--color-red-500-rgb:201,59,85;--color-red-600:#a82433;--color-red-600-rgb:168,36,51;--color-red-700:#6c1e20;--color-red-700-rgb:108,30,32;--color-orange-100:#fff0e8;--color-orange-100-rgb:255,240,232;--color-orange-200:#ffd1b9;--color-orange-200-rgb:255,209,185;--color-orange-300:#ffb08a;--color-orange-300-rgb:255,176,138;--color-orange-400:#ff9461;--color-orange-400-rgb:255,148,97;--color-orange-500:#e96c2f;--color-orange-500-rgb:233,108,47;--color-orange-600:#b74302;--color-orange-600-rgb:183,67,2;--color-orange-700:#903c00;--color-orange-700-rgb:144,60,0;--color-gray-100:#f9f9f9;--color-gray-100-rgb:249,249,249;--color-gray-200:#f4f4f5;--color-gray-200-rgb:244,244,245;--color-gray-300:#eaeaec;--color-gray-300-rgb:234,234,236;--color-gray-400:#cdcdd0;--color-gray-400-rgb:205,205,208;--color-gray-500:#878792;--color-gray-500-rgb:135,135,146;--color-gray-600:#524e56;--color-gray-600-rgb:82,78,86;--color-white:#fff;--color-white-rgb:255,255,255;--color-black:#000;--color-black-rgb:0,0,0;--data-viz-favorable:#7dd5bd;--data-viz-favorable-rgb:125,213,189;--data-viz-unfavorable:#e68d97;--data-viz-unfavorable-rgb:230,141,151;--layout-content-max-width:1392px;--layout-content-max-width-with-sidebar:1080px;--layout-content-side-margin:72px;--layout-mobile-actions-drawer-height:60px;--layout-navigation-bar-height:72px;--layout-breakpoints-medium:768px;--layout-breakpoints-large:1080px;--shadow-small-box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 3px 16px 0 rgba(0,0,0,.06);--shadow-large-box-shadow:0 3px 9px 0 rgba(0,0,0,.1),0 8px 40px 0 rgba(0,0,0,.08);--spacing-0:0;--spacing-1:.0625rem;--spacing-2:.125rem;--spacing-4:.25rem;--spacing-6:.375rem;--spacing-8:.5rem;--spacing-12:.75rem;--spacing-16:1rem;--spacing-20:1.25rem;--spacing-24:1.5rem;--spacing-32:2rem;--spacing-40:2.5rem;--spacing-48:3rem;--spacing-56:3.5rem;--spacing-64:4rem;--spacing-72:4.5rem;--spacing-80:5rem;--spacing-96:6rem;--spacing-112:7rem;--spacing-128:8rem;--spacing-160:10rem;--spacing-200:12.5rem;--spacing-240:15rem;--spacing-280:17.5rem;--spacing-320:20rem;--spacing-xs:0.375rem;--spacing-sm:0.75rem;--spacing-md:1.5rem;--spacing-lg:2.25rem;--spacing-xl:3rem;--spacing-xxl:3.75rem;--spacing-xxxl:4.5rem;--spacing-xxxxl:5.25rem;--spacing-xxxxxl:6rem;--typography-data-large-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-large-font-weight:700;--typography-data-large-font-size:5.25rem;--typography-data-large-line-height:5.25rem;--typography-data-large-letter-spacing:normal;--typography-data-large-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-large-units-font-weight:700;--typography-data-large-units-font-size:2.625rem;--typography-data-large-units-line-height:5.25rem;--typography-data-large-units-letter-spacing:normal;--typography-data-medium-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-medium-font-weight:700;--typography-data-medium-font-size:3rem;--typography-data-medium-line-height:5rem;--typography-data-medium-letter-spacing:normal;--typography-data-medium-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-medium-units-font-weight:700;--typography-data-medium-units-font-size:1.5rem;--typography-data-medium-units-line-height:5rem;--typography-data-medium-units-letter-spacing:normal;--typography-data-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-small-font-weight:700;--typography-data-small-font-size:1.5rem;--typography-data-small-line-height:1.5rem;--typography-data-small-letter-spacing:normal;--typography-data-small-units-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-data-small-units-font-weight:700;--typography-data-small-units-font-size:1.125rem;--typography-data-small-units-line-height:1.5rem;--typography-data-small-units-letter-spacing:normal;--typography-display-0-font-family:"Tiempos Headline",Georgia,serif;--typography-display-0-font-weight:800;--typography-display-0-font-size:4.5rem;--typography-display-0-line-height:5.25rem;--typography-display-0-letter-spacing:0em;--typography-heading-1-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-1-font-weight:500;--typography-heading-1-font-size:2.125rem;--typography-heading-1-line-height:2.625rem;--typography-heading-1-letter-spacing:normal;--typography-heading-2-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-2-font-weight:600;--typography-heading-2-font-size:1.75rem;--typography-heading-2-line-height:2.25rem;--typography-heading-2-letter-spacing:normal;--typography-heading-3-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-3-font-weight:600;--typography-heading-3-font-size:1.375rem;--typography-heading-3-line-height:1.875rem;--typography-heading-3-letter-spacing:normal;--typography-heading-4-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-4-font-weight:600;--typography-heading-4-font-size:1.125rem;--typography-heading-4-line-height:1.5rem;--typography-heading-4-letter-spacing:normal;--typography-heading-5-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-5-font-weight:600;--typography-heading-5-font-size:1rem;--typography-heading-5-line-height:1.5rem;--typography-heading-5-letter-spacing:normal;--typography-heading-6-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-heading-6-font-weight:600;--typography-heading-6-font-size:0.875rem;--typography-heading-6-line-height:1.5rem;--typography-heading-6-letter-spacing:normal;--typography-paragraph-intro-lede-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-intro-lede-font-weight:400;--typography-paragraph-intro-lede-font-size:1.25rem;--typography-paragraph-intro-lede-line-height:1.875rem;--typography-paragraph-intro-lede-letter-spacing:0;--typography-paragraph-intro-lede-max-width:975px;--typography-paragraph-body-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-body-font-weight:400;--typography-paragraph-body-font-size:1rem;--typography-paragraph-body-line-height:1.5rem;--typography-paragraph-body-letter-spacing:normal;--typography-paragraph-body-max-width:780px;--typography-paragraph-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-small-font-weight:400;--typography-paragraph-small-font-size:0.875rem;--typography-paragraph-small-line-height:1.125rem;--typography-paragraph-small-letter-spacing:normal;--typography-paragraph-small-max-width:680px;--typography-paragraph-extra-small-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-paragraph-extra-small-font-weight:400;--typography-paragraph-extra-small-font-size:0.75rem;--typography-paragraph-extra-small-line-height:1.125rem;--typography-paragraph-extra-small-letter-spacing:normal;--typography-paragraph-extra-small-max-width:600px;--typography-paragraph-bold-font-weight:600;--typography-button-primary-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-button-primary-font-weight:500;--typography-button-primary-font-size:1.125rem;--typography-button-primary-line-height:1.5rem;--typography-button-primary-letter-spacing:normal;--typography-button-secondary-font-family:"Inter","Noto Sans",Helvetica,Arial,sans-serif;--typography-button-secondary-font-weight:500;--typography-button-secondary-font-size:1rem;--typography-button-secondary-line-height:1.5rem;--typography-button-secondary-letter-spacing:normal}}@layer normalize{html{text-size-adjust:100%;line-height:1.15}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{appearance:none}::-webkit-file-upload-button{appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}}@layer reset{@font-face{font-family:Tiempos Headline;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-bold.woff)}@font-face{font-family:Tiempos Headline;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-medium.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/tiempos/tiempos-headline-medium.woff)}@font-face{font-family:Greycliff CF;font-weight:300;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-light.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:400;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-regular.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-medium.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:600;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-demi-bold.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:700;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-bold.woff) format("woff")}@font-face{font-family:Greycliff CF;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/greycliff/greycliff-cf-extra-bold.woff) format("woff")}@font-face{font-family:Inter;font-weight:300;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-light.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-light.woff)}@font-face{font-family:Inter;font-weight:400;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-regular.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-regular.woff)}@font-face{font-family:Inter;font-weight:500;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-medium.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-medium.woff)}@font-face{font-family:Inter;font-weight:600;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-demi-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-demi-bold.woff)}@font-face{font-family:Inter;font-weight:700;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-bold.woff)}@font-face{font-family:Inter;font-weight:800;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-extra-bold.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/inter/inter-extra-bold.woff)}@font-face{font-family:IBM Plex Mono;src:url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/ibm-plex-mono/ibm-plex-mono-regular.woff2),url(https://d1e7r7b0lb8p4d.cloudfront.net/fonts/ibm-plex-mono/ibm-plex-mono-regular.woff)}}@layer reset{*,:after,:before{border-color:var(--border-solid-border-color,"currentColor");border-style:solid;border-width:0}}
|
|
2
|
+
.Menu-module_menu__AowD8 {
|
|
3
|
+
background-color: var(--color-white);
|
|
4
|
+
color: var(--color-purple-800);
|
|
5
|
+
width: 248px;
|
|
6
|
+
max-height: 22rem;
|
|
7
|
+
overflow: auto;
|
|
8
|
+
padding-block: var(--spacing-6);
|
|
9
|
+
outline: none;
|
|
10
|
+
border-radius: var(--border-solid-border-radius);
|
|
11
|
+
box-shadow: var(--shadow-large-box-shadow);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.Menu-module_menu__AowD8 .react-aria-Header {
|
|
15
|
+
font-family: var(--typography-heading-6-font-family);
|
|
16
|
+
font-size: var(--typography-heading-6-font-size);
|
|
17
|
+
letter-spacing: var(--typography-heading-6-letter-spacing);
|
|
18
|
+
font-weight: var(--typography-heading-6-font-weight);
|
|
19
|
+
line-height: var(--typography-heading-6-line-height);
|
|
20
|
+
padding: var(--spacing-6) 10px;
|
|
21
|
+
margin-inline: var(--spacing-6);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.Menu-module_menu__AowD8 section:not(:last-of-type) {
|
|
25
|
+
&::after {
|
|
26
|
+
width: 100%;
|
|
27
|
+
height: 1px;
|
|
28
|
+
background-color: var(--border-solid-border-color);
|
|
29
|
+
content: "";
|
|
30
|
+
display: block;
|
|
31
|
+
margin-block: var(--spacing-6);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
2
35
|
.MenuItem-module_item__uImZI {
|
|
3
36
|
display: block;
|
|
4
37
|
font-family: var(--typography-paragraph-body-font-family);
|
|
@@ -39,39 +72,279 @@
|
|
|
39
72
|
opacity: 0.3;
|
|
40
73
|
}
|
|
41
74
|
|
|
42
|
-
.
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
padding-block: var(--spacing-6);
|
|
75
|
+
.Button-module_button__vlUCI {
|
|
76
|
+
/* RESET */
|
|
77
|
+
appearance: none;
|
|
78
|
+
background: transparent;
|
|
79
|
+
font: inherit;
|
|
80
|
+
margin: 0;
|
|
49
81
|
outline: none;
|
|
82
|
+
-webkit-font-smoothing: antialiased;
|
|
83
|
+
-moz-osx-font-smoothing: grayscale;
|
|
84
|
+
|
|
85
|
+
--button-min-x-y: var(--spacing-40);
|
|
86
|
+
--button-border-width: var(--border-solid-border-width);
|
|
87
|
+
--button-padding-y: calc(var(--spacing-8) - var(--button-border-width));
|
|
88
|
+
--button-padding-x: calc(var(--spacing-16) - var(--button-border-width));
|
|
89
|
+
|
|
90
|
+
background-color: var(--button-bg-color, var(--color-blue-500));
|
|
91
|
+
border: var(--button-border-width) solid;
|
|
50
92
|
border-radius: var(--border-solid-border-radius);
|
|
51
|
-
|
|
93
|
+
border-color: var(--button-border-color, var(--color-blue-500));
|
|
94
|
+
box-sizing: border-box;
|
|
95
|
+
color: var(--button-text-color, var(--color-white));
|
|
96
|
+
display: inline-flex;
|
|
97
|
+
align-items: center;
|
|
98
|
+
justify-content: center;
|
|
99
|
+
text-align: start;
|
|
100
|
+
font-family: var(
|
|
101
|
+
--button-font-family,
|
|
102
|
+
var(--typography-paragraph-body-font-family)
|
|
103
|
+
);
|
|
104
|
+
font-weight: var(--button-font-weight, 500);
|
|
105
|
+
font-size: var(--button-font-size, 1rem);
|
|
106
|
+
line-height: var(--button-line-height, 1.5rem);
|
|
107
|
+
min-height: var(--button-min-x-y);
|
|
108
|
+
min-width: var(--button-min-x-y);
|
|
109
|
+
position: relative;
|
|
110
|
+
padding: var(--button-padding-y) var(--button-padding-x);
|
|
111
|
+
|
|
112
|
+
&[data-hovered] {
|
|
113
|
+
--button-bg-color: var(--color-blue-600);
|
|
114
|
+
--button-border-color: var(--color-blue-600);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
&[data-pressed] {
|
|
118
|
+
--button-bg-color: var(--color-blue-700);
|
|
119
|
+
--button-border-color: var(--color-blue-700);
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
&[data-pending] {
|
|
123
|
+
--button-bg-color: var(--color-blue-700);
|
|
124
|
+
--button-border-color: var(--color-blue-700);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
&[data-focus-visible]::after {
|
|
128
|
+
content: "";
|
|
129
|
+
position: absolute;
|
|
130
|
+
background: transparent;
|
|
131
|
+
border-color: var(--color-blue-500);
|
|
132
|
+
border-radius: var(--border-focus-ring-border-radius);
|
|
133
|
+
border-width: var(--border-focus-ring-border-width);
|
|
134
|
+
border-style: var(--border-focus-ring-border-style);
|
|
135
|
+
inset: calc(-1 * (var(--border-focus-ring-border-width) * 2) - 1px);
|
|
136
|
+
}
|
|
52
137
|
}
|
|
53
138
|
|
|
54
|
-
.
|
|
55
|
-
|
|
56
|
-
font-size: var(--typography-heading-6-font-size);
|
|
57
|
-
letter-spacing: var(--typography-heading-6-letter-spacing);
|
|
58
|
-
font-weight: var(--typography-heading-6-font-weight);
|
|
59
|
-
line-height: var(--typography-heading-6-line-height);
|
|
60
|
-
padding: var(--spacing-6) 10px;
|
|
61
|
-
margin-inline: var(--spacing-6);
|
|
139
|
+
.Button-module_fullWidth__qIkG6 {
|
|
140
|
+
width: 100%;
|
|
62
141
|
}
|
|
63
142
|
|
|
64
|
-
.
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
143
|
+
.Button-module_small__FYPwk {
|
|
144
|
+
--button-font-size: 0.75rem;
|
|
145
|
+
--button-line-height: 1rem;
|
|
146
|
+
--button-min-x-y: var(--spacing-32);
|
|
147
|
+
--icon-size: 16;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.Button-module_medium__4LOhQ {
|
|
151
|
+
--button-padding-x: calc(var(--spacing-20) - var(--button-border-width));
|
|
152
|
+
--button-padding-y: calc(var(--spacing-8) - var(--button-border-width));
|
|
153
|
+
--button-min-x-y: var(--spacing-40);
|
|
154
|
+
--icon-size: 24;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.Button-module_large__MjtVH {
|
|
158
|
+
--button-padding-x: calc(var(--spacing-24) - var(--button-border-width));
|
|
159
|
+
--button-padding-y: calc(var(--spacing-12) - var(--button-border-width));
|
|
160
|
+
--button-min-x-y: var(--spacing-48);
|
|
161
|
+
--icon-size: 24;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.Button-module_smallIconButton__4gN-i,
|
|
165
|
+
.Button-module_mediumIconButton__CEXv- {
|
|
166
|
+
--button-padding-x: calc(var(--spacing-8) - var(--button-border-width));
|
|
167
|
+
--button-padding-y: calc(var(--spacing-8) - var(--button-border-width));
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.Button-module_largeIconButton__Apt33 {
|
|
171
|
+
--button-padding-x: calc(var(--spacing-12) - var(--button-border-width));
|
|
172
|
+
--button-padding-y: calc(var(--spacing-12) - var(--button-border-width));
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.Button-module_secondary__Mmev0 {
|
|
176
|
+
--button-bg-color: var(--color-white);
|
|
177
|
+
--button-border-color: var(--color-gray-500);
|
|
178
|
+
--button-text-color: var(--color-purple-800);
|
|
179
|
+
|
|
180
|
+
&[data-hovered] {
|
|
181
|
+
--button-bg-color: var(--color-gray-200);
|
|
182
|
+
--button-border-color: var(--color-gray-600);
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
&[data-pressed] {
|
|
186
|
+
--button-bg-color: var(--color-gray-300);
|
|
187
|
+
--button-border-color: var(--color-black);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
&[data-pending] {
|
|
191
|
+
--button-bg-color: var(--color-gray-300);
|
|
192
|
+
--button-border-color: var(--color-black);
|
|
72
193
|
}
|
|
73
194
|
}
|
|
74
195
|
|
|
196
|
+
.Button-module_tertiary__MJjKC {
|
|
197
|
+
--button-bg-color: transparent;
|
|
198
|
+
--button-border-color: transparent;
|
|
199
|
+
--button-text-color: var(--color-purple-800);
|
|
200
|
+
|
|
201
|
+
&[data-hovered] {
|
|
202
|
+
--button-bg-color: var(--color-gray-200);
|
|
203
|
+
--button-border-color: var(--color-gray-200);
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
&[data-pressed] {
|
|
207
|
+
--button-bg-color: var(--color-gray-300);
|
|
208
|
+
--button-border-color: var(--color-gray-300);
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
&[data-pending] {
|
|
212
|
+
--button-bg-color: var(--color-gray-300);
|
|
213
|
+
--button-border-color: var(--color-gray-300);
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.Button-module_primaryReversed__m4kze,
|
|
218
|
+
.Button-module_secondaryReversed__Q435c,
|
|
219
|
+
.Button-module_tertiaryReversed__Q-UqR {
|
|
220
|
+
&[data-focus-visible]::after {
|
|
221
|
+
border-color: var(--color-blue-300);
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.Button-module_primaryReversed__m4kze {
|
|
226
|
+
--button-bg-color: var(--color-white);
|
|
227
|
+
--button-border-color: var(--color-white);
|
|
228
|
+
--button-text-color: var(--color-purple-800);
|
|
229
|
+
|
|
230
|
+
&[data-hovered] {
|
|
231
|
+
--button-bg-color: var(--color-white);
|
|
232
|
+
--button-border-color: var(--color-white);
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
&[data-pressed] {
|
|
236
|
+
--button-bg-color: var(--color-white);
|
|
237
|
+
--button-border-color: var(--color-white);
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
&[data-pending] {
|
|
241
|
+
--button-bg-color: var(--color-white);
|
|
242
|
+
--button-border-color: var(--color-white);
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.Button-module_secondaryReversed__Q435c {
|
|
247
|
+
--button-bg-color: transparent;
|
|
248
|
+
--button-border-color: var(--color-white);
|
|
249
|
+
--button-text-color: var(--color-white);
|
|
250
|
+
|
|
251
|
+
&[data-hovered] {
|
|
252
|
+
--button-bg-color: rgba(var(--color-white-rgb), 0.2);
|
|
253
|
+
--button-border-color: var(--color-white);
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
&[data-pressed] {
|
|
257
|
+
--button-bg-color: rgba(var(--color-white-rgb), 0.1);
|
|
258
|
+
--button-border-color: var(--color-white);
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
&[data-pending] {
|
|
262
|
+
--button-bg-color: rgba(var(--color-white-rgb), 0.1);
|
|
263
|
+
--button-border-color: var(--color-white);
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.Button-module_tertiaryReversed__Q-UqR {
|
|
268
|
+
--button-bg-color: transparent;
|
|
269
|
+
--button-border-color: transparent;
|
|
270
|
+
--button-text-color: var(--color-white);
|
|
271
|
+
|
|
272
|
+
&[data-hovered] {
|
|
273
|
+
--button-bg-color: rgba(var(--color-white-rgb), 0.2);
|
|
274
|
+
--button-border-color: transparent;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
&[data-pressed] {
|
|
278
|
+
--button-bg-color: rgba(var(--color-white-rgb), 0.1);
|
|
279
|
+
--button-border-color: transparent;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
&[data-pending] {
|
|
283
|
+
--button-bg-color: rgba(var(--color-white-rgb), 0.1);
|
|
284
|
+
--button-border-color: transparent;
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.Button-module_isDisabled__m1eE- {
|
|
289
|
+
--button-bg-color: var(--color-gray-400);
|
|
290
|
+
--button-border-color: var(--color-gray-400);
|
|
291
|
+
--button-text-color: var(--color-white);
|
|
292
|
+
|
|
293
|
+
&[data-hovered] {
|
|
294
|
+
--button-bg-color: var(--color-gray-400);
|
|
295
|
+
--button-border-color: var(--color-gray-400);
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.Button-module_hideContentWidth__-E94d {
|
|
300
|
+
position: absolute;
|
|
301
|
+
left: 50%;
|
|
302
|
+
top: 50%;
|
|
303
|
+
transform: translate(-50%, -50%);
|
|
304
|
+
visibility: hidden;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.Button-module_retainContentWidth__b4IEC {
|
|
308
|
+
visibility: hidden;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.PendingContent-module_pendingContent__c4IFS {
|
|
312
|
+
display: inline-flex;
|
|
313
|
+
align-items: center;
|
|
314
|
+
gap: var(--button-pending-content-gap, var(--spacing-6));
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.PendingContent-module_large__ypTxk {
|
|
318
|
+
--button-pending-content-gap: var(--spacing-8);
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.PendingContent-module_centerSpinner__EYn7L {
|
|
322
|
+
position: absolute;
|
|
323
|
+
left: 50%;
|
|
324
|
+
top: 50%;
|
|
325
|
+
transform: translate(-50%, -50%);
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.ButtonContent-module_buttonContent__v5mHZ {
|
|
329
|
+
display: inline-flex;
|
|
330
|
+
align-items: center;
|
|
331
|
+
gap: var(--button-icon-gap, var(--spacing-6));
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.ButtonContent-module_large__mLOdb {
|
|
335
|
+
--button-icon-gap: var(--spacing-8);
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.ButtonContent-module_buttonLabel__T5XAq {
|
|
339
|
+
display: inline-flex;
|
|
340
|
+
align-items: center;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.ButtonContent-module_buttonIcon__qkAX- {
|
|
344
|
+
display: inline-flex;
|
|
345
|
+
align-items: center;
|
|
346
|
+
}
|
|
347
|
+
|
|
75
348
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
76
349
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
77
350
|
.OverlayArrow-module_overlayArrow__hoDyK {
|
|
@@ -100,94 +373,6 @@
|
|
|
100
373
|
.OverlayArrow-module_overlayArrow__hoDyK.OverlayArrow-module_reversed__-WGcR path {
|
|
101
374
|
fill: var(--color-white, #ffffff);
|
|
102
375
|
}
|
|
103
|
-
.Button-module_button__QOSYH {
|
|
104
|
-
--button-min-height-width: var(--spacing-48);
|
|
105
|
-
--button-padding-x: calc(
|
|
106
|
-
var(--spacing-12) - var(--border-solid-border-width)
|
|
107
|
-
);
|
|
108
|
-
--button-padding-y: calc(
|
|
109
|
-
var(--spacing-8) - var(--border-solid-border-width)
|
|
110
|
-
);
|
|
111
|
-
--button-icon-size: var(--spacing-24);
|
|
112
|
-
appearance: none;
|
|
113
|
-
background: transparent;
|
|
114
|
-
color: inherit;
|
|
115
|
-
font: inherit;
|
|
116
|
-
margin: 0;
|
|
117
|
-
border: none;
|
|
118
|
-
border: var(--border-solid-border-width) var(--border-solid-border-style);
|
|
119
|
-
border-radius: var(--border-solid-border-radius);
|
|
120
|
-
box-sizing: border-box;
|
|
121
|
-
display: inline-flex;
|
|
122
|
-
align-items: center;
|
|
123
|
-
justify-content: center;
|
|
124
|
-
text-align: left;
|
|
125
|
-
gap: var(--spacing-8);
|
|
126
|
-
font-family: var(--typography-button-primary-font-family);
|
|
127
|
-
font-weight: var(--typography-button-primary-font-weight);
|
|
128
|
-
font-size: var(--typography-button-primary-font-size);
|
|
129
|
-
line-height: var(--typography-button-primary-line-height);
|
|
130
|
-
min-height: var(--button-min-height-width);
|
|
131
|
-
min-width: var(--button-min-height-width);
|
|
132
|
-
outline: none;
|
|
133
|
-
position: relative;
|
|
134
|
-
padding: var(--button-padding-y) var(--button-padding-x);
|
|
135
|
-
-webkit-font-smoothing: antialiased;
|
|
136
|
-
-moz-osx-font-smoothing: grayscale;
|
|
137
|
-
}
|
|
138
|
-
.Button-module_button__QOSYH[data-focus-visible]::after {
|
|
139
|
-
content: "";
|
|
140
|
-
position: absolute;
|
|
141
|
-
background: transparent;
|
|
142
|
-
border-color: var(--color-blue-500);
|
|
143
|
-
border-radius: var(--border-focus-ring-border-radius);
|
|
144
|
-
border-width: var(--border-focus-ring-border-width);
|
|
145
|
-
border-style: var(--border-focus-ring-border-style);
|
|
146
|
-
inset: calc(-1 * (var(--border-focus-ring-border-width) * 2 + 1px));
|
|
147
|
-
}
|
|
148
|
-
.Button-module_button__QOSYH svg {
|
|
149
|
-
height: var(--button-icon-size);
|
|
150
|
-
width: var(--button-icon-size);
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
.Button-module_default__gSx3e {
|
|
154
|
-
border-color: var(--color-gray-500);
|
|
155
|
-
color: var(--color-purple-800);
|
|
156
|
-
}
|
|
157
|
-
.Button-module_default__gSx3e[data-hovered], .Button-module_default__gSx3e[data-focus-visible], .Button-module_default__gSx3e[data-pressed] {
|
|
158
|
-
background-color: var(--color-gray-200);
|
|
159
|
-
border-color: var(--color-purple-800);
|
|
160
|
-
}
|
|
161
|
-
.Button-module_default__gSx3e[data-disabled] {
|
|
162
|
-
opacity: 0.3;
|
|
163
|
-
}
|
|
164
|
-
.Button-module_default__gSx3e.Button-module_reversed__DT-Id {
|
|
165
|
-
background-color: transparent;
|
|
166
|
-
border-color: rgba(var(--color-white-rgb), 0.65);
|
|
167
|
-
color: var(--color-white);
|
|
168
|
-
}
|
|
169
|
-
.Button-module_default__gSx3e.Button-module_reversed__DT-Id[data-hovered], .Button-module_default__gSx3e.Button-module_reversed__DT-Id[data-focus-visible] {
|
|
170
|
-
background-color: rgba(var(--color-white-rgb), 0.1);
|
|
171
|
-
border-color: var(--color-white);
|
|
172
|
-
}
|
|
173
|
-
.Button-module_default__gSx3e.Button-module_reversed__DT-Id[data-focus-visible]::after {
|
|
174
|
-
border-color: var(--color-blue-300);
|
|
175
|
-
}
|
|
176
|
-
.Button-module_default__gSx3e.Button-module_reversed__DT-Id[data-disabled]::after {
|
|
177
|
-
border-color: var(--color-gray-400);
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
.Button-module_small__S-t5B {
|
|
181
|
-
--button-min-height-width: 2.5rem;
|
|
182
|
-
--button-padding-x: calc(
|
|
183
|
-
var(--spacing-8) - var(--border-solid-border-width)
|
|
184
|
-
);
|
|
185
|
-
--button-padding-y: calc(
|
|
186
|
-
var(--spacing-8) - var(--border-solid-border-width)
|
|
187
|
-
);
|
|
188
|
-
--button-icon-size: var(--spacing-16);
|
|
189
|
-
gap: var(--spacing-8);
|
|
190
|
-
}
|
|
191
376
|
.Focusable-module_focusableWrapper__NfuIi {
|
|
192
377
|
display: inline-flex;
|
|
193
378
|
}
|
|
@@ -3879,183 +4064,121 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
3879
4064
|
white-space: nowrap;
|
|
3880
4065
|
border: 0;
|
|
3881
4066
|
}
|
|
3882
|
-
|
|
3883
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
3884
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
3885
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
3886
|
-
.EmptyState-module_container__-B5OU {
|
|
4067
|
+
.EmptyState-module_container__0kOpV {
|
|
3887
4068
|
--empty-state-border-width: var(--border-width-1);
|
|
3888
|
-
|
|
3889
|
-
|
|
4069
|
+
--empty-state-illustration-max-height: 366px;
|
|
4070
|
+
--empty-state-illustration-max-width: 420px;
|
|
4071
|
+
--empty-state-text-container-max-width: 426px;
|
|
4072
|
+
|
|
4073
|
+
container-type: inline-size;
|
|
3890
4074
|
width: 100%;
|
|
3891
|
-
padding: calc(2% - var(--empty-state-border-width)) calc(var(--spacing-24) - var(--empty-state-border-width));
|
|
3892
|
-
color: var(--color-purple-800, #2f2438);
|
|
3893
4075
|
border: var(--empty-state-border-width) solid var(--empty-state-border-color);
|
|
3894
4076
|
border-radius: var(--border-solid-border-radius);
|
|
3895
4077
|
background-color: var(--empty-state-background-color);
|
|
4078
|
+
color: var(--color-purple-800);
|
|
3896
4079
|
}
|
|
3897
|
-
|
|
3898
|
-
|
|
3899
|
-
flex-direction: column;
|
|
3900
|
-
align-items: center;
|
|
3901
|
-
padding-block: calc(var(--spacing-24) - var(--empty-state-border-width));
|
|
3902
|
-
}
|
|
3903
|
-
}
|
|
3904
|
-
.EmptyState-module_container__-B5OU.EmptyState-module_straightCorners__Aeou0 {
|
|
4080
|
+
|
|
4081
|
+
.EmptyState-module_straightCorners__BNh-9 {
|
|
3905
4082
|
border-radius: 0;
|
|
3906
4083
|
}
|
|
3907
|
-
@media (min-width: 1416px) {
|
|
3908
|
-
.EmptyState-module_container__-B5OU.EmptyState-module_sidebarAndContent__Eysay {
|
|
3909
|
-
padding-top: var(--spacing-md, 1.5rem);
|
|
3910
|
-
padding-bottom: var(--spacing-md, 1.5rem);
|
|
3911
|
-
}
|
|
3912
|
-
}
|
|
3913
|
-
@media (min-width: 1128px) {
|
|
3914
|
-
.EmptyState-module_container__-B5OU.EmptyState-module_contentOnly__RWVVX {
|
|
3915
|
-
padding-top: var(--spacing-md, 1.5rem);
|
|
3916
|
-
padding-bottom: var(--spacing-md, 1.5rem);
|
|
3917
|
-
}
|
|
3918
|
-
}
|
|
3919
4084
|
|
|
3920
4085
|
/** @deprecated */
|
|
3921
|
-
.EmptyState-
|
|
4086
|
+
.EmptyState-module_positive__Z2a3J {
|
|
3922
4087
|
--empty-state-border-color: var(--color-green-500);
|
|
3923
4088
|
--empty-state-background-color: var(--color-green-100);
|
|
3924
4089
|
}
|
|
3925
4090
|
|
|
3926
|
-
.EmptyState-
|
|
3927
|
-
.EmptyState-
|
|
4091
|
+
.EmptyState-module_negative__mSmjN,
|
|
4092
|
+
.EmptyState-module_action__l1243 {
|
|
3928
4093
|
--empty-state-border-color: var(--color-red-500);
|
|
3929
4094
|
--empty-state-background-color: var(--color-red-100);
|
|
3930
4095
|
}
|
|
3931
4096
|
|
|
3932
|
-
.EmptyState-
|
|
4097
|
+
.EmptyState-module_neutral__i9IVq {
|
|
3933
4098
|
--empty-state-border-color: var(--color-purple-400);
|
|
3934
4099
|
--empty-state-background-color: var(--color-purple-100);
|
|
3935
4100
|
}
|
|
3936
4101
|
|
|
3937
4102
|
/** end @deprecated */
|
|
3938
|
-
.EmptyState-
|
|
4103
|
+
.EmptyState-module_success__w9nvN {
|
|
3939
4104
|
--empty-state-border-color: var(--color-green-500);
|
|
3940
4105
|
--empty-state-background-color: var(--color-green-100);
|
|
3941
4106
|
}
|
|
3942
4107
|
|
|
3943
|
-
.EmptyState-
|
|
4108
|
+
.EmptyState-module_warning__vdEBx {
|
|
3944
4109
|
--empty-state-border-color: var(--color-red-500);
|
|
3945
4110
|
--empty-state-background-color: var(--color-red-100);
|
|
3946
4111
|
}
|
|
3947
4112
|
|
|
3948
|
-
.EmptyState-
|
|
4113
|
+
.EmptyState-module_informative__aeHUD {
|
|
3949
4114
|
--empty-state-border-color: var(--color-blue-400);
|
|
3950
4115
|
--empty-state-background-color: var(--color-blue-100);
|
|
3951
4116
|
}
|
|
3952
4117
|
|
|
3953
|
-
.EmptyState-module_expert-
|
|
4118
|
+
.EmptyState-module_expert-advice__05WOw {
|
|
3954
4119
|
--empty-state-border-color: var(--color-purple-400);
|
|
3955
4120
|
--empty-state-background-color: var(--color-purple-100);
|
|
3956
4121
|
}
|
|
3957
4122
|
|
|
3958
|
-
.EmptyState-
|
|
3959
|
-
|
|
3960
|
-
display:
|
|
4123
|
+
.EmptyState-module_content__dggps {
|
|
4124
|
+
justify-content: center;
|
|
4125
|
+
display: grid;
|
|
4126
|
+
grid-template-columns: minmax(auto, var(--empty-state-illustration-max-width)) minmax(
|
|
4127
|
+
auto,
|
|
4128
|
+
var(--empty-state-text-container-max-width)
|
|
4129
|
+
);
|
|
4130
|
+
grid-template-rows: minmax(auto, var(--empty-state-illustration-max-height)) auto;
|
|
4131
|
+
padding: var(--spacing-24);
|
|
4132
|
+
grid-column-gap: var(--spacing-32);
|
|
3961
4133
|
}
|
|
3962
4134
|
|
|
3963
|
-
.EmptyState-
|
|
3964
|
-
|
|
3965
|
-
|
|
3966
|
-
flex-shrink: 1;
|
|
3967
|
-
margin-bottom: var(--spacing-md, 1.5rem);
|
|
3968
|
-
}
|
|
3969
|
-
@media (max-width: 815px) {
|
|
3970
|
-
.EmptyState-module_illustrationSide__ZSjF3 {
|
|
3971
|
-
width: 224px;
|
|
3972
|
-
}
|
|
3973
|
-
}
|
|
3974
|
-
@media (min-width: 816px) {
|
|
3975
|
-
.EmptyState-module_illustrationSide__ZSjF3 {
|
|
3976
|
-
display: flex;
|
|
3977
|
-
flex-direction: column;
|
|
3978
|
-
justify-content: center;
|
|
3979
|
-
align-items: flex-end;
|
|
3980
|
-
margin-bottom: 0;
|
|
3981
|
-
min-width: 40%;
|
|
3982
|
-
max-width: 50%;
|
|
3983
|
-
flex-grow: 1;
|
|
3984
|
-
box-sizing: border-box;
|
|
3985
|
-
padding-inline-end: var(--spacing-md, 1.5rem);
|
|
3986
|
-
}
|
|
3987
|
-
}
|
|
3988
|
-
@media (min-width: 1416px) {
|
|
3989
|
-
.EmptyState-module_sidebarAndContent__Eysay .EmptyState-module_illustrationSide__ZSjF3 {
|
|
3990
|
-
flex-shrink: 1;
|
|
3991
|
-
flex-basis: auto;
|
|
3992
|
-
}
|
|
3993
|
-
}
|
|
3994
|
-
@media (min-width: 1128px) {
|
|
3995
|
-
.EmptyState-module_contentOnly__RWVVX .EmptyState-module_illustrationSide__ZSjF3 {
|
|
3996
|
-
flex-shrink: 1;
|
|
3997
|
-
flex-basis: auto;
|
|
3998
|
-
}
|
|
4135
|
+
.EmptyState-module_illustrationContainer__2Ch-u {
|
|
4136
|
+
display: flex;
|
|
4137
|
+
align-items: center;
|
|
3999
4138
|
}
|
|
4000
4139
|
|
|
4001
|
-
.EmptyState-
|
|
4002
|
-
.EmptyState-
|
|
4140
|
+
.EmptyState-module_illustration__QSUZA,
|
|
4141
|
+
.EmptyState-module_illustrationContainer__2Ch-u video {
|
|
4003
4142
|
max-width: 100%;
|
|
4004
|
-
max-height:
|
|
4143
|
+
max-height: var(--empty-state-illustration-max-height);
|
|
4144
|
+
height: 100%;
|
|
4005
4145
|
width: auto;
|
|
4006
|
-
min-height: 196px;
|
|
4007
|
-
}
|
|
4008
|
-
@media (max-width: 815px) {
|
|
4009
|
-
.EmptyState-module_illustration__HyD2k,
|
|
4010
|
-
.EmptyState-module_illustrationSide__ZSjF3 video {
|
|
4011
|
-
max-height: 196px;
|
|
4012
|
-
}
|
|
4013
4146
|
}
|
|
4014
4147
|
|
|
4015
|
-
.EmptyState-
|
|
4148
|
+
.EmptyState-module_textContainer__jJ9NS {
|
|
4016
4149
|
display: flex;
|
|
4017
|
-
flex-
|
|
4018
|
-
|
|
4019
|
-
|
|
4020
|
-
-webkit-font-smoothing: antialiased;
|
|
4150
|
+
flex-direction: column;
|
|
4151
|
+
justify-content: center;
|
|
4152
|
+
gap: var(--spacing-24);
|
|
4021
4153
|
}
|
|
4022
|
-
|
|
4023
|
-
|
|
4024
|
-
|
|
4025
|
-
|
|
4154
|
+
|
|
4155
|
+
@container (width <=1024px) {
|
|
4156
|
+
.EmptyState-module_content__dggps {
|
|
4157
|
+
padding: var(--spacing-16);
|
|
4026
4158
|
}
|
|
4027
4159
|
}
|
|
4028
4160
|
|
|
4029
|
-
|
|
4030
|
-
|
|
4031
|
-
|
|
4032
|
-
|
|
4033
|
-
|
|
4034
|
-
|
|
4035
|
-
|
|
4036
|
-
margin-bottom: 0;
|
|
4161
|
+
@container (width <=560px) {
|
|
4162
|
+
.EmptyState-module_content__dggps {
|
|
4163
|
+
grid-template-columns: 1fr;
|
|
4164
|
+
grid-template-rows: auto;
|
|
4165
|
+
grid-column-gap: unset;
|
|
4166
|
+
grid-row-gap: var(--spacing-24);
|
|
4167
|
+
padding: var(--spacing-24);
|
|
4037
4168
|
}
|
|
4038
|
-
|
|
4039
|
-
|
|
4040
|
-
|
|
4041
|
-
|
|
4169
|
+
|
|
4170
|
+
.EmptyState-module_illustrationContainer__2Ch-u {
|
|
4171
|
+
--empty-state-illustration-max-height: 210px;
|
|
4172
|
+
|
|
4173
|
+
justify-content: center;
|
|
4042
4174
|
}
|
|
4043
|
-
}
|
|
4044
4175
|
|
|
4045
|
-
.EmptyState-
|
|
4046
|
-
margin-bottom: var(--spacing-md, 1.5rem);
|
|
4047
|
-
}
|
|
4048
|
-
@media (max-width: 375px) {
|
|
4049
|
-
.EmptyState-module_heading__y-yvC {
|
|
4176
|
+
.EmptyState-module_heading__pEPi3 {
|
|
4050
4177
|
font-size: 1.25rem;
|
|
4051
4178
|
line-height: 1.5rem;
|
|
4052
|
-
font-weight: 700;
|
|
4053
4179
|
}
|
|
4054
4180
|
}
|
|
4055
4181
|
|
|
4056
|
-
.EmptyState-module_description__fsJOc {
|
|
4057
|
-
margin-bottom: var(--spacing-md, 1.5rem);
|
|
4058
|
-
}
|
|
4059
4182
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
4060
4183
|
.ErrorPage-module_paragraphPadding__-L-qy {
|
|
4061
4184
|
padding: var(--spacing-24, 1.5rem) 0;
|
|
@@ -4678,10 +4801,6 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
4678
4801
|
.ClearAllButton-module_clearAllButton__XNkm2 {
|
|
4679
4802
|
white-space: nowrap;
|
|
4680
4803
|
}
|
|
4681
|
-
.FilterBar-module_wrapper__D8GXq {
|
|
4682
|
-
container: filter-bar-wrapper / inline-size;
|
|
4683
|
-
}
|
|
4684
|
-
|
|
4685
4804
|
.FilterBar-module_filterBar__JEVKL {
|
|
4686
4805
|
display: flex;
|
|
4687
4806
|
padding: var(--spacing-8);
|
|
@@ -4702,368 +4821,329 @@ input[type=range].InputRange-module_ratingScaleRange__gI-rs::-ms-thumb:not(:disa
|
|
|
4702
4821
|
gap: var(--spacing-8);
|
|
4703
4822
|
}
|
|
4704
4823
|
|
|
4705
|
-
|
|
4706
|
-
|
|
4707
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
4708
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
4709
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
4710
|
-
/** THIS IS AN AUTOGENERATED FILE **/
|
|
4711
|
-
.GuidanceBlock-module_rightMargin__-iEFa {
|
|
4712
|
-
margin-right: var(--spacing-8, 0.5rem);
|
|
4824
|
+
.GuidanceBlock-module_rightMargin__T6JO2 {
|
|
4825
|
+
margin-right: var(--spacing-8);
|
|
4713
4826
|
}
|
|
4714
4827
|
|
|
4715
|
-
.GuidanceBlock-
|
|
4828
|
+
.GuidanceBlock-module_noRightMargin__MczwN {
|
|
4716
4829
|
margin-right: 0;
|
|
4717
4830
|
}
|
|
4718
4831
|
|
|
4719
|
-
.GuidanceBlock-
|
|
4832
|
+
.GuidanceBlock-module_banner__7FT39.GuidanceBlock-module_noMaxWidth__UCCUk {
|
|
4720
4833
|
max-width: inherit;
|
|
4721
4834
|
}
|
|
4722
4835
|
|
|
4723
|
-
.GuidanceBlock-
|
|
4836
|
+
.GuidanceBlock-module_banner__7FT39 {
|
|
4724
4837
|
--border-width: var(--border-width-1);
|
|
4838
|
+
--banner-padding: var(--spacing-lg);
|
|
4839
|
+
|
|
4725
4840
|
display: flex;
|
|
4726
4841
|
flex-direction: column;
|
|
4727
|
-
gap: var(--spacing-
|
|
4842
|
+
gap: var(--spacing-12);
|
|
4728
4843
|
min-width: 320px;
|
|
4729
|
-
max-width:
|
|
4844
|
+
max-width: var(--layout-breakpoints-large);
|
|
4730
4845
|
border: var(--border-width) var(--border-solid-border-style);
|
|
4731
|
-
border-radius: var(--border-solid-border-radius
|
|
4732
|
-
padding: calc(var(--
|
|
4733
|
-
box-shadow: var(--shadow-small-box-shadow
|
|
4846
|
+
border-radius: var(--border-solid-border-radius);
|
|
4847
|
+
padding: calc(var(--banner-padding) - var(--border-width));
|
|
4848
|
+
box-shadow: var(--shadow-small-box-shadow);
|
|
4734
4849
|
position: relative;
|
|
4735
4850
|
top: -1px;
|
|
4736
|
-
transition:
|
|
4737
|
-
|
|
4738
|
-
|
|
4739
|
-
|
|
4740
|
-
|
|
4741
|
-
|
|
4851
|
+
transition:
|
|
4852
|
+
opacity var(--animation-duration-slow) ease,
|
|
4853
|
+
margin-top var(--animation-duration-fast) var(--animation-duration-slow)
|
|
4854
|
+
ease;
|
|
4855
|
+
color: var(--color-purple-800);
|
|
4856
|
+
|
|
4857
|
+
@media (width >= 1024px) {
|
|
4858
|
+
min-height: calc(12rem - calc(var(--banner-padding) * 2));
|
|
4742
4859
|
flex-direction: row;
|
|
4743
|
-
gap: var(--spacing-
|
|
4860
|
+
gap: var(--spacing-24);
|
|
4744
4861
|
width: auto;
|
|
4745
4862
|
align-items: center;
|
|
4746
4863
|
}
|
|
4747
|
-
|
|
4748
|
-
@media (
|
|
4749
|
-
.GuidanceBlock-module_banner__FxKcd {
|
|
4864
|
+
|
|
4865
|
+
@media (width <= 767px) {
|
|
4750
4866
|
min-width: unset;
|
|
4751
4867
|
}
|
|
4752
4868
|
}
|
|
4753
4869
|
|
|
4754
|
-
.GuidanceBlock-
|
|
4870
|
+
.GuidanceBlock-module_illustrationWrapper__tK4Xr {
|
|
4755
4871
|
display: flex;
|
|
4756
|
-
|
|
4757
|
-
@media (
|
|
4758
|
-
.GuidanceBlock-module_illustrationWrapper__AEljX {
|
|
4872
|
+
|
|
4873
|
+
@media (768px <= width <= 1023px) {
|
|
4759
4874
|
text-align: center;
|
|
4760
4875
|
justify-content: center;
|
|
4761
4876
|
align-self: center;
|
|
4762
|
-
padding: var(--spacing-
|
|
4877
|
+
padding: var(--spacing-12);
|
|
4763
4878
|
}
|
|
4764
|
-
|
|
4765
|
-
@media (
|
|
4766
|
-
.GuidanceBlock-module_illustrationWrapper__AEljX {
|
|
4879
|
+
|
|
4880
|
+
@media (width <= 767px) {
|
|
4767
4881
|
display: none;
|
|
4768
4882
|
}
|
|
4769
4883
|
}
|
|
4770
4884
|
|
|
4771
|
-
.GuidanceBlock-
|
|
4772
|
-
|
|
4773
|
-
|
|
4774
|
-
|
|
4775
|
-
|
|
4776
|
-
|
|
4777
|
-
|
|
4778
|
-
|
|
4779
|
-
|
|
4780
|
-
|
|
4781
|
-
|
|
4782
|
-
|
|
4783
|
-
|
|
4784
|
-
|
|
4785
|
-
|
|
4786
|
-
|
|
4787
|
-
|
|
4788
|
-
|
|
4789
|
-
|
|
4790
|
-
|
|
4791
|
-
|
|
4885
|
+
.GuidanceBlock-module_illustration__LiDV3 {
|
|
4886
|
+
--illustration-size: 155px;
|
|
4887
|
+
--scene-illustration-size: 300px;
|
|
4888
|
+
|
|
4889
|
+
width: var(--illustration-size);
|
|
4890
|
+
height: var(--illustration-size);
|
|
4891
|
+
|
|
4892
|
+
/* This has been created to handle scene illustrations consistently until the tile component is created */
|
|
4893
|
+
.GuidanceBlock-module_hasSceneIllustration__eBOyt & {
|
|
4894
|
+
display: flex;
|
|
4895
|
+
justify-content: center;
|
|
4896
|
+
max-width: var(--scene-illustration-size);
|
|
4897
|
+
max-height: var(--scene-illustration-size);
|
|
4898
|
+
width: var(--scene-illustration-size);
|
|
4899
|
+
height: auto;
|
|
4900
|
+
|
|
4901
|
+
figure {
|
|
4902
|
+
max-height: 100%;
|
|
4903
|
+
max-width: 100%;
|
|
4904
|
+
aspect-ratio: 4/3;
|
|
4905
|
+
}
|
|
4906
|
+
|
|
4907
|
+
img {
|
|
4908
|
+
height: 100%;
|
|
4909
|
+
object-fit: contain;
|
|
4910
|
+
object-position: center;
|
|
4911
|
+
}
|
|
4912
|
+
}
|
|
4792
4913
|
}
|
|
4793
4914
|
|
|
4794
|
-
.GuidanceBlock-
|
|
4915
|
+
.GuidanceBlock-module_descriptionContainer__w1-P- {
|
|
4795
4916
|
flex: 1;
|
|
4796
4917
|
text-align: center;
|
|
4797
4918
|
align-self: center;
|
|
4798
4919
|
max-width: 780px;
|
|
4799
|
-
|
|
4800
|
-
@media (
|
|
4801
|
-
|
|
4802
|
-
padding: 0 var(--spacing-sm, 0.75rem);
|
|
4920
|
+
|
|
4921
|
+
@media (width >= 1024px) {
|
|
4922
|
+
padding: 0 var(--spacing-12);
|
|
4803
4923
|
text-align: left;
|
|
4804
4924
|
}
|
|
4805
|
-
|
|
4806
|
-
@media (
|
|
4807
|
-
|
|
4808
|
-
margin: var(--spacing-sm, 0.75rem);
|
|
4925
|
+
|
|
4926
|
+
@media (width <= 767px) {
|
|
4927
|
+
margin: var(--spacing-12);
|
|
4809
4928
|
max-width: 100%;
|
|
4810
4929
|
}
|
|
4811
|
-
|
|
4812
|
-
|
|
4813
|
-
|
|
4814
|
-
|
|
4815
|
-
|
|
4930
|
+
|
|
4931
|
+
[dir="rtl"] & {
|
|
4932
|
+
@media (width >= 1024px) {
|
|
4933
|
+
padding: 0 var(--spacing-12);
|
|
4934
|
+
text-align: right;
|
|
4935
|
+
}
|
|
4816
4936
|
}
|
|
4817
4937
|
}
|
|
4818
4938
|
|
|
4819
|
-
.GuidanceBlock-
|
|
4939
|
+
.GuidanceBlock-module_descriptionAndActions__aQhc9 {
|
|
4820
4940
|
display: flex;
|
|
4821
4941
|
flex: 1;
|
|
4822
4942
|
align-items: center;
|
|
4823
4943
|
justify-content: space-between;
|
|
4824
|
-
gap: var(--spacing-
|
|
4825
|
-
|
|
4826
|
-
@media (
|
|
4827
|
-
.GuidanceBlock-module_descriptionAndActions__E5BcL {
|
|
4944
|
+
gap: var(--spacing-24);
|
|
4945
|
+
|
|
4946
|
+
@media (width <= 1023px) {
|
|
4828
4947
|
flex-direction: column;
|
|
4829
4948
|
width: 100%;
|
|
4830
4949
|
align-items: unset;
|
|
4831
4950
|
}
|
|
4832
4951
|
}
|
|
4833
4952
|
|
|
4834
|
-
.GuidanceBlock-
|
|
4953
|
+
.GuidanceBlock-module_buttonContainer__bcVmB {
|
|
4835
4954
|
display: flex;
|
|
4836
4955
|
flex: 1 0 auto;
|
|
4837
4956
|
justify-content: center;
|
|
4838
4957
|
flex-direction: row-reverse;
|
|
4839
|
-
gap: var(--spacing-
|
|
4958
|
+
gap: var(--spacing-12);
|
|
4840
4959
|
min-width: max-content;
|
|
4841
|
-
|
|
4842
|
-
@media (
|
|
4843
|
-
.GuidanceBlock-module_buttonContainer__U2Hxn {
|
|
4960
|
+
|
|
4961
|
+
@media (width >= 768px) {
|
|
4844
4962
|
text-align: center;
|
|
4845
4963
|
}
|
|
4846
|
-
|
|
4847
|
-
@media (
|
|
4848
|
-
.GuidanceBlock-module_buttonContainer__U2Hxn {
|
|
4964
|
+
|
|
4965
|
+
@media (width <= 767px) {
|
|
4849
4966
|
flex-direction: column;
|
|
4850
4967
|
width: 100%;
|
|
4851
|
-
margin-top: var(--spacing-
|
|
4968
|
+
margin-top: var(--spacing-6);
|
|
4852
4969
|
}
|
|
4853
|
-
}
|
|
4854
|
-
[dir=rtl] .GuidanceBlock-module_buttonContainer__U2Hxn svg {
|
|
4855
|
-
transform: rotate(180deg);
|
|
4856
|
-
}
|
|
4857
4970
|
|
|
4858
|
-
|
|
4859
|
-
|
|
4860
|
-
|
|
4971
|
+
[dir="rtl"] & svg {
|
|
4972
|
+
transform: rotate(180deg);
|
|
4973
|
+
}
|
|
4861
4974
|
}
|
|
4862
4975
|
|
|
4863
|
-
.GuidanceBlock-
|
|
4864
|
-
|
|
4976
|
+
.GuidanceBlock-module_hidden__mwvrs {
|
|
4977
|
+
opacity: 0;
|
|
4978
|
+
margin-bottom: 0;
|
|
4865
4979
|
}
|
|
4866
4980
|
|
|
4867
|
-
.GuidanceBlock-
|
|
4868
|
-
|
|
4869
|
-
display: inline;
|
|
4870
|
-
background: transparent;
|
|
4871
|
-
color: inherit;
|
|
4872
|
-
font: inherit;
|
|
4873
|
-
margin: 0;
|
|
4874
|
-
padding: 0;
|
|
4875
|
-
border: none;
|
|
4876
|
-
cursor: pointer;
|
|
4877
|
-
position: absolute;
|
|
4878
|
-
top: var(--spacing-sm, 0.75rem);
|
|
4879
|
-
right: var(--spacing-sm, 0.75rem);
|
|
4880
|
-
color: var(--color-purple-800, #2f2438);
|
|
4881
|
-
}
|
|
4882
|
-
.GuidanceBlock-module_cancel__UaIA- .GuidanceBlock-module_icon__y2xz8 {
|
|
4883
|
-
opacity: 70%;
|
|
4884
|
-
transition: var(--animation-duration-fast, 300ms) opacity;
|
|
4885
|
-
}
|
|
4886
|
-
.GuidanceBlock-module_cancel__UaIA-:disabled .GuidanceBlock-module_icon__y2xz8, .GuidanceBlock-module_cancel__UaIA-.GuidanceBlock-module_disabled__Uhgsr .GuidanceBlock-module_icon__y2xz8 {
|
|
4887
|
-
opacity: 30%;
|
|
4888
|
-
}
|
|
4889
|
-
.GuidanceBlock-module_cancel__UaIA-:not(:disabled, .GuidanceBlock-module_disabled__Uhgsr):hover .GuidanceBlock-module_icon__y2xz8, .GuidanceBlock-module_cancel__UaIA-:not(:disabled, .GuidanceBlock-module_disabled__Uhgsr):focus .GuidanceBlock-module_icon__y2xz8, .GuidanceBlock-module_cancel__UaIA-:not(:disabled, .GuidanceBlock-module_disabled__Uhgsr).GuidanceBlock-module_hover__7V9x1 .GuidanceBlock-module_icon__y2xz8 {
|
|
4890
|
-
opacity: 100%;
|
|
4891
|
-
}
|
|
4892
|
-
.GuidanceBlock-module_cancel__UaIA-:not(:disabled, .GuidanceBlock-module_disabled__Uhgsr):active .GuidanceBlock-module_icon__y2xz8, .GuidanceBlock-module_cancel__UaIA-:not(:disabled, .GuidanceBlock-module_disabled__Uhgsr).GuidanceBlock-module_active__YJaZt .GuidanceBlock-module_icon__y2xz8 {
|
|
4893
|
-
opacity: 100%;
|
|
4981
|
+
.GuidanceBlock-module_headingWrapper__OfZB5 {
|
|
4982
|
+
margin-bottom: var(--spacing-24);
|
|
4894
4983
|
}
|
|
4895
4984
|
|
|
4896
|
-
.GuidanceBlock-
|
|
4985
|
+
.GuidanceBlock-module_default__7naG4 {
|
|
4897
4986
|
border-color: var(--color-gray-500);
|
|
4898
4987
|
background: var(--color-white);
|
|
4899
4988
|
}
|
|
4900
4989
|
|
|
4901
|
-
.GuidanceBlock-
|
|
4990
|
+
.GuidanceBlock-module_positive__iCp-1 {
|
|
4902
4991
|
border-color: var(--color-green-500);
|
|
4903
|
-
background: var(--color-green-100
|
|
4992
|
+
background: var(--color-green-100);
|
|
4904
4993
|
}
|
|
4905
4994
|
|
|
4906
|
-
.GuidanceBlock-
|
|
4907
|
-
.GuidanceBlock-
|
|
4995
|
+
.GuidanceBlock-module_negative__wWBlw,
|
|
4996
|
+
.GuidanceBlock-module_assertive__bNdnQ {
|
|
4908
4997
|
border-color: var(--color-red-500);
|
|
4909
|
-
background: var(--color-red-100
|
|
4998
|
+
background: var(--color-red-100);
|
|
4910
4999
|
}
|
|
4911
5000
|
|
|
4912
|
-
.GuidanceBlock-
|
|
5001
|
+
.GuidanceBlock-module_informative__KeJWO {
|
|
4913
5002
|
border-color: var(--color-blue-400);
|
|
4914
|
-
background: var(--color-blue-100
|
|
5003
|
+
background: var(--color-blue-100);
|
|
4915
5004
|
}
|
|
4916
5005
|
|
|
4917
|
-
.GuidanceBlock-
|
|
5006
|
+
.GuidanceBlock-module_cautionary__5Vkw6 {
|
|
4918
5007
|
border-color: var(--color-yellow-700);
|
|
4919
|
-
background: var(--color-yellow-100
|
|
5008
|
+
background: var(--color-yellow-100);
|
|
4920
5009
|
}
|
|
4921
5010
|
|
|
4922
|
-
.GuidanceBlock-
|
|
5011
|
+
.GuidanceBlock-module_prominent__rWTgt {
|
|
4923
5012
|
border-color: var(--color-purple-400);
|
|
4924
|
-
background: var(--color-purple-100
|
|
5013
|
+
background: var(--color-purple-100);
|
|
4925
5014
|
}
|
|
4926
5015
|
|
|
4927
|
-
.GuidanceBlock-
|
|
4928
|
-
.GuidanceBlock-
|
|
5016
|
+
.GuidanceBlock-module_inline__B-Ubr,
|
|
5017
|
+
.GuidanceBlock-module_stacked__4dS71 {
|
|
4929
5018
|
flex-flow: row wrap;
|
|
4930
5019
|
align-items: unset;
|
|
4931
|
-
gap: var(--spacing-
|
|
5020
|
+
gap: var(--spacing-24);
|
|
4932
5021
|
min-width: unset;
|
|
4933
|
-
|
|
4934
|
-
@media (
|
|
4935
|
-
.GuidanceBlock-module_inline__GwOWR,
|
|
4936
|
-
.GuidanceBlock-module_stacked__rDupX {
|
|
5022
|
+
|
|
5023
|
+
@media (width <= 1023px) {
|
|
4937
5024
|
flex-direction: unset;
|
|
4938
5025
|
}
|
|
4939
|
-
|
|
4940
|
-
.GuidanceBlock-
|
|
4941
|
-
|
|
4942
|
-
|
|
4943
|
-
|
|
4944
|
-
|
|
4945
|
-
|
|
4946
|
-
|
|
4947
|
-
|
|
4948
|
-
|
|
4949
|
-
|
|
4950
|
-
|
|
4951
|
-
|
|
4952
|
-
|
|
5026
|
+
|
|
5027
|
+
.GuidanceBlock-module_illustrationWrapper__tK4Xr {
|
|
5028
|
+
margin-right: var(--spacing-12);
|
|
5029
|
+
|
|
5030
|
+
[dir="rtl"] & {
|
|
5031
|
+
margin-left: var(--spacing-12);
|
|
5032
|
+
margin-right: inherit;
|
|
5033
|
+
}
|
|
5034
|
+
|
|
5035
|
+
@media (768px <= width <= 1023px) {
|
|
5036
|
+
padding: 0;
|
|
5037
|
+
}
|
|
5038
|
+
|
|
5039
|
+
@media (width <= 767px) {
|
|
5040
|
+
display: flex;
|
|
5041
|
+
}
|
|
4953
5042
|
}
|
|
4954
|
-
|
|
4955
|
-
|
|
4956
|
-
|
|
4957
|
-
.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_illustrationWrapper__AEljX {
|
|
4958
|
-
display: flex;
|
|
5043
|
+
|
|
5044
|
+
.GuidanceBlock-module_descriptionAndActions__aQhc9 {
|
|
5045
|
+
margin: auto 0;
|
|
4959
5046
|
}
|
|
4960
|
-
|
|
4961
|
-
.GuidanceBlock-
|
|
4962
|
-
|
|
4963
|
-
|
|
4964
|
-
|
|
4965
|
-
|
|
4966
|
-
|
|
4967
|
-
|
|
4968
|
-
|
|
4969
|
-
|
|
4970
|
-
|
|
4971
|
-
|
|
4972
|
-
|
|
4973
|
-
|
|
4974
|
-
|
|
5047
|
+
|
|
5048
|
+
.GuidanceBlock-module_descriptionContainer__w1-P- {
|
|
5049
|
+
text-align: left;
|
|
5050
|
+
max-width: unset;
|
|
5051
|
+
min-width: 320px;
|
|
5052
|
+
|
|
5053
|
+
@media (width >= 1024px) {
|
|
5054
|
+
padding: 0;
|
|
5055
|
+
}
|
|
5056
|
+
|
|
5057
|
+
@media (width <= 767px) {
|
|
5058
|
+
margin: 0;
|
|
5059
|
+
}
|
|
5060
|
+
|
|
5061
|
+
[dir="rtl"] & {
|
|
5062
|
+
text-align: right;
|
|
5063
|
+
|
|
5064
|
+
@media (width >= 1024px) {
|
|
5065
|
+
padding: 0;
|
|
5066
|
+
}
|
|
5067
|
+
}
|
|
4975
5068
|
}
|
|
4976
|
-
|
|
4977
|
-
|
|
4978
|
-
|
|
4979
|
-
|
|
4980
|
-
|
|
5069
|
+
|
|
5070
|
+
.GuidanceBlock-module_buttonContainer__bcVmB {
|
|
5071
|
+
padding-left: var(--spacing-12);
|
|
5072
|
+
justify-content: flex-start;
|
|
5073
|
+
width: unset;
|
|
5074
|
+
min-width: unset;
|
|
5075
|
+
|
|
5076
|
+
@media (width <= 767px) {
|
|
5077
|
+
flex-direction: row-reverse;
|
|
5078
|
+
}
|
|
5079
|
+
|
|
5080
|
+
[dir="rtl"] & {
|
|
5081
|
+
padding-left: 0;
|
|
5082
|
+
padding-right: var(--spacing-12);
|
|
5083
|
+
}
|
|
5084
|
+
|
|
5085
|
+
> * {
|
|
5086
|
+
width: unset;
|
|
5087
|
+
}
|
|
4981
5088
|
}
|
|
4982
|
-
|
|
4983
|
-
|
|
4984
|
-
|
|
4985
|
-
text-align: right;
|
|
4986
|
-
}
|
|
4987
|
-
@media (min-width: 1024px) {
|
|
4988
|
-
[dir=rtl] .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_descriptionContainer__aywtY,
|
|
4989
|
-
[dir=rtl] .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_descriptionContainer__aywtY {
|
|
4990
|
-
padding: 0;
|
|
5089
|
+
|
|
5090
|
+
&.GuidanceBlock-module_hasSceneIllustration__eBOyt {
|
|
5091
|
+
justify-content: center;
|
|
4991
5092
|
}
|
|
4992
|
-
|
|
4993
|
-
|
|
4994
|
-
|
|
4995
|
-
|
|
4996
|
-
|
|
4997
|
-
|
|
4998
|
-
|
|
4999
|
-
|
|
5000
|
-
|
|
5001
|
-
|
|
5002
|
-
|
|
5003
|
-
|
|
5093
|
+
|
|
5094
|
+
&.GuidanceBlock-module_centerContent__9Vlup {
|
|
5095
|
+
flex-direction: column;
|
|
5096
|
+
|
|
5097
|
+
&.GuidanceBlock-module_hasSceneIllustration__eBOyt .GuidanceBlock-module_illustration__LiDV3 {
|
|
5098
|
+
width: 100%;
|
|
5099
|
+
}
|
|
5100
|
+
|
|
5101
|
+
.GuidanceBlock-module_illustrationWrapper__tK4Xr {
|
|
5102
|
+
margin: 0 auto;
|
|
5103
|
+
align-self: center;
|
|
5104
|
+
}
|
|
5105
|
+
|
|
5106
|
+
.GuidanceBlock-module_descriptionContainer__w1-P- {
|
|
5107
|
+
text-align: center;
|
|
5108
|
+
min-width: unset;
|
|
5109
|
+
|
|
5110
|
+
[dir="rtl"] & {
|
|
5111
|
+
text-align: center;
|
|
5112
|
+
}
|
|
5113
|
+
}
|
|
5114
|
+
|
|
5115
|
+
.GuidanceBlock-module_buttonContainer__bcVmB {
|
|
5116
|
+
padding: 0;
|
|
5117
|
+
flex-direction: column;
|
|
5118
|
+
min-width: unset;
|
|
5119
|
+
justify-content: center;
|
|
5120
|
+
}
|
|
5121
|
+
}
|
|
5122
|
+
|
|
5123
|
+
&.GuidanceBlock-module_centerContent__9Vlup.GuidanceBlock-module_smallScreenTextAlignment__-UXo9 {
|
|
5124
|
+
.GuidanceBlock-module_descriptionContainer__w1-P- {
|
|
5125
|
+
text-align: left;
|
|
5126
|
+
|
|
5127
|
+
[dir="rtl"] & {
|
|
5128
|
+
text-align: right;
|
|
5129
|
+
}
|
|
5130
|
+
}
|
|
5004
5131
|
}
|
|
5005
|
-
}
|
|
5006
|
-
[dir=rtl] .GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_buttonContainer__U2Hxn,
|
|
5007
|
-
[dir=rtl] .GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_buttonContainer__U2Hxn {
|
|
5008
|
-
padding-left: 0;
|
|
5009
|
-
padding-right: var(--spacing-sm, 0.75rem);
|
|
5010
|
-
}
|
|
5011
|
-
.GuidanceBlock-module_inline__GwOWR .GuidanceBlock-module_buttonContainer__U2Hxn > *,
|
|
5012
|
-
.GuidanceBlock-module_stacked__rDupX .GuidanceBlock-module_buttonContainer__U2Hxn > * {
|
|
5013
|
-
width: unset;
|
|
5014
|
-
}
|
|
5015
|
-
.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_hasSceneIllustration__tvFRD,
|
|
5016
|
-
.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_hasSceneIllustration__tvFRD {
|
|
5017
|
-
justify-content: center;
|
|
5018
|
-
}
|
|
5019
|
-
.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB,
|
|
5020
|
-
.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB {
|
|
5021
|
-
flex-direction: column;
|
|
5022
|
-
}
|
|
5023
|
-
.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_hasSceneIllustration__tvFRD .GuidanceBlock-module_illustration__sU1Vu,
|
|
5024
|
-
.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_hasSceneIllustration__tvFRD .GuidanceBlock-module_illustration__sU1Vu {
|
|
5025
|
-
width: 100%;
|
|
5026
|
-
}
|
|
5027
|
-
.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_illustrationWrapper__AEljX,
|
|
5028
|
-
.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_illustrationWrapper__AEljX {
|
|
5029
|
-
margin: 0 auto;
|
|
5030
|
-
align-self: center;
|
|
5031
|
-
}
|
|
5032
|
-
.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_descriptionContainer__aywtY,
|
|
5033
|
-
.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_descriptionContainer__aywtY {
|
|
5034
|
-
text-align: center;
|
|
5035
|
-
min-width: unset;
|
|
5036
|
-
}
|
|
5037
|
-
[dir=rtl] .GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_descriptionContainer__aywtY,
|
|
5038
|
-
[dir=rtl] .GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_descriptionContainer__aywtY {
|
|
5039
|
-
text-align: center;
|
|
5040
|
-
}
|
|
5041
|
-
.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_buttonContainer__U2Hxn,
|
|
5042
|
-
.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB .GuidanceBlock-module_buttonContainer__U2Hxn {
|
|
5043
|
-
padding: 0;
|
|
5044
|
-
flex-direction: column;
|
|
5045
|
-
min-width: unset;
|
|
5046
|
-
justify-content: center;
|
|
5047
|
-
}
|
|
5048
|
-
.GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_smallScreenTextAlignment__oWufj .GuidanceBlock-module_descriptionContainer__aywtY,
|
|
5049
|
-
.GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_smallScreenTextAlignment__oWufj .GuidanceBlock-module_descriptionContainer__aywtY {
|
|
5050
|
-
text-align: left;
|
|
5051
|
-
}
|
|
5052
|
-
[dir=rtl] .GuidanceBlock-module_inline__GwOWR.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_smallScreenTextAlignment__oWufj .GuidanceBlock-module_descriptionContainer__aywtY,
|
|
5053
|
-
[dir=rtl] .GuidanceBlock-module_stacked__rDupX.GuidanceBlock-module_centerContent__m3IhB.GuidanceBlock-module_smallScreenTextAlignment__oWufj .GuidanceBlock-module_descriptionContainer__aywtY {
|
|
5054
|
-
text-align: right;
|
|
5055
5132
|
}
|
|
5056
5133
|
|
|
5057
5134
|
/* stylelint-disable no-descending-specificity */
|
|
5058
|
-
.GuidanceBlock-
|
|
5059
|
-
|
|
5060
|
-
|
|
5061
|
-
|
|
5062
|
-
|
|
5063
|
-
align-self: flex-start;
|
|
5064
|
-
}
|
|
5135
|
+
.GuidanceBlock-module_stacked__4dS71 {
|
|
5136
|
+
.GuidanceBlock-module_descriptionAndActions__aQhc9 {
|
|
5137
|
+
flex-direction: column;
|
|
5138
|
+
align-items: unset;
|
|
5139
|
+
}
|
|
5065
5140
|
|
|
5141
|
+
.GuidanceBlock-module_descriptionContainer__w1-P- {
|
|
5142
|
+
align-self: flex-start;
|
|
5143
|
+
}
|
|
5144
|
+
}
|
|
5066
5145
|
/* stylelint-enable no-descending-specificity */
|
|
5146
|
+
|
|
5067
5147
|
.SVG-module_icon__8J5Ev {
|
|
5068
5148
|
width: 20px;
|
|
5069
5149
|
height: 20px;
|