@kaizen/components 2.0.6 → 2.1.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/cjs/src/RichTextEditor/utils/core/hooks/useRichTextEditor.cjs +17 -20
- package/dist/cjs/src/__alpha__/SingleSelect/subcomponents/ComboBoxTrigger/ComboBoxTrigger.cjs +3 -3
- package/dist/esm/src/RichTextEditor/utils/core/hooks/useRichTextEditor.mjs +18 -21
- package/dist/esm/src/__alpha__/SingleSelect/subcomponents/ComboBoxTrigger/ComboBoxTrigger.mjs +3 -3
- package/dist/styles.css +57 -53
- package/locales/ar.json +3 -3
- package/locales/bg.json +3 -3
- package/locales/cs.json +3 -3
- package/locales/cy.json +3 -3
- package/locales/da.json +3 -3
- package/locales/de.json +3 -3
- package/locales/el.json +3 -3
- package/locales/en-GB.json +3 -3
- package/locales/en.json +3 -3
- package/locales/es-419.json +3 -3
- package/locales/es.json +3 -3
- package/locales/et.json +3 -3
- package/locales/fi.json +3 -3
- package/locales/fr-CA.json +3 -3
- package/locales/fr.json +3 -3
- package/locales/he.json +3 -3
- package/locales/hi.json +3 -3
- package/locales/ht.json +3 -3
- package/locales/hu.json +3 -3
- package/locales/id.json +3 -3
- package/locales/it.json +3 -3
- package/locales/ja.json +3 -3
- package/locales/km-KH.json +3 -3
- package/locales/ko.json +3 -3
- package/locales/lt.json +3 -3
- package/locales/lv.json +3 -3
- package/locales/mi.json +3 -3
- package/locales/ms.json +3 -3
- package/locales/nb.json +3 -3
- package/locales/nl.json +4 -4
- package/locales/pl.json +3 -3
- package/locales/pt-BR.json +3 -3
- package/locales/pt.json +3 -3
- package/locales/ro.json +3 -3
- package/locales/ru.json +3 -3
- package/locales/si-LK.json +3 -3
- package/locales/sk.json +2 -2
- package/locales/sr.json +3 -3
- package/locales/sv.json +3 -3
- package/locales/th.json +3 -3
- package/locales/tl.json +3 -3
- package/locales/tr.json +3 -3
- package/locales/uk.json +3 -3
- package/locales/vi.json +3 -3
- package/locales/zh-TW.json +3 -3
- package/locales/zh.json +3 -3
- package/package.json +1 -1
- package/src/RichTextEditor/utils/core/hooks/useRichTextEditor.spec.tsx +11 -0
- package/src/RichTextEditor/utils/core/hooks/useRichTextEditor.ts +17 -21
- package/src/TitleBlock/TitleBlock.module.scss +13 -8
- package/src/TitleBlock/_docs/{TitkeBlock--usage-guidelines.mdx → TitleBlock--usage-guidelines.mdx} +9 -1
- package/src/TitleBlock/_docs/TitleBlock.stories.tsx +71 -0
- package/src/TitleBlock/_mixins.scss +6 -6
- package/src/TitleBlock/subcomponents/NavigationTabs.module.scss +0 -1
- package/src/__alpha__/SingleSelect/_docs/SingleSelect.spec.stories.tsx +1 -1
- package/src/__alpha__/SingleSelect/subcomponents/ComboBoxTrigger/ComboBoxTrigger.tsx +4 -3
|
@@ -48,33 +48,30 @@ attributes, options) {
|
|
|
48
48
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
49
49
|
[editableStatusRef]);
|
|
50
50
|
var editorRef = React.useCallback(function (node) {
|
|
51
|
-
if (node
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
return editableStatusRef.current;
|
|
58
|
-
},
|
|
59
|
-
attributes: attributes
|
|
60
|
-
});
|
|
61
|
-
destroyEditorRef.current = instance.destroy;
|
|
62
|
-
dispatchTransactionRef.current = instance.dispatchTransaction;
|
|
51
|
+
if (node === null) {
|
|
52
|
+
if (destroyEditorRef.current) {
|
|
53
|
+
destroyEditorRef.current();
|
|
54
|
+
destroyEditorRef.current = undefined;
|
|
55
|
+
}
|
|
56
|
+
return;
|
|
63
57
|
}
|
|
58
|
+
var instance = createRichTextEditor.createRichTextEditor({
|
|
59
|
+
node: node,
|
|
60
|
+
initialEditorState: editorState,
|
|
61
|
+
onChange: setEditorState,
|
|
62
|
+
isEditable: function () {
|
|
63
|
+
return editableStatusRef.current;
|
|
64
|
+
},
|
|
65
|
+
attributes: attributes
|
|
66
|
+
});
|
|
67
|
+
destroyEditorRef.current = instance.destroy;
|
|
68
|
+
dispatchTransactionRef.current = instance.dispatchTransaction;
|
|
64
69
|
},
|
|
65
70
|
// Including editorState in the dependencies here will cause an endless
|
|
66
71
|
// loop as the initialization changes its value
|
|
67
72
|
// @todo: Fix if possible - avoiding breaking in eslint upgrade
|
|
68
73
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
69
74
|
[setEditorState, editableStatusRef]);
|
|
70
|
-
// Tear down ProseMirror when the consuming component is unmounted
|
|
71
|
-
React.useEffect(function () {
|
|
72
|
-
return function () {
|
|
73
|
-
if (destroyEditorRef.current) {
|
|
74
|
-
destroyEditorRef.current();
|
|
75
|
-
}
|
|
76
|
-
};
|
|
77
|
-
}, [destroyEditorRef]);
|
|
78
75
|
return [editorRef, editorState, dispatchTransaction, setEditableStatus];
|
|
79
76
|
};
|
|
80
77
|
exports.useRichTextEditor = useRichTextEditor;
|
package/dist/cjs/src/__alpha__/SingleSelect/subcomponents/ComboBoxTrigger/ComboBoxTrigger.cjs
CHANGED
|
@@ -26,9 +26,9 @@ var ClearButton = function (_a) {
|
|
|
26
26
|
fieldLabel = _c.fieldLabel;
|
|
27
27
|
var formatMessage = i18nReactIntl.useIntl().formatMessage;
|
|
28
28
|
var clearButtonAlt = formatMessage({
|
|
29
|
-
id: 'singleSelect.
|
|
30
|
-
defaultMessage: 'Clear {field}
|
|
31
|
-
description: 'Alt text for the clear selection button'
|
|
29
|
+
id: 'singleSelect.clearButtonAlt_v2',
|
|
30
|
+
defaultMessage: 'Clear selection: {field}',
|
|
31
|
+
description: 'Alt text for the clear selection button. The button clears the selection the user has made via a dropdown. The field placeholder is the label of the dropdown.'
|
|
32
32
|
}, {
|
|
33
33
|
field: fieldLabel
|
|
34
34
|
});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { __assign } from 'tslib';
|
|
2
|
-
import { useState, useRef, useCallback
|
|
2
|
+
import { useState, useRef, useCallback } from 'react';
|
|
3
3
|
import { createRichTextEditor } from '../createRichTextEditor.mjs';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -46,33 +46,30 @@ attributes, options) {
|
|
|
46
46
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
47
47
|
[editableStatusRef]);
|
|
48
48
|
var editorRef = useCallback(function (node) {
|
|
49
|
-
if (node
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
return editableStatusRef.current;
|
|
56
|
-
},
|
|
57
|
-
attributes: attributes
|
|
58
|
-
});
|
|
59
|
-
destroyEditorRef.current = instance.destroy;
|
|
60
|
-
dispatchTransactionRef.current = instance.dispatchTransaction;
|
|
49
|
+
if (node === null) {
|
|
50
|
+
if (destroyEditorRef.current) {
|
|
51
|
+
destroyEditorRef.current();
|
|
52
|
+
destroyEditorRef.current = undefined;
|
|
53
|
+
}
|
|
54
|
+
return;
|
|
61
55
|
}
|
|
56
|
+
var instance = createRichTextEditor({
|
|
57
|
+
node: node,
|
|
58
|
+
initialEditorState: editorState,
|
|
59
|
+
onChange: setEditorState,
|
|
60
|
+
isEditable: function () {
|
|
61
|
+
return editableStatusRef.current;
|
|
62
|
+
},
|
|
63
|
+
attributes: attributes
|
|
64
|
+
});
|
|
65
|
+
destroyEditorRef.current = instance.destroy;
|
|
66
|
+
dispatchTransactionRef.current = instance.dispatchTransaction;
|
|
62
67
|
},
|
|
63
68
|
// Including editorState in the dependencies here will cause an endless
|
|
64
69
|
// loop as the initialization changes its value
|
|
65
70
|
// @todo: Fix if possible - avoiding breaking in eslint upgrade
|
|
66
71
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
67
72
|
[setEditorState, editableStatusRef]);
|
|
68
|
-
// Tear down ProseMirror when the consuming component is unmounted
|
|
69
|
-
useEffect(function () {
|
|
70
|
-
return function () {
|
|
71
|
-
if (destroyEditorRef.current) {
|
|
72
|
-
destroyEditorRef.current();
|
|
73
|
-
}
|
|
74
|
-
};
|
|
75
|
-
}, [destroyEditorRef]);
|
|
76
73
|
return [editorRef, editorState, dispatchTransaction, setEditableStatus];
|
|
77
74
|
};
|
|
78
75
|
export { useRichTextEditor };
|
package/dist/esm/src/__alpha__/SingleSelect/subcomponents/ComboBoxTrigger/ComboBoxTrigger.mjs
CHANGED
|
@@ -17,9 +17,9 @@ var ClearButton = function (_a) {
|
|
|
17
17
|
fieldLabel = _c.fieldLabel;
|
|
18
18
|
var formatMessage = useIntl().formatMessage;
|
|
19
19
|
var clearButtonAlt = formatMessage({
|
|
20
|
-
id: 'singleSelect.
|
|
21
|
-
defaultMessage: 'Clear {field}
|
|
22
|
-
description: 'Alt text for the clear selection button'
|
|
20
|
+
id: 'singleSelect.clearButtonAlt_v2',
|
|
21
|
+
defaultMessage: 'Clear selection: {field}',
|
|
22
|
+
description: 'Alt text for the clear selection button. The button clears the selection the user has made via a dropdown. The field placeholder is the label of the dropdown.'
|
|
23
23
|
}, {
|
|
24
24
|
field: fieldLabel
|
|
25
25
|
});
|
package/dist/styles.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@layer tokens, normalize, reset, kz-components;@layer tokens{:root{--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:auto}[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:auto;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}}
|
|
1
|
+
@layer tokens, normalize, reset, kz-components;@layer tokens{:root{--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:auto}[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:auto;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}body{container-type:inline-size;min-height:100vh}}
|
|
2
2
|
@layer kz-components {
|
|
3
3
|
/*
|
|
4
4
|
* This is taken from the Material Symbols CDN
|
|
@@ -9950,7 +9950,7 @@
|
|
|
9950
9950
|
.Toolbar-module_toolbar__8T-NB .Toolbar-module_toolbarItem__-l3QZ {
|
|
9951
9951
|
margin: 0 calc(1.5rem / 4);
|
|
9952
9952
|
}
|
|
9953
|
-
@
|
|
9953
|
+
@container (max-width: 1023px) {
|
|
9954
9954
|
.Toolbar-module_toolbar__8T-NB .Toolbar-module_toolbarItem__-l3QZ {
|
|
9955
9955
|
margin: 0 calc(1.5rem / 8);
|
|
9956
9956
|
}
|
|
@@ -9962,7 +9962,7 @@
|
|
|
9962
9962
|
margin-inline-end: calc(1.5rem / 4);
|
|
9963
9963
|
margin-inline-start: 0;
|
|
9964
9964
|
}
|
|
9965
|
-
@
|
|
9965
|
+
@container (max-width: 1023px) {
|
|
9966
9966
|
.Toolbar-module_toolbar__8T-NB .Toolbar-module_toolbarItem__-l3QZ:first-of-type {
|
|
9967
9967
|
margin-inline-end: calc(1.5rem / 8);
|
|
9968
9968
|
margin-inline-start: 0;
|
|
@@ -9975,7 +9975,7 @@
|
|
|
9975
9975
|
margin-inline-end: 0;
|
|
9976
9976
|
margin-inline-start: calc(1.5rem / 4);
|
|
9977
9977
|
}
|
|
9978
|
-
@
|
|
9978
|
+
@container (max-width: 1023px) {
|
|
9979
9979
|
.Toolbar-module_toolbar__8T-NB .Toolbar-module_toolbarItem__-l3QZ:last-of-type {
|
|
9980
9980
|
margin-inline-end: 0;
|
|
9981
9981
|
margin-inline-start: calc(1.5rem / 8);
|
|
@@ -10010,7 +10010,7 @@
|
|
|
10010
10010
|
margin-inline-end: 0;
|
|
10011
10011
|
margin-inline-start: calc(1.5rem / 2);
|
|
10012
10012
|
}
|
|
10013
|
-
@
|
|
10013
|
+
@container (max-width: calc(768px - 1px)) {
|
|
10014
10014
|
.MainActions-module_mainActionsContainer__pk-78 {
|
|
10015
10015
|
display: none;
|
|
10016
10016
|
}
|
|
@@ -10061,7 +10061,7 @@
|
|
|
10061
10061
|
.MobileActions-module_mobileActionsContainer__XoepA.MobileActions-module_isOpen__D40v5 .MobileActions-module_mobileActionsMenuContainer__x--Eb {
|
|
10062
10062
|
visibility: visible;
|
|
10063
10063
|
}
|
|
10064
|
-
@
|
|
10064
|
+
@container (max-width: calc(768px - 1px)) {
|
|
10065
10065
|
.MobileActions-module_mobileActionsContainer__XoepA {
|
|
10066
10066
|
display: flex;
|
|
10067
10067
|
}
|
|
@@ -10256,6 +10256,7 @@
|
|
|
10256
10256
|
}
|
|
10257
10257
|
.TitleBlock-module_adminVariant__s95nS .TitleBlock-module_titleRow__Ifqiu {
|
|
10258
10258
|
background-color: var(--color-white, #ffffff);
|
|
10259
|
+
margin-bottom: 3px;
|
|
10259
10260
|
}
|
|
10260
10261
|
.TitleBlock-module_rowBelowSeparatorInner__3gNec, .TitleBlock-module_titleRowInner__SlArS {
|
|
10261
10262
|
max-width: 1392px;
|
|
@@ -10265,7 +10266,7 @@
|
|
|
10265
10266
|
width: 100%;
|
|
10266
10267
|
min-width: 0;
|
|
10267
10268
|
}
|
|
10268
|
-
@
|
|
10269
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10269
10270
|
.TitleBlock-module_rowBelowSeparatorInner__3gNec, .TitleBlock-module_titleRowInner__SlArS {
|
|
10270
10271
|
margin: 0 12px;
|
|
10271
10272
|
}
|
|
@@ -10285,7 +10286,7 @@
|
|
|
10285
10286
|
.TitleBlock-module_adminVariant__s95nS .TitleBlock-module_titleRowInnerContent__NhTHV, .TitleBlock-module_collapseNavigationArea__x9hzQ .TitleBlock-module_titleRowInnerContent__NhTHV {
|
|
10286
10287
|
border-bottom-color: transparent;
|
|
10287
10288
|
}
|
|
10288
|
-
@
|
|
10289
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10289
10290
|
.TitleBlock-module_titleRowInnerContent__NhTHV {
|
|
10290
10291
|
border-bottom: none;
|
|
10291
10292
|
}
|
|
@@ -10295,7 +10296,7 @@
|
|
|
10295
10296
|
align-items: center;
|
|
10296
10297
|
min-width: 0;
|
|
10297
10298
|
}
|
|
10298
|
-
@
|
|
10299
|
+
@container (max-width: 1365px) {
|
|
10299
10300
|
.TitleBlock-module_title__c5JWR {
|
|
10300
10301
|
width: 100%;
|
|
10301
10302
|
}
|
|
@@ -10306,7 +10307,7 @@
|
|
|
10306
10307
|
min-width: 0;
|
|
10307
10308
|
transform: translateY(-0.0833em);
|
|
10308
10309
|
}
|
|
10309
|
-
@
|
|
10310
|
+
@container (max-width: 1365px) {
|
|
10310
10311
|
.TitleBlock-module_hasSubtitle__DQWKd .TitleBlock-module_titleAndSubtitle__-kLSn {
|
|
10311
10312
|
transform: translateY(-0.3833em);
|
|
10312
10313
|
}
|
|
@@ -10318,12 +10319,12 @@
|
|
|
10318
10319
|
.TitleBlock-module_hasSubtitle__DQWKd.TitleBlock-module_hasLongTitle__L-6FV.TitleBlock-module_hasLongSubtitle__ZVMVl .TitleBlock-module_titleAndSubtitleInner__TX8xw {
|
|
10319
10320
|
align-items: center;
|
|
10320
10321
|
}
|
|
10321
|
-
@
|
|
10322
|
+
@container (max-width: 1365px) {
|
|
10322
10323
|
.TitleBlock-module_hasSubtitle__DQWKd.TitleBlock-module_hasLongTitle__L-6FV.TitleBlock-module_hasLongSubtitle__ZVMVl .TitleBlock-module_titleAndSubtitleInner__TX8xw {
|
|
10323
10324
|
align-items: baseline;
|
|
10324
10325
|
}
|
|
10325
10326
|
}
|
|
10326
|
-
@
|
|
10327
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10327
10328
|
.TitleBlock-module_hasPageSwitcherSelect__p5sDo .TitleBlock-module_titleAndSubtitleInner__TX8xw {
|
|
10328
10329
|
align-items: normal;
|
|
10329
10330
|
flex-direction: column;
|
|
@@ -10335,7 +10336,7 @@
|
|
|
10335
10336
|
align-items: baseline;
|
|
10336
10337
|
overflow: hidden;
|
|
10337
10338
|
}
|
|
10338
|
-
@
|
|
10339
|
+
@container (max-width: 1365px) {
|
|
10339
10340
|
.TitleBlock-module_hasSubtitle__DQWKd .TitleBlock-module_titleAndSubtitleInner__TX8xw {
|
|
10340
10341
|
align-items: normal;
|
|
10341
10342
|
flex-direction: column;
|
|
@@ -10346,7 +10347,7 @@
|
|
|
10346
10347
|
align-items: baseline;
|
|
10347
10348
|
}
|
|
10348
10349
|
}
|
|
10349
|
-
@
|
|
10350
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10350
10351
|
.TitleBlock-module_hasSubtitle__DQWKd .TitleBlock-module_titleAndSubtitleInner__TX8xw {
|
|
10351
10352
|
transform: translateY(calc(1.5rem / 2));
|
|
10352
10353
|
}
|
|
@@ -10354,7 +10355,7 @@
|
|
|
10354
10355
|
.TitleBlock-module_titleTextOverride__VhhQU.TitleBlock-module_titleTextOverride__VhhQU {
|
|
10355
10356
|
padding: 4px 0;
|
|
10356
10357
|
}
|
|
10357
|
-
@
|
|
10358
|
+
@container (max-width: 1365px) {
|
|
10358
10359
|
.TitleBlock-module_titleTextOverride__VhhQU.TitleBlock-module_titleTextOverride__VhhQU {
|
|
10359
10360
|
font-size: var(--typography-heading-2-font-size, 1.75rem);
|
|
10360
10361
|
line-height: var(--typography-heading-2-line-height, 2.25rem);
|
|
@@ -10362,7 +10363,7 @@
|
|
|
10362
10363
|
padding: 2px 0;
|
|
10363
10364
|
}
|
|
10364
10365
|
}
|
|
10365
|
-
@
|
|
10366
|
+
@container (max-width: 1365px) {
|
|
10366
10367
|
.TitleBlock-module_hasLongTitle__L-6FV .TitleBlock-module_titleTextOverride__VhhQU.TitleBlock-module_titleTextOverride__VhhQU {
|
|
10367
10368
|
font-size: var(--typography-heading-3-font-size, 1.375rem);
|
|
10368
10369
|
line-height: var(--typography-heading-3-line-height, 1.875rem);
|
|
@@ -10370,7 +10371,7 @@
|
|
|
10370
10371
|
padding: 2px 0;
|
|
10371
10372
|
}
|
|
10372
10373
|
}
|
|
10373
|
-
@
|
|
10374
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10374
10375
|
.TitleBlock-module_titleTextOverride__VhhQU.TitleBlock-module_titleTextOverride__VhhQU {
|
|
10375
10376
|
font-size: var(--typography-heading-4-font-size, 1.125rem);
|
|
10376
10377
|
line-height: var(--typography-heading-4-line-height, 1.5rem);
|
|
@@ -10390,7 +10391,7 @@
|
|
|
10390
10391
|
.TitleBlock-module_avatar__mEjJ8 > * {
|
|
10391
10392
|
max-width: 100%;
|
|
10392
10393
|
}
|
|
10393
|
-
@
|
|
10394
|
+
@container (min-width: 1080px) {
|
|
10394
10395
|
.TitleBlock-module_avatar__mEjJ8 {
|
|
10395
10396
|
display: block;
|
|
10396
10397
|
}
|
|
@@ -10407,7 +10408,7 @@
|
|
|
10407
10408
|
margin-inline-end: var(--spacing-xs, 0.375rem);
|
|
10408
10409
|
margin-inline-start: 0;
|
|
10409
10410
|
}
|
|
10410
|
-
@
|
|
10411
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10411
10412
|
.TitleBlock-module_hamburger__qe4R0 {
|
|
10412
10413
|
display: flex;
|
|
10413
10414
|
align-items: center;
|
|
@@ -10428,7 +10429,7 @@
|
|
|
10428
10429
|
.TitleBlock-module_adminVariant__s95nS .TitleBlock-module_subtitle__AI9tj {
|
|
10429
10430
|
color: var(--color-purple-800, #2f2438);
|
|
10430
10431
|
}
|
|
10431
|
-
@
|
|
10432
|
+
@container (max-width: 1365px) {
|
|
10432
10433
|
.TitleBlock-module_subtitle__AI9tj {
|
|
10433
10434
|
white-space: nowrap;
|
|
10434
10435
|
text-overflow: ellipsis;
|
|
@@ -10437,7 +10438,7 @@
|
|
|
10437
10438
|
margin: calc(1.5rem / 5) 0;
|
|
10438
10439
|
}
|
|
10439
10440
|
}
|
|
10440
|
-
@
|
|
10441
|
+
@container (max-width: 1365px) {
|
|
10441
10442
|
.TitleBlock-module_subtitleText__gpXET {
|
|
10442
10443
|
max-width: 42vw;
|
|
10443
10444
|
white-space: nowrap;
|
|
@@ -10445,7 +10446,7 @@
|
|
|
10445
10446
|
overflow: hidden;
|
|
10446
10447
|
}
|
|
10447
10448
|
}
|
|
10448
|
-
@
|
|
10449
|
+
@container (max-width: calc(768px - 1px)) {
|
|
10449
10450
|
.TitleBlock-module_subtitleText__gpXET {
|
|
10450
10451
|
max-width: 88vw;
|
|
10451
10452
|
}
|
|
@@ -10468,7 +10469,7 @@
|
|
|
10468
10469
|
line-height: var(--typography-heading-2-line-height, 2.25rem);
|
|
10469
10470
|
letter-spacing: var(--typography-heading-2-letter-spacing, normal);
|
|
10470
10471
|
}
|
|
10471
|
-
@
|
|
10472
|
+
@container (max-width: 1644px) {
|
|
10472
10473
|
.TitleBlock-module_sectionTitleOverride__XcD8g.TitleBlock-module_sectionTitleOverride__XcD8g {
|
|
10473
10474
|
font-family: var(--typography-heading-3-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
10474
10475
|
font-weight: var(--typography-heading-3-font-weight, 600);
|
|
@@ -10477,7 +10478,7 @@
|
|
|
10477
10478
|
letter-spacing: var(--typography-heading-3-letter-spacing, normal);
|
|
10478
10479
|
}
|
|
10479
10480
|
}
|
|
10480
|
-
@
|
|
10481
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10481
10482
|
.TitleBlock-module_sectionTitleOverride__XcD8g.TitleBlock-module_sectionTitleOverride__XcD8g {
|
|
10482
10483
|
font-family: var(--typography-heading-4-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
10483
10484
|
font-weight: var(--typography-heading-4-font-weight, 600);
|
|
@@ -10528,7 +10529,7 @@
|
|
|
10528
10529
|
align-items: center;
|
|
10529
10530
|
margin-inline: var(--spacing-12) 0;
|
|
10530
10531
|
}
|
|
10531
|
-
@
|
|
10532
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10532
10533
|
.TitleBlock-module_tag__GDzmQ {
|
|
10533
10534
|
display: none;
|
|
10534
10535
|
}
|
|
@@ -10548,7 +10549,7 @@
|
|
|
10548
10549
|
.TitleBlock-module_navigationTabsContainer__aLbT3 {
|
|
10549
10550
|
height: 4.5rem;
|
|
10550
10551
|
}
|
|
10551
|
-
@
|
|
10552
|
+
@container (max-width: calc(768px - 1px)) {
|
|
10552
10553
|
.TitleBlock-module_navigationTabsContainer__aLbT3 {
|
|
10553
10554
|
height: 3.75rem;
|
|
10554
10555
|
}
|
|
@@ -10556,12 +10557,12 @@
|
|
|
10556
10557
|
.TitleBlock-module_navigationTabsContainerCollapsed__ZJF6M {
|
|
10557
10558
|
height: 0;
|
|
10558
10559
|
}
|
|
10559
|
-
@
|
|
10560
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10560
10561
|
.TitleBlock-module_navigationTabsContainerCollapsed__ZJF6M {
|
|
10561
10562
|
height: 0;
|
|
10562
10563
|
}
|
|
10563
10564
|
}
|
|
10564
|
-
@
|
|
10565
|
+
@container (max-width: calc(768px - 1px)) {
|
|
10565
10566
|
.TitleBlock-module_hasNavigationTabs__v09jL .TitleBlock-module_navigationTabScrollerContainer__o234q {
|
|
10566
10567
|
display: block;
|
|
10567
10568
|
overflow-x: scroll;
|
|
@@ -10586,7 +10587,7 @@
|
|
|
10586
10587
|
display: none;
|
|
10587
10588
|
pointer-events: none;
|
|
10588
10589
|
}
|
|
10589
|
-
@
|
|
10590
|
+
@container (max-width: calc(768px - 1px)) {
|
|
10590
10591
|
.TitleBlock-module_navigationTabEdgeShadowRight__xkIWc, .TitleBlock-module_navigationTabEdgeShadowLeft__9pGhR {
|
|
10591
10592
|
display: block;
|
|
10592
10593
|
position: absolute;
|
|
@@ -10597,12 +10598,12 @@
|
|
|
10597
10598
|
z-index: 1;
|
|
10598
10599
|
}
|
|
10599
10600
|
}
|
|
10600
|
-
@
|
|
10601
|
+
@container (max-width: calc(768px - 1px)) {
|
|
10601
10602
|
.TitleBlock-module_adminVariant__s95nS .TitleBlock-module_navigationTabEdgeShadowRight__xkIWc, .TitleBlock-module_adminVariant__s95nS .TitleBlock-module_navigationTabEdgeShadowLeft__9pGhR {
|
|
10602
10603
|
background: linear-gradient(0deg, var(--color-gray-100, #f9f9f9), rgba(var(--color-gray-100-rgb, 249, 249, 249), 0));
|
|
10603
10604
|
}
|
|
10604
10605
|
}
|
|
10605
|
-
@
|
|
10606
|
+
@container (max-width: calc(768px - 1px)) {
|
|
10606
10607
|
.TitleBlock-module_educationVariant__YvpWa .TitleBlock-module_navigationTabEdgeShadowRight__xkIWc, .TitleBlock-module_educationVariant__YvpWa .TitleBlock-module_navigationTabEdgeShadowLeft__9pGhR {
|
|
10607
10608
|
background: linear-gradient(0deg, var(--color-blue-200, #bde2f5), rgba(var(--color-blue-200-rgb, 189, 226, 245), 0));
|
|
10608
10609
|
}
|
|
@@ -10612,7 +10613,7 @@
|
|
|
10612
10613
|
left: 0;
|
|
10613
10614
|
top: calc(100% - 4.5rem);
|
|
10614
10615
|
}
|
|
10615
|
-
@
|
|
10616
|
+
@container (max-width: calc(768px - 1px)) {
|
|
10616
10617
|
.TitleBlock-module_navigationTabEdgeShadowLeft__9pGhR {
|
|
10617
10618
|
top: calc(100% - 3.75rem);
|
|
10618
10619
|
}
|
|
@@ -10622,7 +10623,7 @@
|
|
|
10622
10623
|
right: 0;
|
|
10623
10624
|
top: calc(100% - 4.5rem);
|
|
10624
10625
|
}
|
|
10625
|
-
@
|
|
10626
|
+
@container (max-width: calc(768px - 1px)) {
|
|
10626
10627
|
.TitleBlock-module_navigationTabEdgeShadowRight__xkIWc {
|
|
10627
10628
|
top: calc(100% - 3.75rem);
|
|
10628
10629
|
}
|
|
@@ -10638,7 +10639,7 @@
|
|
|
10638
10639
|
.TitleBlock-module_educationVariant__YvpWa .TitleBlock-module_secondaryActionsContainer__-4q0l, .TitleBlock-module_adminVariant__s95nS .TitleBlock-module_secondaryActionsContainer__-4q0l {
|
|
10639
10640
|
color: var(--color-blue-500, #0168b3);
|
|
10640
10641
|
}
|
|
10641
|
-
@
|
|
10642
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10642
10643
|
.TitleBlock-module_secondaryActionsContainer__-4q0l {
|
|
10643
10644
|
display: none;
|
|
10644
10645
|
}
|
|
@@ -10679,16 +10680,18 @@
|
|
|
10679
10680
|
border-style: var(--border-focus-ring-border-style, solid);
|
|
10680
10681
|
inset: calc(-2 * var(--border-focus-ring-border-width, 2px) - var(--border-focus-ring-border-width, 2px));
|
|
10681
10682
|
}
|
|
10682
|
-
@media only screen
|
|
10683
|
-
|
|
10684
|
-
|
|
10685
|
-
|
|
10686
|
-
|
|
10687
|
-
|
|
10688
|
-
|
|
10683
|
+
@media only screen {
|
|
10684
|
+
@container (max-width: 1644px) {
|
|
10685
|
+
.TitleBlock-module_breadcrumb__lVNKz {
|
|
10686
|
+
position: relative;
|
|
10687
|
+
transform: translateY(0);
|
|
10688
|
+
margin-inline: 0 var(--spacing-12);
|
|
10689
|
+
inset-inline-end: auto;
|
|
10690
|
+
inset-inline-start: 0;
|
|
10691
|
+
}
|
|
10689
10692
|
}
|
|
10690
10693
|
}
|
|
10691
|
-
@
|
|
10694
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10692
10695
|
.TitleBlock-module_breadcrumb__lVNKz {
|
|
10693
10696
|
display: none;
|
|
10694
10697
|
}
|
|
@@ -10705,16 +10708,18 @@
|
|
|
10705
10708
|
inset-inline-start: -3rem;
|
|
10706
10709
|
position: absolute;
|
|
10707
10710
|
}
|
|
10708
|
-
@
|
|
10711
|
+
@container (max-width: 1644px) {
|
|
10709
10712
|
.TitleBlock-module_breadcrumbTextLink__ngx82 {
|
|
10710
10713
|
inset-inline-end: auto;
|
|
10711
10714
|
inset-inline-start: 1.5rem;
|
|
10712
10715
|
}
|
|
10713
10716
|
}
|
|
10714
|
-
@media only screen
|
|
10715
|
-
|
|
10716
|
-
|
|
10717
|
-
|
|
10717
|
+
@media only screen {
|
|
10718
|
+
@container (min-width: 1644px) {
|
|
10719
|
+
.TitleBlock-module_breadcrumbTextLink__ngx82 {
|
|
10720
|
+
inset-inline-end: auto;
|
|
10721
|
+
inset-inline-start: calc(48px - 1.5rem);
|
|
10722
|
+
}
|
|
10718
10723
|
}
|
|
10719
10724
|
}
|
|
10720
10725
|
.TitleBlock-module_breadcrumbTextLink__ngx82:hover, .TitleBlock-module_breadcrumbTextLink__ngx82:focus, .TitleBlock-module_breadcrumb__lVNKz:hover .TitleBlock-module_breadcrumbTextLink__ngx82, .TitleBlock-module_breadcrumb__lVNKz:focus .TitleBlock-module_breadcrumbTextLink__ngx82 {
|
|
@@ -10847,7 +10852,7 @@
|
|
|
10847
10852
|
color: var(--color-white, #ffffff);
|
|
10848
10853
|
text-decoration: none;
|
|
10849
10854
|
}
|
|
10850
|
-
@
|
|
10855
|
+
@container (max-width: 1365px) {
|
|
10851
10856
|
.NavigationTabs-module_linkAnchor__R2iEH {
|
|
10852
10857
|
font-family: var(--typography-heading-5-font-family, "Inter", "Noto Sans", Helvetica, Arial, sans-serif);
|
|
10853
10858
|
font-weight: var(--typography-heading-5-font-weight, 600);
|
|
@@ -10856,7 +10861,7 @@
|
|
|
10856
10861
|
letter-spacing: var(--typography-heading-5-letter-spacing, normal);
|
|
10857
10862
|
}
|
|
10858
10863
|
}
|
|
10859
|
-
@
|
|
10864
|
+
@container (max-width: 1439px) {
|
|
10860
10865
|
.NavigationTabs-module_linkAnchor__R2iEH {
|
|
10861
10866
|
margin-inline-end: var(--spacing-xs, 0.375rem);
|
|
10862
10867
|
}
|
|
@@ -10881,7 +10886,7 @@
|
|
|
10881
10886
|
transition: transform cubic-bezier(0.55, 0.085, 0.68, 0.53) 150ms;
|
|
10882
10887
|
border-radius: 0 0 var(--border-solid-border-radius, 7px) var(--border-solid-border-radius, 7px);
|
|
10883
10888
|
}
|
|
10884
|
-
@
|
|
10889
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10885
10890
|
.NavigationTabs-module_linkAnchor__R2iEH.NavigationTabs-module_active__w1NQO::before, .NavigationTabs-module_linkAnchor__R2iEH:focus::before {
|
|
10886
10891
|
top: auto;
|
|
10887
10892
|
bottom: 0;
|
|
@@ -10904,7 +10909,7 @@
|
|
|
10904
10909
|
border-style: var(--border-focus-ring-border-style, solid);
|
|
10905
10910
|
inset: 0 calc(-1 * var(--border-focus-ring-border-width, 2px)) 5px;
|
|
10906
10911
|
}
|
|
10907
|
-
@
|
|
10912
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10908
10913
|
.NavigationTabs-module_linkAnchor__R2iEH:focus::after {
|
|
10909
10914
|
border-radius: var(--border-focus-ring-border-radius, 10px) var(--border-focus-ring-border-radius, 10px) 0 0;
|
|
10910
10915
|
inset: 5px calc(-1 * var(--border-focus-ring-border-width, 2px)) 0 calc(-1 * var(--border-focus-ring-border-width, 2px));
|
|
@@ -10928,9 +10933,8 @@
|
|
|
10928
10933
|
}
|
|
10929
10934
|
.NavigationTabs-module_linkAnchor__R2iEH.NavigationTabs-module_lightBackground__lToVy.NavigationTabs-module_active__w1NQO::before {
|
|
10930
10935
|
background-color: var(--color-blue-500, #0168b3);
|
|
10931
|
-
top: 3px;
|
|
10932
10936
|
}
|
|
10933
|
-
@
|
|
10937
|
+
@container (max-width: calc(1080px - 1px)) {
|
|
10934
10938
|
.NavigationTabs-module_linkAnchor__R2iEH.NavigationTabs-module_lightBackground__lToVy.NavigationTabs-module_active__w1NQO::before {
|
|
10935
10939
|
top: auto;
|
|
10936
10940
|
bottom: 0;
|
package/locales/ar.json
CHANGED
|
@@ -224,9 +224,9 @@
|
|
|
224
224
|
"description" : "Aria label text for the SingleSelect button to open and close suggestions list",
|
|
225
225
|
"message" : "عرض الاقتراحات لـ {field}"
|
|
226
226
|
},
|
|
227
|
-
"singleSelect.
|
|
228
|
-
"description" : "Alt text for the clear selection button",
|
|
229
|
-
"message" : "محو
|
|
227
|
+
"singleSelect.clearButtonAlt_v2" : {
|
|
228
|
+
"description" : "Alt text for the clear selection button. The button clears the selection the user has made via a dropdown. The field placeholder is the label of the dropdown.",
|
|
229
|
+
"message" : "محو الاختيار: {field}"
|
|
230
230
|
},
|
|
231
231
|
"splitButton.dropdownButton.label" : {
|
|
232
232
|
"description" : "Label for a dropdown menu holding additional actions",
|
package/locales/bg.json
CHANGED
|
@@ -224,9 +224,9 @@
|
|
|
224
224
|
"description" : "Aria label text for the SingleSelect button to open and close suggestions list",
|
|
225
225
|
"message" : "Покажи предложения за {field}"
|
|
226
226
|
},
|
|
227
|
-
"singleSelect.
|
|
228
|
-
"description" : "Alt text for the clear selection button",
|
|
229
|
-
"message" : "
|
|
227
|
+
"singleSelect.clearButtonAlt_v2" : {
|
|
228
|
+
"description" : "Alt text for the clear selection button. The button clears the selection the user has made via a dropdown. The field placeholder is the label of the dropdown.",
|
|
229
|
+
"message" : "Изчистване на избора: {field}"
|
|
230
230
|
},
|
|
231
231
|
"splitButton.dropdownButton.label" : {
|
|
232
232
|
"description" : "Label for a dropdown menu holding additional actions",
|
package/locales/cs.json
CHANGED
|
@@ -224,9 +224,9 @@
|
|
|
224
224
|
"description" : "Aria label text for the SingleSelect button to open and close suggestions list",
|
|
225
225
|
"message" : "Zobrazit návrhy pro pole {field}"
|
|
226
226
|
},
|
|
227
|
-
"singleSelect.
|
|
228
|
-
"description" : "Alt text for the clear selection button",
|
|
229
|
-
"message" : "
|
|
227
|
+
"singleSelect.clearButtonAlt_v2" : {
|
|
228
|
+
"description" : "Alt text for the clear selection button. The button clears the selection the user has made via a dropdown. The field placeholder is the label of the dropdown.",
|
|
229
|
+
"message" : "Vymazat výběr: {field}"
|
|
230
230
|
},
|
|
231
231
|
"splitButton.dropdownButton.label" : {
|
|
232
232
|
"description" : "Label for a dropdown menu holding additional actions",
|
package/locales/cy.json
CHANGED
|
@@ -224,9 +224,9 @@
|
|
|
224
224
|
"description" : "Aria label text for the SingleSelect button to open and close suggestions list",
|
|
225
225
|
"message" : "Dangos awgrymiadau ar gyfer {field}"
|
|
226
226
|
},
|
|
227
|
-
"singleSelect.
|
|
228
|
-
"description" : "Alt text for the clear selection button",
|
|
229
|
-
"message" : "Clirio
|
|
227
|
+
"singleSelect.clearButtonAlt_v2" : {
|
|
228
|
+
"description" : "Alt text for the clear selection button. The button clears the selection the user has made via a dropdown. The field placeholder is the label of the dropdown.",
|
|
229
|
+
"message" : "Clirio'r dewisiad: {field}"
|
|
230
230
|
},
|
|
231
231
|
"splitButton.dropdownButton.label" : {
|
|
232
232
|
"description" : "Label for a dropdown menu holding additional actions",
|