@guardian/stand 0.0.16 → 0.0.17
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 +1 -0
- package/dist/TopBar.cjs +9 -3
- package/dist/TopBar.js +4 -1
- package/dist/components/button/Button.cjs +1 -1
- package/dist/components/button/Button.js +1 -1
- package/dist/components/icon-button/IconButton.cjs +1 -1
- package/dist/components/icon-button/IconButton.js +1 -1
- package/dist/components/icon-link-button/IconLinkButton.cjs +1 -1
- package/dist/components/icon-link-button/IconLinkButton.js +1 -1
- package/dist/components/link-button/LinkButton.cjs +1 -1
- package/dist/components/link-button/LinkButton.js +1 -1
- package/dist/components/menu/styles.cjs +1 -0
- package/dist/components/menu/styles.js +1 -0
- package/dist/components/topbar/TopBar.cjs +101 -0
- package/dist/components/topbar/TopBar.js +63 -0
- package/dist/components/topbar/styles.cjs +30 -0
- package/dist/components/topbar/styles.js +25 -0
- package/dist/components/topbar/topBarItem/TopBarItem.cjs +28 -0
- package/dist/components/topbar/topBarItem/TopBarItem.js +10 -0
- package/dist/components/topbar/topBarItem/styles.cjs +20 -0
- package/dist/components/topbar/topBarItem/styles.js +17 -0
- package/dist/components/topbar/topBarNavigation/TopBarNavigation.cjs +70 -0
- package/dist/components/topbar/topBarNavigation/TopBarNavigation.js +23 -0
- package/dist/components/topbar/topBarNavigation/styles.cjs +68 -0
- package/dist/components/topbar/topBarNavigation/styles.js +61 -0
- package/dist/components/topbar/{toolName → topBarToolName}/TopBarToolName.cjs +3 -2
- package/dist/components/topbar/topBarToolName/TopBarToolName.js +13 -0
- package/dist/styleD/build/css/base/typography.css +3 -3
- package/dist/styleD/build/css/component/TopBar.css +55 -1
- package/dist/styleD/build/css/component/avatar.css +1 -1
- package/dist/styleD/build/css/component/button.css +177 -255
- package/dist/styleD/build/css/component/favicon.css +1 -1
- package/dist/styleD/build/css/component/menu.css +5 -4
- package/dist/styleD/build/css/component/tagAutocomplete.css +1 -1
- package/dist/styleD/build/css/component/tagTable.css +1 -1
- package/dist/styleD/build/css/component/topBarItem.css +7 -0
- package/dist/styleD/build/css/component/userMenu.css +6 -6
- package/dist/styleD/build/css/semantic/colors.css +45 -46
- package/dist/styleD/build/css/semantic/sizing.css +1 -0
- package/dist/styleD/build/css/semantic/typography.css +30 -30
- package/dist/styleD/build/typescript/base/typography.cjs +3 -3
- package/dist/styleD/build/typescript/base/typography.js +3 -3
- package/dist/styleD/build/typescript/component/TopBar.cjs +94 -0
- package/dist/styleD/build/typescript/component/TopBar.js +94 -0
- package/dist/styleD/build/typescript/component/button.cjs +5 -130
- package/dist/styleD/build/typescript/component/button.js +5 -130
- package/dist/styleD/build/typescript/component/menu.cjs +2 -1
- package/dist/styleD/build/typescript/component/menu.js +2 -1
- package/dist/styleD/build/typescript/semantic/colors.cjs +47 -52
- package/dist/styleD/build/typescript/semantic/colors.js +47 -52
- package/dist/styleD/build/typescript/semantic/sizing.cjs +1 -0
- package/dist/styleD/build/typescript/semantic/sizing.js +1 -0
- package/dist/types/TopBar.d.ts +12 -3
- package/dist/types/components/button/sandbox.d.ts +4 -4
- package/dist/types/components/button/types.d.ts +1 -1
- package/dist/types/components/icon-button/sandbox.d.ts +4 -4
- package/dist/types/components/icon-button/styles.d.ts +3 -128
- package/dist/types/components/icon-button/types.d.ts +1 -1
- package/dist/types/components/icon-link-button/sandbox.d.ts +4 -4
- package/dist/types/components/icon-link-button/styles.d.ts +3 -128
- package/dist/types/components/icon-link-button/types.d.ts +1 -1
- package/dist/types/components/link-button/sandbox.d.ts +4 -4
- package/dist/types/components/link-button/styles.d.ts +3 -128
- package/dist/types/components/link-button/types.d.ts +1 -1
- package/dist/types/components/topbar/TopBar.d.ts +8 -0
- package/dist/types/components/topbar/sandbox.d.ts +5 -0
- package/dist/types/components/topbar/styles.d.ts +9 -0
- package/dist/types/components/topbar/topBarItem/TopBarItem.d.ts +2 -0
- package/dist/types/components/topbar/topBarItem/sandbox.d.ts +5 -0
- package/dist/types/components/topbar/topBarItem/styles.d.ts +8 -0
- package/dist/types/components/topbar/topBarItem/types.d.ts +14 -0
- package/dist/types/components/topbar/topBarNavigation/TopBarNavigation.d.ts +2 -0
- package/dist/types/components/topbar/topBarNavigation/sandbox.d.ts +5 -0
- package/dist/types/components/topbar/topBarNavigation/styles.d.ts +12 -0
- package/dist/types/components/topbar/topBarNavigation/types.d.ts +44 -0
- package/dist/types/components/topbar/types.d.ts +3 -0
- package/dist/types/styleD/build/typescript/base/typography.d.ts +3 -3
- package/dist/types/styleD/build/typescript/component/TopBar.d.ts +94 -0
- package/dist/types/styleD/build/typescript/component/button.d.ts +3 -128
- package/dist/types/styleD/build/typescript/component/menu.d.ts +1 -0
- package/dist/types/styleD/build/typescript/semantic/colors.d.ts +44 -49
- package/dist/types/styleD/build/typescript/semantic/sizing.d.ts +1 -0
- package/dist/util/css/reset.css +10 -0
- package/dist/util/reset.css.cjs +1 -1
- package/dist/util/reset.css.js +1 -1
- package/package.json +14 -16
- package/dist/components/topbar/toolName/TopBarToolName.js +0 -12
- /package/dist/components/topbar/{toolName → topBarToolName}/styles.cjs +0 -0
- /package/dist/components/topbar/{toolName → topBarToolName}/styles.js +0 -0
- /package/dist/types/components/topbar/{toolName → topBarToolName}/TopBarToolName.d.ts +0 -0
- /package/dist/types/components/topbar/{toolName → topBarToolName}/sandbox.d.ts +0 -0
- /package/dist/types/components/topbar/{toolName → topBarToolName}/styles.d.ts +0 -0
- /package/dist/types/components/topbar/{toolName → topBarToolName}/types.d.ts +0 -0
|
@@ -4,6 +4,7 @@ var jsxRuntime = require('@emotion/react/jsx-runtime');
|
|
|
4
4
|
var mergeDeep = require('../../../util/mergeDeep.cjs');
|
|
5
5
|
var Favicon = require('../../favicon/Favicon.cjs');
|
|
6
6
|
var Icon = require('../../icon/Icon.cjs');
|
|
7
|
+
var TopBarItem = require('../topBarItem/TopBarItem.cjs');
|
|
7
8
|
var styles = require('./styles.cjs');
|
|
8
9
|
|
|
9
10
|
const TopBarToolName = ({
|
|
@@ -15,7 +16,7 @@ const TopBarToolName = ({
|
|
|
15
16
|
cssOverrides
|
|
16
17
|
}) => {
|
|
17
18
|
const mergedTheme = mergeDeep.mergeDeep(styles.defaultToolNameTheme, theme);
|
|
18
|
-
return /* @__PURE__ */ jsxRuntime.jsxs("div", { css: [styles.toolNameStyles(mergedTheme), cssOverrides], children: [
|
|
19
|
+
return /* @__PURE__ */ jsxRuntime.jsx(TopBarItem.TopBarItem, { alignment: "left", size: "sm", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { css: [styles.toolNameStyles(mergedTheme), cssOverrides], children: [
|
|
19
20
|
/* @__PURE__ */ jsxRuntime.jsx(Favicon.Favicon, { ...favicon }),
|
|
20
21
|
/* @__PURE__ */ jsxRuntime.jsx("div", { css: [styles.toolNameTypography(mergedTheme)], children: name }),
|
|
21
22
|
subsection && /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
@@ -25,7 +26,7 @@ const TopBarToolName = ({
|
|
|
25
26
|
/* @__PURE__ */ jsxRuntime.jsx("div", { css: styles.subsectionTypography(mergedTheme), children: subsection })
|
|
26
27
|
] })
|
|
27
28
|
] })
|
|
28
|
-
] });
|
|
29
|
+
] }) });
|
|
29
30
|
};
|
|
30
31
|
|
|
31
32
|
exports.TopBarToolName = TopBarToolName;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx, jsxs, Fragment } from '@emotion/react/jsx-runtime';
|
|
2
|
+
import { mergeDeep } from '../../../util/mergeDeep.js';
|
|
3
|
+
import { Favicon } from '../../favicon/Favicon.js';
|
|
4
|
+
import { Icon } from '../../icon/Icon.js';
|
|
5
|
+
import { TopBarItem } from '../topBarItem/TopBarItem.js';
|
|
6
|
+
import { toolNameTypography, dividerStyles, subsectionTypography, subsectionStyles, toolNameStyles, defaultToolNameTheme } from './styles.js';
|
|
7
|
+
|
|
8
|
+
const TopBarToolName = ({ name, favicon, subsection, subsectionIcon, theme = {}, cssOverrides }) => {
|
|
9
|
+
const mergedTheme = mergeDeep(defaultToolNameTheme, theme);
|
|
10
|
+
return jsx(TopBarItem, { alignment: "left", size: "sm", children: jsxs("div", { css: [toolNameStyles(mergedTheme), cssOverrides], children: [jsx(Favicon, { ...favicon }), jsx("div", { css: [toolNameTypography(mergedTheme)], children: name }), subsection && jsxs(Fragment, { children: [jsx("div", { css: dividerStyles(mergedTheme), children: "\xA0" }), jsxs("div", { css: subsectionStyles(mergedTheme), children: [subsectionIcon && jsx(Icon, { size: "sm", children: subsectionIcon }), jsx("div", { css: subsectionTypography(mergedTheme), children: subsection })] })] })] }) });
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export { TopBarToolName };
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
--base-typography-size-36-rem: 2.25rem;
|
|
30
30
|
--base-typography-size-42-rem: 2.625rem;
|
|
31
31
|
--base-typography-size-48-rem: 3rem;
|
|
32
|
-
--base-typography-weight-guardian-headline-bold: 700;
|
|
33
32
|
--base-typography-weight-guardian-text-egyptian-normal: 400;
|
|
34
33
|
--base-typography-weight-guardian-text-egyptian-bold: 700;
|
|
34
|
+
--base-typography-weight-guardian-headline-bold: 700;
|
|
35
35
|
--base-typography-weight-open-sans-light: 340;
|
|
36
36
|
--base-typography-weight-open-sans-normal: 460;
|
|
37
37
|
--base-typography-weight-open-sans-semi-bold: 600;
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
--base-typography-letter-spacing-densest-px: -1px;
|
|
52
52
|
--base-typography-letter-spacing-denser-px: -0.5px;
|
|
53
53
|
--base-typography-letter-spacing-dense-px: -0.2px;
|
|
54
|
-
--base-typography-letter-spacing-default-px:
|
|
54
|
+
--base-typography-letter-spacing-default-px: 0;
|
|
55
55
|
--base-typography-letter-spacing-densest-rem: -0.0625rem;
|
|
56
56
|
--base-typography-letter-spacing-denser-rem: -0.03125rem;
|
|
57
57
|
--base-typography-letter-spacing-dense-rem: -0.0125rem;
|
|
58
|
-
--base-typography-letter-spacing-default-rem:
|
|
58
|
+
--base-typography-letter-spacing-default-rem: 0;
|
|
59
59
|
}
|
|
@@ -3,12 +3,66 @@
|
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
:root {
|
|
6
|
+
--component-top-bar-background-color: #f6f6f6;
|
|
7
|
+
--component-top-bar-display: flex;
|
|
8
|
+
--component-top-bar-height: 4rem;
|
|
9
|
+
--component-top-bar-justify-content: space-between;
|
|
10
|
+
--component-top-bar-border: 0.0625rem solid #cccccc;
|
|
11
|
+
--component-top-bar-item-display: flex;
|
|
12
|
+
--component-top-bar-item-align-items: center;
|
|
13
|
+
--component-top-bar-item-height: 100%;
|
|
14
|
+
--component-top-bar-item-sm-padding-top: 0;
|
|
15
|
+
--component-top-bar-item-sm-padding-right: 0.75rem;
|
|
16
|
+
--component-top-bar-item-sm-padding-bottom: 0;
|
|
17
|
+
--component-top-bar-item-sm-padding-left: 0.75rem;
|
|
18
|
+
--component-top-bar-item-md-padding-top: 0;
|
|
19
|
+
--component-top-bar-item-md-padding-right: 1rem;
|
|
20
|
+
--component-top-bar-item-md-padding-bottom: 0;
|
|
21
|
+
--component-top-bar-item-md-padding-left: 1rem;
|
|
22
|
+
--component-top-bar-item-lg-padding-top: 0;
|
|
23
|
+
--component-top-bar-item-lg-padding-right: 1.5rem;
|
|
24
|
+
--component-top-bar-item-lg-padding-bottom: 0;
|
|
25
|
+
--component-top-bar-item-lg-padding-left: 1.5rem;
|
|
26
|
+
--component-top-bar-item-border: 0.0625rem solid #cccccc;
|
|
27
|
+
--component-top-bar-navigation-shared-display: inline-flex;
|
|
28
|
+
--component-top-bar-navigation-shared-position: relative;
|
|
29
|
+
--component-top-bar-navigation-shared-align-items: center;
|
|
30
|
+
--component-top-bar-navigation-shared-cursor: pointer;
|
|
31
|
+
--component-top-bar-navigation-shared-text-decoration: none;
|
|
32
|
+
--component-top-bar-navigation-shared-height: 100%;
|
|
33
|
+
--component-top-bar-navigation-shared-disabled-cursor: not-allowed;
|
|
34
|
+
--component-top-bar-navigation-shared-disabled-color: #999999;
|
|
35
|
+
--component-top-bar-navigation-shared-padding-top: 0;
|
|
36
|
+
--component-top-bar-navigation-shared-padding-right: 1rem;
|
|
37
|
+
--component-top-bar-navigation-shared-padding-bottom: 0;
|
|
38
|
+
--component-top-bar-navigation-shared-padding-left: 1rem;
|
|
39
|
+
--component-top-bar-navigation-shared-focus-visible-outline: 0.125rem solid
|
|
40
|
+
#0072a9;
|
|
41
|
+
--component-top-bar-navigation-shared-focus-visible-outline-offset: -0.0625rem;
|
|
42
|
+
--component-top-bar-navigation-shared-border-top: 0.5rem solid transparent;
|
|
43
|
+
--component-top-bar-navigation-shared-divider: 0.0625rem solid #cccccc;
|
|
44
|
+
--component-top-bar-navigation-text-margin-left: 0.375rem;
|
|
45
|
+
--component-top-bar-navigation-menu-indicator-margin-top: 0.375rem;
|
|
46
|
+
--component-top-bar-navigation-menu-indicator-margin-left: 0.125rem;
|
|
47
|
+
--component-top-bar-navigation-selected-color: #000000;
|
|
48
|
+
--component-top-bar-navigation-selected-border-bottom: 0.5rem solid #0072a9;
|
|
49
|
+
--component-top-bar-navigation-unselected-color: #545454;
|
|
50
|
+
--component-top-bar-navigation-unselected-border-bottom: 0.5rem solid
|
|
51
|
+
transparent;
|
|
52
|
+
--component-top-bar-navigation-md-typography-font: normal 700 1rem/1.15
|
|
53
|
+
'Open Sans';
|
|
54
|
+
--component-top-bar-navigation-md-typography-letter-spacing: -0.03125rem;
|
|
55
|
+
--component-top-bar-navigation-md-typography-font-width: 95;
|
|
56
|
+
--component-top-bar-navigation-sm-typography-font: normal 700 0.875rem/1.15
|
|
57
|
+
'Open Sans';
|
|
58
|
+
--component-top-bar-navigation-sm-typography-letter-spacing: -0.0125rem;
|
|
59
|
+
--component-top-bar-navigation-sm-typography-font-width: 95;
|
|
6
60
|
--component-top-bar-tool-name-display: flex;
|
|
7
61
|
--component-top-bar-tool-name-align-items: center;
|
|
8
62
|
--component-top-bar-tool-name-gap: 8px;
|
|
9
63
|
--component-top-bar-tool-name-typography-font: normal 700 1.25rem/1.15
|
|
10
64
|
'GH Guardian Headline';
|
|
11
|
-
--component-top-bar-tool-name-typography-letter-spacing:
|
|
65
|
+
--component-top-bar-tool-name-typography-letter-spacing: 0;
|
|
12
66
|
--component-top-bar-tool-name-typography-font-width: 100;
|
|
13
67
|
--component-top-bar-tool-name-divider-border: 0.0625rem solid #cccccc;
|
|
14
68
|
--component-top-bar-tool-name-divider-height: 2rem;
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
--component-avatar-shared-user-select: none;
|
|
46
46
|
--component-avatar-sm-size: 2rem;
|
|
47
47
|
--component-avatar-sm-typography-font: normal 700 0.75rem/1 'Open Sans';
|
|
48
|
-
--component-avatar-sm-typography-letter-spacing:
|
|
48
|
+
--component-avatar-sm-typography-letter-spacing: 0;
|
|
49
49
|
--component-avatar-sm-typography-font-width: 95;
|
|
50
50
|
--component-avatar-md-size: 2.5rem;
|
|
51
51
|
--component-avatar-md-typography-font: normal 700 0.875rem/1 'Open Sans';
|
|
@@ -14,268 +14,190 @@
|
|
|
14
14
|
--component-button-shared-disabled-cursor: not-allowed;
|
|
15
15
|
--component-button-shared-focus-visible-outline: 0.125rem solid #0072a9;
|
|
16
16
|
--component-button-shared-focus-visible-outline-offset: 0.125rem;
|
|
17
|
-
--component-button-
|
|
18
|
-
--component-button-
|
|
19
|
-
--component-button-
|
|
20
|
-
--component-button-
|
|
21
|
-
--component-button-
|
|
22
|
-
--component-button-
|
|
23
|
-
|
|
24
|
-
--component-button-
|
|
25
|
-
--component-button-
|
|
26
|
-
|
|
27
|
-
--component-button-
|
|
28
|
-
--component-button-
|
|
29
|
-
--component-button-
|
|
30
|
-
|
|
31
|
-
--component-button-
|
|
32
|
-
--component-button-
|
|
33
|
-
--component-button-
|
|
34
|
-
--component-button-
|
|
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 0.75rem/1
|
|
17
|
+
--component-button-primary-shared-color: #ffffff;
|
|
18
|
+
--component-button-primary-shared-background-color: #0d4289;
|
|
19
|
+
--component-button-primary-shared-border-radius: 0.25rem;
|
|
20
|
+
--component-button-primary-shared-border: 0.0625rem solid #0d4289;
|
|
21
|
+
--component-button-primary-shared-hover-background-color: #092f62;
|
|
22
|
+
--component-button-primary-shared-hover-border: 0.0625rem solid #092f62;
|
|
23
|
+
--component-button-primary-shared-active-background-color: #061d3c;
|
|
24
|
+
--component-button-primary-shared-active-border: 0.0625rem solid #061d3c;
|
|
25
|
+
--component-button-primary-shared-disabled-color: #999999;
|
|
26
|
+
--component-button-primary-shared-disabled-background-color: #dcdcdc;
|
|
27
|
+
--component-button-primary-shared-disabled-border: 0.0625rem solid #dcdcdc;
|
|
28
|
+
--component-button-primary-xs-height: 1.5rem;
|
|
29
|
+
--component-button-primary-xs-padding-top: 0.25rem;
|
|
30
|
+
--component-button-primary-xs-padding-right: 0.5rem;
|
|
31
|
+
--component-button-primary-xs-padding-bottom: 0.25rem;
|
|
32
|
+
--component-button-primary-xs-padding-left: 0.5rem;
|
|
33
|
+
--component-button-primary-xs-padding-with-icon-icon-left-left: 0.25rem;
|
|
34
|
+
--component-button-primary-xs-typography-font: normal 700 0.75rem/1
|
|
38
35
|
'Open Sans';
|
|
39
|
-
--component-button-
|
|
40
|
-
--component-button-
|
|
41
|
-
--component-button-
|
|
42
|
-
--component-button-
|
|
43
|
-
--component-button-
|
|
44
|
-
--component-button-
|
|
45
|
-
--component-button-
|
|
46
|
-
--component-button-
|
|
47
|
-
--component-button-
|
|
48
|
-
--component-button-
|
|
49
|
-
--component-button-
|
|
50
|
-
--component-button-
|
|
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
|
|
36
|
+
--component-button-primary-xs-typography-letter-spacing: 0;
|
|
37
|
+
--component-button-primary-xs-typography-font-width: 95;
|
|
38
|
+
--component-button-primary-xs-icon-size: 1.125rem;
|
|
39
|
+
--component-button-primary-xs-icon-gap: 0.25rem;
|
|
40
|
+
--component-button-primary-xs-icon-button-width: 1.5rem;
|
|
41
|
+
--component-button-primary-sm-height: 2rem;
|
|
42
|
+
--component-button-primary-sm-padding-top: 0.25rem;
|
|
43
|
+
--component-button-primary-sm-padding-right: 0.625rem;
|
|
44
|
+
--component-button-primary-sm-padding-bottom: 0.25rem;
|
|
45
|
+
--component-button-primary-sm-padding-left: 0.625rem;
|
|
46
|
+
--component-button-primary-sm-padding-with-icon-icon-left-left: 0.5rem;
|
|
47
|
+
--component-button-primary-sm-typography-font: normal 700 0.875rem/1
|
|
77
48
|
'Open Sans';
|
|
78
|
-
--component-button-
|
|
79
|
-
--component-button-
|
|
80
|
-
--component-button-
|
|
81
|
-
--component-button-
|
|
82
|
-
--component-button-
|
|
83
|
-
--component-button-
|
|
84
|
-
--component-button-
|
|
85
|
-
--component-button-
|
|
86
|
-
--component-button-
|
|
87
|
-
--component-button-
|
|
88
|
-
--component-button-
|
|
89
|
-
|
|
90
|
-
--component-button-emphasised-secondary-shared-active-background-color: #c5d9f4;
|
|
91
|
-
--component-button-emphasised-secondary-shared-active-border: 0.0625rem solid
|
|
92
|
-
#0d4289;
|
|
93
|
-
--component-button-emphasised-secondary-shared-disabled-color: #999999;
|
|
94
|
-
--component-button-emphasised-secondary-shared-disabled-background-color: none;
|
|
95
|
-
--component-button-emphasised-secondary-shared-disabled-border: 0.0625rem
|
|
96
|
-
solid #dcdcdc;
|
|
97
|
-
--component-button-emphasised-secondary-xs-height: 1.5rem;
|
|
98
|
-
--component-button-emphasised-secondary-xs-padding-top: 0.25rem;
|
|
99
|
-
--component-button-emphasised-secondary-xs-padding-right: 0.5rem;
|
|
100
|
-
--component-button-emphasised-secondary-xs-padding-bottom: 0.25rem;
|
|
101
|
-
--component-button-emphasised-secondary-xs-padding-left: 0.5rem;
|
|
102
|
-
--component-button-emphasised-secondary-xs-padding-with-icon-icon-left-left: 0.25rem;
|
|
103
|
-
--component-button-emphasised-secondary-xs-typography-font: normal 700
|
|
104
|
-
0.75rem/1 'Open Sans';
|
|
105
|
-
--component-button-emphasised-secondary-xs-typography-letter-spacing: 0rem;
|
|
106
|
-
--component-button-emphasised-secondary-xs-typography-font-width: 95;
|
|
107
|
-
--component-button-emphasised-secondary-xs-icon-size: 1.125rem;
|
|
108
|
-
--component-button-emphasised-secondary-xs-icon-gap: 0.25rem;
|
|
109
|
-
--component-button-emphasised-secondary-xs-icon-button-width: 1.5rem;
|
|
110
|
-
--component-button-emphasised-secondary-sm-height: 2rem;
|
|
111
|
-
--component-button-emphasised-secondary-sm-padding-top: 0.25rem;
|
|
112
|
-
--component-button-emphasised-secondary-sm-padding-right: 0.625rem;
|
|
113
|
-
--component-button-emphasised-secondary-sm-padding-bottom: 0.25rem;
|
|
114
|
-
--component-button-emphasised-secondary-sm-padding-left: 0.625rem;
|
|
115
|
-
--component-button-emphasised-secondary-sm-padding-with-icon-icon-left-left: 0.5rem;
|
|
116
|
-
--component-button-emphasised-secondary-sm-typography-font: normal 700
|
|
117
|
-
0.875rem/1 'Open Sans';
|
|
118
|
-
--component-button-emphasised-secondary-sm-typography-letter-spacing: -0.0125rem;
|
|
119
|
-
--component-button-emphasised-secondary-sm-typography-font-width: 95;
|
|
120
|
-
--component-button-emphasised-secondary-sm-icon-size: 1.125rem;
|
|
121
|
-
--component-button-emphasised-secondary-sm-icon-gap: 0.25rem;
|
|
122
|
-
--component-button-emphasised-secondary-sm-icon-button-width: 2rem;
|
|
123
|
-
--component-button-emphasised-secondary-md-height: 2.5rem;
|
|
124
|
-
--component-button-emphasised-secondary-md-padding-top: 0.25rem;
|
|
125
|
-
--component-button-emphasised-secondary-md-padding-right: 0.75rem;
|
|
126
|
-
--component-button-emphasised-secondary-md-padding-bottom: 0.25rem;
|
|
127
|
-
--component-button-emphasised-secondary-md-padding-left: 0.75rem;
|
|
128
|
-
--component-button-emphasised-secondary-md-padding-with-icon-icon-left-left: 0.5rem;
|
|
129
|
-
--component-button-emphasised-secondary-md-typography-font: normal 700
|
|
130
|
-
0.875rem/1 'Open Sans';
|
|
131
|
-
--component-button-emphasised-secondary-md-typography-letter-spacing: -0.0125rem;
|
|
132
|
-
--component-button-emphasised-secondary-md-typography-font-width: 95;
|
|
133
|
-
--component-button-emphasised-secondary-md-icon-size: 1.25rem;
|
|
134
|
-
--component-button-emphasised-secondary-md-icon-gap: 0.25rem;
|
|
135
|
-
--component-button-emphasised-secondary-md-icon-button-width: 2.5rem;
|
|
136
|
-
--component-button-emphasised-secondary-lg-height: 3rem;
|
|
137
|
-
--component-button-emphasised-secondary-lg-padding-top: 0.25rem;
|
|
138
|
-
--component-button-emphasised-secondary-lg-padding-right: 1rem;
|
|
139
|
-
--component-button-emphasised-secondary-lg-padding-bottom: 0.25rem;
|
|
140
|
-
--component-button-emphasised-secondary-lg-padding-left: 1rem;
|
|
141
|
-
--component-button-emphasised-secondary-lg-padding-with-icon-icon-left-left: 0.75rem;
|
|
142
|
-
--component-button-emphasised-secondary-lg-typography-font: normal 700 1rem/1
|
|
49
|
+
--component-button-primary-sm-typography-letter-spacing: -0.0125rem;
|
|
50
|
+
--component-button-primary-sm-typography-font-width: 95;
|
|
51
|
+
--component-button-primary-sm-icon-size: 1.125rem;
|
|
52
|
+
--component-button-primary-sm-icon-gap: 0.25rem;
|
|
53
|
+
--component-button-primary-sm-icon-button-width: 2rem;
|
|
54
|
+
--component-button-primary-md-height: 2.5rem;
|
|
55
|
+
--component-button-primary-md-padding-top: 0.25rem;
|
|
56
|
+
--component-button-primary-md-padding-right: 0.75rem;
|
|
57
|
+
--component-button-primary-md-padding-bottom: 0.25rem;
|
|
58
|
+
--component-button-primary-md-padding-left: 0.75rem;
|
|
59
|
+
--component-button-primary-md-padding-with-icon-icon-left-left: 0.5rem;
|
|
60
|
+
--component-button-primary-md-typography-font: normal 700 0.875rem/1
|
|
143
61
|
'Open Sans';
|
|
144
|
-
--component-button-
|
|
145
|
-
--component-button-
|
|
146
|
-
--component-button-
|
|
147
|
-
--component-button-
|
|
148
|
-
--component-button-
|
|
149
|
-
--component-button-
|
|
150
|
-
--component-button-
|
|
151
|
-
--component-button-
|
|
152
|
-
--component-button-
|
|
153
|
-
--component-button-
|
|
154
|
-
--component-button-
|
|
155
|
-
|
|
156
|
-
--component-button-
|
|
157
|
-
--component-button-
|
|
158
|
-
|
|
159
|
-
--component-button-
|
|
160
|
-
--component-button-
|
|
161
|
-
--component-button-
|
|
162
|
-
|
|
163
|
-
--component-button-
|
|
164
|
-
--component-button-
|
|
165
|
-
--component-button-
|
|
166
|
-
--component-button-
|
|
167
|
-
--component-button-
|
|
168
|
-
--component-button-
|
|
169
|
-
--component-button-
|
|
62
|
+
--component-button-primary-md-typography-letter-spacing: -0.0125rem;
|
|
63
|
+
--component-button-primary-md-typography-font-width: 95;
|
|
64
|
+
--component-button-primary-md-icon-size: 1.25rem;
|
|
65
|
+
--component-button-primary-md-icon-gap: 0.25rem;
|
|
66
|
+
--component-button-primary-md-icon-button-width: 2.5rem;
|
|
67
|
+
--component-button-primary-lg-height: 3rem;
|
|
68
|
+
--component-button-primary-lg-padding-top: 0.25rem;
|
|
69
|
+
--component-button-primary-lg-padding-right: 1rem;
|
|
70
|
+
--component-button-primary-lg-padding-bottom: 0.25rem;
|
|
71
|
+
--component-button-primary-lg-padding-left: 1rem;
|
|
72
|
+
--component-button-primary-lg-padding-with-icon-icon-left-left: 0.75rem;
|
|
73
|
+
--component-button-primary-lg-typography-font: normal 700 1rem/1 'Open Sans';
|
|
74
|
+
--component-button-primary-lg-typography-letter-spacing: -0.0125rem;
|
|
75
|
+
--component-button-primary-lg-typography-font-width: 95;
|
|
76
|
+
--component-button-primary-lg-icon-size: 1.5rem;
|
|
77
|
+
--component-button-primary-lg-icon-gap: 0.25rem;
|
|
78
|
+
--component-button-primary-lg-icon-button-width: 3rem;
|
|
79
|
+
--component-button-secondary-shared-color: #ffffff;
|
|
80
|
+
--component-button-secondary-shared-background-color: #545454;
|
|
81
|
+
--component-button-secondary-shared-border-radius: 0.25rem;
|
|
82
|
+
--component-button-secondary-shared-border: 0.0625rem solid #545454;
|
|
83
|
+
--component-button-secondary-shared-hover-background-color: #333333;
|
|
84
|
+
--component-button-secondary-shared-hover-border: 0.0625rem solid #333333;
|
|
85
|
+
--component-button-secondary-shared-active-background-color: #121212;
|
|
86
|
+
--component-button-secondary-shared-active-border: 0.0625rem solid #121212;
|
|
87
|
+
--component-button-secondary-shared-disabled-color: #999999;
|
|
88
|
+
--component-button-secondary-shared-disabled-background-color: #dcdcdc;
|
|
89
|
+
--component-button-secondary-shared-disabled-border: 0.0625rem solid #dcdcdc;
|
|
90
|
+
--component-button-secondary-xs-height: 1.5rem;
|
|
91
|
+
--component-button-secondary-xs-padding-top: 0.25rem;
|
|
92
|
+
--component-button-secondary-xs-padding-right: 0.5rem;
|
|
93
|
+
--component-button-secondary-xs-padding-bottom: 0.25rem;
|
|
94
|
+
--component-button-secondary-xs-padding-left: 0.5rem;
|
|
95
|
+
--component-button-secondary-xs-padding-with-icon-icon-left-left: 0.25rem;
|
|
96
|
+
--component-button-secondary-xs-typography-font: normal 700 0.75rem/1
|
|
170
97
|
'Open Sans';
|
|
171
|
-
--component-button-
|
|
172
|
-
--component-button-
|
|
173
|
-
--component-button-
|
|
174
|
-
--component-button-
|
|
175
|
-
--component-button-
|
|
176
|
-
--component-button-
|
|
177
|
-
--component-button-
|
|
178
|
-
--component-button-
|
|
179
|
-
--component-button-
|
|
180
|
-
--component-button-
|
|
181
|
-
--component-button-
|
|
182
|
-
--component-button-
|
|
98
|
+
--component-button-secondary-xs-typography-letter-spacing: 0;
|
|
99
|
+
--component-button-secondary-xs-typography-font-width: 95;
|
|
100
|
+
--component-button-secondary-xs-icon-size: 1.125rem;
|
|
101
|
+
--component-button-secondary-xs-icon-gap: 0.25rem;
|
|
102
|
+
--component-button-secondary-xs-icon-button-width: 1.5rem;
|
|
103
|
+
--component-button-secondary-sm-height: 2rem;
|
|
104
|
+
--component-button-secondary-sm-padding-top: 0.25rem;
|
|
105
|
+
--component-button-secondary-sm-padding-right: 0.625rem;
|
|
106
|
+
--component-button-secondary-sm-padding-bottom: 0.25rem;
|
|
107
|
+
--component-button-secondary-sm-padding-left: 0.625rem;
|
|
108
|
+
--component-button-secondary-sm-padding-with-icon-icon-left-left: 0.5rem;
|
|
109
|
+
--component-button-secondary-sm-typography-font: normal 700 0.875rem/1
|
|
183
110
|
'Open Sans';
|
|
184
|
-
--component-button-
|
|
185
|
-
--component-button-
|
|
186
|
-
--component-button-
|
|
187
|
-
--component-button-
|
|
188
|
-
--component-button-
|
|
189
|
-
--component-button-
|
|
190
|
-
--component-button-
|
|
191
|
-
--component-button-
|
|
192
|
-
--component-button-
|
|
193
|
-
--component-button-
|
|
194
|
-
--component-button-
|
|
195
|
-
--component-button-
|
|
111
|
+
--component-button-secondary-sm-typography-letter-spacing: -0.0125rem;
|
|
112
|
+
--component-button-secondary-sm-typography-font-width: 95;
|
|
113
|
+
--component-button-secondary-sm-icon-size: 1.125rem;
|
|
114
|
+
--component-button-secondary-sm-icon-gap: 0.25rem;
|
|
115
|
+
--component-button-secondary-sm-icon-button-width: 2rem;
|
|
116
|
+
--component-button-secondary-md-height: 2.5rem;
|
|
117
|
+
--component-button-secondary-md-padding-top: 0.25rem;
|
|
118
|
+
--component-button-secondary-md-padding-right: 0.75rem;
|
|
119
|
+
--component-button-secondary-md-padding-bottom: 0.25rem;
|
|
120
|
+
--component-button-secondary-md-padding-left: 0.75rem;
|
|
121
|
+
--component-button-secondary-md-padding-with-icon-icon-left-left: 0.5rem;
|
|
122
|
+
--component-button-secondary-md-typography-font: normal 700 0.875rem/1
|
|
196
123
|
'Open Sans';
|
|
197
|
-
--component-button-
|
|
198
|
-
--component-button-
|
|
199
|
-
--component-button-
|
|
200
|
-
--component-button-
|
|
201
|
-
--component-button-
|
|
202
|
-
--component-button-
|
|
203
|
-
--component-button-
|
|
204
|
-
--component-button-
|
|
205
|
-
--component-button-
|
|
206
|
-
--component-button-
|
|
207
|
-
--component-button-
|
|
208
|
-
--component-button-
|
|
124
|
+
--component-button-secondary-md-typography-letter-spacing: -0.0125rem;
|
|
125
|
+
--component-button-secondary-md-typography-font-width: 95;
|
|
126
|
+
--component-button-secondary-md-icon-size: 1.25rem;
|
|
127
|
+
--component-button-secondary-md-icon-gap: 0.25rem;
|
|
128
|
+
--component-button-secondary-md-icon-button-width: 2.5rem;
|
|
129
|
+
--component-button-secondary-lg-height: 3rem;
|
|
130
|
+
--component-button-secondary-lg-padding-top: 0.25rem;
|
|
131
|
+
--component-button-secondary-lg-padding-right: 1rem;
|
|
132
|
+
--component-button-secondary-lg-padding-bottom: 0.25rem;
|
|
133
|
+
--component-button-secondary-lg-padding-left: 1rem;
|
|
134
|
+
--component-button-secondary-lg-padding-with-icon-icon-left-left: 0.75rem;
|
|
135
|
+
--component-button-secondary-lg-typography-font: normal 700 1rem/1 'Open Sans';
|
|
136
|
+
--component-button-secondary-lg-typography-letter-spacing: -0.0125rem;
|
|
137
|
+
--component-button-secondary-lg-typography-font-width: 95;
|
|
138
|
+
--component-button-secondary-lg-icon-size: 1.5rem;
|
|
139
|
+
--component-button-secondary-lg-icon-gap: 0.25rem;
|
|
140
|
+
--component-button-secondary-lg-icon-button-width: 3rem;
|
|
141
|
+
--component-button-tertiary-shared-color: #000000;
|
|
142
|
+
--component-button-tertiary-shared-background-color: none;
|
|
143
|
+
--component-button-tertiary-shared-border-radius: 0.25rem;
|
|
144
|
+
--component-button-tertiary-shared-border: 0.0625rem solid #545454;
|
|
145
|
+
--component-button-tertiary-shared-hover-background-color: #f6f6f6;
|
|
146
|
+
--component-button-tertiary-shared-hover-border: 0.0625rem solid #545454;
|
|
147
|
+
--component-button-tertiary-shared-active-background-color: #ededed;
|
|
148
|
+
--component-button-tertiary-shared-active-border: 0.0625rem solid #545454;
|
|
149
|
+
--component-button-tertiary-shared-disabled-color: #999999;
|
|
150
|
+
--component-button-tertiary-shared-disabled-background-color: none;
|
|
151
|
+
--component-button-tertiary-shared-disabled-border: 0.0625rem solid #dcdcdc;
|
|
152
|
+
--component-button-tertiary-xs-height: 1.5rem;
|
|
153
|
+
--component-button-tertiary-xs-padding-top: 0.25rem;
|
|
154
|
+
--component-button-tertiary-xs-padding-right: 0.5rem;
|
|
155
|
+
--component-button-tertiary-xs-padding-bottom: 0.25rem;
|
|
156
|
+
--component-button-tertiary-xs-padding-left: 0.5rem;
|
|
157
|
+
--component-button-tertiary-xs-padding-with-icon-icon-left-left: 0.25rem;
|
|
158
|
+
--component-button-tertiary-xs-typography-font: normal 700 0.75rem/1
|
|
209
159
|
'Open Sans';
|
|
210
|
-
--component-button-
|
|
211
|
-
--component-button-
|
|
212
|
-
--component-button-
|
|
213
|
-
--component-button-
|
|
214
|
-
--component-button-
|
|
215
|
-
--component-button-
|
|
216
|
-
--component-button-
|
|
217
|
-
--component-button-
|
|
218
|
-
--component-button-
|
|
219
|
-
--component-button-
|
|
220
|
-
--component-button-
|
|
221
|
-
|
|
222
|
-
--component-button-neutral-secondary-shared-active-background-color: #dcdcdc;
|
|
223
|
-
--component-button-neutral-secondary-shared-active-border: 0.0625rem solid
|
|
224
|
-
#545454;
|
|
225
|
-
--component-button-neutral-secondary-shared-disabled-color: #999999;
|
|
226
|
-
--component-button-neutral-secondary-shared-disabled-background-color: none;
|
|
227
|
-
--component-button-neutral-secondary-shared-disabled-border: 0.0625rem solid
|
|
228
|
-
#dcdcdc;
|
|
229
|
-
--component-button-neutral-secondary-xs-height: 1.5rem;
|
|
230
|
-
--component-button-neutral-secondary-xs-padding-top: 0.25rem;
|
|
231
|
-
--component-button-neutral-secondary-xs-padding-right: 0.5rem;
|
|
232
|
-
--component-button-neutral-secondary-xs-padding-bottom: 0.25rem;
|
|
233
|
-
--component-button-neutral-secondary-xs-padding-left: 0.5rem;
|
|
234
|
-
--component-button-neutral-secondary-xs-padding-with-icon-icon-left-left: 0.25rem;
|
|
235
|
-
--component-button-neutral-secondary-xs-typography-font: normal 700 0.75rem/1
|
|
160
|
+
--component-button-tertiary-xs-typography-letter-spacing: 0;
|
|
161
|
+
--component-button-tertiary-xs-typography-font-width: 95;
|
|
162
|
+
--component-button-tertiary-xs-icon-size: 1.125rem;
|
|
163
|
+
--component-button-tertiary-xs-icon-gap: 0.25rem;
|
|
164
|
+
--component-button-tertiary-xs-icon-button-width: 1.5rem;
|
|
165
|
+
--component-button-tertiary-sm-height: 2rem;
|
|
166
|
+
--component-button-tertiary-sm-padding-top: 0.25rem;
|
|
167
|
+
--component-button-tertiary-sm-padding-right: 0.625rem;
|
|
168
|
+
--component-button-tertiary-sm-padding-bottom: 0.25rem;
|
|
169
|
+
--component-button-tertiary-sm-padding-left: 0.625rem;
|
|
170
|
+
--component-button-tertiary-sm-padding-with-icon-icon-left-left: 0.5rem;
|
|
171
|
+
--component-button-tertiary-sm-typography-font: normal 700 0.875rem/1
|
|
236
172
|
'Open Sans';
|
|
237
|
-
--component-button-
|
|
238
|
-
--component-button-
|
|
239
|
-
--component-button-
|
|
240
|
-
--component-button-
|
|
241
|
-
--component-button-
|
|
242
|
-
--component-button-
|
|
243
|
-
--component-button-
|
|
244
|
-
--component-button-
|
|
245
|
-
--component-button-
|
|
246
|
-
--component-button-
|
|
247
|
-
--component-button-
|
|
248
|
-
--component-button-
|
|
173
|
+
--component-button-tertiary-sm-typography-letter-spacing: -0.0125rem;
|
|
174
|
+
--component-button-tertiary-sm-typography-font-width: 95;
|
|
175
|
+
--component-button-tertiary-sm-icon-size: 1.125rem;
|
|
176
|
+
--component-button-tertiary-sm-icon-gap: 0.25rem;
|
|
177
|
+
--component-button-tertiary-sm-icon-button-width: 2rem;
|
|
178
|
+
--component-button-tertiary-md-height: 2.5rem;
|
|
179
|
+
--component-button-tertiary-md-padding-top: 0.25rem;
|
|
180
|
+
--component-button-tertiary-md-padding-right: 0.75rem;
|
|
181
|
+
--component-button-tertiary-md-padding-bottom: 0.25rem;
|
|
182
|
+
--component-button-tertiary-md-padding-left: 0.75rem;
|
|
183
|
+
--component-button-tertiary-md-padding-with-icon-icon-left-left: 0.5rem;
|
|
184
|
+
--component-button-tertiary-md-typography-font: normal 700 0.875rem/1
|
|
249
185
|
'Open Sans';
|
|
250
|
-
--component-button-
|
|
251
|
-
--component-button-
|
|
252
|
-
--component-button-
|
|
253
|
-
--component-button-
|
|
254
|
-
--component-button-
|
|
255
|
-
--component-button-
|
|
256
|
-
--component-button-
|
|
257
|
-
--component-button-
|
|
258
|
-
--component-button-
|
|
259
|
-
--component-button-
|
|
260
|
-
--component-button-
|
|
261
|
-
--component-button-
|
|
262
|
-
|
|
263
|
-
--component-button-
|
|
264
|
-
--component-button-
|
|
265
|
-
--component-button-
|
|
266
|
-
--component-button-
|
|
267
|
-
--component-button-neutral-secondary-md-icon-button-width: 2.5rem;
|
|
268
|
-
--component-button-neutral-secondary-lg-height: 3rem;
|
|
269
|
-
--component-button-neutral-secondary-lg-padding-top: 0.25rem;
|
|
270
|
-
--component-button-neutral-secondary-lg-padding-right: 1rem;
|
|
271
|
-
--component-button-neutral-secondary-lg-padding-bottom: 0.25rem;
|
|
272
|
-
--component-button-neutral-secondary-lg-padding-left: 1rem;
|
|
273
|
-
--component-button-neutral-secondary-lg-padding-with-icon-icon-left-left: 0.75rem;
|
|
274
|
-
--component-button-neutral-secondary-lg-typography-font: normal 700 1rem/1
|
|
275
|
-
'Open Sans';
|
|
276
|
-
--component-button-neutral-secondary-lg-typography-letter-spacing: -0.0125rem;
|
|
277
|
-
--component-button-neutral-secondary-lg-typography-font-width: 95;
|
|
278
|
-
--component-button-neutral-secondary-lg-icon-size: 1.5rem;
|
|
279
|
-
--component-button-neutral-secondary-lg-icon-gap: 0.25rem;
|
|
280
|
-
--component-button-neutral-secondary-lg-icon-button-width: 3rem;
|
|
186
|
+
--component-button-tertiary-md-typography-letter-spacing: -0.0125rem;
|
|
187
|
+
--component-button-tertiary-md-typography-font-width: 95;
|
|
188
|
+
--component-button-tertiary-md-icon-size: 1.25rem;
|
|
189
|
+
--component-button-tertiary-md-icon-gap: 0.25rem;
|
|
190
|
+
--component-button-tertiary-md-icon-button-width: 2.5rem;
|
|
191
|
+
--component-button-tertiary-lg-height: 3rem;
|
|
192
|
+
--component-button-tertiary-lg-padding-top: 0.25rem;
|
|
193
|
+
--component-button-tertiary-lg-padding-right: 1rem;
|
|
194
|
+
--component-button-tertiary-lg-padding-bottom: 0.25rem;
|
|
195
|
+
--component-button-tertiary-lg-padding-left: 1rem;
|
|
196
|
+
--component-button-tertiary-lg-padding-with-icon-icon-left-left: 0.75rem;
|
|
197
|
+
--component-button-tertiary-lg-typography-font: normal 700 1rem/1 'Open Sans';
|
|
198
|
+
--component-button-tertiary-lg-typography-letter-spacing: -0.0125rem;
|
|
199
|
+
--component-button-tertiary-lg-typography-font-width: 95;
|
|
200
|
+
--component-button-tertiary-lg-icon-size: 1.5rem;
|
|
201
|
+
--component-button-tertiary-lg-icon-gap: 0.25rem;
|
|
202
|
+
--component-button-tertiary-lg-icon-button-width: 3rem;
|
|
281
203
|
}
|
|
@@ -12,6 +12,6 @@
|
|
|
12
12
|
--component-favicon-user-select: none;
|
|
13
13
|
--component-favicon-typography-font: normal 700 1.25rem/1.15
|
|
14
14
|
'GH Guardian Headline';
|
|
15
|
-
--component-favicon-typography-letter-spacing:
|
|
15
|
+
--component-favicon-typography-letter-spacing: 0;
|
|
16
16
|
--component-favicon-typography-font-width: 100;
|
|
17
17
|
}
|