@entur/typography 1.6.10 → 1.6.13
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/CHANGELOG.md +14 -0
- package/dist/BaseHeading.d.ts +1 -3
- package/dist/CodeText.d.ts +1 -3
- package/dist/EmphasizedText.d.ts +1 -3
- package/dist/Heading1.d.ts +1 -3
- package/dist/Heading2.d.ts +1 -3
- package/dist/Heading3.d.ts +1 -3
- package/dist/Heading4.d.ts +1 -3
- package/dist/Heading5.d.ts +1 -3
- package/dist/Heading6.d.ts +1 -3
- package/dist/Label.d.ts +1 -3
- package/dist/LeadParagraph.d.ts +1 -3
- package/dist/Link.d.ts +1 -3
- package/dist/Paragraph.d.ts +1 -3
- package/dist/PreformattedText.d.ts +1 -3
- package/dist/SmallText.d.ts +1 -3
- package/dist/StrongText.d.ts +1 -3
- package/dist/SubLabel.d.ts +1 -3
- package/dist/SubParagraph.d.ts +1 -3
- package/dist/styles.css +85 -54
- package/dist/typography.cjs.development.js +148 -104
- package/dist/typography.cjs.development.js.map +1 -1
- package/dist/typography.cjs.production.min.js +1 -1
- package/dist/typography.cjs.production.min.js.map +1 -1
- package/dist/typography.esm.js +123 -82
- package/dist/typography.esm.js.map +1 -1
- package/package.json +8 -9
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,20 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.6.13](https://bitbucket.org/enturas/design-system/compare/@entur/typography@1.6.12...@entur/typography@1.6.13) (2022-05-13)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **text elements:** fix margin prop values being overwritten be default value for margin on all text ([ce7b980](https://bitbucket.org/enturas/design-system/commits/ce7b980a0bb874dbcaa46c9ceb0cfdb7b5ef8f5a))
|
|
11
|
+
|
|
12
|
+
## [1.6.12](https://bitbucket.org/enturas/design-system/compare/@entur/typography@1.6.11...@entur/typography@1.6.12) (2022-04-27)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @entur/typography
|
|
15
|
+
|
|
16
|
+
## [1.6.11](https://bitbucket.org/enturas/design-system/compare/@entur/typography@1.6.10...@entur/typography@1.6.11) (2022-02-09)
|
|
17
|
+
|
|
18
|
+
**Note:** Version bump only for package @entur/typography
|
|
19
|
+
|
|
6
20
|
## [1.6.10](https://bitbucket.org/enturas/design-system/compare/@entur/typography@1.6.9...@entur/typography@1.6.10) (2021-11-17)
|
|
7
21
|
|
|
8
22
|
**Note:** Version bump only for package @entur/typography
|
package/dist/BaseHeading.d.ts
CHANGED
|
@@ -14,7 +14,5 @@ declare type BaseHeadingOwnProps = {
|
|
|
14
14
|
};
|
|
15
15
|
declare const defaultElement = "h1";
|
|
16
16
|
export declare type BaseHeadingProps<T extends React.ElementType = typeof defaultElement> = PolymorphicPropsWithoutRef<BaseHeadingOwnProps, T>;
|
|
17
|
-
export declare const BaseHeading: <E extends React.ElementType<any> = "h1">({ className, level, margin, as, ...rest }:
|
|
18
|
-
as?: E | undefined;
|
|
19
|
-
}) => JSX.Element;
|
|
17
|
+
export declare const BaseHeading: <E extends React.ElementType<any> = "h1">({ className, level, margin, as, ...rest }: BaseHeadingProps<E>) => JSX.Element;
|
|
20
18
|
export {};
|
package/dist/CodeText.d.ts
CHANGED
|
@@ -12,7 +12,5 @@ export declare type CodeTextOwnProps = {
|
|
|
12
12
|
};
|
|
13
13
|
export declare type CodeTextProps<E extends React.ElementType = typeof defaultElement> = PolymorphicPropsWithoutRef<CodeTextOwnProps, E>;
|
|
14
14
|
declare const defaultElement = "code";
|
|
15
|
-
export declare const CodeText: <E extends React.ElementType<any> = "code">({ className, as, ...rest }:
|
|
16
|
-
as?: E | undefined;
|
|
17
|
-
}) => JSX.Element;
|
|
15
|
+
export declare const CodeText: <E extends React.ElementType<any> = "code">({ className, as, ...rest }: CodeTextProps<E>) => JSX.Element;
|
|
18
16
|
export {};
|
package/dist/EmphasizedText.d.ts
CHANGED
|
@@ -16,7 +16,5 @@ export declare type EmphasizedTextOwnProps = {
|
|
|
16
16
|
};
|
|
17
17
|
export declare type EmphasizedTextProps<E extends React.ElementType = typeof defaultElement> = PolymorphicPropsWithoutRef<EmphasizedTextOwnProps, E>;
|
|
18
18
|
declare const defaultElement = "em";
|
|
19
|
-
export declare const EmphasizedText: <E extends React.ElementType<any> = "em">({ className, margin, as, ...rest }:
|
|
20
|
-
as?: E | undefined;
|
|
21
|
-
}) => JSX.Element;
|
|
19
|
+
export declare const EmphasizedText: <E extends React.ElementType<any> = "em">({ className, margin, as, ...rest }: EmphasizedTextProps<E>) => JSX.Element;
|
|
22
20
|
export {};
|
package/dist/Heading1.d.ts
CHANGED
|
@@ -16,7 +16,5 @@ export declare type Heading1OwnProps = {
|
|
|
16
16
|
};
|
|
17
17
|
declare const defaultElement = "h1";
|
|
18
18
|
export declare type Heading1Props<T extends React.ElementType = typeof defaultElement> = PolymorphicPropsWithoutRef<Heading1OwnProps, T>;
|
|
19
|
-
export declare const Heading1: <E extends React.ElementType<any> = "h1">({ margin, children, as, ...rest }:
|
|
20
|
-
as?: E | undefined;
|
|
21
|
-
}) => JSX.Element;
|
|
19
|
+
export declare const Heading1: <E extends React.ElementType<any> = "h1">({ margin, children, as, ...rest }: Heading1Props<E>) => JSX.Element;
|
|
22
20
|
export {};
|
package/dist/Heading2.d.ts
CHANGED
|
@@ -16,7 +16,5 @@ export declare type Heading2OwnProps = {
|
|
|
16
16
|
};
|
|
17
17
|
export declare type Heading2Props<T extends React.ElementType = typeof defaultElement> = PolymorphicPropsWithoutRef<Heading2OwnProps, T>;
|
|
18
18
|
declare const defaultElement = "h2";
|
|
19
|
-
export declare const Heading2: <E extends React.ElementType<any> = "h2">({ margin, children, as, ...rest }:
|
|
20
|
-
as?: E | undefined;
|
|
21
|
-
}) => JSX.Element;
|
|
19
|
+
export declare const Heading2: <E extends React.ElementType<any> = "h2">({ margin, children, as, ...rest }: Heading2Props<E>) => JSX.Element;
|
|
22
20
|
export {};
|
package/dist/Heading3.d.ts
CHANGED
|
@@ -16,7 +16,5 @@ export declare type Heading3OwnProps = {
|
|
|
16
16
|
};
|
|
17
17
|
export declare type Heading3Props<T extends React.ElementType = typeof defaultElement> = PolymorphicPropsWithoutRef<Heading3OwnProps, T>;
|
|
18
18
|
declare const defaultElement = "h3";
|
|
19
|
-
export declare const Heading3: <E extends React.ElementType<any> = "h3">({ margin, children, as, ...rest }:
|
|
20
|
-
as?: E | undefined;
|
|
21
|
-
}) => JSX.Element;
|
|
19
|
+
export declare const Heading3: <E extends React.ElementType<any> = "h3">({ margin, children, as, ...rest }: Heading3Props<E>) => JSX.Element;
|
|
22
20
|
export {};
|
package/dist/Heading4.d.ts
CHANGED
|
@@ -16,7 +16,5 @@ export declare type Heading4OwnProps = {
|
|
|
16
16
|
};
|
|
17
17
|
export declare type Heading4Props<T extends React.ElementType = typeof defaultElement> = PolymorphicPropsWithoutRef<Heading4OwnProps, T>;
|
|
18
18
|
declare const defaultElement = "h4";
|
|
19
|
-
export declare const Heading4: <E extends React.ElementType<any> = "h4">({ margin, children, as, ...rest }:
|
|
20
|
-
as?: E | undefined;
|
|
21
|
-
}) => JSX.Element;
|
|
19
|
+
export declare const Heading4: <E extends React.ElementType<any> = "h4">({ margin, children, as, ...rest }: Heading4Props<E>) => JSX.Element;
|
|
22
20
|
export {};
|
package/dist/Heading5.d.ts
CHANGED
|
@@ -16,7 +16,5 @@ export declare type Heading5OwnProps = {
|
|
|
16
16
|
};
|
|
17
17
|
export declare type Heading5Props<T extends React.ElementType = typeof defaultElement> = PolymorphicPropsWithoutRef<Heading5OwnProps, T>;
|
|
18
18
|
declare const defaultElement = "h5";
|
|
19
|
-
export declare const Heading5: <E extends React.ElementType<any> = "h5">({ margin, children, as, ...rest }:
|
|
20
|
-
as?: E | undefined;
|
|
21
|
-
}) => JSX.Element;
|
|
19
|
+
export declare const Heading5: <E extends React.ElementType<any> = "h5">({ margin, children, as, ...rest }: Heading5Props<E>) => JSX.Element;
|
|
22
20
|
export {};
|
package/dist/Heading6.d.ts
CHANGED
|
@@ -16,7 +16,5 @@ export declare type Heading6OwnProps = {
|
|
|
16
16
|
};
|
|
17
17
|
export declare type Heading6Props<T extends React.ElementType = typeof defaultElement> = PolymorphicPropsWithoutRef<Heading6OwnProps, T>;
|
|
18
18
|
declare const defaultElement = "h6";
|
|
19
|
-
export declare const Heading6: <E extends React.ElementType<any> = "h6">({ margin, children, as, ...rest }:
|
|
20
|
-
as?: E | undefined;
|
|
21
|
-
}) => JSX.Element;
|
|
19
|
+
export declare const Heading6: <E extends React.ElementType<any> = "h6">({ margin, children, as, ...rest }: Heading6Props<E>) => JSX.Element;
|
|
22
20
|
export {};
|
package/dist/Label.d.ts
CHANGED
|
@@ -16,7 +16,5 @@ export declare type LabelOwnProps = {
|
|
|
16
16
|
};
|
|
17
17
|
export declare type LabelProps<E extends React.ElementType = typeof defaultElement> = PolymorphicPropsWithoutRef<LabelOwnProps, E>;
|
|
18
18
|
declare const defaultElement = "label";
|
|
19
|
-
export declare const Label: <E extends React.ElementType<any> = "label">({ className, margin, as, ...rest }:
|
|
20
|
-
as?: E | undefined;
|
|
21
|
-
}) => JSX.Element;
|
|
19
|
+
export declare const Label: <E extends React.ElementType<any> = "label">({ className, margin, as, ...rest }: LabelProps<E>) => JSX.Element;
|
|
22
20
|
export {};
|
package/dist/LeadParagraph.d.ts
CHANGED
|
@@ -16,7 +16,5 @@ export declare type LeadParagraphOwnProps = {
|
|
|
16
16
|
};
|
|
17
17
|
export declare type LeadParagraphProps<E extends React.ElementType = typeof defaultElement> = PolymorphicPropsWithoutRef<LeadParagraphOwnProps, E>;
|
|
18
18
|
declare const defaultElement = "p";
|
|
19
|
-
export declare const LeadParagraph: <E extends React.ElementType<any> = "p">({ className, margin, as, ...rest }:
|
|
20
|
-
as?: E | undefined;
|
|
21
|
-
}) => JSX.Element;
|
|
19
|
+
export declare const LeadParagraph: <E extends React.ElementType<any> = "p">({ className, margin, as, ...rest }: LeadParagraphProps<E>) => JSX.Element;
|
|
22
20
|
export {};
|
package/dist/Link.d.ts
CHANGED
|
@@ -16,7 +16,5 @@ export declare type LinkOwnProps = {
|
|
|
16
16
|
};
|
|
17
17
|
export declare type LinkProps<E extends React.ElementType = typeof defaultElement> = PolymorphicPropsWithoutRef<LinkOwnProps, E>;
|
|
18
18
|
declare const defaultElement = "a";
|
|
19
|
-
export declare const Link: <E extends React.ElementType<any> = "a">({ className, margin, as, ...rest }:
|
|
20
|
-
as?: E | undefined;
|
|
21
|
-
}) => JSX.Element;
|
|
19
|
+
export declare const Link: <E extends React.ElementType<any> = "a">({ className, margin, as, ...rest }: LinkProps<E>) => JSX.Element;
|
|
22
20
|
export {};
|
package/dist/Paragraph.d.ts
CHANGED
|
@@ -16,7 +16,5 @@ export declare type ParagraphOwnProps = {
|
|
|
16
16
|
};
|
|
17
17
|
export declare type ParagraphProps<E extends React.ElementType = typeof defaultElement> = PolymorphicPropsWithoutRef<ParagraphOwnProps, E>;
|
|
18
18
|
declare const defaultElement = "p";
|
|
19
|
-
export declare const Paragraph: <E extends React.ElementType<any> = "p">({ margin, className, as, ...rest }:
|
|
20
|
-
as?: E | undefined;
|
|
21
|
-
}) => JSX.Element;
|
|
19
|
+
export declare const Paragraph: <E extends React.ElementType<any> = "p">({ margin, className, as, ...rest }: ParagraphProps<E>) => JSX.Element;
|
|
22
20
|
export {};
|
|
@@ -11,6 +11,4 @@ export declare type PreformattedTextOwnProps = {
|
|
|
11
11
|
children: React.ReactNode;
|
|
12
12
|
};
|
|
13
13
|
export declare type PreformattedTextProps<E extends React.ElementType> = PolymorphicPropsWithoutRef<PreformattedTextOwnProps, E>;
|
|
14
|
-
export declare const PreformattedText: <E extends React.ElementType<any> = "pre">({ className, as, ...rest }:
|
|
15
|
-
as?: E | undefined;
|
|
16
|
-
}) => JSX.Element;
|
|
14
|
+
export declare const PreformattedText: <E extends React.ElementType<any> = "pre">({ className, as, ...rest }: PreformattedTextProps<E>) => JSX.Element;
|
package/dist/SmallText.d.ts
CHANGED
|
@@ -16,7 +16,5 @@ export declare type SmallTextOwnProps = {
|
|
|
16
16
|
};
|
|
17
17
|
export declare type SmallTextProps<T extends React.ElementType = typeof defaultElement> = PolymorphicPropsWithoutRef<SmallTextOwnProps, T>;
|
|
18
18
|
declare const defaultElement = "span";
|
|
19
|
-
export declare const SmallText: <E extends React.ElementType<any> = "span">({ className, margin, as, ...rest }:
|
|
20
|
-
as?: E | undefined;
|
|
21
|
-
}) => JSX.Element;
|
|
19
|
+
export declare const SmallText: <E extends React.ElementType<any> = "span">({ className, margin, as, ...rest }: SmallTextProps<E>) => JSX.Element;
|
|
22
20
|
export {};
|
package/dist/StrongText.d.ts
CHANGED
|
@@ -16,7 +16,5 @@ export declare type StrongTextOwnProps = {
|
|
|
16
16
|
};
|
|
17
17
|
export declare type StrongTextProps<E extends React.ElementType = typeof defaultElement> = PolymorphicPropsWithoutRef<StrongTextOwnProps, E>;
|
|
18
18
|
declare const defaultElement = "strong";
|
|
19
|
-
export declare const StrongText: <E extends React.ElementType<any> = "strong">({ className, margin, as, ...rest }:
|
|
20
|
-
as?: E | undefined;
|
|
21
|
-
}) => JSX.Element;
|
|
19
|
+
export declare const StrongText: <E extends React.ElementType<any> = "strong">({ className, margin, as, ...rest }: StrongTextProps<E>) => JSX.Element;
|
|
22
20
|
export {};
|
package/dist/SubLabel.d.ts
CHANGED
|
@@ -16,7 +16,5 @@ export declare type SubLabelOwnProps = {
|
|
|
16
16
|
};
|
|
17
17
|
export declare type SubLabelProps<E extends React.ElementType = typeof defaultElement> = PolymorphicPropsWithoutRef<SubLabelOwnProps, E>;
|
|
18
18
|
declare const defaultElement = "span";
|
|
19
|
-
export declare const SubLabel: <E extends React.ElementType<any> = "span">({ className, margin, as, ...rest }:
|
|
20
|
-
as?: E | undefined;
|
|
21
|
-
}) => JSX.Element;
|
|
19
|
+
export declare const SubLabel: <E extends React.ElementType<any> = "span">({ className, margin, as, ...rest }: SubLabelProps<E>) => JSX.Element;
|
|
22
20
|
export {};
|
package/dist/SubParagraph.d.ts
CHANGED
|
@@ -16,7 +16,5 @@ export declare type SubParagraphOwnProps = {
|
|
|
16
16
|
};
|
|
17
17
|
export declare type SubParagraphProps<E extends React.ElementType = typeof defaultElement> = PolymorphicPropsWithoutRef<SubParagraphOwnProps, E>;
|
|
18
18
|
declare const defaultElement = "p";
|
|
19
|
-
export declare const SubParagraph: <E extends React.ElementType<any> = "p">({ className, margin, as, ...rest }:
|
|
20
|
-
as?: E | undefined;
|
|
21
|
-
}) => JSX.Element;
|
|
19
|
+
export declare const SubParagraph: <E extends React.ElementType<any> = "p">({ className, margin, as, ...rest }: SubParagraphProps<E>) => JSX.Element;
|
|
22
20
|
export {};
|
package/dist/styles.css
CHANGED
|
@@ -76,11 +76,16 @@
|
|
|
76
76
|
"Helvetica Neue", sans-serif;
|
|
77
77
|
}
|
|
78
78
|
html {
|
|
79
|
+
background-color: #ffffff;
|
|
79
80
|
background-color: #ffffff;
|
|
80
81
|
background-color: var(--primary-background-color);
|
|
81
82
|
box-sizing: border-box;
|
|
82
83
|
color: #181c56;
|
|
84
|
+
color: #181c56;
|
|
83
85
|
color: var(--primary-text-color);
|
|
86
|
+
font-family: "Nationale", Arial, "Gotham Rounded", -apple-system,
|
|
87
|
+
BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell,
|
|
88
|
+
"Helvetica Neue", sans-serif;
|
|
84
89
|
font-family: var(--eds-font-family);
|
|
85
90
|
font-weight: 500;
|
|
86
91
|
font-size: 1rem;
|
|
@@ -107,6 +112,7 @@ html {
|
|
|
107
112
|
.eds-h5,
|
|
108
113
|
.eds-h6 {
|
|
109
114
|
color: inherit;
|
|
115
|
+
color: #181c56;
|
|
110
116
|
color: var(--primary-text-color);
|
|
111
117
|
font-weight: 600;
|
|
112
118
|
-webkit-font-smoothing: antialiased;
|
|
@@ -186,6 +192,7 @@ html {
|
|
|
186
192
|
|
|
187
193
|
.eds-paragraph {
|
|
188
194
|
color: inherit;
|
|
195
|
+
color: #181c56;
|
|
189
196
|
color: var(--primary-text-color);
|
|
190
197
|
font-size: 1rem;
|
|
191
198
|
line-height: 1.5rem;
|
|
@@ -198,61 +205,9 @@ html {
|
|
|
198
205
|
}
|
|
199
206
|
}
|
|
200
207
|
|
|
201
|
-
.eds-h1--margin-top,
|
|
202
|
-
.eds-h2--margin-top,
|
|
203
|
-
.eds-h3--margin-top,
|
|
204
|
-
.eds-h4--margin-top,
|
|
205
|
-
.eds-h5--margin-top,
|
|
206
|
-
.eds-h6--margin-top,
|
|
207
|
-
.eds-paragraph--margin-top,
|
|
208
|
-
.eds-lead-paragraph--margin-top,
|
|
209
|
-
.eds-sub-paragraph--margin-top,
|
|
210
|
-
.eds-emphasized-text--margin-top,
|
|
211
|
-
.eds-label--margin-top,
|
|
212
|
-
.eds-sub-label--margin-top,
|
|
213
|
-
.eds-small-text--margin-top,
|
|
214
|
-
.eds-strong-text--margin-top,
|
|
215
|
-
.eds-link--margin-top {
|
|
216
|
-
margin-bottom: 0;
|
|
217
|
-
}
|
|
218
|
-
.eds-h1--margin-bottom,
|
|
219
|
-
.eds-h2--margin-bottom,
|
|
220
|
-
.eds-h3--margin-bottom,
|
|
221
|
-
.eds-h4--margin-bottom,
|
|
222
|
-
.eds-h5--margin-bottom,
|
|
223
|
-
.eds-h6--margin-bottom,
|
|
224
|
-
.eds-paragraph--margin-bottom,
|
|
225
|
-
.eds-lead-paragraph--margin-bottom,
|
|
226
|
-
.eds-sub-paragraph--margin-bottom,
|
|
227
|
-
.eds-emphasized-text--margin-bottom,
|
|
228
|
-
.eds-label--margin-bottom,
|
|
229
|
-
.eds-sub-label--margin-bottom,
|
|
230
|
-
.eds-small-text--margin-bottom,
|
|
231
|
-
.eds-strong-text--margin-bottom,
|
|
232
|
-
.eds-link--margin-bottom {
|
|
233
|
-
margin-top: 0;
|
|
234
|
-
}
|
|
235
|
-
.eds-h1--margin-none,
|
|
236
|
-
.eds-h2--margin-none,
|
|
237
|
-
.eds-h3--margin-none,
|
|
238
|
-
.eds-h4--margin-none,
|
|
239
|
-
.eds-h5--margin-none,
|
|
240
|
-
.eds-h6--margin-none,
|
|
241
|
-
.eds-paragraph--margin-none,
|
|
242
|
-
.eds-lead-paragraph--margin-none,
|
|
243
|
-
.eds-sub-paragraph--margin-none,
|
|
244
|
-
.eds-emphasized-text--margin-none,
|
|
245
|
-
.eds-label--margin-none,
|
|
246
|
-
.eds-sub-label--margin-none,
|
|
247
|
-
.eds-small-text--margin-none,
|
|
248
|
-
.eds-strong-text--margin-none,
|
|
249
|
-
.eds-link--margin-none {
|
|
250
|
-
margin-top: 0;
|
|
251
|
-
margin-bottom: 0;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
208
|
.eds-lead-paragraph {
|
|
255
209
|
color: inherit;
|
|
210
|
+
color: #181c56;
|
|
256
211
|
color: var(--primary-text-color);
|
|
257
212
|
font-size: 1.25rem;
|
|
258
213
|
line-height: 1.875rem;
|
|
@@ -267,6 +222,7 @@ html {
|
|
|
267
222
|
|
|
268
223
|
.eds-sub-paragraph {
|
|
269
224
|
color: inherit;
|
|
225
|
+
color: #181c56;
|
|
270
226
|
color: var(--primary-text-color);
|
|
271
227
|
font-size: 0.875rem;
|
|
272
228
|
line-height: 1.25rem;
|
|
@@ -279,6 +235,7 @@ html {
|
|
|
279
235
|
|
|
280
236
|
.eds-small-text {
|
|
281
237
|
color: inherit;
|
|
238
|
+
color: #181c56;
|
|
282
239
|
color: var(--primary-text-color);
|
|
283
240
|
font-size: 0.625rem;
|
|
284
241
|
line-height: 1rem;
|
|
@@ -292,6 +249,7 @@ html {
|
|
|
292
249
|
|
|
293
250
|
.eds-link, .eds-link:link, .eds-link:visited {
|
|
294
251
|
color: inherit;
|
|
252
|
+
color: #181c56;
|
|
295
253
|
color: var(--primary-text-color);
|
|
296
254
|
font-size: inherit;
|
|
297
255
|
text-decoration: none;
|
|
@@ -302,11 +260,20 @@ html {
|
|
|
302
260
|
background-position: 0 100%;
|
|
303
261
|
}
|
|
304
262
|
.eds-link:hover {
|
|
305
|
-
animation: eds-link-underline 0.3s ease-in;
|
|
263
|
+
-webkit-animation: eds-link-underline 0.3s ease-in;
|
|
264
|
+
animation: eds-link-underline 0.3s ease-in;
|
|
306
265
|
}
|
|
307
266
|
.eds-contrast .eds-link {
|
|
308
267
|
background-image: linear-gradient(120deg, #ffffff 0%, #ffffff 100%);
|
|
309
268
|
}
|
|
269
|
+
@-webkit-keyframes eds-link-underline {
|
|
270
|
+
from {
|
|
271
|
+
background-size: 0% 0.125rem;
|
|
272
|
+
}
|
|
273
|
+
to {
|
|
274
|
+
background-size: 100% 0.125rem;
|
|
275
|
+
}
|
|
276
|
+
}
|
|
310
277
|
@keyframes eds-link-underline {
|
|
311
278
|
from {
|
|
312
279
|
background-size: 0% 0.125rem;
|
|
@@ -332,6 +299,7 @@ html {
|
|
|
332
299
|
|
|
333
300
|
.eds-label,
|
|
334
301
|
.eds-sub-label {
|
|
302
|
+
color: #656782;
|
|
335
303
|
color: #656782;
|
|
336
304
|
color: var(--primary-label-color);
|
|
337
305
|
}
|
|
@@ -436,6 +404,7 @@ html {
|
|
|
436
404
|
}
|
|
437
405
|
.eds-numbered-list > .eds-list-item::before {
|
|
438
406
|
color: inherit;
|
|
407
|
+
color: #181c56;
|
|
439
408
|
color: var(--primary-text-color);
|
|
440
409
|
position: absolute;
|
|
441
410
|
font-weight: 600;
|
|
@@ -476,6 +445,68 @@ html {
|
|
|
476
445
|
text-transform: uppercase;
|
|
477
446
|
}
|
|
478
447
|
|
|
448
|
+
.eds-h1--margin-top,
|
|
449
|
+
.eds-h2--margin-top,
|
|
450
|
+
.eds-h3--margin-top,
|
|
451
|
+
.eds-h4--margin-top,
|
|
452
|
+
.eds-h5--margin-top,
|
|
453
|
+
.eds-h6--margin-top,
|
|
454
|
+
.eds-paragraph--margin-top,
|
|
455
|
+
.eds-lead-paragraph--margin-top,
|
|
456
|
+
.eds-sub-paragraph--margin-top,
|
|
457
|
+
.eds-emphasized-text--margin-top,
|
|
458
|
+
.eds-label--margin-top,
|
|
459
|
+
.eds-sub-label--margin-top,
|
|
460
|
+
.eds-small-text--margin-top,
|
|
461
|
+
.eds-strong-text--margin-top,
|
|
462
|
+
.eds-link--margin-top {
|
|
463
|
+
margin-bottom: 0;
|
|
464
|
+
}
|
|
465
|
+
.eds-h1--margin-bottom,
|
|
466
|
+
.eds-h2--margin-bottom,
|
|
467
|
+
.eds-h3--margin-bottom,
|
|
468
|
+
.eds-h4--margin-bottom,
|
|
469
|
+
.eds-h5--margin-bottom,
|
|
470
|
+
.eds-h6--margin-bottom,
|
|
471
|
+
.eds-paragraph--margin-bottom,
|
|
472
|
+
.eds-lead-paragraph--margin-bottom,
|
|
473
|
+
.eds-sub-paragraph--margin-bottom,
|
|
474
|
+
.eds-emphasized-text--margin-bottom,
|
|
475
|
+
.eds-label--margin-bottom,
|
|
476
|
+
.eds-sub-label--margin-bottom,
|
|
477
|
+
.eds-small-text--margin-bottom,
|
|
478
|
+
.eds-strong-text--margin-bottom,
|
|
479
|
+
.eds-link--margin-bottom {
|
|
480
|
+
margin-top: 0;
|
|
481
|
+
}
|
|
482
|
+
.eds-h1--margin-none,
|
|
483
|
+
.eds-h2--margin-none,
|
|
484
|
+
.eds-h3--margin-none,
|
|
485
|
+
.eds-h4--margin-none,
|
|
486
|
+
.eds-h5--margin-none,
|
|
487
|
+
.eds-h6--margin-none,
|
|
488
|
+
.eds-paragraph--margin-none,
|
|
489
|
+
.eds-lead-paragraph--margin-none,
|
|
490
|
+
.eds-sub-paragraph--margin-none,
|
|
491
|
+
.eds-emphasized-text--margin-none,
|
|
492
|
+
.eds-label--margin-none,
|
|
493
|
+
.eds-sub-label--margin-none,
|
|
494
|
+
.eds-small-text--margin-none,
|
|
495
|
+
.eds-strong-text--margin-none,
|
|
496
|
+
.eds-link--margin-none {
|
|
497
|
+
margin-top: 0;
|
|
498
|
+
margin-bottom: 0;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
@-webkit-keyframes lineExpand {
|
|
502
|
+
0% {
|
|
503
|
+
width: 0;
|
|
504
|
+
}
|
|
505
|
+
100% {
|
|
506
|
+
width: 100%;
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
|
|
479
510
|
@keyframes lineExpand {
|
|
480
511
|
0% {
|
|
481
512
|
width: 0;
|