@guardian/stand 0.0.15 → 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/avatar/Avatar.cjs +2 -2
- package/dist/components/button/Button.cjs +1 -1
- package/dist/components/button/Button.js +1 -1
- package/dist/components/button/styles.cjs +7 -4
- package/dist/components/button/styles.js +7 -4
- package/dist/components/byline/Byline.cjs +15 -15
- package/dist/components/favicon/Favicon.cjs +2 -2
- package/dist/components/icon-button/IconButton.cjs +4 -4
- package/dist/components/icon-button/IconButton.js +1 -1
- package/dist/components/icon-link-button/IconLinkButton.cjs +4 -4
- 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/Menu.cjs +204 -0
- package/dist/components/menu/Menu.js +77 -0
- package/dist/components/menu/styles.cjs +104 -0
- package/dist/components/menu/styles.js +89 -0
- package/dist/components/tag-picker/TagTable.cjs +11 -11
- 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/index.cjs +4 -0
- package/dist/index.js +2 -0
- package/dist/menu.cjs +13 -0
- package/dist/menu.js +2 -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 +83 -0
- 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/shadow.css +7 -0
- 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 +141 -0
- package/dist/styleD/build/typescript/component/menu.js +139 -0
- 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/shadow.cjs +7 -0
- package/dist/styleD/build/typescript/semantic/shadow.js +5 -0
- 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/avatar.d.ts +1 -1
- package/dist/types/button.d.ts +1 -1
- package/dist/types/byline.d.ts +1 -1
- package/dist/types/components/avatar/styles.d.ts +2 -1
- package/dist/types/components/button/sandbox.d.ts +4 -4
- package/dist/types/components/button/styles.d.ts +2 -1
- package/dist/types/components/button/types.d.ts +1 -1
- package/dist/types/components/favicon/styles.d.ts +2 -1
- package/dist/types/components/icon/styles.d.ts +2 -1
- package/dist/types/components/icon-button/sandbox.d.ts +4 -4
- package/dist/types/components/icon-button/styles.d.ts +5 -129
- 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 +5 -129
- 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 +5 -129
- package/dist/types/components/link-button/types.d.ts +1 -1
- package/dist/types/components/menu/Menu.d.ts +7 -0
- package/dist/types/components/menu/sandbox.d.ts +5 -0
- package/dist/types/components/menu/styles.d.ts +28 -0
- package/dist/types/components/menu/types.d.ts +63 -0
- 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/{toolName → topBarToolName}/styles.d.ts +2 -1
- package/dist/types/components/topbar/types.d.ts +3 -0
- package/dist/types/components/typography/styles.d.ts +2 -1
- package/dist/types/favicon.d.ts +1 -1
- package/dist/types/icon-button.d.ts +1 -1
- package/dist/types/icon-link-button.d.ts +1 -1
- package/dist/types/icon.d.ts +1 -1
- package/dist/types/index.d.ts +4 -0
- package/dist/types/link-button.d.ts +1 -1
- package/dist/types/menu.d.ts +21 -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 +141 -0
- package/dist/types/styleD/build/typescript/semantic/colors.d.ts +44 -49
- package/dist/types/styleD/build/typescript/semantic/shadow.d.ts +7 -0
- package/dist/types/styleD/build/typescript/semantic/sizing.d.ts +1 -0
- package/dist/types/styleD/stories/semantic/Shadow.d.ts +1 -0
- package/dist/types/typography.d.ts +1 -1
- 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 +30 -17
- 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}/types.d.ts +0 -0
|
@@ -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
|
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly, this file was auto-generated.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
--component-menu-menu-shared-display: flex;
|
|
7
|
+
--component-menu-menu-shared-flex-direction: column;
|
|
8
|
+
--component-menu-menu-shared-background-color: #ffffff;
|
|
9
|
+
--component-menu-menu-shared-border: 0.0625rem solid #cccccc;
|
|
10
|
+
--component-menu-menu-section-header-shared-display: flex;
|
|
11
|
+
--component-menu-menu-section-header-shared-align-items: center;
|
|
12
|
+
--component-menu-menu-section-header-shared-padding-top: 0;
|
|
13
|
+
--component-menu-menu-section-header-shared-padding-right: 0.5rem;
|
|
14
|
+
--component-menu-menu-section-header-shared-padding-bottom: 0;
|
|
15
|
+
--component-menu-menu-section-header-shared-padding-left: 0.5rem;
|
|
16
|
+
--component-menu-menu-section-header-shared-background-color: #ededed;
|
|
17
|
+
--component-menu-menu-section-header-shared-color: #000000;
|
|
18
|
+
--component-menu-menu-section-header-sm-height: 1.5rem;
|
|
19
|
+
--component-menu-menu-section-header-sm-typography-font: normal 700 0.875rem/1
|
|
20
|
+
'Open Sans';
|
|
21
|
+
--component-menu-menu-section-header-sm-typography-letter-spacing: -0.0125rem;
|
|
22
|
+
--component-menu-menu-section-header-sm-typography-font-width: 95;
|
|
23
|
+
--component-menu-menu-section-header-md-height: 2rem;
|
|
24
|
+
--component-menu-menu-section-header-md-typography-font: normal 700 1rem/1
|
|
25
|
+
'Open Sans';
|
|
26
|
+
--component-menu-menu-section-header-md-typography-letter-spacing: -0.0125rem;
|
|
27
|
+
--component-menu-menu-section-header-md-typography-font-width: 95;
|
|
28
|
+
--component-menu-menu-item-shared-display: grid;
|
|
29
|
+
--component-menu-menu-item-shared-grid-template-areas: 'icon label aside';
|
|
30
|
+
--component-menu-menu-item-shared-grid-template-areas-with-description: 'icon label aside'
|
|
31
|
+
'. description .';
|
|
32
|
+
--component-menu-menu-item-shared-grid-template-columns: auto 6fr 1fr;
|
|
33
|
+
--component-menu-menu-item-shared-gap: 0.25rem;
|
|
34
|
+
--component-menu-menu-item-shared-align-items: center;
|
|
35
|
+
--component-menu-menu-item-shared-padding-top: 0.75rem;
|
|
36
|
+
--component-menu-menu-item-shared-padding-right: 1rem;
|
|
37
|
+
--component-menu-menu-item-shared-padding-bottom: 0.75rem;
|
|
38
|
+
--component-menu-menu-item-shared-padding-left: 1rem;
|
|
39
|
+
--component-menu-menu-item-shared-border-bottom: 0.0625rem solid #cccccc;
|
|
40
|
+
--component-menu-menu-item-shared-background-color: #ffffff;
|
|
41
|
+
--component-menu-menu-item-shared-icon-grid-area: icon;
|
|
42
|
+
--component-menu-menu-item-shared-icon-align-self: start;
|
|
43
|
+
--component-menu-menu-item-shared-icon-color: #545454;
|
|
44
|
+
--component-menu-menu-item-shared-label-grid-area: label;
|
|
45
|
+
--component-menu-menu-item-shared-label-color: #000000;
|
|
46
|
+
--component-menu-menu-item-shared-label-typography-font: normal 460 1rem/1.3
|
|
47
|
+
'Open Sans';
|
|
48
|
+
--component-menu-menu-item-shared-label-typography-letter-spacing: 0;
|
|
49
|
+
--component-menu-menu-item-shared-label-typography-font-width: 95;
|
|
50
|
+
--component-menu-menu-item-shared-description-grid-area: description;
|
|
51
|
+
--component-menu-menu-item-shared-description-color: #545454;
|
|
52
|
+
--component-menu-menu-item-shared-description-typography-font: normal 460
|
|
53
|
+
0.875rem/1.3 'Open Sans';
|
|
54
|
+
--component-menu-menu-item-shared-description-typography-letter-spacing: 0;
|
|
55
|
+
--component-menu-menu-item-shared-description-typography-font-width: 95;
|
|
56
|
+
--component-menu-menu-item-shared-aside-grid-area: aside;
|
|
57
|
+
--component-menu-menu-item-shared-aside-justify-self: end;
|
|
58
|
+
--component-menu-menu-item-shared-aside-align-self: start;
|
|
59
|
+
--component-menu-menu-item-shared-aside-color: #000000;
|
|
60
|
+
--component-menu-menu-item-shared-aside-typography-font: normal 460 1rem/1.3
|
|
61
|
+
'Open Sans';
|
|
62
|
+
--component-menu-menu-item-shared-aside-typography-letter-spacing: 0;
|
|
63
|
+
--component-menu-menu-item-shared-aside-typography-font-width: 95;
|
|
64
|
+
--component-menu-menu-item-shared-last-child-border-bottom: none;
|
|
65
|
+
--component-menu-menu-item-shared-hover-background-color: #f6f6f6;
|
|
66
|
+
--component-menu-menu-item-shared-focus-visible-outline: 0.125rem solid
|
|
67
|
+
#0072a9;
|
|
68
|
+
--component-menu-menu-item-shared-focus-visible-outline-offset: -0.125rem;
|
|
69
|
+
--component-menu-menu-item-sm-icon-size: 1.125rem;
|
|
70
|
+
--component-menu-menu-item-sm-icon-line-height: 1.3;
|
|
71
|
+
--component-menu-menu-item-md-icon-size: 1.25rem;
|
|
72
|
+
--component-menu-menu-item-md-icon-line-height: 1.3;
|
|
73
|
+
--component-menu-menu-separator-shared-background-color: #ededed;
|
|
74
|
+
--component-menu-menu-separator-shared-height: 0.5rem;
|
|
75
|
+
--component-menu-menu-separator-shared-width: 100%;
|
|
76
|
+
--component-menu-menu-popover-shared-overflow: auto;
|
|
77
|
+
--component-menu-menu-popover-shared-shadow: 0 0.125rem 0.375rem 0
|
|
78
|
+
rgb(0% 0% 0% / 0.3);
|
|
79
|
+
--component-menu-menu-popover-sm-max-width: 200px;
|
|
80
|
+
--component-menu-menu-popover-sm-width: 100%;
|
|
81
|
+
--component-menu-menu-popover-md-max-width: 320px;
|
|
82
|
+
--component-menu-menu-popover-md-width: 100%;
|
|
83
|
+
}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
--component-tag-autocomplete-listbox-border-style: solid;
|
|
15
15
|
--component-tag-autocomplete-listbox-border-color: #8d8d8d;
|
|
16
16
|
--component-tag-autocomplete-listbox-padding-y: 8px;
|
|
17
|
-
--component-tag-autocomplete-listbox-padding-x:
|
|
17
|
+
--component-tag-autocomplete-listbox-padding-x: 0;
|
|
18
18
|
--component-tag-autocomplete-listbox-background-color: #ffffff;
|
|
19
19
|
--component-tag-autocomplete-listbox-item-padding-y: 8px;
|
|
20
20
|
--component-tag-autocomplete-listbox-item-padding-x: 12px;
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
--component-tag-table-row-first-row-background-hover-color: #8ec183;
|
|
26
26
|
--component-tag-table-add-button-color: #ffffff;
|
|
27
27
|
--component-tag-table-add-button-padding-x: 10px;
|
|
28
|
-
--component-tag-table-add-button-padding-y:
|
|
28
|
+
--component-tag-table-add-button-padding-y: 0;
|
|
29
29
|
--component-tag-table-add-button-background-color: #8d8d8d;
|
|
30
30
|
--component-tag-table-add-button-background-hover-color: #545454;
|
|
31
31
|
--component-tag-table-add-button-font-weight: 400;
|
|
@@ -9,17 +9,17 @@
|
|
|
9
9
|
--component-user-menu-container-padding-x: 0.25rem;
|
|
10
10
|
--component-user-menu-heading-font-weight: 700;
|
|
11
11
|
--component-user-menu-heading-font-size: 1.125rem;
|
|
12
|
-
--component-user-menu-heading-padding-top:
|
|
13
|
-
--component-user-menu-heading-padding-right:
|
|
14
|
-
--component-user-menu-heading-padding-bottom:
|
|
15
|
-
--component-user-menu-heading-padding-left:
|
|
12
|
+
--component-user-menu-heading-padding-top: 0;
|
|
13
|
+
--component-user-menu-heading-padding-right: 0;
|
|
14
|
+
--component-user-menu-heading-padding-bottom: 0;
|
|
15
|
+
--component-user-menu-heading-padding-left: 0;
|
|
16
16
|
--component-user-menu-heading-text-align: left;
|
|
17
17
|
--component-user-menu-label-font-weight: 700;
|
|
18
18
|
--component-user-menu-label-font-size: 0.875rem;
|
|
19
19
|
--component-user-menu-label-padding-top: 15px;
|
|
20
|
-
--component-user-menu-label-padding-right:
|
|
20
|
+
--component-user-menu-label-padding-right: 0;
|
|
21
21
|
--component-user-menu-label-padding-bottom: 0.375rem;
|
|
22
|
-
--component-user-menu-label-padding-left:
|
|
22
|
+
--component-user-menu-label-padding-left: 0;
|
|
23
23
|
--component-user-menu-label-text-align: left;
|
|
24
24
|
--component-user-menu-toggle-button-base-background-color: #ededed;
|
|
25
25
|
--component-user-menu-toggle-button-disabled-background-color: #dcdcdc;
|