@guardian/stand 0.0.9 → 0.0.11
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/README.md +1122 -1
- package/dist/avatar.cjs +9 -0
- package/dist/avatar.js +2 -0
- package/dist/button.cjs +9 -0
- package/dist/button.js +2 -0
- package/dist/components/TitleText.cjs +28 -0
- package/dist/components/TitleText.js +22 -0
- package/dist/components/avatar/Avatar.cjs +57 -0
- package/dist/components/avatar/Avatar.js +27 -0
- package/dist/components/avatar/styles.cjs +33 -0
- package/dist/components/avatar/styles.js +29 -0
- package/dist/components/avatar/types.cjs +16 -0
- package/dist/components/avatar/types.js +14 -0
- package/dist/components/button/Button.cjs +38 -0
- package/dist/components/button/Button.js +19 -0
- package/dist/components/button/styles.cjs +68 -0
- package/dist/components/button/styles.js +63 -0
- package/dist/components/icon/Icon.cjs +46 -0
- package/dist/components/icon/Icon.js +19 -0
- package/dist/components/icon/styles.cjs +27 -0
- package/dist/components/icon/styles.js +20 -0
- package/dist/components/icon-button/IconButton.cjs +45 -0
- package/dist/components/icon-button/IconButton.js +26 -0
- package/dist/components/icon-button/styles.cjs +9 -0
- package/dist/components/icon-button/styles.js +6 -0
- package/dist/components/icon-link-button/IconLinkButton.cjs +47 -0
- package/dist/components/icon-link-button/IconLinkButton.js +23 -0
- package/dist/components/icon-link-button/styles.cjs +9 -0
- package/dist/components/icon-link-button/styles.js +6 -0
- package/dist/components/link-button/LinkButton.cjs +35 -0
- package/dist/components/link-button/LinkButton.js +16 -0
- package/dist/components/link-button/styles.cjs +9 -0
- package/dist/components/link-button/styles.js +6 -0
- package/dist/components/typography/Typography.cjs +26 -0
- package/dist/components/typography/Typography.js +13 -0
- package/dist/components/typography/styles.cjs +15 -0
- package/dist/components/typography/styles.js +12 -0
- package/dist/components/user-menu/PreferenceRadioGroup.cjs +53 -0
- package/dist/components/user-menu/PreferenceRadioGroup.js +19 -0
- package/dist/components/user-menu/UserMenu.cjs +67 -0
- package/dist/components/user-menu/UserMenu.js +11 -0
- package/dist/components/user-menu/default-options.cjs +109 -0
- package/dist/components/user-menu/default-options.js +105 -0
- package/dist/components/user-menu/styles.cjs +90 -0
- package/dist/components/user-menu/styles.js +83 -0
- package/dist/fonts/MaterialSymbolsOutlined.css +23 -0
- package/dist/fonts/MaterialSymbolsRound.css +23 -0
- package/dist/fonts/MaterialSymbolsSharp.css +23 -0
- package/dist/fonts/material-symbols-types.ts +3825 -0
- package/dist/icon-button.cjs +7 -0
- package/dist/icon-button.js +1 -0
- package/dist/icon-link-button.cjs +7 -0
- package/dist/icon-link-button.js +1 -0
- package/dist/icon.cjs +9 -0
- package/dist/icon.js +2 -0
- package/dist/index.cjs +16 -4
- package/dist/index.js +6 -0
- package/dist/link-button.cjs +7 -0
- package/dist/link-button.js +1 -0
- package/dist/styleD/build/css/base/colors.css +1 -1
- package/dist/styleD/build/css/base/sizing.css +2 -0
- package/dist/styleD/build/css/component/avatar.css +54 -0
- package/dist/styleD/build/css/component/button.css +282 -0
- package/dist/styleD/build/css/component/byline.css +1 -1
- package/dist/styleD/build/css/component/icon.css +11 -0
- package/dist/styleD/build/css/component/typography.css +7 -0
- package/dist/styleD/build/css/component/userMenu.css +29 -0
- package/dist/styleD/build/css/semantic/colors.css +12 -8
- package/dist/styleD/build/css/semantic/sizing.css +1 -0
- package/dist/styleD/build/css/semantic/typography.css +3 -0
- package/dist/styleD/build/typescript/base/colors.cjs +1 -1
- package/dist/styleD/build/typescript/base/colors.js +1 -1
- package/dist/styleD/build/typescript/base/sizing.cjs +2 -0
- package/dist/styleD/build/typescript/base/sizing.js +2 -0
- package/dist/styleD/build/typescript/component/avatar.cjs +88 -0
- package/dist/styleD/build/typescript/component/avatar.js +86 -0
- package/dist/styleD/build/typescript/component/button.cjs +523 -0
- package/dist/styleD/build/typescript/component/button.js +521 -0
- package/dist/styleD/build/typescript/component/byline.cjs +1 -1
- package/dist/styleD/build/typescript/component/byline.js +1 -1
- package/dist/styleD/build/typescript/component/icon.cjs +19 -0
- package/dist/styleD/build/typescript/component/icon.js +17 -0
- package/dist/styleD/build/typescript/component/typography.cjs +7 -0
- package/dist/styleD/build/typescript/component/typography.js +5 -0
- package/dist/styleD/build/typescript/component/userMenu.cjs +37 -0
- package/dist/styleD/build/typescript/component/userMenu.js +35 -0
- package/dist/styleD/build/typescript/semantic/colors.cjs +14 -10
- package/dist/styleD/build/typescript/semantic/colors.js +14 -10
- package/dist/styleD/build/typescript/semantic/sizing.cjs +2 -1
- package/dist/styleD/build/typescript/semantic/sizing.js +2 -1
- package/dist/styleD/build/typescript/semantic/typography.cjs +5 -0
- package/dist/styleD/build/typescript/semantic/typography.js +5 -0
- package/dist/types/avatar.d.ts +19 -0
- package/dist/types/button.d.ts +20 -0
- package/dist/types/components/TitleText.d.ts +6 -0
- package/dist/types/components/avatar/Avatar.d.ts +2 -0
- package/dist/types/components/avatar/styles.d.ts +8 -0
- package/dist/types/components/avatar/types.d.ts +45 -0
- package/dist/types/components/button/Button.d.ts +2 -0
- package/dist/types/components/button/styles.d.ts +7 -0
- package/dist/types/components/button/types.d.ts +18 -0
- package/dist/types/components/byline/schema.d.ts +1 -1
- package/dist/types/components/icon/Icon.d.ts +2 -0
- package/dist/types/components/icon/styles.d.ts +8 -0
- package/dist/types/components/icon/types.d.ts +28 -0
- package/dist/types/components/icon-button/IconButton.d.ts +2 -0
- package/dist/types/components/icon-button/styles.d.ts +522 -0
- package/dist/types/components/icon-button/types.d.ts +26 -0
- package/dist/types/components/icon-link-button/IconLinkButton.d.ts +2 -0
- package/dist/types/components/icon-link-button/styles.d.ts +522 -0
- package/dist/types/components/icon-link-button/types.d.ts +26 -0
- package/dist/types/components/link-button/LinkButton.d.ts +2 -0
- package/dist/types/components/link-button/styles.d.ts +522 -0
- package/dist/types/components/link-button/types.d.ts +18 -0
- package/dist/types/components/typography/Typography.d.ts +6 -0
- package/dist/types/components/typography/styles.d.ts +7 -0
- package/dist/types/components/typography/types.d.ts +13 -0
- package/dist/types/components/user-menu/PreferenceRadioGroup.d.ts +15 -0
- package/dist/types/components/user-menu/UserMenu.d.ts +17 -0
- package/dist/types/components/user-menu/default-options.d.ts +5 -0
- package/dist/types/components/user-menu/model.d.ts +9 -0
- package/dist/types/components/user-menu/styles.d.ts +9 -0
- package/dist/types/components/user-menu/theme.d.ts +3 -0
- package/dist/types/components/user-menu/types.d.ts +5 -0
- package/dist/types/fonts/material-symbols-types.d.ts +3822 -0
- package/dist/types/icon-button.d.ts +20 -0
- package/dist/types/icon-link-button.d.ts +20 -0
- package/dist/types/icon.d.ts +27 -0
- package/dist/types/index.d.ts +17 -0
- package/dist/types/link-button.d.ts +20 -0
- package/dist/types/styleD/build/typescript/base/colors.d.ts +1 -1
- package/dist/types/styleD/build/typescript/base/sizing.d.ts +2 -0
- package/dist/types/styleD/build/typescript/component/avatar.d.ts +88 -0
- package/dist/types/styleD/build/typescript/component/button.d.ts +523 -0
- package/dist/types/styleD/build/typescript/component/icon.d.ts +19 -0
- package/dist/types/styleD/build/typescript/component/typography.d.ts +7 -0
- package/dist/types/styleD/build/typescript/component/userMenu.d.ts +37 -0
- package/dist/types/styleD/build/typescript/semantic/colors.d.ts +7 -3
- package/dist/types/styleD/build/typescript/semantic/sizing.d.ts +1 -0
- package/dist/types/styleD/build/typescript/semantic/typography.d.ts +5 -0
- package/dist/types/typography.d.ts +19 -0
- package/dist/types/user-menu.d.ts +18 -0
- package/dist/types/util/reset.d.ts +1 -0
- package/dist/types/util/storybookStyles.d.ts +1 -0
- package/dist/types/util/types.d.ts +28 -0
- package/dist/types/utils.d.ts +1 -0
- package/dist/typography.cjs +9 -0
- package/dist/typography.js +2 -0
- package/dist/user-menu.cjs +9 -0
- package/dist/user-menu.js +2 -0
- package/dist/util/css/reset.css +124 -0
- package/dist/util/reset.cjs +10 -0
- package/dist/util/reset.css.cjs +5 -0
- package/dist/util/reset.css.js +3 -0
- package/dist/util/reset.js +8 -0
- package/dist/utils.cjs +2 -0
- package/dist/utils.js +1 -0
- package/package.json +81 -3
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { IconButton } from './components/icon-button/IconButton.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { IconLinkButton } from './components/icon-link-button/IconLinkButton.js';
|
package/dist/icon.cjs
ADDED
package/dist/icon.js
ADDED
package/dist/index.cjs
CHANGED
|
@@ -3,25 +3,37 @@
|
|
|
3
3
|
var byline = require('./styleD/build/typescript/component/byline.cjs');
|
|
4
4
|
var tagAutocomplete = require('./styleD/build/typescript/component/tagAutocomplete.cjs');
|
|
5
5
|
var tagTable = require('./styleD/build/typescript/component/tagTable.cjs');
|
|
6
|
+
var userMenu = require('./styleD/build/typescript/component/userMenu.cjs');
|
|
7
|
+
var avatar = require('./styleD/build/typescript/component/avatar.cjs');
|
|
8
|
+
var button = require('./styleD/build/typescript/component/button.cjs');
|
|
9
|
+
var typography = require('./styleD/build/typescript/component/typography.cjs');
|
|
10
|
+
var icon = require('./styleD/build/typescript/component/icon.cjs');
|
|
6
11
|
var colors = require('./styleD/build/typescript/base/colors.cjs');
|
|
7
|
-
var typography = require('./styleD/build/typescript/base/typography.cjs');
|
|
12
|
+
var typography$1 = require('./styleD/build/typescript/base/typography.cjs');
|
|
8
13
|
var spacing = require('./styleD/build/typescript/base/spacing.cjs');
|
|
9
14
|
var sizing = require('./styleD/build/typescript/base/sizing.cjs');
|
|
10
15
|
var radius = require('./styleD/build/typescript/base/radius.cjs');
|
|
11
16
|
var colors$1 = require('./styleD/build/typescript/semantic/colors.cjs');
|
|
12
|
-
var typography$
|
|
17
|
+
var typography$2 = require('./styleD/build/typescript/semantic/typography.cjs');
|
|
13
18
|
var sizing$1 = require('./styleD/build/typescript/semantic/sizing.cjs');
|
|
19
|
+
var reset = require('./util/reset.css.cjs');
|
|
14
20
|
|
|
15
21
|
|
|
16
22
|
|
|
17
23
|
exports.componentByline = byline.componentByline;
|
|
18
24
|
exports.componentTagAutocomplete = tagAutocomplete.componentTagAutocomplete;
|
|
19
25
|
exports.componentTagTable = tagTable.componentTagTable;
|
|
26
|
+
exports.componentUserMenu = userMenu.componentUserMenu;
|
|
27
|
+
exports.componentAvatar = avatar.componentAvatar;
|
|
28
|
+
exports.componentButton = button.componentButton;
|
|
29
|
+
exports.componentTypography = typography.componentTypography;
|
|
30
|
+
exports.componentIcon = icon.componentIcon;
|
|
20
31
|
exports.baseColors = colors.baseColors;
|
|
21
|
-
exports.baseTypography = typography.baseTypography;
|
|
32
|
+
exports.baseTypography = typography$1.baseTypography;
|
|
22
33
|
exports.baseSpacing = spacing.baseSpacing;
|
|
23
34
|
exports.baseSizing = sizing.baseSizing;
|
|
24
35
|
exports.baseRadius = radius.baseRadius;
|
|
25
36
|
exports.semanticColors = colors$1.semanticColors;
|
|
26
|
-
exports.semanticTypography = typography$
|
|
37
|
+
exports.semanticTypography = typography$2.semanticTypography;
|
|
27
38
|
exports.semanticSizing = sizing$1.semanticSizing;
|
|
39
|
+
exports.GlobalResetStyles = reset;
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
export { componentByline } from './styleD/build/typescript/component/byline.js';
|
|
2
2
|
export { componentTagAutocomplete } from './styleD/build/typescript/component/tagAutocomplete.js';
|
|
3
3
|
export { componentTagTable } from './styleD/build/typescript/component/tagTable.js';
|
|
4
|
+
export { componentUserMenu } from './styleD/build/typescript/component/userMenu.js';
|
|
5
|
+
export { componentAvatar } from './styleD/build/typescript/component/avatar.js';
|
|
6
|
+
export { componentButton } from './styleD/build/typescript/component/button.js';
|
|
7
|
+
export { componentTypography } from './styleD/build/typescript/component/typography.js';
|
|
8
|
+
export { componentIcon } from './styleD/build/typescript/component/icon.js';
|
|
4
9
|
export { baseColors } from './styleD/build/typescript/base/colors.js';
|
|
5
10
|
export { baseTypography } from './styleD/build/typescript/base/typography.js';
|
|
6
11
|
export { baseSpacing } from './styleD/build/typescript/base/spacing.js';
|
|
@@ -9,3 +14,4 @@ export { baseRadius } from './styleD/build/typescript/base/radius.js';
|
|
|
9
14
|
export { semanticColors } from './styleD/build/typescript/semantic/colors.js';
|
|
10
15
|
export { semanticTypography } from './styleD/build/typescript/semantic/typography.js';
|
|
11
16
|
export { semanticSizing } from './styleD/build/typescript/semantic/sizing.js';
|
|
17
|
+
export { default as GlobalResetStyles } from './util/reset.css.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { LinkButton } from './components/link-button/LinkButton.js';
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
--base-colors-blue-500: #3e82dd;
|
|
38
38
|
--base-colors-blue-600: #699ee5;
|
|
39
39
|
--base-colors-blue-700: #93b9ec;
|
|
40
|
-
--base-colors-blue-800: #
|
|
40
|
+
--base-colors-blue-800: #c5d9f4;
|
|
41
41
|
--base-colors-blue-900: #e8f0fb;
|
|
42
42
|
--base-colors-cyan-50: #00202f;
|
|
43
43
|
--base-colors-cyan-100: #00344e;
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
:root {
|
|
6
6
|
--base-sizing-size-1-px: 1px;
|
|
7
7
|
--base-sizing-size-2-px: 2px;
|
|
8
|
+
--base-sizing-size-8-px: 8px;
|
|
8
9
|
--base-sizing-size-16-px: 16px;
|
|
9
10
|
--base-sizing-size-18-px: 18px;
|
|
10
11
|
--base-sizing-size-20-px: 20px;
|
|
@@ -14,6 +15,7 @@
|
|
|
14
15
|
--base-sizing-size-48-px: 48px;
|
|
15
16
|
--base-sizing-size-1-rem: 0.0625rem;
|
|
16
17
|
--base-sizing-size-2-rem: 0.125rem;
|
|
18
|
+
--base-sizing-size-8-rem: 0.5rem;
|
|
17
19
|
--base-sizing-size-16-rem: 1rem;
|
|
18
20
|
--base-sizing-size-18-rem: 1.125rem;
|
|
19
21
|
--base-sizing-size-20-rem: 1.25rem;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly, this file was auto-generated.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
--component-avatar-shared-color-green-text: #24491d;
|
|
7
|
+
--component-avatar-shared-color-green-background: #cde4c9;
|
|
8
|
+
--component-avatar-shared-color-green-border: unset;
|
|
9
|
+
--component-avatar-shared-color-blue-text: #092f62;
|
|
10
|
+
--component-avatar-shared-color-blue-background: #c5d9f4;
|
|
11
|
+
--component-avatar-shared-color-blue-border: unset;
|
|
12
|
+
--component-avatar-shared-color-red-text: #65170e;
|
|
13
|
+
--component-avatar-shared-color-red-background: #f5c6c0;
|
|
14
|
+
--component-avatar-shared-color-red-border: unset;
|
|
15
|
+
--component-avatar-shared-color-cyan-text: #00344e;
|
|
16
|
+
--component-avatar-shared-color-cyan-background: #b8d8e7;
|
|
17
|
+
--component-avatar-shared-color-cyan-border: unset;
|
|
18
|
+
--component-avatar-shared-color-teal-text: #0e2729;
|
|
19
|
+
--component-avatar-shared-color-teal-background: #c5dfe1;
|
|
20
|
+
--component-avatar-shared-color-teal-border: unset;
|
|
21
|
+
--component-avatar-shared-color-cool-purple-text: #394069;
|
|
22
|
+
--component-avatar-shared-color-cool-purple-background: #dbdff7;
|
|
23
|
+
--component-avatar-shared-color-cool-purple-border: unset;
|
|
24
|
+
--component-avatar-shared-color-warm-purple-text: #381350;
|
|
25
|
+
--component-avatar-shared-color-warm-purple-background: #dac3e8;
|
|
26
|
+
--component-avatar-shared-color-warm-purple-border: unset;
|
|
27
|
+
--component-avatar-shared-color-magenta-text: #581734;
|
|
28
|
+
--component-avatar-shared-color-magenta-background: #edc6d7;
|
|
29
|
+
--component-avatar-shared-color-magenta-border: unset;
|
|
30
|
+
--component-avatar-shared-color-orange-text: #693c16;
|
|
31
|
+
--component-avatar-shared-color-orange-background: #fcddc6;
|
|
32
|
+
--component-avatar-shared-color-orange-border: unset;
|
|
33
|
+
--component-avatar-shared-color-yellow-text: #5b4a0b;
|
|
34
|
+
--component-avatar-shared-color-yellow-background: #fbeebf;
|
|
35
|
+
--component-avatar-shared-color-yellow-border: unset;
|
|
36
|
+
--component-avatar-shared-color-outlined-text: #000000;
|
|
37
|
+
--component-avatar-shared-color-outlined-background: none;
|
|
38
|
+
--component-avatar-shared-color-outlined-border: 0.0625rem solid #8d8d8d;
|
|
39
|
+
--component-avatar-shared-display: inline-flex;
|
|
40
|
+
--component-avatar-shared-align-items: center;
|
|
41
|
+
--component-avatar-shared-justify-content: center;
|
|
42
|
+
--component-avatar-shared-overflow: hidden;
|
|
43
|
+
--component-avatar-shared-flex-shrink: 0;
|
|
44
|
+
--component-avatar-shared-border-radius: 50%;
|
|
45
|
+
--component-avatar-shared-user-select: none;
|
|
46
|
+
--component-avatar-sm-size: 2rem;
|
|
47
|
+
--component-avatar-sm-typography-font: normal 700 0.75rem/1 'Open Sans';
|
|
48
|
+
--component-avatar-sm-typography-letter-spacing: 0rem;
|
|
49
|
+
--component-avatar-sm-typography-font-width: 95;
|
|
50
|
+
--component-avatar-md-size: 2.5rem;
|
|
51
|
+
--component-avatar-md-typography-font: normal 700 0.875rem/1 'Open Sans';
|
|
52
|
+
--component-avatar-md-typography-letter-spacing: -0.0125rem;
|
|
53
|
+
--component-avatar-md-typography-font-width: 95;
|
|
54
|
+
}
|
|
@@ -0,0 +1,282 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly, this file was auto-generated.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
--component-button-shared-display: inline-flex;
|
|
7
|
+
--component-button-shared-webkit-appearance: none;
|
|
8
|
+
--component-button-shared-text-align: inherit;
|
|
9
|
+
--component-button-shared-box-shadow: none;
|
|
10
|
+
--component-button-shared-cursor: pointer;
|
|
11
|
+
--component-button-shared-justify-content: center;
|
|
12
|
+
--component-button-shared-align-items: center;
|
|
13
|
+
--component-button-shared-text-decoration: none;
|
|
14
|
+
--component-button-shared-disabled-cursor: not-allowed;
|
|
15
|
+
--component-button-shared-focus-visible-outline: 0.125rem solid #0072a9;
|
|
16
|
+
--component-button-shared-focus-visible-outline-offset: 0.125rem;
|
|
17
|
+
--component-button-emphasised-primary-shared-color: #ffffff;
|
|
18
|
+
--component-button-emphasised-primary-shared-background-color: #0d4289;
|
|
19
|
+
--component-button-emphasised-primary-shared-border-radius: 0.25rem;
|
|
20
|
+
--component-button-emphasised-primary-shared-border: 0.0625rem solid #0d4289;
|
|
21
|
+
--component-button-emphasised-primary-shared-hover-background-color: #092f62;
|
|
22
|
+
--component-button-emphasised-primary-shared-hover-border: 0.0625rem solid
|
|
23
|
+
#092f62;
|
|
24
|
+
--component-button-emphasised-primary-shared-active-background-color: #061d3c;
|
|
25
|
+
--component-button-emphasised-primary-shared-active-border: 0.0625rem solid
|
|
26
|
+
#061d3c;
|
|
27
|
+
--component-button-emphasised-primary-shared-disabled-color: #999999;
|
|
28
|
+
--component-button-emphasised-primary-shared-disabled-background-color: #dcdcdc;
|
|
29
|
+
--component-button-emphasised-primary-shared-disabled-border: 0.0625rem
|
|
30
|
+
solid #dcdcdc;
|
|
31
|
+
--component-button-emphasised-primary-xs-height: 1.5rem;
|
|
32
|
+
--component-button-emphasised-primary-xs-padding-top: 0.25rem;
|
|
33
|
+
--component-button-emphasised-primary-xs-padding-right: 0.5rem;
|
|
34
|
+
--component-button-emphasised-primary-xs-padding-bottom: 0.25rem;
|
|
35
|
+
--component-button-emphasised-primary-xs-padding-left: 0.5rem;
|
|
36
|
+
--component-button-emphasised-primary-xs-padding-with-icon-icon-left-left: 0.25rem;
|
|
37
|
+
--component-button-emphasised-primary-xs-typography-font: normal 700
|
|
38
|
+
0.75rem/1 'Open Sans';
|
|
39
|
+
--component-button-emphasised-primary-xs-typography-letter-spacing: 0rem;
|
|
40
|
+
--component-button-emphasised-primary-xs-typography-font-width: 95;
|
|
41
|
+
--component-button-emphasised-primary-xs-icon-size: 1.125rem;
|
|
42
|
+
--component-button-emphasised-primary-xs-icon-gap: 0.25rem;
|
|
43
|
+
--component-button-emphasised-primary-xs-icon-button-width: 1.5rem;
|
|
44
|
+
--component-button-emphasised-primary-sm-height: 2rem;
|
|
45
|
+
--component-button-emphasised-primary-sm-padding-top: 0.25rem;
|
|
46
|
+
--component-button-emphasised-primary-sm-padding-right: 0.625rem;
|
|
47
|
+
--component-button-emphasised-primary-sm-padding-bottom: 0.25rem;
|
|
48
|
+
--component-button-emphasised-primary-sm-padding-left: 0.625rem;
|
|
49
|
+
--component-button-emphasised-primary-sm-padding-with-icon-icon-left-left: 0.5rem;
|
|
50
|
+
--component-button-emphasised-primary-sm-typography-font: normal 700
|
|
51
|
+
0.875rem/1 'Open Sans';
|
|
52
|
+
--component-button-emphasised-primary-sm-typography-letter-spacing: -0.0125rem;
|
|
53
|
+
--component-button-emphasised-primary-sm-typography-font-width: 95;
|
|
54
|
+
--component-button-emphasised-primary-sm-icon-size: 1.125rem;
|
|
55
|
+
--component-button-emphasised-primary-sm-icon-gap: 0.25rem;
|
|
56
|
+
--component-button-emphasised-primary-sm-icon-button-width: 2rem;
|
|
57
|
+
--component-button-emphasised-primary-md-height: 2.5rem;
|
|
58
|
+
--component-button-emphasised-primary-md-padding-top: 0.25rem;
|
|
59
|
+
--component-button-emphasised-primary-md-padding-right: 0.75rem;
|
|
60
|
+
--component-button-emphasised-primary-md-padding-bottom: 0.25rem;
|
|
61
|
+
--component-button-emphasised-primary-md-padding-left: 0.75rem;
|
|
62
|
+
--component-button-emphasised-primary-md-padding-with-icon-icon-left-left: 0.5rem;
|
|
63
|
+
--component-button-emphasised-primary-md-typography-font: normal 700
|
|
64
|
+
0.875rem/1 'Open Sans';
|
|
65
|
+
--component-button-emphasised-primary-md-typography-letter-spacing: -0.0125rem;
|
|
66
|
+
--component-button-emphasised-primary-md-typography-font-width: 95;
|
|
67
|
+
--component-button-emphasised-primary-md-icon-size: 1.25rem;
|
|
68
|
+
--component-button-emphasised-primary-md-icon-gap: 0.25rem;
|
|
69
|
+
--component-button-emphasised-primary-md-icon-button-width: 2.5rem;
|
|
70
|
+
--component-button-emphasised-primary-lg-height: 3rem;
|
|
71
|
+
--component-button-emphasised-primary-lg-padding-top: 0.25rem;
|
|
72
|
+
--component-button-emphasised-primary-lg-padding-right: 1rem;
|
|
73
|
+
--component-button-emphasised-primary-lg-padding-bottom: 0.25rem;
|
|
74
|
+
--component-button-emphasised-primary-lg-padding-left: 1rem;
|
|
75
|
+
--component-button-emphasised-primary-lg-padding-with-icon-icon-left-left: 0.75rem;
|
|
76
|
+
--component-button-emphasised-primary-lg-typography-font: normal 700 1rem/1
|
|
77
|
+
'Open Sans';
|
|
78
|
+
--component-button-emphasised-primary-lg-typography-letter-spacing: -0.0125rem;
|
|
79
|
+
--component-button-emphasised-primary-lg-typography-font-width: 95;
|
|
80
|
+
--component-button-emphasised-primary-lg-icon-size: 1.5rem;
|
|
81
|
+
--component-button-emphasised-primary-lg-icon-gap: 0.25rem;
|
|
82
|
+
--component-button-emphasised-primary-lg-icon-button-width: 3rem;
|
|
83
|
+
--component-button-emphasised-secondary-shared-color: #000000;
|
|
84
|
+
--component-button-emphasised-secondary-shared-background-color: none;
|
|
85
|
+
--component-button-emphasised-secondary-shared-border-radius: 0.25rem;
|
|
86
|
+
--component-button-emphasised-secondary-shared-border: 0.0625rem solid
|
|
87
|
+
#0d4289;
|
|
88
|
+
--component-button-emphasised-secondary-shared-hover-background-color: #e8f0fb;
|
|
89
|
+
--component-button-emphasised-secondary-shared-hover-border: 0.0625rem solid
|
|
90
|
+
#0d4289;
|
|
91
|
+
--component-button-emphasised-secondary-shared-active-background-color: #c5d9f4;
|
|
92
|
+
--component-button-emphasised-secondary-shared-active-border: 0.0625rem
|
|
93
|
+
solid #0d4289;
|
|
94
|
+
--component-button-emphasised-secondary-shared-disabled-color: #999999;
|
|
95
|
+
--component-button-emphasised-secondary-shared-disabled-background-color: none;
|
|
96
|
+
--component-button-emphasised-secondary-shared-disabled-border: 0.0625rem
|
|
97
|
+
solid #dcdcdc;
|
|
98
|
+
--component-button-emphasised-secondary-xs-height: 1.5rem;
|
|
99
|
+
--component-button-emphasised-secondary-xs-padding-top: 0.25rem;
|
|
100
|
+
--component-button-emphasised-secondary-xs-padding-right: 0.5rem;
|
|
101
|
+
--component-button-emphasised-secondary-xs-padding-bottom: 0.25rem;
|
|
102
|
+
--component-button-emphasised-secondary-xs-padding-left: 0.5rem;
|
|
103
|
+
--component-button-emphasised-secondary-xs-padding-with-icon-icon-left-left: 0.25rem;
|
|
104
|
+
--component-button-emphasised-secondary-xs-typography-font: normal 700
|
|
105
|
+
0.75rem/1 'Open Sans';
|
|
106
|
+
--component-button-emphasised-secondary-xs-typography-letter-spacing: 0rem;
|
|
107
|
+
--component-button-emphasised-secondary-xs-typography-font-width: 95;
|
|
108
|
+
--component-button-emphasised-secondary-xs-icon-size: 1.125rem;
|
|
109
|
+
--component-button-emphasised-secondary-xs-icon-gap: 0.25rem;
|
|
110
|
+
--component-button-emphasised-secondary-xs-icon-button-width: 1.5rem;
|
|
111
|
+
--component-button-emphasised-secondary-sm-height: 2rem;
|
|
112
|
+
--component-button-emphasised-secondary-sm-padding-top: 0.25rem;
|
|
113
|
+
--component-button-emphasised-secondary-sm-padding-right: 0.625rem;
|
|
114
|
+
--component-button-emphasised-secondary-sm-padding-bottom: 0.25rem;
|
|
115
|
+
--component-button-emphasised-secondary-sm-padding-left: 0.625rem;
|
|
116
|
+
--component-button-emphasised-secondary-sm-padding-with-icon-icon-left-left: 0.5rem;
|
|
117
|
+
--component-button-emphasised-secondary-sm-typography-font: normal 700
|
|
118
|
+
0.875rem/1 'Open Sans';
|
|
119
|
+
--component-button-emphasised-secondary-sm-typography-letter-spacing: -0.0125rem;
|
|
120
|
+
--component-button-emphasised-secondary-sm-typography-font-width: 95;
|
|
121
|
+
--component-button-emphasised-secondary-sm-icon-size: 1.125rem;
|
|
122
|
+
--component-button-emphasised-secondary-sm-icon-gap: 0.25rem;
|
|
123
|
+
--component-button-emphasised-secondary-sm-icon-button-width: 2rem;
|
|
124
|
+
--component-button-emphasised-secondary-md-height: 2.5rem;
|
|
125
|
+
--component-button-emphasised-secondary-md-padding-top: 0.25rem;
|
|
126
|
+
--component-button-emphasised-secondary-md-padding-right: 0.75rem;
|
|
127
|
+
--component-button-emphasised-secondary-md-padding-bottom: 0.25rem;
|
|
128
|
+
--component-button-emphasised-secondary-md-padding-left: 0.75rem;
|
|
129
|
+
--component-button-emphasised-secondary-md-padding-with-icon-icon-left-left: 0.5rem;
|
|
130
|
+
--component-button-emphasised-secondary-md-typography-font: normal 700
|
|
131
|
+
0.875rem/1 'Open Sans';
|
|
132
|
+
--component-button-emphasised-secondary-md-typography-letter-spacing: -0.0125rem;
|
|
133
|
+
--component-button-emphasised-secondary-md-typography-font-width: 95;
|
|
134
|
+
--component-button-emphasised-secondary-md-icon-size: 1.25rem;
|
|
135
|
+
--component-button-emphasised-secondary-md-icon-gap: 0.25rem;
|
|
136
|
+
--component-button-emphasised-secondary-md-icon-button-width: 2.5rem;
|
|
137
|
+
--component-button-emphasised-secondary-lg-height: 3rem;
|
|
138
|
+
--component-button-emphasised-secondary-lg-padding-top: 0.25rem;
|
|
139
|
+
--component-button-emphasised-secondary-lg-padding-right: 1rem;
|
|
140
|
+
--component-button-emphasised-secondary-lg-padding-bottom: 0.25rem;
|
|
141
|
+
--component-button-emphasised-secondary-lg-padding-left: 1rem;
|
|
142
|
+
--component-button-emphasised-secondary-lg-padding-with-icon-icon-left-left: 0.75rem;
|
|
143
|
+
--component-button-emphasised-secondary-lg-typography-font: normal 700
|
|
144
|
+
1rem/1 'Open Sans';
|
|
145
|
+
--component-button-emphasised-secondary-lg-typography-letter-spacing: -0.0125rem;
|
|
146
|
+
--component-button-emphasised-secondary-lg-typography-font-width: 95;
|
|
147
|
+
--component-button-emphasised-secondary-lg-icon-size: 1.5rem;
|
|
148
|
+
--component-button-emphasised-secondary-lg-icon-gap: 0.25rem;
|
|
149
|
+
--component-button-emphasised-secondary-lg-icon-button-width: 3rem;
|
|
150
|
+
--component-button-neutral-primary-shared-color: #ffffff;
|
|
151
|
+
--component-button-neutral-primary-shared-background-color: #545454;
|
|
152
|
+
--component-button-neutral-primary-shared-border-radius: 0.25rem;
|
|
153
|
+
--component-button-neutral-primary-shared-border: 0.0625rem solid #545454;
|
|
154
|
+
--component-button-neutral-primary-shared-hover-background-color: #333333;
|
|
155
|
+
--component-button-neutral-primary-shared-hover-border: 0.0625rem solid
|
|
156
|
+
#333333;
|
|
157
|
+
--component-button-neutral-primary-shared-active-background-color: #121212;
|
|
158
|
+
--component-button-neutral-primary-shared-active-border: 0.0625rem solid
|
|
159
|
+
#121212;
|
|
160
|
+
--component-button-neutral-primary-shared-disabled-color: #999999;
|
|
161
|
+
--component-button-neutral-primary-shared-disabled-background-color: #dcdcdc;
|
|
162
|
+
--component-button-neutral-primary-shared-disabled-border: 0.0625rem solid
|
|
163
|
+
#dcdcdc;
|
|
164
|
+
--component-button-neutral-primary-xs-height: 1.5rem;
|
|
165
|
+
--component-button-neutral-primary-xs-padding-top: 0.25rem;
|
|
166
|
+
--component-button-neutral-primary-xs-padding-right: 0.5rem;
|
|
167
|
+
--component-button-neutral-primary-xs-padding-bottom: 0.25rem;
|
|
168
|
+
--component-button-neutral-primary-xs-padding-left: 0.5rem;
|
|
169
|
+
--component-button-neutral-primary-xs-padding-with-icon-icon-left-left: 0.25rem;
|
|
170
|
+
--component-button-neutral-primary-xs-typography-font: normal 700 0.75rem/1
|
|
171
|
+
'Open Sans';
|
|
172
|
+
--component-button-neutral-primary-xs-typography-letter-spacing: 0rem;
|
|
173
|
+
--component-button-neutral-primary-xs-typography-font-width: 95;
|
|
174
|
+
--component-button-neutral-primary-xs-icon-size: 1.125rem;
|
|
175
|
+
--component-button-neutral-primary-xs-icon-gap: 0.25rem;
|
|
176
|
+
--component-button-neutral-primary-xs-icon-button-width: 1.5rem;
|
|
177
|
+
--component-button-neutral-primary-sm-height: 2rem;
|
|
178
|
+
--component-button-neutral-primary-sm-padding-top: 0.25rem;
|
|
179
|
+
--component-button-neutral-primary-sm-padding-right: 0.625rem;
|
|
180
|
+
--component-button-neutral-primary-sm-padding-bottom: 0.25rem;
|
|
181
|
+
--component-button-neutral-primary-sm-padding-left: 0.625rem;
|
|
182
|
+
--component-button-neutral-primary-sm-padding-with-icon-icon-left-left: 0.5rem;
|
|
183
|
+
--component-button-neutral-primary-sm-typography-font: normal 700 0.875rem/1
|
|
184
|
+
'Open Sans';
|
|
185
|
+
--component-button-neutral-primary-sm-typography-letter-spacing: -0.0125rem;
|
|
186
|
+
--component-button-neutral-primary-sm-typography-font-width: 95;
|
|
187
|
+
--component-button-neutral-primary-sm-icon-size: 1.125rem;
|
|
188
|
+
--component-button-neutral-primary-sm-icon-gap: 0.25rem;
|
|
189
|
+
--component-button-neutral-primary-sm-icon-button-width: 2rem;
|
|
190
|
+
--component-button-neutral-primary-md-height: 2.5rem;
|
|
191
|
+
--component-button-neutral-primary-md-padding-top: 0.25rem;
|
|
192
|
+
--component-button-neutral-primary-md-padding-right: 0.75rem;
|
|
193
|
+
--component-button-neutral-primary-md-padding-bottom: 0.25rem;
|
|
194
|
+
--component-button-neutral-primary-md-padding-left: 0.75rem;
|
|
195
|
+
--component-button-neutral-primary-md-padding-with-icon-icon-left-left: 0.5rem;
|
|
196
|
+
--component-button-neutral-primary-md-typography-font: normal 700 0.875rem/1
|
|
197
|
+
'Open Sans';
|
|
198
|
+
--component-button-neutral-primary-md-typography-letter-spacing: -0.0125rem;
|
|
199
|
+
--component-button-neutral-primary-md-typography-font-width: 95;
|
|
200
|
+
--component-button-neutral-primary-md-icon-size: 1.25rem;
|
|
201
|
+
--component-button-neutral-primary-md-icon-gap: 0.25rem;
|
|
202
|
+
--component-button-neutral-primary-md-icon-button-width: 2.5rem;
|
|
203
|
+
--component-button-neutral-primary-lg-height: 3rem;
|
|
204
|
+
--component-button-neutral-primary-lg-padding-top: 0.25rem;
|
|
205
|
+
--component-button-neutral-primary-lg-padding-right: 1rem;
|
|
206
|
+
--component-button-neutral-primary-lg-padding-bottom: 0.25rem;
|
|
207
|
+
--component-button-neutral-primary-lg-padding-left: 1rem;
|
|
208
|
+
--component-button-neutral-primary-lg-padding-with-icon-icon-left-left: 0.75rem;
|
|
209
|
+
--component-button-neutral-primary-lg-typography-font: normal 700 1rem/1
|
|
210
|
+
'Open Sans';
|
|
211
|
+
--component-button-neutral-primary-lg-typography-letter-spacing: -0.0125rem;
|
|
212
|
+
--component-button-neutral-primary-lg-typography-font-width: 95;
|
|
213
|
+
--component-button-neutral-primary-lg-icon-size: 1.5rem;
|
|
214
|
+
--component-button-neutral-primary-lg-icon-gap: 0.25rem;
|
|
215
|
+
--component-button-neutral-primary-lg-icon-button-width: 3rem;
|
|
216
|
+
--component-button-neutral-secondary-shared-color: #000000;
|
|
217
|
+
--component-button-neutral-secondary-shared-background-color: none;
|
|
218
|
+
--component-button-neutral-secondary-shared-border-radius: 0.25rem;
|
|
219
|
+
--component-button-neutral-secondary-shared-border: 0.0625rem solid #545454;
|
|
220
|
+
--component-button-neutral-secondary-shared-hover-background-color: #ededed;
|
|
221
|
+
--component-button-neutral-secondary-shared-hover-border: 0.0625rem solid
|
|
222
|
+
#545454;
|
|
223
|
+
--component-button-neutral-secondary-shared-active-background-color: #dcdcdc;
|
|
224
|
+
--component-button-neutral-secondary-shared-active-border: 0.0625rem solid
|
|
225
|
+
#545454;
|
|
226
|
+
--component-button-neutral-secondary-shared-disabled-color: #999999;
|
|
227
|
+
--component-button-neutral-secondary-shared-disabled-background-color: none;
|
|
228
|
+
--component-button-neutral-secondary-shared-disabled-border: 0.0625rem solid
|
|
229
|
+
#dcdcdc;
|
|
230
|
+
--component-button-neutral-secondary-xs-height: 1.5rem;
|
|
231
|
+
--component-button-neutral-secondary-xs-padding-top: 0.25rem;
|
|
232
|
+
--component-button-neutral-secondary-xs-padding-right: 0.5rem;
|
|
233
|
+
--component-button-neutral-secondary-xs-padding-bottom: 0.25rem;
|
|
234
|
+
--component-button-neutral-secondary-xs-padding-left: 0.5rem;
|
|
235
|
+
--component-button-neutral-secondary-xs-padding-with-icon-icon-left-left: 0.25rem;
|
|
236
|
+
--component-button-neutral-secondary-xs-typography-font: normal 700
|
|
237
|
+
0.75rem/1 'Open Sans';
|
|
238
|
+
--component-button-neutral-secondary-xs-typography-letter-spacing: 0rem;
|
|
239
|
+
--component-button-neutral-secondary-xs-typography-font-width: 95;
|
|
240
|
+
--component-button-neutral-secondary-xs-icon-size: 1.125rem;
|
|
241
|
+
--component-button-neutral-secondary-xs-icon-gap: 0.25rem;
|
|
242
|
+
--component-button-neutral-secondary-xs-icon-button-width: 1.5rem;
|
|
243
|
+
--component-button-neutral-secondary-sm-height: 2rem;
|
|
244
|
+
--component-button-neutral-secondary-sm-padding-top: 0.25rem;
|
|
245
|
+
--component-button-neutral-secondary-sm-padding-right: 0.625rem;
|
|
246
|
+
--component-button-neutral-secondary-sm-padding-bottom: 0.25rem;
|
|
247
|
+
--component-button-neutral-secondary-sm-padding-left: 0.625rem;
|
|
248
|
+
--component-button-neutral-secondary-sm-padding-with-icon-icon-left-left: 0.5rem;
|
|
249
|
+
--component-button-neutral-secondary-sm-typography-font: normal 700
|
|
250
|
+
0.875rem/1 'Open Sans';
|
|
251
|
+
--component-button-neutral-secondary-sm-typography-letter-spacing: -0.0125rem;
|
|
252
|
+
--component-button-neutral-secondary-sm-typography-font-width: 95;
|
|
253
|
+
--component-button-neutral-secondary-sm-icon-size: 1.125rem;
|
|
254
|
+
--component-button-neutral-secondary-sm-icon-gap: 0.25rem;
|
|
255
|
+
--component-button-neutral-secondary-sm-icon-button-width: 2rem;
|
|
256
|
+
--component-button-neutral-secondary-md-height: 2.5rem;
|
|
257
|
+
--component-button-neutral-secondary-md-padding-top: 0.25rem;
|
|
258
|
+
--component-button-neutral-secondary-md-padding-right: 0.75rem;
|
|
259
|
+
--component-button-neutral-secondary-md-padding-bottom: 0.25rem;
|
|
260
|
+
--component-button-neutral-secondary-md-padding-left: 0.75rem;
|
|
261
|
+
--component-button-neutral-secondary-md-padding-with-icon-icon-left-left: 0.5rem;
|
|
262
|
+
--component-button-neutral-secondary-md-typography-font: normal 700
|
|
263
|
+
0.875rem/1 'Open Sans';
|
|
264
|
+
--component-button-neutral-secondary-md-typography-letter-spacing: -0.0125rem;
|
|
265
|
+
--component-button-neutral-secondary-md-typography-font-width: 95;
|
|
266
|
+
--component-button-neutral-secondary-md-icon-size: 1.25rem;
|
|
267
|
+
--component-button-neutral-secondary-md-icon-gap: 0.25rem;
|
|
268
|
+
--component-button-neutral-secondary-md-icon-button-width: 2.5rem;
|
|
269
|
+
--component-button-neutral-secondary-lg-height: 3rem;
|
|
270
|
+
--component-button-neutral-secondary-lg-padding-top: 0.25rem;
|
|
271
|
+
--component-button-neutral-secondary-lg-padding-right: 1rem;
|
|
272
|
+
--component-button-neutral-secondary-lg-padding-bottom: 0.25rem;
|
|
273
|
+
--component-button-neutral-secondary-lg-padding-left: 1rem;
|
|
274
|
+
--component-button-neutral-secondary-lg-padding-with-icon-icon-left-left: 0.75rem;
|
|
275
|
+
--component-button-neutral-secondary-lg-typography-font: normal 700 1rem/1
|
|
276
|
+
'Open Sans';
|
|
277
|
+
--component-button-neutral-secondary-lg-typography-letter-spacing: -0.0125rem;
|
|
278
|
+
--component-button-neutral-secondary-lg-typography-font-width: 95;
|
|
279
|
+
--component-button-neutral-secondary-lg-icon-size: 1.5rem;
|
|
280
|
+
--component-button-neutral-secondary-lg-icon-gap: 0.25rem;
|
|
281
|
+
--component-button-neutral-secondary-lg-icon-button-width: 3rem;
|
|
282
|
+
}
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
--component-byline-chip-border-radius: 8px;
|
|
18
18
|
--component-byline-chip-padding-x: 4px;
|
|
19
19
|
--component-byline-chip-padding-y: 2px;
|
|
20
|
-
--component-byline-chip-selected-border-color: #
|
|
20
|
+
--component-byline-chip-selected-border-color: #c5d9f4;
|
|
21
21
|
--component-byline-chip-tagged-background-color: #dcdcdc;
|
|
22
22
|
--component-byline-chip-untagged-color: #000000;
|
|
23
23
|
--component-byline-dropdown-border-color: #cccccc;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly, this file was auto-generated.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
--component-icon-shared-display: inline-flex;
|
|
7
|
+
--component-icon-shared-user-select: none;
|
|
8
|
+
--component-icon-sm-size: 1.125rem;
|
|
9
|
+
--component-icon-md-size: 1.25rem;
|
|
10
|
+
--component-icon-lg-size: 1.5rem;
|
|
11
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly, this file was auto-generated.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
--component-user-menu-container-background-color: #dcdcdc;
|
|
7
|
+
--component-user-menu-container-width: 300px;
|
|
8
|
+
--component-user-menu-container-padding-y: 0.25rem;
|
|
9
|
+
--component-user-menu-container-padding-x: 0.25rem;
|
|
10
|
+
--component-user-menu-heading-font-weight: 700;
|
|
11
|
+
--component-user-menu-heading-font-size: 1.125rem;
|
|
12
|
+
--component-user-menu-heading-padding-top: 0px;
|
|
13
|
+
--component-user-menu-heading-padding-right: 0px;
|
|
14
|
+
--component-user-menu-heading-padding-bottom: 0px;
|
|
15
|
+
--component-user-menu-heading-padding-left: 0px;
|
|
16
|
+
--component-user-menu-heading-text-align: left;
|
|
17
|
+
--component-user-menu-label-font-weight: 700;
|
|
18
|
+
--component-user-menu-label-font-size: 0.875rem;
|
|
19
|
+
--component-user-menu-label-padding-top: 15px;
|
|
20
|
+
--component-user-menu-label-padding-right: 0px;
|
|
21
|
+
--component-user-menu-label-padding-bottom: 0.375rem;
|
|
22
|
+
--component-user-menu-label-padding-left: 0px;
|
|
23
|
+
--component-user-menu-label-text-align: left;
|
|
24
|
+
--component-user-menu-toggle-button-base-background-color: #ededed;
|
|
25
|
+
--component-user-menu-toggle-button-disabled-background-color: #dcdcdc;
|
|
26
|
+
--component-user-menu-toggle-button-base-border-color: #dcdcdc;
|
|
27
|
+
--component-user-menu-toggle-button-selected-border-color: #0d4289;
|
|
28
|
+
--component-user-menu-toggle-button-gap: 0.25rem;
|
|
29
|
+
}
|
|
@@ -24,36 +24,39 @@
|
|
|
24
24
|
--semantic-colors-text-orange: #693c16;
|
|
25
25
|
--semantic-colors-text-yellow: #5b4a0b;
|
|
26
26
|
--semantic-colors-text-interactive-disabled: #999999;
|
|
27
|
-
--semantic-colors-bg-
|
|
28
|
-
--semantic-colors-bg-
|
|
27
|
+
--semantic-colors-bg-base: #ffffff;
|
|
28
|
+
--semantic-colors-bg-raised-1: #f6f6f6;
|
|
29
|
+
--semantic-colors-bg-raised-2: #ededed;
|
|
29
30
|
--semantic-colors-surface-light-1: #f6f6f6;
|
|
30
31
|
--semantic-colors-surface-light-2: #ededed;
|
|
31
32
|
--semantic-colors-surface-dark-1: #333333;
|
|
32
|
-
--semantic-colors-border-subtle: #cccccc;
|
|
33
33
|
--semantic-colors-border-default: #8d8d8d;
|
|
34
|
+
--semantic-colors-border-secondary: #cccccc;
|
|
35
|
+
--semantic-colors-border-tertiary: #ededed;
|
|
34
36
|
--semantic-colors-border-strong: #545454;
|
|
35
37
|
--semantic-colors-border-inverse-strong: #ffffff;
|
|
36
38
|
--semantic-colors-border-interactive-emphasised: #0d4289;
|
|
37
39
|
--semantic-colors-border-interactive-neutral: #545454;
|
|
38
40
|
--semantic-colors-border-interactive-disabled: #dcdcdc;
|
|
39
41
|
--semantic-colors-border-interactive-focused: #0072a9;
|
|
42
|
+
--semantic-colors-border-interactive-selected: #0072a9;
|
|
40
43
|
--semantic-colors-status-status-draft: #f1c21b;
|
|
41
44
|
--semantic-colors-status-status-live: #4e9e3e;
|
|
42
45
|
--semantic-colors-status-status-selected: #0072a9;
|
|
43
46
|
--semantic-colors-status-status-focused: #0072a9;
|
|
44
47
|
--semantic-colors-fill-interactive-primary-emphasised: #0d4289;
|
|
45
48
|
--semantic-colors-fill-interactive-primary-emphasised-hover: #092f62;
|
|
46
|
-
--semantic-colors-fill-interactive-primary-emphasised-pressed: #
|
|
49
|
+
--semantic-colors-fill-interactive-primary-emphasised-pressed: #061d3c;
|
|
47
50
|
--semantic-colors-fill-interactive-secondary-emphasised-hover: #e8f0fb;
|
|
48
|
-
--semantic-colors-fill-interactive-secondary-emphasised-pressed: #
|
|
51
|
+
--semantic-colors-fill-interactive-secondary-emphasised-pressed: #c5d9f4;
|
|
49
52
|
--semantic-colors-fill-interactive-primary-neutral: #545454;
|
|
50
53
|
--semantic-colors-fill-interactive-primary-neutral-hover: #333333;
|
|
51
|
-
--semantic-colors-fill-interactive-primary-neutral-pressed: #
|
|
54
|
+
--semantic-colors-fill-interactive-primary-neutral-pressed: #121212;
|
|
52
55
|
--semantic-colors-fill-interactive-secondary-neutral-hover: #ededed;
|
|
53
|
-
--semantic-colors-fill-interactive-secondary-neutral-pressed: #
|
|
56
|
+
--semantic-colors-fill-interactive-secondary-neutral-pressed: #dcdcdc;
|
|
54
57
|
--semantic-colors-fill-interactive-disabled: #dcdcdc;
|
|
55
58
|
--semantic-colors-fill-green-subtle: #cde4c9;
|
|
56
|
-
--semantic-colors-fill-blue-subtle: #
|
|
59
|
+
--semantic-colors-fill-blue-subtle: #c5d9f4;
|
|
57
60
|
--semantic-colors-fill-red-subtle: #f5c6c0;
|
|
58
61
|
--semantic-colors-fill-cyan-subtle: #b8d8e7;
|
|
59
62
|
--semantic-colors-fill-teal-subtle: #c5dfe1;
|
|
@@ -62,4 +65,5 @@
|
|
|
62
65
|
--semantic-colors-fill-magenta-subtle: #edc6d7;
|
|
63
66
|
--semantic-colors-fill-orange-subtle: #fcddc6;
|
|
64
67
|
--semantic-colors-fill-yellow-subtle: #fbeebf;
|
|
68
|
+
--semantic-colors-fill-selected: #005d8b;
|
|
65
69
|
}
|
|
@@ -148,4 +148,7 @@
|
|
|
148
148
|
--semantic-typography-interactive-sm-font: normal 700 0.875rem/1 'Open Sans';
|
|
149
149
|
--semantic-typography-interactive-sm-letter-spacing: -0.0125rem;
|
|
150
150
|
--semantic-typography-interactive-sm-font-width: 95;
|
|
151
|
+
--semantic-typography-interactive-md-font: normal 700 1rem/1 'Open Sans';
|
|
152
|
+
--semantic-typography-interactive-md-letter-spacing: -0.0125rem;
|
|
153
|
+
--semantic-typography-interactive-md-font-width: 95;
|
|
151
154
|
}
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
const baseSizing = {
|
|
4
4
|
"size-1-px": "1px",
|
|
5
5
|
"size-2-px": "2px",
|
|
6
|
+
"size-8-px": "8px",
|
|
6
7
|
"size-16-px": "16px",
|
|
7
8
|
"size-18-px": "18px",
|
|
8
9
|
"size-20-px": "20px",
|
|
@@ -12,6 +13,7 @@ const baseSizing = {
|
|
|
12
13
|
"size-48-px": "48px",
|
|
13
14
|
"size-1-rem": "0.0625rem",
|
|
14
15
|
"size-2-rem": "0.125rem",
|
|
16
|
+
"size-8-rem": "0.5rem",
|
|
15
17
|
"size-16-rem": "1rem",
|
|
16
18
|
"size-18-rem": "1.125rem",
|
|
17
19
|
"size-20-rem": "1.25rem",
|