@hh.ru/magritte-ui-drop 7.2.4 → 7.2.6
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/Drop.js
CHANGED
|
@@ -5,7 +5,7 @@ import classnames from 'classnames';
|
|
|
5
5
|
import { DropBase } from '@hh.ru/magritte-internal-drop-base';
|
|
6
6
|
import { InternalLayerName } from '@hh.ru/magritte-internal-layer-name';
|
|
7
7
|
import { useBreakpoint } from '@hh.ru/magritte-ui-breakpoint';
|
|
8
|
-
import { s as styles, D as DropContainer } from './DropContainer-
|
|
8
|
+
import { s as styles, D as DropContainer } from './DropContainer-DHwtZ8QE.js';
|
|
9
9
|
import { PureChildren } from './PureChildren.js';
|
|
10
10
|
import { Layer } from '@hh.ru/magritte-ui-layer';
|
|
11
11
|
import '@hh.ru/magritte-common-use-multiple-refs';
|
|
@@ -4,7 +4,7 @@ import { forwardRef, useRef, useCallback, useEffect } from 'react';
|
|
|
4
4
|
import { useMultipleRefs } from '@hh.ru/magritte-common-use-multiple-refs';
|
|
5
5
|
import { Divider } from '@hh.ru/magritte-ui-divider';
|
|
6
6
|
|
|
7
|
-
var styles = {"drop":"magritte-drop___Z10P4_7-2-
|
|
7
|
+
var styles = {"drop":"magritte-drop___Z10P4_7-2-6","drop-container":"magritte-drop-container___dbMt9_7-2-6","dropContainer":"magritte-drop-container___dbMt9_7-2-6","divider-container":"magritte-divider-container___ZCdDW_7-2-6","dividerContainer":"magritte-divider-container___ZCdDW_7-2-6","drop-footer":"magritte-drop-footer___v8ZEO_7-2-6","dropFooter":"magritte-drop-footer___v8ZEO_7-2-6","drop-space-300":"magritte-drop-space-300___41acH_7-2-6","dropSpace300":"magritte-drop-space-300___41acH_7-2-6","drop-space-400":"magritte-drop-space-400___XX1RM_7-2-6","dropSpace400":"magritte-drop-space-400___XX1RM_7-2-6","drop-padding":"magritte-drop-padding___xBiJO_7-2-6","dropPadding":"magritte-drop-padding___xBiJO_7-2-6","drop-space-600":"magritte-drop-space-600___6B1i0_7-2-6","dropSpace600":"magritte-drop-space-600___6B1i0_7-2-6","drop-with-footer":"magritte-drop-with-footer___CgBIV_7-2-6","dropWithFooter":"magritte-drop-with-footer___CgBIV_7-2-6","drop-enter":"magritte-drop-enter___4vEuH_7-2-6","dropEnter":"magritte-drop-enter___4vEuH_7-2-6","drop-exit":"magritte-drop-exit___brFjz_7-2-6","dropExit":"magritte-drop-exit___brFjz_7-2-6","drop-enter-active":"magritte-drop-enter-active___SQUog_7-2-6","dropEnterActive":"magritte-drop-enter-active___SQUog_7-2-6","drop-exit-active":"magritte-drop-exit-active___GB0ET_7-2-6","dropExitActive":"magritte-drop-exit-active___GB0ET_7-2-6","drop-animation-timeout":"magritte-drop-animation-timeout___uO7LF_7-2-6","dropAnimationTimeout":"magritte-drop-animation-timeout___uO7LF_7-2-6"};
|
|
8
8
|
|
|
9
9
|
const DropContainer = forwardRef(({ children, dividerState }, ref) => {
|
|
10
10
|
const dividerRef = useRef(null);
|
|
@@ -55,4 +55,4 @@ const DropContainer = forwardRef(({ children, dividerState }, ref) => {
|
|
|
55
55
|
DropContainer.displayName = 'DropContainer';
|
|
56
56
|
|
|
57
57
|
export { DropContainer as D, styles as s };
|
|
58
|
-
//# sourceMappingURL=DropContainer-
|
|
58
|
+
//# sourceMappingURL=DropContainer-DHwtZ8QE.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DropContainer-
|
|
1
|
+
{"version":3,"file":"DropContainer-DHwtZ8QE.js","sources":["../src/DropContainer.tsx"],"sourcesContent":["import { useRef, type PropsWithChildren, useEffect, useCallback, forwardRef } from 'react';\n\nimport { useMultipleRefs } from '@hh.ru/magritte-common-use-multiple-refs';\nimport { Divider } from '@hh.ru/magritte-ui-divider';\nimport type { DividerState } from '@hh.ru/magritte-ui-drop/types';\n\nimport styles from './drop.less';\n\nexport const DropContainer = forwardRef<\n HTMLDivElement,\n PropsWithChildren<{\n dividerState: DividerState;\n }>\n>(({ children, dividerState }, ref) => {\n const dividerRef = useRef<HTMLDivElement>(null);\n const showDividerRef = useRef(false);\n showDividerRef.current = dividerState !== 'hide';\n const contentContainerRef = useRef<HTMLDivElement>(null);\n const contentContainerRefMulti = useMultipleRefs(contentContainerRef, ref);\n\n const updateDividerVisibility = useCallback(\n (showDivider: boolean) => {\n if (!contentContainerRef.current || !dividerRef.current) {\n return;\n }\n if (!showDivider) {\n dividerRef.current.style.visibility = 'hidden';\n return;\n }\n if (contentContainerRef?.current !== null && dividerRef.current) {\n const hasScroll =\n contentContainerRef.current.scrollHeight - contentContainerRef.current.clientHeight > 0;\n dividerRef.current.style.visibility = hasScroll ? 'visible' : 'hidden';\n }\n },\n [contentContainerRef, dividerRef]\n );\n\n useEffect(() => {\n const observer = new ResizeObserver(() => {\n updateDividerVisibility(showDividerRef.current);\n });\n observer.observe(contentContainerRef.current as Element);\n return () => observer.disconnect();\n }, [updateDividerVisibility]);\n\n useEffect(() => {\n updateDividerVisibility(showDividerRef.current);\n // eslint-disable-next-line disable-autofix/react-hooks/exhaustive-deps\n }, [updateDividerVisibility, showDividerRef.current]);\n\n const props = showDividerRef.current\n ? {\n onScroll: ({ target }: { target: EventTarget }) => {\n const scrollableContainer = target as HTMLDivElement;\n\n if (dividerRef.current && dividerState !== 'showWhenFullyScrolled') {\n const scrollEnded =\n scrollableContainer.scrollTop +\n scrollableContainer.offsetHeight -\n scrollableContainer.scrollHeight ===\n 0;\n\n dividerRef.current.style.visibility = scrollEnded ? 'hidden' : 'visible';\n }\n },\n }\n : {};\n\n return (\n <>\n <div ref={contentContainerRefMulti} className={styles.dropContainer} {...props}>\n {children}\n </div>\n <div ref={dividerRef} className={styles.dividerContainer} data-qa=\"drop-divider\">\n <Divider />\n </div>\n </>\n );\n});\n\nDropContainer.displayName = 'DropContainer';\n"],"names":["_jsxs","_Fragment","_jsx"],"mappings":";;;;;;;AAQO,MAAM,aAAa,GAAG,UAAU,CAKrC,CAAC,EAAE,QAAQ,EAAE,YAAY,EAAE,EAAE,GAAG,KAAI;AAClC,IAAA,MAAM,UAAU,GAAG,MAAM,CAAiB,IAAI,CAAC,CAAC;AAChD,IAAA,MAAM,cAAc,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC;AACrC,IAAA,cAAc,CAAC,OAAO,GAAG,YAAY,KAAK,MAAM,CAAC;AACjD,IAAA,MAAM,mBAAmB,GAAG,MAAM,CAAiB,IAAI,CAAC,CAAC;IACzD,MAAM,wBAAwB,GAAG,eAAe,CAAC,mBAAmB,EAAE,GAAG,CAAC,CAAC;AAE3E,IAAA,MAAM,uBAAuB,GAAG,WAAW,CACvC,CAAC,WAAoB,KAAI;QACrB,IAAI,CAAC,mBAAmB,CAAC,OAAO,IAAI,CAAC,UAAU,CAAC,OAAO,EAAE;YACrD,OAAO;SACV;QACD,IAAI,CAAC,WAAW,EAAE;YACd,UAAU,CAAC,OAAO,CAAC,KAAK,CAAC,UAAU,GAAG,QAAQ,CAAC;YAC/C,OAAO;SACV;QACD,IAAI,mBAAmB,EAAE,OAAO,KAAK,IAAI,IAAI,UAAU,CAAC,OAAO,EAAE;AAC7D,YAAA,MAAM,SAAS,GACX,mBAAmB,CAAC,OAAO,CAAC,YAAY,GAAG,mBAAmB,CAAC,OAAO,CAAC,YAAY,GAAG,CAAC,CAAC;AAC5F,YAAA,UAAU,CAAC,OAAO,CAAC,KAAK,CAAC,UAAU,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,CAAC;SAC1E;AACL,KAAC,EACD,CAAC,mBAAmB,EAAE,UAAU,CAAC,CACpC,CAAC;IAEF,SAAS,CAAC,MAAK;AACX,QAAA,MAAM,QAAQ,GAAG,IAAI,cAAc,CAAC,MAAK;AACrC,YAAA,uBAAuB,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;AACpD,SAAC,CAAC,CAAC;AACH,QAAA,QAAQ,CAAC,OAAO,CAAC,mBAAmB,CAAC,OAAkB,CAAC,CAAC;AACzD,QAAA,OAAO,MAAM,QAAQ,CAAC,UAAU,EAAE,CAAC;AACvC,KAAC,EAAE,CAAC,uBAAuB,CAAC,CAAC,CAAC;IAE9B,SAAS,CAAC,MAAK;AACX,QAAA,uBAAuB,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;;KAEnD,EAAE,CAAC,uBAAuB,EAAE,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC;AAEtD,IAAA,MAAM,KAAK,GAAG,cAAc,CAAC,OAAO;AAChC,UAAE;AACI,YAAA,QAAQ,EAAE,CAAC,EAAE,MAAM,EAA2B,KAAI;gBAC9C,MAAM,mBAAmB,GAAG,MAAwB,CAAC;gBAErD,IAAI,UAAU,CAAC,OAAO,IAAI,YAAY,KAAK,uBAAuB,EAAE;AAChE,oBAAA,MAAM,WAAW,GACb,mBAAmB,CAAC,SAAS;AACzB,wBAAA,mBAAmB,CAAC,YAAY;AAChC,wBAAA,mBAAmB,CAAC,YAAY;AACpC,wBAAA,CAAC,CAAC;AAEN,oBAAA,UAAU,CAAC,OAAO,CAAC,KAAK,CAAC,UAAU,GAAG,WAAW,GAAG,QAAQ,GAAG,SAAS,CAAC;iBAC5E;aACJ;AACJ,SAAA;UACD,EAAE,CAAC;AAET,IAAA,QACIA,IACI,CAAAC,QAAA,EAAA,EAAA,QAAA,EAAA,CAAAC,GAAA,CAAA,KAAA,EAAA,EAAK,GAAG,EAAE,wBAAwB,EAAE,SAAS,EAAE,MAAM,CAAC,aAAa,EAAA,GAAM,KAAK,EAAA,QAAA,EACzE,QAAQ,EACP,CAAA,EACNA,GAAK,CAAA,KAAA,EAAA,EAAA,GAAG,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,CAAC,gBAAgB,EAAU,SAAA,EAAA,cAAc,YAC5EA,GAAC,CAAA,OAAO,KAAG,EACT,CAAA,CAAA,EAAA,CACP,EACL;AACN,CAAC,EAAE;AAEH,aAAa,CAAC,WAAW,GAAG,eAAe;;;;"}
|
package/DropContainer.js
CHANGED
|
@@ -3,5 +3,5 @@ import 'react/jsx-runtime';
|
|
|
3
3
|
import 'react';
|
|
4
4
|
import '@hh.ru/magritte-common-use-multiple-refs';
|
|
5
5
|
import '@hh.ru/magritte-ui-divider';
|
|
6
|
-
export { D as DropContainer } from './DropContainer-
|
|
6
|
+
export { D as DropContainer } from './DropContainer-DHwtZ8QE.js';
|
|
7
7
|
//# sourceMappingURL=DropContainer.js.map
|
package/index.css
CHANGED
|
@@ -1,130 +1,660 @@
|
|
|
1
1
|
:root{
|
|
2
|
-
--magritte-color-component-drop-background-content-
|
|
3
|
-
--magritte-shadow-level-2-color-
|
|
4
|
-
--magritte-shadow-level-2-x-
|
|
5
|
-
--magritte-shadow-level-2-y-
|
|
6
|
-
--magritte-shadow-level-2-blur-
|
|
7
|
-
--magritte-shadow-level-2-spread-
|
|
2
|
+
--magritte-color-component-drop-background-content-v20-0-1:#ffffff;
|
|
3
|
+
--magritte-shadow-level-2-color-v20-0-1:#7090b03d;
|
|
4
|
+
--magritte-shadow-level-2-x-v20-0-1:0px;
|
|
5
|
+
--magritte-shadow-level-2-y-v20-0-1:8px;
|
|
6
|
+
--magritte-shadow-level-2-blur-v20-0-1:16px;
|
|
7
|
+
--magritte-shadow-level-2-spread-v20-0-1:0px;
|
|
8
8
|
}
|
|
9
9
|
:root{
|
|
10
|
-
--magritte-
|
|
11
|
-
--magritte-
|
|
12
|
-
--magritte-
|
|
13
|
-
--magritte-
|
|
14
|
-
--magritte-
|
|
15
|
-
--magritte-
|
|
16
|
-
--magritte-
|
|
10
|
+
--magritte-typography-title-1-semibold-font-family-v20-0-1:"hh sans";
|
|
11
|
+
--magritte-typography-title-1-semibold-font-weight-v20-0-1:500;
|
|
12
|
+
--magritte-typography-title-1-semibold-line-height-v20-0-1:60px;
|
|
13
|
+
--magritte-typography-title-1-semibold-font-size-v20-0-1:48px;
|
|
14
|
+
--magritte-typography-title-1-semibold-letter-spacing-v20-0-1:-0.02em;
|
|
15
|
+
--magritte-typography-title-1-semibold-text-indent-v20-0-1:0px;
|
|
16
|
+
--magritte-typography-title-1-semibold-text-transform-v20-0-1:none;
|
|
17
|
+
--magritte-typography-title-1-semibold-text-decoration-v20-0-1:none;
|
|
18
|
+
--magritte-typography-title-2-semibold-font-family-v20-0-1:"hh sans";
|
|
19
|
+
--magritte-typography-title-2-semibold-font-weight-v20-0-1:500;
|
|
20
|
+
--magritte-typography-title-2-semibold-line-height-v20-0-1:48px;
|
|
21
|
+
--magritte-typography-title-2-semibold-font-size-v20-0-1:36px;
|
|
22
|
+
--magritte-typography-title-2-semibold-letter-spacing-v20-0-1:-0.0175em;
|
|
23
|
+
--magritte-typography-title-2-semibold-text-indent-v20-0-1:0px;
|
|
24
|
+
--magritte-typography-title-2-semibold-text-transform-v20-0-1:none;
|
|
25
|
+
--magritte-typography-title-2-semibold-text-decoration-v20-0-1:none;
|
|
26
|
+
--magritte-typography-title-3-semibold-font-family-v20-0-1:"hh sans";
|
|
27
|
+
--magritte-typography-title-3-semibold-font-weight-v20-0-1:500;
|
|
28
|
+
--magritte-typography-title-3-semibold-line-height-v20-0-1:40px;
|
|
29
|
+
--magritte-typography-title-3-semibold-font-size-v20-0-1:28px;
|
|
30
|
+
--magritte-typography-title-3-semibold-letter-spacing-v20-0-1:-0.0125em;
|
|
31
|
+
--magritte-typography-title-3-semibold-text-indent-v20-0-1:0px;
|
|
32
|
+
--magritte-typography-title-3-semibold-text-transform-v20-0-1:none;
|
|
33
|
+
--magritte-typography-title-3-semibold-text-decoration-v20-0-1:none;
|
|
34
|
+
--magritte-typography-title-4-semibold-font-family-v20-0-1:"hh sans";
|
|
35
|
+
--magritte-typography-title-4-semibold-font-weight-v20-0-1:500;
|
|
36
|
+
--magritte-typography-title-4-semibold-line-height-v20-0-1:32px;
|
|
37
|
+
--magritte-typography-title-4-semibold-font-size-v20-0-1:22px;
|
|
38
|
+
--magritte-typography-title-4-semibold-letter-spacing-v20-0-1:-0.0075em;
|
|
39
|
+
--magritte-typography-title-4-semibold-text-indent-v20-0-1:0px;
|
|
40
|
+
--magritte-typography-title-4-semibold-text-transform-v20-0-1:none;
|
|
41
|
+
--magritte-typography-title-4-semibold-text-decoration-v20-0-1:none;
|
|
42
|
+
--magritte-typography-title-5-semibold-font-family-v20-0-1:"hh sans";
|
|
43
|
+
--magritte-typography-title-5-semibold-font-weight-v20-0-1:500;
|
|
44
|
+
--magritte-typography-title-5-semibold-line-height-v20-0-1:26px;
|
|
45
|
+
--magritte-typography-title-5-semibold-font-size-v20-0-1:18px;
|
|
46
|
+
--magritte-typography-title-5-semibold-letter-spacing-v20-0-1:0em;
|
|
47
|
+
--magritte-typography-title-5-semibold-text-indent-v20-0-1:0px;
|
|
48
|
+
--magritte-typography-title-5-semibold-text-transform-v20-0-1:none;
|
|
49
|
+
--magritte-typography-title-5-semibold-text-decoration-v20-0-1:none;
|
|
50
|
+
--magritte-typography-subtitle-1-semibold-font-family-v20-0-1:"hh sans";
|
|
51
|
+
--magritte-typography-subtitle-1-semibold-font-weight-v20-0-1:500;
|
|
52
|
+
--magritte-typography-subtitle-1-semibold-line-height-v20-0-1:22px;
|
|
53
|
+
--magritte-typography-subtitle-1-semibold-font-size-v20-0-1:16px;
|
|
54
|
+
--magritte-typography-subtitle-1-semibold-letter-spacing-v20-0-1:0em;
|
|
55
|
+
--magritte-typography-subtitle-1-semibold-text-indent-v20-0-1:0px;
|
|
56
|
+
--magritte-typography-subtitle-1-semibold-text-transform-v20-0-1:none;
|
|
57
|
+
--magritte-typography-subtitle-1-semibold-text-decoration-v20-0-1:none;
|
|
58
|
+
--magritte-typography-subtitle-2-semibold-font-family-v20-0-1:"hh sans";
|
|
59
|
+
--magritte-typography-subtitle-2-semibold-font-weight-v20-0-1:500;
|
|
60
|
+
--magritte-typography-subtitle-2-semibold-line-height-v20-0-1:20px;
|
|
61
|
+
--magritte-typography-subtitle-2-semibold-font-size-v20-0-1:14px;
|
|
62
|
+
--magritte-typography-subtitle-2-semibold-letter-spacing-v20-0-1:0.005em;
|
|
63
|
+
--magritte-typography-subtitle-2-semibold-text-indent-v20-0-1:0px;
|
|
64
|
+
--magritte-typography-subtitle-2-semibold-text-transform-v20-0-1:none;
|
|
65
|
+
--magritte-typography-subtitle-2-semibold-text-decoration-v20-0-1:none;
|
|
66
|
+
--magritte-typography-subtitle-3-semibold-font-family-v20-0-1:"hh sans";
|
|
67
|
+
--magritte-typography-subtitle-3-semibold-font-weight-v20-0-1:500;
|
|
68
|
+
--magritte-typography-subtitle-3-semibold-line-height-v20-0-1:18px;
|
|
69
|
+
--magritte-typography-subtitle-3-semibold-font-size-v20-0-1:12px;
|
|
70
|
+
--magritte-typography-subtitle-3-semibold-letter-spacing-v20-0-1:0.01em;
|
|
71
|
+
--magritte-typography-subtitle-3-semibold-text-indent-v20-0-1:0px;
|
|
72
|
+
--magritte-typography-subtitle-3-semibold-text-transform-v20-0-1:none;
|
|
73
|
+
--magritte-typography-subtitle-3-semibold-text-decoration-v20-0-1:none;
|
|
74
|
+
--magritte-typography-subtitle-4-semibold-font-family-v20-0-1:"hh sans";
|
|
75
|
+
--magritte-typography-subtitle-4-semibold-font-weight-v20-0-1:500;
|
|
76
|
+
--magritte-typography-subtitle-4-semibold-line-height-v20-0-1:16px;
|
|
77
|
+
--magritte-typography-subtitle-4-semibold-font-size-v20-0-1:10px;
|
|
78
|
+
--magritte-typography-subtitle-4-semibold-letter-spacing-v20-0-1:0.015em;
|
|
79
|
+
--magritte-typography-subtitle-4-semibold-text-indent-v20-0-1:0px;
|
|
80
|
+
--magritte-typography-subtitle-4-semibold-text-transform-v20-0-1:none;
|
|
81
|
+
--magritte-typography-subtitle-4-semibold-text-decoration-v20-0-1:none;
|
|
82
|
+
--magritte-typography-label-1-regular-font-family-v20-0-1:"hh sans";
|
|
83
|
+
--magritte-typography-label-1-regular-font-weight-v20-0-1:400;
|
|
84
|
+
--magritte-typography-label-1-regular-line-height-v20-0-1:26px;
|
|
85
|
+
--magritte-typography-label-1-regular-font-size-v20-0-1:18px;
|
|
86
|
+
--magritte-typography-label-1-regular-letter-spacing-v20-0-1:-0.005em;
|
|
87
|
+
--magritte-typography-label-1-regular-text-indent-v20-0-1:0px;
|
|
88
|
+
--magritte-typography-label-1-regular-text-transform-v20-0-1:none;
|
|
89
|
+
--magritte-typography-label-1-regular-text-decoration-v20-0-1:none;
|
|
90
|
+
--magritte-typography-label-2-regular-font-family-v20-0-1:"hh sans";
|
|
91
|
+
--magritte-typography-label-2-regular-font-weight-v20-0-1:400;
|
|
92
|
+
--magritte-typography-label-2-regular-line-height-v20-0-1:22px;
|
|
93
|
+
--magritte-typography-label-2-regular-font-size-v20-0-1:16px;
|
|
94
|
+
--magritte-typography-label-2-regular-letter-spacing-v20-0-1:0em;
|
|
95
|
+
--magritte-typography-label-2-regular-text-indent-v20-0-1:0px;
|
|
96
|
+
--magritte-typography-label-2-regular-text-transform-v20-0-1:none;
|
|
97
|
+
--magritte-typography-label-2-regular-text-decoration-v20-0-1:none;
|
|
98
|
+
--magritte-typography-label-3-regular-font-family-v20-0-1:"hh sans";
|
|
99
|
+
--magritte-typography-label-3-regular-font-weight-v20-0-1:400;
|
|
100
|
+
--magritte-typography-label-3-regular-line-height-v20-0-1:20px;
|
|
101
|
+
--magritte-typography-label-3-regular-font-size-v20-0-1:14px;
|
|
102
|
+
--magritte-typography-label-3-regular-letter-spacing-v20-0-1:0.005em;
|
|
103
|
+
--magritte-typography-label-3-regular-text-indent-v20-0-1:0px;
|
|
104
|
+
--magritte-typography-label-3-regular-text-transform-v20-0-1:none;
|
|
105
|
+
--magritte-typography-label-3-regular-text-decoration-v20-0-1:none;
|
|
106
|
+
--magritte-typography-label-4-regular-font-family-v20-0-1:"hh sans";
|
|
107
|
+
--magritte-typography-label-4-regular-font-weight-v20-0-1:400;
|
|
108
|
+
--magritte-typography-label-4-regular-line-height-v20-0-1:18px;
|
|
109
|
+
--magritte-typography-label-4-regular-font-size-v20-0-1:12px;
|
|
110
|
+
--magritte-typography-label-4-regular-letter-spacing-v20-0-1:0.01em;
|
|
111
|
+
--magritte-typography-label-4-regular-text-indent-v20-0-1:0px;
|
|
112
|
+
--magritte-typography-label-4-regular-text-transform-v20-0-1:none;
|
|
113
|
+
--magritte-typography-label-4-regular-text-decoration-v20-0-1:none;
|
|
114
|
+
--magritte-typography-label-5-regular-font-family-v20-0-1:"hh sans";
|
|
115
|
+
--magritte-typography-label-5-regular-font-weight-v20-0-1:400;
|
|
116
|
+
--magritte-typography-label-5-regular-line-height-v20-0-1:14px;
|
|
117
|
+
--magritte-typography-label-5-regular-font-size-v20-0-1:10px;
|
|
118
|
+
--magritte-typography-label-5-regular-letter-spacing-v20-0-1:0.02em;
|
|
119
|
+
--magritte-typography-label-5-regular-text-indent-v20-0-1:0px;
|
|
120
|
+
--magritte-typography-label-5-regular-text-transform-v20-0-1:none;
|
|
121
|
+
--magritte-typography-label-5-regular-text-decoration-v20-0-1:none;
|
|
122
|
+
--magritte-typography-paragraph-1-regular-font-family-v20-0-1:"hh sans";
|
|
123
|
+
--magritte-typography-paragraph-1-regular-font-weight-v20-0-1:400;
|
|
124
|
+
--magritte-typography-paragraph-1-regular-line-height-v20-0-1:28px;
|
|
125
|
+
--magritte-typography-paragraph-1-regular-font-size-v20-0-1:18px;
|
|
126
|
+
--magritte-typography-paragraph-1-regular-letter-spacing-v20-0-1:0em;
|
|
127
|
+
--magritte-typography-paragraph-1-regular-text-indent-v20-0-1:0px;
|
|
128
|
+
--magritte-typography-paragraph-1-regular-text-transform-v20-0-1:none;
|
|
129
|
+
--magritte-typography-paragraph-1-regular-text-decoration-v20-0-1:none;
|
|
130
|
+
--magritte-typography-paragraph-2-regular-font-family-v20-0-1:"hh sans";
|
|
131
|
+
--magritte-typography-paragraph-2-regular-font-weight-v20-0-1:400;
|
|
132
|
+
--magritte-typography-paragraph-2-regular-line-height-v20-0-1:26px;
|
|
133
|
+
--magritte-typography-paragraph-2-regular-font-size-v20-0-1:16px;
|
|
134
|
+
--magritte-typography-paragraph-2-regular-letter-spacing-v20-0-1:0.005em;
|
|
135
|
+
--magritte-typography-paragraph-2-regular-text-indent-v20-0-1:0px;
|
|
136
|
+
--magritte-typography-paragraph-2-regular-text-transform-v20-0-1:none;
|
|
137
|
+
--magritte-typography-paragraph-2-regular-text-decoration-v20-0-1:none;
|
|
138
|
+
--magritte-typography-paragraph-3-regular-font-family-v20-0-1:"hh sans";
|
|
139
|
+
--magritte-typography-paragraph-3-regular-font-weight-v20-0-1:400;
|
|
140
|
+
--magritte-typography-paragraph-3-regular-line-height-v20-0-1:24px;
|
|
141
|
+
--magritte-typography-paragraph-3-regular-font-size-v20-0-1:14px;
|
|
142
|
+
--magritte-typography-paragraph-3-regular-letter-spacing-v20-0-1:0.01em;
|
|
143
|
+
--magritte-typography-paragraph-3-regular-text-indent-v20-0-1:0px;
|
|
144
|
+
--magritte-typography-paragraph-3-regular-text-transform-v20-0-1:none;
|
|
145
|
+
--magritte-typography-paragraph-3-regular-text-decoration-v20-0-1:none;
|
|
146
|
+
--magritte-typography-paragraph-4-regular-font-family-v20-0-1:"hh sans";
|
|
147
|
+
--magritte-typography-paragraph-4-regular-font-weight-v20-0-1:400;
|
|
148
|
+
--magritte-typography-paragraph-4-regular-line-height-v20-0-1:22px;
|
|
149
|
+
--magritte-typography-paragraph-4-regular-font-size-v20-0-1:12px;
|
|
150
|
+
--magritte-typography-paragraph-4-regular-letter-spacing-v20-0-1:0.015em;
|
|
151
|
+
--magritte-typography-paragraph-4-regular-text-indent-v20-0-1:0px;
|
|
152
|
+
--magritte-typography-paragraph-4-regular-text-transform-v20-0-1:none;
|
|
153
|
+
--magritte-typography-paragraph-4-regular-text-decoration-v20-0-1:none;
|
|
154
|
+
--magritte-typography-_custom-1-semibold-font-family-v20-0-1:"hh sans";
|
|
155
|
+
--magritte-typography-_custom-1-semibold-font-weight-v20-0-1:500;
|
|
156
|
+
--magritte-typography-_custom-1-semibold-line-height-v20-0-1:28px;
|
|
157
|
+
--magritte-typography-_custom-1-semibold-font-size-v20-0-1:18px;
|
|
158
|
+
--magritte-typography-_custom-1-semibold-letter-spacing-v20-0-1:0em;
|
|
159
|
+
--magritte-typography-_custom-1-semibold-text-indent-v20-0-1:0px;
|
|
160
|
+
--magritte-typography-_custom-1-semibold-text-transform-v20-0-1:none;
|
|
161
|
+
--magritte-typography-_custom-1-semibold-text-decoration-v20-0-1:none;
|
|
162
|
+
--magritte-typography-_custom-2-semibold-font-family-v20-0-1:"hh sans";
|
|
163
|
+
--magritte-typography-_custom-2-semibold-font-weight-v20-0-1:500;
|
|
164
|
+
--magritte-typography-_custom-2-semibold-line-height-v20-0-1:26px;
|
|
165
|
+
--magritte-typography-_custom-2-semibold-font-size-v20-0-1:16px;
|
|
166
|
+
--magritte-typography-_custom-2-semibold-letter-spacing-v20-0-1:0.005em;
|
|
167
|
+
--magritte-typography-_custom-2-semibold-text-indent-v20-0-1:0px;
|
|
168
|
+
--magritte-typography-_custom-2-semibold-text-transform-v20-0-1:none;
|
|
169
|
+
--magritte-typography-_custom-2-semibold-text-decoration-v20-0-1:none;
|
|
170
|
+
--magritte-typography-_custom-3-semibold-font-family-v20-0-1:"hh sans";
|
|
171
|
+
--magritte-typography-_custom-3-semibold-font-weight-v20-0-1:500;
|
|
172
|
+
--magritte-typography-_custom-3-semibold-line-height-v20-0-1:24px;
|
|
173
|
+
--magritte-typography-_custom-3-semibold-font-size-v20-0-1:14px;
|
|
174
|
+
--magritte-typography-_custom-3-semibold-letter-spacing-v20-0-1:0.01em;
|
|
175
|
+
--magritte-typography-_custom-3-semibold-text-indent-v20-0-1:0px;
|
|
176
|
+
--magritte-typography-_custom-3-semibold-text-transform-v20-0-1:none;
|
|
177
|
+
--magritte-typography-_custom-3-semibold-text-decoration-v20-0-1:none;
|
|
178
|
+
--magritte-typography-_custom-4-semibold-font-family-v20-0-1:"hh sans";
|
|
179
|
+
--magritte-typography-_custom-4-semibold-font-weight-v20-0-1:400;
|
|
180
|
+
--magritte-typography-_custom-4-semibold-line-height-v20-0-1:22px;
|
|
181
|
+
--magritte-typography-_custom-4-semibold-font-size-v20-0-1:12px;
|
|
182
|
+
--magritte-typography-_custom-4-semibold-letter-spacing-v20-0-1:0.015em;
|
|
183
|
+
--magritte-typography-_custom-4-semibold-text-indent-v20-0-1:0px;
|
|
184
|
+
--magritte-typography-_custom-4-semibold-text-transform-v20-0-1:none;
|
|
185
|
+
--magritte-typography-_custom-4-semibold-text-decoration-v20-0-1:none;
|
|
186
|
+
--magritte-typography-_custom-5-semibold-font-family-v20-0-1:"hh sans";
|
|
187
|
+
--magritte-typography-_custom-5-semibold-font-weight-v20-0-1:400;
|
|
188
|
+
--magritte-typography-_custom-5-semibold-line-height-v20-0-1:12px;
|
|
189
|
+
--magritte-typography-_custom-5-semibold-font-size-v20-0-1:10px;
|
|
190
|
+
--magritte-typography-_custom-5-semibold-letter-spacing-v20-0-1:0.015em;
|
|
191
|
+
--magritte-typography-_custom-5-semibold-text-indent-v20-0-1:0px;
|
|
192
|
+
--magritte-typography-_custom-5-semibold-text-transform-v20-0-1:none;
|
|
193
|
+
--magritte-typography-_custom-5-semibold-text-decoration-v20-0-1:none;
|
|
194
|
+
--magritte-typography-_custom-1-medium-font-family-v20-0-1:"hh sans";
|
|
195
|
+
--magritte-typography-_custom-1-medium-font-weight-v20-0-1:500;
|
|
196
|
+
--magritte-typography-_custom-1-medium-line-height-v20-0-1:28px;
|
|
197
|
+
--magritte-typography-_custom-1-medium-font-size-v20-0-1:18px;
|
|
198
|
+
--magritte-typography-_custom-1-medium-letter-spacing-v20-0-1:0em;
|
|
199
|
+
--magritte-typography-_custom-1-medium-text-indent-v20-0-1:0px;
|
|
200
|
+
--magritte-typography-_custom-1-medium-text-transform-v20-0-1:none;
|
|
201
|
+
--magritte-typography-_custom-1-medium-text-decoration-v20-0-1:none;
|
|
202
|
+
--magritte-typography-_custom-2-medium-font-family-v20-0-1:"hh sans";
|
|
203
|
+
--magritte-typography-_custom-2-medium-font-weight-v20-0-1:500;
|
|
204
|
+
--magritte-typography-_custom-2-medium-line-height-v20-0-1:26px;
|
|
205
|
+
--magritte-typography-_custom-2-medium-font-size-v20-0-1:16px;
|
|
206
|
+
--magritte-typography-_custom-2-medium-letter-spacing-v20-0-1:0.005em;
|
|
207
|
+
--magritte-typography-_custom-2-medium-text-indent-v20-0-1:0px;
|
|
208
|
+
--magritte-typography-_custom-2-medium-text-transform-v20-0-1:none;
|
|
209
|
+
--magritte-typography-_custom-2-medium-text-decoration-v20-0-1:none;
|
|
210
|
+
--magritte-typography-_custom-3-medium-font-family-v20-0-1:"hh sans";
|
|
211
|
+
--magritte-typography-_custom-3-medium-font-weight-v20-0-1:500;
|
|
212
|
+
--magritte-typography-_custom-3-medium-line-height-v20-0-1:24px;
|
|
213
|
+
--magritte-typography-_custom-3-medium-font-size-v20-0-1:14px;
|
|
214
|
+
--magritte-typography-_custom-3-medium-letter-spacing-v20-0-1:0.01em;
|
|
215
|
+
--magritte-typography-_custom-3-medium-text-indent-v20-0-1:0px;
|
|
216
|
+
--magritte-typography-_custom-3-medium-text-transform-v20-0-1:none;
|
|
217
|
+
--magritte-typography-_custom-3-medium-text-decoration-v20-0-1:none;
|
|
218
|
+
--magritte-typography-_custom-4-medium-font-family-v20-0-1:"hh sans";
|
|
219
|
+
--magritte-typography-_custom-4-medium-font-weight-v20-0-1:500;
|
|
220
|
+
--magritte-typography-_custom-4-medium-line-height-v20-0-1:22px;
|
|
221
|
+
--magritte-typography-_custom-4-medium-font-size-v20-0-1:12px;
|
|
222
|
+
--magritte-typography-_custom-4-medium-letter-spacing-v20-0-1:0.015em;
|
|
223
|
+
--magritte-typography-_custom-4-medium-text-indent-v20-0-1:0px;
|
|
224
|
+
--magritte-typography-_custom-4-medium-text-transform-v20-0-1:none;
|
|
225
|
+
--magritte-typography-_custom-4-medium-text-decoration-v20-0-1:none;
|
|
226
|
+
--magritte-typography-_custom-5-medium-font-family-v20-0-1:"hh sans";
|
|
227
|
+
--magritte-typography-_custom-5-medium-font-weight-v20-0-1:500;
|
|
228
|
+
--magritte-typography-_custom-5-medium-line-height-v20-0-1:12px;
|
|
229
|
+
--magritte-typography-_custom-5-medium-font-size-v20-0-1:10px;
|
|
230
|
+
--magritte-typography-_custom-5-medium-letter-spacing-v20-0-1:0.015em;
|
|
231
|
+
--magritte-typography-_custom-5-medium-text-indent-v20-0-1:0px;
|
|
232
|
+
--magritte-typography-_custom-5-medium-text-transform-v20-0-1:none;
|
|
233
|
+
--magritte-typography-_custom-5-medium-text-decoration-v20-0-1:none;
|
|
234
|
+
--magritte-typography-_custom-1-italic-font-family-v20-0-1:"hh sans";
|
|
235
|
+
--magritte-typography-_custom-1-italic-font-weight-v20-0-1:400;
|
|
236
|
+
--magritte-typography-_custom-1-italic-line-height-v20-0-1:28px;
|
|
237
|
+
--magritte-typography-_custom-1-italic-font-size-v20-0-1:18px;
|
|
238
|
+
--magritte-typography-_custom-1-italic-letter-spacing-v20-0-1:0em;
|
|
239
|
+
--magritte-typography-_custom-1-italic-text-indent-v20-0-1:0px;
|
|
240
|
+
--magritte-typography-_custom-1-italic-text-transform-v20-0-1:none;
|
|
241
|
+
--magritte-typography-_custom-1-italic-text-decoration-v20-0-1:none;
|
|
242
|
+
--magritte-typography-_custom-2-italic-font-family-v20-0-1:"hh sans";
|
|
243
|
+
--magritte-typography-_custom-2-italic-font-weight-v20-0-1:400;
|
|
244
|
+
--magritte-typography-_custom-2-italic-line-height-v20-0-1:26px;
|
|
245
|
+
--magritte-typography-_custom-2-italic-font-size-v20-0-1:16px;
|
|
246
|
+
--magritte-typography-_custom-2-italic-letter-spacing-v20-0-1:0.005em;
|
|
247
|
+
--magritte-typography-_custom-2-italic-text-indent-v20-0-1:0px;
|
|
248
|
+
--magritte-typography-_custom-2-italic-text-transform-v20-0-1:none;
|
|
249
|
+
--magritte-typography-_custom-2-italic-text-decoration-v20-0-1:none;
|
|
250
|
+
--magritte-typography-_custom-3-italic-font-family-v20-0-1:"hh sans";
|
|
251
|
+
--magritte-typography-_custom-3-italic-font-weight-v20-0-1:400;
|
|
252
|
+
--magritte-typography-_custom-3-italic-line-height-v20-0-1:24px;
|
|
253
|
+
--magritte-typography-_custom-3-italic-font-size-v20-0-1:14px;
|
|
254
|
+
--magritte-typography-_custom-3-italic-letter-spacing-v20-0-1:0.01em;
|
|
255
|
+
--magritte-typography-_custom-3-italic-text-indent-v20-0-1:0px;
|
|
256
|
+
--magritte-typography-_custom-3-italic-text-transform-v20-0-1:none;
|
|
257
|
+
--magritte-typography-_custom-3-italic-text-decoration-v20-0-1:none;
|
|
258
|
+
--magritte-typography-_custom-4-italic-font-family-v20-0-1:"hh sans";
|
|
259
|
+
--magritte-typography-_custom-4-italic-font-weight-v20-0-1:400;
|
|
260
|
+
--magritte-typography-_custom-4-italic-line-height-v20-0-1:22px;
|
|
261
|
+
--magritte-typography-_custom-4-italic-font-size-v20-0-1:12px;
|
|
262
|
+
--magritte-typography-_custom-4-italic-letter-spacing-v20-0-1:0.015em;
|
|
263
|
+
--magritte-typography-_custom-4-italic-text-indent-v20-0-1:0px;
|
|
264
|
+
--magritte-typography-_custom-4-italic-text-transform-v20-0-1:none;
|
|
265
|
+
--magritte-typography-_custom-4-italic-text-decoration-v20-0-1:none;
|
|
266
|
+
--magritte-typography-_custom-5-italic-font-family-v20-0-1:"hh sans";
|
|
267
|
+
--magritte-typography-_custom-5-italic-font-weight-v20-0-1:400;
|
|
268
|
+
--magritte-typography-_custom-5-italic-line-height-v20-0-1:12px;
|
|
269
|
+
--magritte-typography-_custom-5-italic-font-size-v20-0-1:10px;
|
|
270
|
+
--magritte-typography-_custom-5-italic-letter-spacing-v20-0-1:0.015em;
|
|
271
|
+
--magritte-typography-_custom-5-italic-text-indent-v20-0-1:0px;
|
|
272
|
+
--magritte-typography-_custom-5-italic-text-transform-v20-0-1:none;
|
|
273
|
+
--magritte-typography-_custom-5-italic-text-decoration-v20-0-1:none;
|
|
274
|
+
--magritte-semantic-animation-ease-in-out-100-duration-v20-0-1:100ms;
|
|
275
|
+
--magritte-semantic-animation-ease-in-out-200-timing-function-v20-0-1:cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
276
|
+
--magritte-semantic-animation-ease-in-out-200-duration-v20-0-1:200ms;
|
|
277
|
+
--magritte-static-space-300-v20-0-1:12px;
|
|
278
|
+
--magritte-static-space-400-v20-0-1:16px;
|
|
279
|
+
--magritte-static-space-600-v20-0-1:24px;
|
|
280
|
+
--magritte-static-border-radius-600-v20-0-1:24px;
|
|
17
281
|
}
|
|
18
282
|
.magritte-night-theme{
|
|
19
|
-
--magritte-color-component-drop-background-content-
|
|
20
|
-
--magritte-shadow-level-2-color-
|
|
21
|
-
--magritte-shadow-level-2-x-
|
|
22
|
-
--magritte-shadow-level-2-y-
|
|
23
|
-
--magritte-shadow-level-2-blur-
|
|
24
|
-
--magritte-shadow-level-2-spread-
|
|
283
|
+
--magritte-color-component-drop-background-content-v20-0-1:#1B1B1B;
|
|
284
|
+
--magritte-shadow-level-2-color-v20-0-1:#0000003d;
|
|
285
|
+
--magritte-shadow-level-2-x-v20-0-1:0px;
|
|
286
|
+
--magritte-shadow-level-2-y-v20-0-1:8px;
|
|
287
|
+
--magritte-shadow-level-2-blur-v20-0-1:16px;
|
|
288
|
+
--magritte-shadow-level-2-spread-v20-0-1:0px;
|
|
25
289
|
}
|
|
26
|
-
.magritte-
|
|
290
|
+
.magritte-with-inter{
|
|
291
|
+
--magritte-typography-title-1-semibold-font-family-v20-0-1:"Inter";
|
|
292
|
+
--magritte-typography-title-1-semibold-font-weight-v20-0-1:600;
|
|
293
|
+
--magritte-typography-title-1-semibold-line-height-v20-0-1:60px;
|
|
294
|
+
--magritte-typography-title-1-semibold-font-size-v20-0-1:48px;
|
|
295
|
+
--magritte-typography-title-1-semibold-letter-spacing-v20-0-1:-0.02em;
|
|
296
|
+
--magritte-typography-title-1-semibold-text-indent-v20-0-1:0px;
|
|
297
|
+
--magritte-typography-title-1-semibold-text-transform-v20-0-1:none;
|
|
298
|
+
--magritte-typography-title-1-semibold-text-decoration-v20-0-1:none;
|
|
299
|
+
--magritte-typography-title-2-semibold-font-family-v20-0-1:"Inter";
|
|
300
|
+
--magritte-typography-title-2-semibold-font-weight-v20-0-1:600;
|
|
301
|
+
--magritte-typography-title-2-semibold-line-height-v20-0-1:48px;
|
|
302
|
+
--magritte-typography-title-2-semibold-font-size-v20-0-1:36px;
|
|
303
|
+
--magritte-typography-title-2-semibold-letter-spacing-v20-0-1:-0.0175em;
|
|
304
|
+
--magritte-typography-title-2-semibold-text-indent-v20-0-1:0px;
|
|
305
|
+
--magritte-typography-title-2-semibold-text-transform-v20-0-1:none;
|
|
306
|
+
--magritte-typography-title-2-semibold-text-decoration-v20-0-1:none;
|
|
307
|
+
--magritte-typography-title-3-semibold-font-family-v20-0-1:"Inter";
|
|
308
|
+
--magritte-typography-title-3-semibold-font-weight-v20-0-1:600;
|
|
309
|
+
--magritte-typography-title-3-semibold-line-height-v20-0-1:40px;
|
|
310
|
+
--magritte-typography-title-3-semibold-font-size-v20-0-1:28px;
|
|
311
|
+
--magritte-typography-title-3-semibold-letter-spacing-v20-0-1:-0.0125em;
|
|
312
|
+
--magritte-typography-title-3-semibold-text-indent-v20-0-1:0px;
|
|
313
|
+
--magritte-typography-title-3-semibold-text-transform-v20-0-1:none;
|
|
314
|
+
--magritte-typography-title-3-semibold-text-decoration-v20-0-1:none;
|
|
315
|
+
--magritte-typography-title-4-semibold-font-family-v20-0-1:"Inter";
|
|
316
|
+
--magritte-typography-title-4-semibold-font-weight-v20-0-1:600;
|
|
317
|
+
--magritte-typography-title-4-semibold-line-height-v20-0-1:32px;
|
|
318
|
+
--magritte-typography-title-4-semibold-font-size-v20-0-1:22px;
|
|
319
|
+
--magritte-typography-title-4-semibold-letter-spacing-v20-0-1:-0.0075em;
|
|
320
|
+
--magritte-typography-title-4-semibold-text-indent-v20-0-1:0px;
|
|
321
|
+
--magritte-typography-title-4-semibold-text-transform-v20-0-1:none;
|
|
322
|
+
--magritte-typography-title-4-semibold-text-decoration-v20-0-1:none;
|
|
323
|
+
--magritte-typography-title-5-semibold-font-family-v20-0-1:"Inter";
|
|
324
|
+
--magritte-typography-title-5-semibold-font-weight-v20-0-1:600;
|
|
325
|
+
--magritte-typography-title-5-semibold-line-height-v20-0-1:26px;
|
|
326
|
+
--magritte-typography-title-5-semibold-font-size-v20-0-1:18px;
|
|
327
|
+
--magritte-typography-title-5-semibold-letter-spacing-v20-0-1:0em;
|
|
328
|
+
--magritte-typography-title-5-semibold-text-indent-v20-0-1:0px;
|
|
329
|
+
--magritte-typography-title-5-semibold-text-transform-v20-0-1:none;
|
|
330
|
+
--magritte-typography-title-5-semibold-text-decoration-v20-0-1:none;
|
|
331
|
+
--magritte-typography-subtitle-1-semibold-font-family-v20-0-1:"Inter";
|
|
332
|
+
--magritte-typography-subtitle-1-semibold-font-weight-v20-0-1:600;
|
|
333
|
+
--magritte-typography-subtitle-1-semibold-line-height-v20-0-1:22px;
|
|
334
|
+
--magritte-typography-subtitle-1-semibold-font-size-v20-0-1:16px;
|
|
335
|
+
--magritte-typography-subtitle-1-semibold-letter-spacing-v20-0-1:0em;
|
|
336
|
+
--magritte-typography-subtitle-1-semibold-text-indent-v20-0-1:0px;
|
|
337
|
+
--magritte-typography-subtitle-1-semibold-text-transform-v20-0-1:none;
|
|
338
|
+
--magritte-typography-subtitle-1-semibold-text-decoration-v20-0-1:none;
|
|
339
|
+
--magritte-typography-subtitle-2-semibold-font-family-v20-0-1:"Inter";
|
|
340
|
+
--magritte-typography-subtitle-2-semibold-font-weight-v20-0-1:600;
|
|
341
|
+
--magritte-typography-subtitle-2-semibold-line-height-v20-0-1:20px;
|
|
342
|
+
--magritte-typography-subtitle-2-semibold-font-size-v20-0-1:14px;
|
|
343
|
+
--magritte-typography-subtitle-2-semibold-letter-spacing-v20-0-1:0.005em;
|
|
344
|
+
--magritte-typography-subtitle-2-semibold-text-indent-v20-0-1:0px;
|
|
345
|
+
--magritte-typography-subtitle-2-semibold-text-transform-v20-0-1:none;
|
|
346
|
+
--magritte-typography-subtitle-2-semibold-text-decoration-v20-0-1:none;
|
|
347
|
+
--magritte-typography-subtitle-3-semibold-font-family-v20-0-1:"Inter";
|
|
348
|
+
--magritte-typography-subtitle-3-semibold-font-weight-v20-0-1:600;
|
|
349
|
+
--magritte-typography-subtitle-3-semibold-line-height-v20-0-1:18px;
|
|
350
|
+
--magritte-typography-subtitle-3-semibold-font-size-v20-0-1:12px;
|
|
351
|
+
--magritte-typography-subtitle-3-semibold-letter-spacing-v20-0-1:0.01em;
|
|
352
|
+
--magritte-typography-subtitle-3-semibold-text-indent-v20-0-1:0px;
|
|
353
|
+
--magritte-typography-subtitle-3-semibold-text-transform-v20-0-1:none;
|
|
354
|
+
--magritte-typography-subtitle-3-semibold-text-decoration-v20-0-1:none;
|
|
355
|
+
--magritte-typography-subtitle-4-semibold-font-family-v20-0-1:"Inter";
|
|
356
|
+
--magritte-typography-subtitle-4-semibold-font-weight-v20-0-1:600;
|
|
357
|
+
--magritte-typography-subtitle-4-semibold-line-height-v20-0-1:16px;
|
|
358
|
+
--magritte-typography-subtitle-4-semibold-font-size-v20-0-1:10px;
|
|
359
|
+
--magritte-typography-subtitle-4-semibold-letter-spacing-v20-0-1:0.015em;
|
|
360
|
+
--magritte-typography-subtitle-4-semibold-text-indent-v20-0-1:0px;
|
|
361
|
+
--magritte-typography-subtitle-4-semibold-text-transform-v20-0-1:none;
|
|
362
|
+
--magritte-typography-subtitle-4-semibold-text-decoration-v20-0-1:none;
|
|
363
|
+
--magritte-typography-label-1-regular-font-family-v20-0-1:"Inter";
|
|
364
|
+
--magritte-typography-label-1-regular-font-weight-v20-0-1:400;
|
|
365
|
+
--magritte-typography-label-1-regular-line-height-v20-0-1:26px;
|
|
366
|
+
--magritte-typography-label-1-regular-font-size-v20-0-1:18px;
|
|
367
|
+
--magritte-typography-label-1-regular-letter-spacing-v20-0-1:-0.005em;
|
|
368
|
+
--magritte-typography-label-1-regular-text-indent-v20-0-1:0px;
|
|
369
|
+
--magritte-typography-label-1-regular-text-transform-v20-0-1:none;
|
|
370
|
+
--magritte-typography-label-1-regular-text-decoration-v20-0-1:none;
|
|
371
|
+
--magritte-typography-label-2-regular-font-family-v20-0-1:"Inter";
|
|
372
|
+
--magritte-typography-label-2-regular-font-weight-v20-0-1:400;
|
|
373
|
+
--magritte-typography-label-2-regular-line-height-v20-0-1:22px;
|
|
374
|
+
--magritte-typography-label-2-regular-font-size-v20-0-1:16px;
|
|
375
|
+
--magritte-typography-label-2-regular-letter-spacing-v20-0-1:0em;
|
|
376
|
+
--magritte-typography-label-2-regular-text-indent-v20-0-1:0px;
|
|
377
|
+
--magritte-typography-label-2-regular-text-transform-v20-0-1:none;
|
|
378
|
+
--magritte-typography-label-2-regular-text-decoration-v20-0-1:none;
|
|
379
|
+
--magritte-typography-label-3-regular-font-family-v20-0-1:"Inter";
|
|
380
|
+
--magritte-typography-label-3-regular-font-weight-v20-0-1:400;
|
|
381
|
+
--magritte-typography-label-3-regular-line-height-v20-0-1:20px;
|
|
382
|
+
--magritte-typography-label-3-regular-font-size-v20-0-1:14px;
|
|
383
|
+
--magritte-typography-label-3-regular-letter-spacing-v20-0-1:0.005em;
|
|
384
|
+
--magritte-typography-label-3-regular-text-indent-v20-0-1:0px;
|
|
385
|
+
--magritte-typography-label-3-regular-text-transform-v20-0-1:none;
|
|
386
|
+
--magritte-typography-label-3-regular-text-decoration-v20-0-1:none;
|
|
387
|
+
--magritte-typography-label-4-regular-font-family-v20-0-1:"Inter";
|
|
388
|
+
--magritte-typography-label-4-regular-font-weight-v20-0-1:400;
|
|
389
|
+
--magritte-typography-label-4-regular-line-height-v20-0-1:18px;
|
|
390
|
+
--magritte-typography-label-4-regular-font-size-v20-0-1:12px;
|
|
391
|
+
--magritte-typography-label-4-regular-letter-spacing-v20-0-1:0.01em;
|
|
392
|
+
--magritte-typography-label-4-regular-text-indent-v20-0-1:0px;
|
|
393
|
+
--magritte-typography-label-4-regular-text-transform-v20-0-1:none;
|
|
394
|
+
--magritte-typography-label-4-regular-text-decoration-v20-0-1:none;
|
|
395
|
+
--magritte-typography-label-5-regular-font-family-v20-0-1:"Inter";
|
|
396
|
+
--magritte-typography-label-5-regular-font-weight-v20-0-1:400;
|
|
397
|
+
--magritte-typography-label-5-regular-line-height-v20-0-1:14px;
|
|
398
|
+
--magritte-typography-label-5-regular-font-size-v20-0-1:10px;
|
|
399
|
+
--magritte-typography-label-5-regular-letter-spacing-v20-0-1:0.02em;
|
|
400
|
+
--magritte-typography-label-5-regular-text-indent-v20-0-1:0px;
|
|
401
|
+
--magritte-typography-label-5-regular-text-transform-v20-0-1:none;
|
|
402
|
+
--magritte-typography-label-5-regular-text-decoration-v20-0-1:none;
|
|
403
|
+
--magritte-typography-paragraph-1-regular-font-family-v20-0-1:"Inter";
|
|
404
|
+
--magritte-typography-paragraph-1-regular-font-weight-v20-0-1:400;
|
|
405
|
+
--magritte-typography-paragraph-1-regular-line-height-v20-0-1:28px;
|
|
406
|
+
--magritte-typography-paragraph-1-regular-font-size-v20-0-1:18px;
|
|
407
|
+
--magritte-typography-paragraph-1-regular-letter-spacing-v20-0-1:0em;
|
|
408
|
+
--magritte-typography-paragraph-1-regular-text-indent-v20-0-1:0px;
|
|
409
|
+
--magritte-typography-paragraph-1-regular-text-transform-v20-0-1:none;
|
|
410
|
+
--magritte-typography-paragraph-1-regular-text-decoration-v20-0-1:none;
|
|
411
|
+
--magritte-typography-paragraph-2-regular-font-family-v20-0-1:"Inter";
|
|
412
|
+
--magritte-typography-paragraph-2-regular-font-weight-v20-0-1:400;
|
|
413
|
+
--magritte-typography-paragraph-2-regular-line-height-v20-0-1:26px;
|
|
414
|
+
--magritte-typography-paragraph-2-regular-font-size-v20-0-1:16px;
|
|
415
|
+
--magritte-typography-paragraph-2-regular-letter-spacing-v20-0-1:0.005em;
|
|
416
|
+
--magritte-typography-paragraph-2-regular-text-indent-v20-0-1:0px;
|
|
417
|
+
--magritte-typography-paragraph-2-regular-text-transform-v20-0-1:none;
|
|
418
|
+
--magritte-typography-paragraph-2-regular-text-decoration-v20-0-1:none;
|
|
419
|
+
--magritte-typography-paragraph-3-regular-font-family-v20-0-1:"Inter";
|
|
420
|
+
--magritte-typography-paragraph-3-regular-font-weight-v20-0-1:400;
|
|
421
|
+
--magritte-typography-paragraph-3-regular-line-height-v20-0-1:24px;
|
|
422
|
+
--magritte-typography-paragraph-3-regular-font-size-v20-0-1:14px;
|
|
423
|
+
--magritte-typography-paragraph-3-regular-letter-spacing-v20-0-1:0.01em;
|
|
424
|
+
--magritte-typography-paragraph-3-regular-text-indent-v20-0-1:0px;
|
|
425
|
+
--magritte-typography-paragraph-3-regular-text-transform-v20-0-1:none;
|
|
426
|
+
--magritte-typography-paragraph-3-regular-text-decoration-v20-0-1:none;
|
|
427
|
+
--magritte-typography-paragraph-4-regular-font-family-v20-0-1:"Inter";
|
|
428
|
+
--magritte-typography-paragraph-4-regular-font-weight-v20-0-1:400;
|
|
429
|
+
--magritte-typography-paragraph-4-regular-line-height-v20-0-1:22px;
|
|
430
|
+
--magritte-typography-paragraph-4-regular-font-size-v20-0-1:12px;
|
|
431
|
+
--magritte-typography-paragraph-4-regular-letter-spacing-v20-0-1:0.015em;
|
|
432
|
+
--magritte-typography-paragraph-4-regular-text-indent-v20-0-1:0px;
|
|
433
|
+
--magritte-typography-paragraph-4-regular-text-transform-v20-0-1:none;
|
|
434
|
+
--magritte-typography-paragraph-4-regular-text-decoration-v20-0-1:none;
|
|
435
|
+
--magritte-typography-_custom-1-semibold-font-family-v20-0-1:"Inter";
|
|
436
|
+
--magritte-typography-_custom-1-semibold-font-weight-v20-0-1:600;
|
|
437
|
+
--magritte-typography-_custom-1-semibold-line-height-v20-0-1:28px;
|
|
438
|
+
--magritte-typography-_custom-1-semibold-font-size-v20-0-1:18px;
|
|
439
|
+
--magritte-typography-_custom-1-semibold-letter-spacing-v20-0-1:0em;
|
|
440
|
+
--magritte-typography-_custom-1-semibold-text-indent-v20-0-1:0px;
|
|
441
|
+
--magritte-typography-_custom-1-semibold-text-transform-v20-0-1:none;
|
|
442
|
+
--magritte-typography-_custom-1-semibold-text-decoration-v20-0-1:none;
|
|
443
|
+
--magritte-typography-_custom-2-semibold-font-family-v20-0-1:"Inter";
|
|
444
|
+
--magritte-typography-_custom-2-semibold-font-weight-v20-0-1:600;
|
|
445
|
+
--magritte-typography-_custom-2-semibold-line-height-v20-0-1:26px;
|
|
446
|
+
--magritte-typography-_custom-2-semibold-font-size-v20-0-1:16px;
|
|
447
|
+
--magritte-typography-_custom-2-semibold-letter-spacing-v20-0-1:0.005em;
|
|
448
|
+
--magritte-typography-_custom-2-semibold-text-indent-v20-0-1:0px;
|
|
449
|
+
--magritte-typography-_custom-2-semibold-text-transform-v20-0-1:none;
|
|
450
|
+
--magritte-typography-_custom-2-semibold-text-decoration-v20-0-1:none;
|
|
451
|
+
--magritte-typography-_custom-3-semibold-font-family-v20-0-1:"Inter";
|
|
452
|
+
--magritte-typography-_custom-3-semibold-font-weight-v20-0-1:600;
|
|
453
|
+
--magritte-typography-_custom-3-semibold-line-height-v20-0-1:24px;
|
|
454
|
+
--magritte-typography-_custom-3-semibold-font-size-v20-0-1:14px;
|
|
455
|
+
--magritte-typography-_custom-3-semibold-letter-spacing-v20-0-1:0.01em;
|
|
456
|
+
--magritte-typography-_custom-3-semibold-text-indent-v20-0-1:0px;
|
|
457
|
+
--magritte-typography-_custom-3-semibold-text-transform-v20-0-1:none;
|
|
458
|
+
--magritte-typography-_custom-3-semibold-text-decoration-v20-0-1:none;
|
|
459
|
+
--magritte-typography-_custom-4-semibold-font-family-v20-0-1:"Inter";
|
|
460
|
+
--magritte-typography-_custom-4-semibold-font-weight-v20-0-1:400;
|
|
461
|
+
--magritte-typography-_custom-4-semibold-line-height-v20-0-1:22px;
|
|
462
|
+
--magritte-typography-_custom-4-semibold-font-size-v20-0-1:12px;
|
|
463
|
+
--magritte-typography-_custom-4-semibold-letter-spacing-v20-0-1:0.015em;
|
|
464
|
+
--magritte-typography-_custom-4-semibold-text-indent-v20-0-1:0px;
|
|
465
|
+
--magritte-typography-_custom-4-semibold-text-transform-v20-0-1:none;
|
|
466
|
+
--magritte-typography-_custom-4-semibold-text-decoration-v20-0-1:none;
|
|
467
|
+
--magritte-typography-_custom-5-semibold-font-family-v20-0-1:"Inter";
|
|
468
|
+
--magritte-typography-_custom-5-semibold-font-weight-v20-0-1:400;
|
|
469
|
+
--magritte-typography-_custom-5-semibold-line-height-v20-0-1:12px;
|
|
470
|
+
--magritte-typography-_custom-5-semibold-font-size-v20-0-1:10px;
|
|
471
|
+
--magritte-typography-_custom-5-semibold-letter-spacing-v20-0-1:0.015em;
|
|
472
|
+
--magritte-typography-_custom-5-semibold-text-indent-v20-0-1:0px;
|
|
473
|
+
--magritte-typography-_custom-5-semibold-text-transform-v20-0-1:none;
|
|
474
|
+
--magritte-typography-_custom-5-semibold-text-decoration-v20-0-1:none;
|
|
475
|
+
--magritte-typography-_custom-1-medium-font-family-v20-0-1:"Inter";
|
|
476
|
+
--magritte-typography-_custom-1-medium-font-weight-v20-0-1:undefined;
|
|
477
|
+
--magritte-typography-_custom-1-medium-line-height-v20-0-1:28px;
|
|
478
|
+
--magritte-typography-_custom-1-medium-font-size-v20-0-1:18px;
|
|
479
|
+
--magritte-typography-_custom-1-medium-letter-spacing-v20-0-1:0em;
|
|
480
|
+
--magritte-typography-_custom-1-medium-text-indent-v20-0-1:0px;
|
|
481
|
+
--magritte-typography-_custom-1-medium-text-transform-v20-0-1:none;
|
|
482
|
+
--magritte-typography-_custom-1-medium-text-decoration-v20-0-1:none;
|
|
483
|
+
--magritte-typography-_custom-2-medium-font-family-v20-0-1:"Inter";
|
|
484
|
+
--magritte-typography-_custom-2-medium-font-weight-v20-0-1:undefined;
|
|
485
|
+
--magritte-typography-_custom-2-medium-line-height-v20-0-1:26px;
|
|
486
|
+
--magritte-typography-_custom-2-medium-font-size-v20-0-1:16px;
|
|
487
|
+
--magritte-typography-_custom-2-medium-letter-spacing-v20-0-1:0.005em;
|
|
488
|
+
--magritte-typography-_custom-2-medium-text-indent-v20-0-1:0px;
|
|
489
|
+
--magritte-typography-_custom-2-medium-text-transform-v20-0-1:none;
|
|
490
|
+
--magritte-typography-_custom-2-medium-text-decoration-v20-0-1:none;
|
|
491
|
+
--magritte-typography-_custom-3-medium-font-family-v20-0-1:"Inter";
|
|
492
|
+
--magritte-typography-_custom-3-medium-font-weight-v20-0-1:undefined;
|
|
493
|
+
--magritte-typography-_custom-3-medium-line-height-v20-0-1:24px;
|
|
494
|
+
--magritte-typography-_custom-3-medium-font-size-v20-0-1:14px;
|
|
495
|
+
--magritte-typography-_custom-3-medium-letter-spacing-v20-0-1:0.01em;
|
|
496
|
+
--magritte-typography-_custom-3-medium-text-indent-v20-0-1:0px;
|
|
497
|
+
--magritte-typography-_custom-3-medium-text-transform-v20-0-1:none;
|
|
498
|
+
--magritte-typography-_custom-3-medium-text-decoration-v20-0-1:none;
|
|
499
|
+
--magritte-typography-_custom-4-medium-font-family-v20-0-1:"Inter";
|
|
500
|
+
--magritte-typography-_custom-4-medium-font-weight-v20-0-1:undefined;
|
|
501
|
+
--magritte-typography-_custom-4-medium-line-height-v20-0-1:22px;
|
|
502
|
+
--magritte-typography-_custom-4-medium-font-size-v20-0-1:12px;
|
|
503
|
+
--magritte-typography-_custom-4-medium-letter-spacing-v20-0-1:0.015em;
|
|
504
|
+
--magritte-typography-_custom-4-medium-text-indent-v20-0-1:0px;
|
|
505
|
+
--magritte-typography-_custom-4-medium-text-transform-v20-0-1:none;
|
|
506
|
+
--magritte-typography-_custom-4-medium-text-decoration-v20-0-1:none;
|
|
507
|
+
--magritte-typography-_custom-5-medium-font-family-v20-0-1:"Inter";
|
|
508
|
+
--magritte-typography-_custom-5-medium-font-weight-v20-0-1:undefined;
|
|
509
|
+
--magritte-typography-_custom-5-medium-line-height-v20-0-1:12px;
|
|
510
|
+
--magritte-typography-_custom-5-medium-font-size-v20-0-1:10px;
|
|
511
|
+
--magritte-typography-_custom-5-medium-letter-spacing-v20-0-1:0.015em;
|
|
512
|
+
--magritte-typography-_custom-5-medium-text-indent-v20-0-1:0px;
|
|
513
|
+
--magritte-typography-_custom-5-medium-text-transform-v20-0-1:none;
|
|
514
|
+
--magritte-typography-_custom-5-medium-text-decoration-v20-0-1:none;
|
|
515
|
+
--magritte-typography-_custom-1-italic-font-family-v20-0-1:"Inter";
|
|
516
|
+
--magritte-typography-_custom-1-italic-font-weight-v20-0-1:200;
|
|
517
|
+
--magritte-typography-_custom-1-italic-line-height-v20-0-1:28px;
|
|
518
|
+
--magritte-typography-_custom-1-italic-font-size-v20-0-1:18px;
|
|
519
|
+
--magritte-typography-_custom-1-italic-letter-spacing-v20-0-1:0em;
|
|
520
|
+
--magritte-typography-_custom-1-italic-text-indent-v20-0-1:0px;
|
|
521
|
+
--magritte-typography-_custom-1-italic-text-transform-v20-0-1:none;
|
|
522
|
+
--magritte-typography-_custom-1-italic-text-decoration-v20-0-1:none;
|
|
523
|
+
--magritte-typography-_custom-2-italic-font-family-v20-0-1:"Inter";
|
|
524
|
+
--magritte-typography-_custom-2-italic-font-weight-v20-0-1:200;
|
|
525
|
+
--magritte-typography-_custom-2-italic-line-height-v20-0-1:26px;
|
|
526
|
+
--magritte-typography-_custom-2-italic-font-size-v20-0-1:16px;
|
|
527
|
+
--magritte-typography-_custom-2-italic-letter-spacing-v20-0-1:0.005em;
|
|
528
|
+
--magritte-typography-_custom-2-italic-text-indent-v20-0-1:0px;
|
|
529
|
+
--magritte-typography-_custom-2-italic-text-transform-v20-0-1:none;
|
|
530
|
+
--magritte-typography-_custom-2-italic-text-decoration-v20-0-1:none;
|
|
531
|
+
--magritte-typography-_custom-3-italic-font-family-v20-0-1:"Inter";
|
|
532
|
+
--magritte-typography-_custom-3-italic-font-weight-v20-0-1:200;
|
|
533
|
+
--magritte-typography-_custom-3-italic-line-height-v20-0-1:24px;
|
|
534
|
+
--magritte-typography-_custom-3-italic-font-size-v20-0-1:14px;
|
|
535
|
+
--magritte-typography-_custom-3-italic-letter-spacing-v20-0-1:0.01em;
|
|
536
|
+
--magritte-typography-_custom-3-italic-text-indent-v20-0-1:0px;
|
|
537
|
+
--magritte-typography-_custom-3-italic-text-transform-v20-0-1:none;
|
|
538
|
+
--magritte-typography-_custom-3-italic-text-decoration-v20-0-1:none;
|
|
539
|
+
--magritte-typography-_custom-4-italic-font-family-v20-0-1:"Inter";
|
|
540
|
+
--magritte-typography-_custom-4-italic-font-weight-v20-0-1:200;
|
|
541
|
+
--magritte-typography-_custom-4-italic-line-height-v20-0-1:22px;
|
|
542
|
+
--magritte-typography-_custom-4-italic-font-size-v20-0-1:12px;
|
|
543
|
+
--magritte-typography-_custom-4-italic-letter-spacing-v20-0-1:0.015em;
|
|
544
|
+
--magritte-typography-_custom-4-italic-text-indent-v20-0-1:0px;
|
|
545
|
+
--magritte-typography-_custom-4-italic-text-transform-v20-0-1:none;
|
|
546
|
+
--magritte-typography-_custom-4-italic-text-decoration-v20-0-1:none;
|
|
547
|
+
--magritte-typography-_custom-5-italic-font-family-v20-0-1:"Inter";
|
|
548
|
+
--magritte-typography-_custom-5-italic-font-weight-v20-0-1:200;
|
|
549
|
+
--magritte-typography-_custom-5-italic-line-height-v20-0-1:12px;
|
|
550
|
+
--magritte-typography-_custom-5-italic-font-size-v20-0-1:10px;
|
|
551
|
+
--magritte-typography-_custom-5-italic-letter-spacing-v20-0-1:0.015em;
|
|
552
|
+
--magritte-typography-_custom-5-italic-text-indent-v20-0-1:0px;
|
|
553
|
+
--magritte-typography-_custom-5-italic-text-transform-v20-0-1:none;
|
|
554
|
+
--magritte-typography-_custom-5-italic-text-decoration-v20-0-1:none;
|
|
555
|
+
}
|
|
556
|
+
.magritte-drop___Z10P4_7-2-6{
|
|
27
557
|
position:relative;
|
|
28
558
|
display:flex;
|
|
29
559
|
flex-direction:column;
|
|
30
|
-
background:var(--magritte-color-component-drop-background-content-
|
|
31
|
-
border-radius:var(--magritte-static-border-radius-600-
|
|
32
|
-
box-shadow:var(--magritte-shadow-level-2-x-
|
|
560
|
+
background:var(--magritte-color-component-drop-background-content-v20-0-1);
|
|
561
|
+
border-radius:var(--magritte-static-border-radius-600-v20-0-1);
|
|
562
|
+
box-shadow:var(--magritte-shadow-level-2-x-v20-0-1) var(--magritte-shadow-level-2-y-v20-0-1) var(--magritte-shadow-level-2-blur-v20-0-1) var(--magritte-shadow-level-2-spread-v20-0-1) var(--magritte-shadow-level-2-color-v20-0-1);
|
|
33
563
|
box-sizing:border-box;
|
|
34
564
|
height:100%;
|
|
35
565
|
overflow:hidden;
|
|
36
566
|
}
|
|
37
|
-
.magritte-drop-container___dbMt9_7-2-
|
|
567
|
+
.magritte-drop-container___dbMt9_7-2-6{
|
|
38
568
|
display:block;
|
|
39
569
|
overflow:auto;
|
|
40
570
|
}
|
|
41
|
-
.magritte-divider-container___ZCdDW_7-2-
|
|
571
|
+
.magritte-divider-container___ZCdDW_7-2-6{
|
|
42
572
|
visibility:hidden;
|
|
43
573
|
}
|
|
44
|
-
.magritte-drop-footer___v8ZEO_7-2-
|
|
574
|
+
.magritte-drop-footer___v8ZEO_7-2-6{
|
|
45
575
|
display:flex;
|
|
46
576
|
flex-flow:column;
|
|
47
577
|
gap:12px;
|
|
48
578
|
}
|
|
49
|
-
.magritte-drop-space-300___41acH_7-2-
|
|
50
|
-
.magritte-drop-space-300___41acH_7-2-
|
|
51
|
-
padding:var(--magritte-static-space-300-
|
|
579
|
+
.magritte-drop-space-300___41acH_7-2-6 .magritte-drop-container___dbMt9_7-2-6,
|
|
580
|
+
.magritte-drop-space-300___41acH_7-2-6 .magritte-drop-footer___v8ZEO_7-2-6{
|
|
581
|
+
padding:var(--magritte-static-space-300-v20-0-1);
|
|
52
582
|
}
|
|
53
|
-
.magritte-drop-space-400___XX1RM_7-2-
|
|
54
|
-
.magritte-drop-space-400___XX1RM_7-2-
|
|
55
|
-
.magritte-drop-space-400___XX1RM_7-2-
|
|
56
|
-
padding:var(--magritte-static-space-400-
|
|
583
|
+
.magritte-drop-space-400___XX1RM_7-2-6 .magritte-drop-padding___xBiJO_7-2-6,
|
|
584
|
+
.magritte-drop-space-400___XX1RM_7-2-6 .magritte-drop-container___dbMt9_7-2-6,
|
|
585
|
+
.magritte-drop-space-400___XX1RM_7-2-6 .magritte-drop-footer___v8ZEO_7-2-6{
|
|
586
|
+
padding:var(--magritte-static-space-400-v20-0-1);
|
|
57
587
|
}
|
|
58
|
-
.magritte-drop-space-600___6B1i0_7-2-
|
|
59
|
-
.magritte-drop-space-600___6B1i0_7-2-
|
|
60
|
-
.magritte-drop-space-600___6B1i0_7-2-
|
|
61
|
-
padding:var(--magritte-static-space-600-
|
|
588
|
+
.magritte-drop-space-600___6B1i0_7-2-6 .magritte-drop-padding___xBiJO_7-2-6,
|
|
589
|
+
.magritte-drop-space-600___6B1i0_7-2-6 .magritte-drop-container___dbMt9_7-2-6,
|
|
590
|
+
.magritte-drop-space-600___6B1i0_7-2-6 .magritte-drop-footer___v8ZEO_7-2-6{
|
|
591
|
+
padding:var(--magritte-static-space-600-v20-0-1);
|
|
62
592
|
}
|
|
63
|
-
.magritte-drop-with-footer___CgBIV_7-2-
|
|
593
|
+
.magritte-drop-with-footer___CgBIV_7-2-6 .magritte-drop-container___dbMt9_7-2-6{
|
|
64
594
|
padding-bottom:0;
|
|
65
595
|
}
|
|
66
596
|
@media (prefers-reduced-motion: no-preference){
|
|
67
|
-
.magritte-drop-enter___4vEuH_7-2-
|
|
597
|
+
.magritte-drop-enter___4vEuH_7-2-6 .magritte-drop___Z10P4_7-2-6{
|
|
68
598
|
opacity:0;
|
|
69
599
|
}
|
|
70
|
-
.magritte-drop-exit___brFjz_7-2-
|
|
71
|
-
.magritte-drop-enter-active___SQUog_7-2-
|
|
600
|
+
.magritte-drop-exit___brFjz_7-2-6 .magritte-drop___Z10P4_7-2-6,
|
|
601
|
+
.magritte-drop-enter-active___SQUog_7-2-6 .magritte-drop___Z10P4_7-2-6{
|
|
72
602
|
opacity:1;
|
|
73
603
|
}
|
|
74
|
-
.magritte-drop-exit-active___GB0ET_7-2-
|
|
604
|
+
.magritte-drop-exit-active___GB0ET_7-2-6 .magritte-drop___Z10P4_7-2-6{
|
|
75
605
|
opacity:0;
|
|
76
606
|
}
|
|
77
|
-
.magritte-drop-animation-timeout___uO7LF_7-2-
|
|
78
|
-
.magritte-drop-enter-active___SQUog_7-2-
|
|
607
|
+
.magritte-drop-animation-timeout___uO7LF_7-2-6,
|
|
608
|
+
.magritte-drop-enter-active___SQUog_7-2-6 .magritte-drop___Z10P4_7-2-6{
|
|
79
609
|
transition-property:opacity, transform;
|
|
80
|
-
transition-duration:var(--magritte-semantic-animation-ease-in-out-200-duration-
|
|
81
|
-
transition-timing-function:var(--magritte-semantic-animation-ease-in-out-200-timing-function-
|
|
82
|
-
--animation-duration:var(--magritte-semantic-animation-ease-in-out-200-duration-
|
|
610
|
+
transition-duration:var(--magritte-semantic-animation-ease-in-out-200-duration-v20-0-1);
|
|
611
|
+
transition-timing-function:var(--magritte-semantic-animation-ease-in-out-200-timing-function-v20-0-1);
|
|
612
|
+
--animation-duration:var(--magritte-semantic-animation-ease-in-out-200-duration-v20-0-1);
|
|
83
613
|
}
|
|
84
|
-
.magritte-drop-animation-timeout___uO7LF_7-2-
|
|
85
|
-
.magritte-drop-exit-active___GB0ET_7-2-
|
|
614
|
+
.magritte-drop-animation-timeout___uO7LF_7-2-6,
|
|
615
|
+
.magritte-drop-exit-active___GB0ET_7-2-6 .magritte-drop___Z10P4_7-2-6{
|
|
86
616
|
transition-property:opacity, transform;
|
|
87
|
-
transition-duration:var(--magritte-semantic-animation-ease-in-out-100-duration-
|
|
88
|
-
transition-timing-function:var(--magritte-semantic-animation-ease-in-out-200-timing-function-
|
|
617
|
+
transition-duration:var(--magritte-semantic-animation-ease-in-out-100-duration-v20-0-1);
|
|
618
|
+
transition-timing-function:var(--magritte-semantic-animation-ease-in-out-200-timing-function-v20-0-1);
|
|
89
619
|
}
|
|
90
|
-
.magritte-drop-enter___4vEuH_7-2-
|
|
620
|
+
.magritte-drop-enter___4vEuH_7-2-6[data-magritte-drop-base-direction='top'] .magritte-drop___Z10P4_7-2-6{
|
|
91
621
|
transform:translateY(-4px);
|
|
92
622
|
}
|
|
93
|
-
.magritte-drop-exit-active___GB0ET_7-2-
|
|
623
|
+
.magritte-drop-exit-active___GB0ET_7-2-6[data-magritte-drop-base-direction='top'] .magritte-drop___Z10P4_7-2-6{
|
|
94
624
|
transform:translateY(-4px);
|
|
95
625
|
}
|
|
96
|
-
.magritte-drop-enter___4vEuH_7-2-
|
|
626
|
+
.magritte-drop-enter___4vEuH_7-2-6[data-magritte-drop-base-direction='bottom'] .magritte-drop___Z10P4_7-2-6{
|
|
97
627
|
transform:translateY(4px);
|
|
98
628
|
}
|
|
99
|
-
.magritte-drop-exit-active___GB0ET_7-2-
|
|
629
|
+
.magritte-drop-exit-active___GB0ET_7-2-6[data-magritte-drop-base-direction='bottom'] .magritte-drop___Z10P4_7-2-6{
|
|
100
630
|
transform:translateY(4px);
|
|
101
631
|
}
|
|
102
|
-
.magritte-drop-enter___4vEuH_7-2-
|
|
632
|
+
.magritte-drop-enter___4vEuH_7-2-6[data-magritte-drop-base-direction='left'] .magritte-drop___Z10P4_7-2-6{
|
|
103
633
|
transform:translateX(-4px);
|
|
104
634
|
}
|
|
105
|
-
.magritte-drop-exit-active___GB0ET_7-2-
|
|
635
|
+
.magritte-drop-exit-active___GB0ET_7-2-6[data-magritte-drop-base-direction='left'] .magritte-drop___Z10P4_7-2-6{
|
|
106
636
|
transform:translateX(4px);
|
|
107
637
|
}
|
|
108
|
-
.magritte-drop-enter___4vEuH_7-2-
|
|
638
|
+
.magritte-drop-enter___4vEuH_7-2-6[data-magritte-drop-base-direction='right'] .magritte-drop___Z10P4_7-2-6{
|
|
109
639
|
transform:translateX(4px);
|
|
110
640
|
}
|
|
111
|
-
.magritte-drop-exit-active___GB0ET_7-2-
|
|
641
|
+
.magritte-drop-exit-active___GB0ET_7-2-6[data-magritte-drop-base-direction='right'] .magritte-drop___Z10P4_7-2-6{
|
|
112
642
|
transform:translateX(4px);
|
|
113
643
|
}
|
|
114
|
-
.magritte-drop-exit___brFjz_7-2-
|
|
115
|
-
.magritte-drop-enter-active___SQUog_7-2-
|
|
644
|
+
.magritte-drop-exit___brFjz_7-2-6[data-magritte-drop-base-direction='left'] .magritte-drop___Z10P4_7-2-6,
|
|
645
|
+
.magritte-drop-enter-active___SQUog_7-2-6[data-magritte-drop-base-direction='left'] .magritte-drop___Z10P4_7-2-6{
|
|
116
646
|
transform:translateX(0%);
|
|
117
647
|
}
|
|
118
|
-
.magritte-drop-exit___brFjz_7-2-
|
|
119
|
-
.magritte-drop-enter-active___SQUog_7-2-
|
|
648
|
+
.magritte-drop-exit___brFjz_7-2-6[data-magritte-drop-base-direction='bottom'] .magritte-drop___Z10P4_7-2-6,
|
|
649
|
+
.magritte-drop-enter-active___SQUog_7-2-6[data-magritte-drop-base-direction='bottom'] .magritte-drop___Z10P4_7-2-6{
|
|
120
650
|
transform:translateY(0%);
|
|
121
651
|
}
|
|
122
|
-
.magritte-drop-exit___brFjz_7-2-
|
|
123
|
-
.magritte-drop-enter-active___SQUog_7-2-
|
|
652
|
+
.magritte-drop-exit___brFjz_7-2-6[data-magritte-drop-base-direction='right'] .magritte-drop___Z10P4_7-2-6,
|
|
653
|
+
.magritte-drop-enter-active___SQUog_7-2-6[data-magritte-drop-base-direction='right'] .magritte-drop___Z10P4_7-2-6{
|
|
124
654
|
transform:translateX(0%);
|
|
125
655
|
}
|
|
126
|
-
.magritte-drop-exit___brFjz_7-2-
|
|
127
|
-
.magritte-drop-enter-active___SQUog_7-2-
|
|
656
|
+
.magritte-drop-exit___brFjz_7-2-6[data-magritte-drop-base-direction='top'] .magritte-drop___Z10P4_7-2-6,
|
|
657
|
+
.magritte-drop-enter-active___SQUog_7-2-6[data-magritte-drop-base-direction='top'] .magritte-drop___Z10P4_7-2-6{
|
|
128
658
|
transform:translateY(0%);
|
|
129
659
|
}
|
|
130
660
|
}
|
package/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import 'classnames';
|
|
|
7
7
|
import '@hh.ru/magritte-internal-drop-base';
|
|
8
8
|
import '@hh.ru/magritte-internal-layer-name';
|
|
9
9
|
import '@hh.ru/magritte-ui-breakpoint';
|
|
10
|
-
import './DropContainer-
|
|
10
|
+
import './DropContainer-DHwtZ8QE.js';
|
|
11
11
|
import '@hh.ru/magritte-common-use-multiple-refs';
|
|
12
12
|
import '@hh.ru/magritte-ui-divider';
|
|
13
13
|
import './PureChildren.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hh.ru/magritte-ui-drop",
|
|
3
|
-
"version": "7.2.
|
|
3
|
+
"version": "7.2.6",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"types": "index.d.ts",
|
|
6
6
|
"sideEffects": [
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@hh.ru/magritte-common-use-multiple-refs": "1.1.4",
|
|
24
|
-
"@hh.ru/magritte-design-tokens": "
|
|
25
|
-
"@hh.ru/magritte-internal-drop-base": "7.0.
|
|
24
|
+
"@hh.ru/magritte-design-tokens": "20.0.1",
|
|
25
|
+
"@hh.ru/magritte-internal-drop-base": "7.0.9",
|
|
26
26
|
"@hh.ru/magritte-internal-layer-name": "2.2.0",
|
|
27
27
|
"@hh.ru/magritte-ui-breakpoint": "4.1.0",
|
|
28
|
-
"@hh.ru/magritte-ui-divider": "1.1.
|
|
28
|
+
"@hh.ru/magritte-ui-divider": "1.1.37",
|
|
29
29
|
"@hh.ru/magritte-ui-layer": "2.1.0",
|
|
30
|
-
"@hh.ru/magritte-ui-theme-provider": "1.1.
|
|
30
|
+
"@hh.ru/magritte-ui-theme-provider": "1.1.33"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"classnames": "2.3.2",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "5e39c82ca3c8af74be5ac205406e44df626adcc6"
|
|
40
40
|
}
|