@aziontech/theme 0.1.0
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/LICENSE +21 -0
- package/README.md +466 -0
- package/package.json +52 -0
- package/src/azion/_custom.scss +3 -0
- package/src/azion/_extensions.scss +37 -0
- package/src/azion/_fonts.scss +153 -0
- package/src/azion/_variables-widget.scss +400 -0
- package/src/azion/_variables.scss +407 -0
- package/src/azion/custom/_code.scss +11 -0
- package/src/azion/custom/_focus.scss +5 -0
- package/src/azion/custom/_scrollbehavior.scss +6 -0
- package/src/azion/custom/_selection.scss +4 -0
- package/src/azion/custom/_special-button.scss +57 -0
- package/src/azion/extended-components/_autocomplete.scss +13 -0
- package/src/azion/extended-components/_badge.scss +53 -0
- package/src/azion/extended-components/_breadcumb.scss +18 -0
- package/src/azion/extended-components/_button.scss +134 -0
- package/src/azion/extended-components/_calendar.scss +310 -0
- package/src/azion/extended-components/_carousel.scss +9 -0
- package/src/azion/extended-components/_checkbox.scss +33 -0
- package/src/azion/extended-components/_datatable.scss +130 -0
- package/src/azion/extended-components/_dialog.scss +45 -0
- package/src/azion/extended-components/_divider.scss +37 -0
- package/src/azion/extended-components/_dropdown.scss +10 -0
- package/src/azion/extended-components/_dropdownitem.scss +13 -0
- package/src/azion/extended-components/_inlinemessage.scss +10 -0
- package/src/azion/extended-components/_inputnumber.scss +40 -0
- package/src/azion/extended-components/_inputpassword.scss +4 -0
- package/src/azion/extended-components/_inputswitch.scss +53 -0
- package/src/azion/extended-components/_listbox.scss +35 -0
- package/src/azion/extended-components/_markdown.scss +135 -0
- package/src/azion/extended-components/_menuitem.scss +22 -0
- package/src/azion/extended-components/_multiselect.scss +167 -0
- package/src/azion/extended-components/_overlaypanel.scss +18 -0
- package/src/azion/extended-components/_picklist.scss +25 -0
- package/src/azion/extended-components/_progressbar.scss +6 -0
- package/src/azion/extended-components/_radiobutton.scss +63 -0
- package/src/azion/extended-components/_selectbutton.scss +36 -0
- package/src/azion/extended-components/_sidebar.scss +28 -0
- package/src/azion/extended-components/_splitbutton.scss +22 -0
- package/src/azion/extended-components/_tabmenu.scss +21 -0
- package/src/azion/extended-components/_tabview.scss +41 -0
- package/src/azion/extended-components/_tag.scss +47 -0
- package/src/azion/extended-components/_toast.scss +9 -0
- package/src/azion/extended-components/_tooltip.scss +7 -0
- package/src/azion/extended-components/_treeselect.scss +10 -0
- package/src/azion/extended-components/jsonform/_inputcheckbox.scss +41 -0
- package/src/azion/extended-components/jsonform/_inputtext.scss +26 -0
- package/src/azion/extended-components/jsonform/_label.scss +185 -0
- package/src/azion/extended-components/jsonform/_select.scss +34 -0
- package/src/azion/theme-base/_colors.scss +18 -0
- package/src/azion/theme-base/_common.scss +75 -0
- package/src/azion/theme-base/_components.scss +103 -0
- package/src/azion/theme-base/_mixins.scss +250 -0
- package/src/azion/theme-base/components/button/_button.scss +567 -0
- package/src/azion/theme-base/components/button/_speeddial.scss +97 -0
- package/src/azion/theme-base/components/button/_splitbutton.scss +390 -0
- package/src/azion/theme-base/components/data/_carousel.scss +37 -0
- package/src/azion/theme-base/components/data/_datatable.scss +347 -0
- package/src/azion/theme-base/components/data/_dataview.scss +47 -0
- package/src/azion/theme-base/components/data/_filter.scss +138 -0
- package/src/azion/theme-base/components/data/_orderlist.scss +70 -0
- package/src/azion/theme-base/components/data/_organizationchart.scss +50 -0
- package/src/azion/theme-base/components/data/_paginator.scss +92 -0
- package/src/azion/theme-base/components/data/_picklist.scss +70 -0
- package/src/azion/theme-base/components/data/_timeline.scss +38 -0
- package/src/azion/theme-base/components/data/_tree.scss +90 -0
- package/src/azion/theme-base/components/data/_treetable.scss +251 -0
- package/src/azion/theme-base/components/file/_fileupload.scss +82 -0
- package/src/azion/theme-base/components/input/_autocomplete.scss +114 -0
- package/src/azion/theme-base/components/input/_calendar.scss +251 -0
- package/src/azion/theme-base/components/input/_cascadeselect.scss +106 -0
- package/src/azion/theme-base/components/input/_checkbox.scss +86 -0
- package/src/azion/theme-base/components/input/_chips.scss +53 -0
- package/src/azion/theme-base/components/input/_colorpicker.scss +18 -0
- package/src/azion/theme-base/components/input/_dropdown.scss +147 -0
- package/src/azion/theme-base/components/input/_editor.scss +122 -0
- package/src/azion/theme-base/components/input/_inputgroup.scss +74 -0
- package/src/azion/theme-base/components/input/_inputnumber.scss +5 -0
- package/src/azion/theme-base/components/input/_inputswitch.scss +62 -0
- package/src/azion/theme-base/components/input/_inputtext.scss +100 -0
- package/src/azion/theme-base/components/input/_listbox.scss +89 -0
- package/src/azion/theme-base/components/input/_multiselect.scss +166 -0
- package/src/azion/theme-base/components/input/_password.scss +33 -0
- package/src/azion/theme-base/components/input/_radiobutton.scss +78 -0
- package/src/azion/theme-base/components/input/_rating.scss +60 -0
- package/src/azion/theme-base/components/input/_selectbutton.scss +50 -0
- package/src/azion/theme-base/components/input/_slider.scss +49 -0
- package/src/azion/theme-base/components/input/_togglebutton.scss +52 -0
- package/src/azion/theme-base/components/input/_treeselect.scss +91 -0
- package/src/azion/theme-base/components/menu/_breadcrumb.scss +42 -0
- package/src/azion/theme-base/components/menu/_contextmenu.scss +39 -0
- package/src/azion/theme-base/components/menu/_dock.scss +95 -0
- package/src/azion/theme-base/components/menu/_megamenu.scss +55 -0
- package/src/azion/theme-base/components/menu/_menu.scss +33 -0
- package/src/azion/theme-base/components/menu/_menubar.scss +141 -0
- package/src/azion/theme-base/components/menu/_panelmenu.scss +153 -0
- package/src/azion/theme-base/components/menu/_steps.scss +56 -0
- package/src/azion/theme-base/components/menu/_tabmenu.scss +49 -0
- package/src/azion/theme-base/components/menu/_tieredmenu.scss +43 -0
- package/src/azion/theme-base/components/messages/_inlinemessage.scss +64 -0
- package/src/azion/theme-base/components/messages/_message.scss +100 -0
- package/src/azion/theme-base/components/messages/_toast.scss +100 -0
- package/src/azion/theme-base/components/misc/_avatar.scss +30 -0
- package/src/azion/theme-base/components/misc/_badge.scss +48 -0
- package/src/azion/theme-base/components/misc/_blockui.scss +0 -0
- package/src/azion/theme-base/components/misc/_chip.scss +39 -0
- package/src/azion/theme-base/components/misc/_inplace.scss +17 -0
- package/src/azion/theme-base/components/misc/_progressbar.scss +17 -0
- package/src/azion/theme-base/components/misc/_progressspinner.scss +49 -0
- package/src/azion/theme-base/components/misc/_scrolltop.scss +25 -0
- package/src/azion/theme-base/components/misc/_skeleton.scss +8 -0
- package/src/azion/theme-base/components/misc/_tag.scss +40 -0
- package/src/azion/theme-base/components/misc/_terminal.scss +12 -0
- package/src/azion/theme-base/components/multimedia/_galleria.scss +151 -0
- package/src/azion/theme-base/components/multimedia/_image.scss +54 -0
- package/src/azion/theme-base/components/overlay/_confirmpopup.scss +72 -0
- package/src/azion/theme-base/components/overlay/_dialog.scss +64 -0
- package/src/azion/theme-base/components/overlay/_overlaypanel.scss +38 -0
- package/src/azion/theme-base/components/overlay/_sidebar.scss +23 -0
- package/src/azion/theme-base/components/overlay/_tooltip.scss +33 -0
- package/src/azion/theme-base/components/panel/_accordion.scss +118 -0
- package/src/azion/theme-base/components/panel/_card.scss +30 -0
- package/src/azion/theme-base/components/panel/_divider.scss +40 -0
- package/src/azion/theme-base/components/panel/_fieldset.scss +51 -0
- package/src/azion/theme-base/components/panel/_panel.scss +47 -0
- package/src/azion/theme-base/components/panel/_scrollpanel.scss +11 -0
- package/src/azion/theme-base/components/panel/_splitter.scss +24 -0
- package/src/azion/theme-base/components/panel/_tabview.scss +66 -0
- package/src/azion/theme-base/components/panel/_toolbar.scss +11 -0
- package/src/azion/theme-widget.scss +9 -0
- package/src/azion/theme.scss +9 -0
- package/src/azion/variables/_button.scss +438 -0
- package/src/azion/variables/_data.scss +346 -0
- package/src/azion/variables/_form.scss +570 -0
- package/src/azion/variables/_general.scss +149 -0
- package/src/azion/variables/_media.scss +231 -0
- package/src/azion/variables/_menu.scss +287 -0
- package/src/azion/variables/_message.scss +145 -0
- package/src/azion/variables/_misc.scss +143 -0
- package/src/azion/variables/_overlay.scss +67 -0
- package/src/azion/variables/_panel.scss +327 -0
- package/src/tokens/README.md +345 -0
- package/src/tokens/build/css-vars.js +41 -0
- package/src/tokens/build/preset.js +69 -0
- package/src/tokens/build/refs.js +7 -0
- package/src/tokens/build/resolve.js +102 -0
- package/src/tokens/build/tailwind-helper.js +12 -0
- package/src/tokens/build/tailwind-plugin.js +175 -0
- package/src/tokens/colors-brand.js +24 -0
- package/src/tokens/index.js +16 -0
- package/src/tokens/primitives/brand.js +69 -0
- package/src/tokens/primitives/colors.js +133 -0
- package/src/tokens/semantic/backgrounds.js +48 -0
- package/src/tokens/semantic/borders.js +46 -0
- package/src/tokens/semantic/text.js +78 -0
|
@@ -0,0 +1,438 @@
|
|
|
1
|
+
/// Padding of a button, must be defined with a shorthand for vertical and horizontal values e.g. ".5rem .5rem"
|
|
2
|
+
/// @group button
|
|
3
|
+
$buttonPadding: 0.344rem 0.75rem;
|
|
4
|
+
|
|
5
|
+
/// Width of a button having an icon with no label
|
|
6
|
+
/// @group button
|
|
7
|
+
$buttonIconOnlyWidth: 2.313rem;
|
|
8
|
+
|
|
9
|
+
/// Padding of a button having an icon with no label
|
|
10
|
+
/// @group button
|
|
11
|
+
$buttonIconOnlyPadding: 0.1875rem 0;
|
|
12
|
+
|
|
13
|
+
/// Background of a button
|
|
14
|
+
/// @group button
|
|
15
|
+
$buttonBg: #f3652b;
|
|
16
|
+
|
|
17
|
+
/// Text color of a button
|
|
18
|
+
/// @group button
|
|
19
|
+
$buttonTextColor: var(--primary-text-color);
|
|
20
|
+
|
|
21
|
+
/// Border of a button
|
|
22
|
+
/// @group button
|
|
23
|
+
$buttonBorder: 1px solid #f3652b;
|
|
24
|
+
|
|
25
|
+
/// Background of a button in hover state
|
|
26
|
+
/// @group button
|
|
27
|
+
$buttonHoverBg: #f5793f;
|
|
28
|
+
|
|
29
|
+
/// Text color of a button in hover state
|
|
30
|
+
/// @group button
|
|
31
|
+
$buttonTextHoverColor: var(--primary-text-color);
|
|
32
|
+
|
|
33
|
+
/// Border color of a button in hover state
|
|
34
|
+
/// @group button
|
|
35
|
+
$buttonHoverBorderColor: #f5793f;
|
|
36
|
+
|
|
37
|
+
/// Background of a button in pressed state
|
|
38
|
+
/// @group button
|
|
39
|
+
$buttonActiveBg: #eb6f3f;
|
|
40
|
+
|
|
41
|
+
/// Color of a button in pressed state
|
|
42
|
+
/// @group button
|
|
43
|
+
$buttonTextActiveColor: var(--primary-text-color);
|
|
44
|
+
|
|
45
|
+
/// Border color of a button in pressed state
|
|
46
|
+
/// @group button
|
|
47
|
+
$buttonActiveBorderColor: #eb6f3f;
|
|
48
|
+
|
|
49
|
+
/// Shadow of a raised button
|
|
50
|
+
/// @group button
|
|
51
|
+
$raisedButtonShadow:
|
|
52
|
+
0px 3px 1px -2px rgba(0, 0, 0, 0.2),
|
|
53
|
+
0px 2px 2px 0px rgba(0, 0, 0, 0.14),
|
|
54
|
+
0px 1px 5px 0px rgba(0, 0, 0, 0.12);
|
|
55
|
+
|
|
56
|
+
/// Border radius of a rounded button
|
|
57
|
+
/// @group button
|
|
58
|
+
$roundedButtonBorderRadius: 2rem;
|
|
59
|
+
|
|
60
|
+
/// Alpha level of a text button background in hover state
|
|
61
|
+
/// @group button
|
|
62
|
+
$textButtonHoverBgOpacity: 0.04;
|
|
63
|
+
|
|
64
|
+
/// Alpha level of a text button background in active state
|
|
65
|
+
/// @group button
|
|
66
|
+
$textButtonActiveBgOpacity: 0.16;
|
|
67
|
+
|
|
68
|
+
/// Border style of a outlined button
|
|
69
|
+
/// @group button
|
|
70
|
+
$outlinedButtonBorder: 1px solid var(--surface-border);
|
|
71
|
+
|
|
72
|
+
/// Text color of a plain text button
|
|
73
|
+
/// @group button
|
|
74
|
+
$plainButtonTextColor: $textColor;
|
|
75
|
+
|
|
76
|
+
/// Background color of a plain text button in hover state
|
|
77
|
+
/// @group button
|
|
78
|
+
$plainButtonHoverBgColor: #1e1e1e;
|
|
79
|
+
|
|
80
|
+
/// Background color of a plain text button in active state
|
|
81
|
+
/// @group button
|
|
82
|
+
$plainButtonActiveBgColor: var(--plain-button-active-bg-color);
|
|
83
|
+
|
|
84
|
+
/// Background of a secondary button
|
|
85
|
+
/// @group button
|
|
86
|
+
$secondaryButtonBg: var(--secondary-button-bg);
|
|
87
|
+
|
|
88
|
+
/// Text color of a secondary button
|
|
89
|
+
/// @group button
|
|
90
|
+
$secondaryButtonTextColor: var(--secondary-button-text-color) !important;
|
|
91
|
+
|
|
92
|
+
/// Border of a secondary button
|
|
93
|
+
/// @group button
|
|
94
|
+
$secondaryButtonBorder: 1px solid var(--secondary-button-bg);
|
|
95
|
+
|
|
96
|
+
/// Background of a secondary button in hover state
|
|
97
|
+
/// @group button
|
|
98
|
+
$secondaryButtonHoverBg: var(--secondary-button-hover-bg);
|
|
99
|
+
|
|
100
|
+
/// Text color of a secondary button in hover state
|
|
101
|
+
/// @group button
|
|
102
|
+
$secondaryButtonTextHoverColor: var(--secondary-button-text-hover-color);
|
|
103
|
+
|
|
104
|
+
/// Border color of a secondary button in hover state
|
|
105
|
+
/// @group button
|
|
106
|
+
$secondaryButtonHoverBorderColor: var(--secondary-button-hover-border-color);
|
|
107
|
+
|
|
108
|
+
/// Background of a secondary button in pressed state
|
|
109
|
+
/// @group button
|
|
110
|
+
$secondaryButtonActiveBg: var(--secondary-button-active-bg);
|
|
111
|
+
|
|
112
|
+
/// Text color of a secondary button in pressed state
|
|
113
|
+
/// @group button
|
|
114
|
+
$secondaryButtonTextActiveColor: var(--secondary-button-text-active-color);
|
|
115
|
+
|
|
116
|
+
/// Border color of a secondary button in pressed state
|
|
117
|
+
/// @group button
|
|
118
|
+
$secondaryButtonActiveBorderColor: var(--secondary-button-active-border-color);
|
|
119
|
+
|
|
120
|
+
/// Box shadow of a secondary button in focused state
|
|
121
|
+
/// @group button
|
|
122
|
+
$secondaryButtonFocusShadow: 0 0 0 0.2rem $focusOutline;
|
|
123
|
+
|
|
124
|
+
/// Background of an info button
|
|
125
|
+
/// @group button
|
|
126
|
+
$infoButtonBg: #0b61c4;
|
|
127
|
+
|
|
128
|
+
/// Text color of an info button
|
|
129
|
+
/// @group button
|
|
130
|
+
$infoButtonTextColor: #ffffff;
|
|
131
|
+
|
|
132
|
+
/// Border of an info button
|
|
133
|
+
/// @group button
|
|
134
|
+
$infoButtonBorder: 1px solid #0b61c4;
|
|
135
|
+
|
|
136
|
+
/// Background of an info button in hover state
|
|
137
|
+
/// @group button
|
|
138
|
+
$infoButtonHoverBg: #0953a6;
|
|
139
|
+
|
|
140
|
+
/// Text color of an info button in hover state
|
|
141
|
+
/// @group button
|
|
142
|
+
$infoButtonTextHoverColor: #ffffff;
|
|
143
|
+
|
|
144
|
+
/// Border color of an info button in hover state
|
|
145
|
+
/// @group button
|
|
146
|
+
$infoButtonHoverBorderColor: #0953a6;
|
|
147
|
+
|
|
148
|
+
/// Background of an info button in pressed state
|
|
149
|
+
/// @group button
|
|
150
|
+
$infoButtonActiveBg: #0953a6;
|
|
151
|
+
|
|
152
|
+
/// Text color of an info button in pressed state
|
|
153
|
+
/// @group button
|
|
154
|
+
$infoButtonTextActiveColor: #ffffff;
|
|
155
|
+
|
|
156
|
+
/// Border color of an info button in pressed state
|
|
157
|
+
/// @group button
|
|
158
|
+
$infoButtonActiveBorderColor: #0953a6;
|
|
159
|
+
|
|
160
|
+
/// Box shadow of an info button in focused state
|
|
161
|
+
/// @group button
|
|
162
|
+
$infoButtonFocusShadow: 0 0 0 0.2rem lighten($infoButtonBg, 35%);
|
|
163
|
+
|
|
164
|
+
/// Background of a success button
|
|
165
|
+
/// @group button
|
|
166
|
+
$successButtonBg: #198236;
|
|
167
|
+
|
|
168
|
+
/// Text color of a success button
|
|
169
|
+
/// @group button
|
|
170
|
+
$successButtonTextColor: #ffffff;
|
|
171
|
+
|
|
172
|
+
/// Border of a success button
|
|
173
|
+
/// @group button
|
|
174
|
+
$successButtonBorder: 1px solid #198236;
|
|
175
|
+
|
|
176
|
+
/// Background of a success button in hover state
|
|
177
|
+
/// @group button
|
|
178
|
+
$successButtonHoverBg: #156f2e;
|
|
179
|
+
|
|
180
|
+
/// Text color of a success button in hover state
|
|
181
|
+
/// @group button
|
|
182
|
+
$successButtonTextHoverColor: #ffffff;
|
|
183
|
+
|
|
184
|
+
/// Border color of a success button in hover state
|
|
185
|
+
/// @group button
|
|
186
|
+
$successButtonHoverBorderColor: #156f2e;
|
|
187
|
+
|
|
188
|
+
/// Background of a success button in pressed state
|
|
189
|
+
/// @group button
|
|
190
|
+
$successButtonActiveBg: #156f2e;
|
|
191
|
+
|
|
192
|
+
/// Text Color of a success button in pressed state
|
|
193
|
+
/// @group button
|
|
194
|
+
$successButtonTextActiveColor: #ffffff;
|
|
195
|
+
|
|
196
|
+
/// Border color of a success button in pressed state
|
|
197
|
+
/// @group button
|
|
198
|
+
$successButtonActiveBorderColor: #156f2e;
|
|
199
|
+
|
|
200
|
+
/// Box shadow of a success button in focused state
|
|
201
|
+
/// @group button
|
|
202
|
+
$successButtonFocusShadow: 0 0 0 0.2rem lighten($successButtonBg, 35%);
|
|
203
|
+
|
|
204
|
+
/// Background of a warning button
|
|
205
|
+
/// @group button
|
|
206
|
+
$warningButtonBg: #e9ae18;
|
|
207
|
+
|
|
208
|
+
/// Text color of a warning button
|
|
209
|
+
/// @group button
|
|
210
|
+
$warningButtonTextColor: var(--warning-button-text-color);
|
|
211
|
+
|
|
212
|
+
/// Border of a warning button
|
|
213
|
+
/// @group button
|
|
214
|
+
$warningButtonBorder: 1px solid #e9ae18;
|
|
215
|
+
|
|
216
|
+
/// Background of a warning button in hover state
|
|
217
|
+
/// @group button
|
|
218
|
+
$warningButtonHoverBg: #c79413;
|
|
219
|
+
|
|
220
|
+
/// Text color of a warning button in hover state
|
|
221
|
+
/// @group button
|
|
222
|
+
$warningButtonTextHoverColor: var(--warning-button-text-color);
|
|
223
|
+
|
|
224
|
+
/// Border color of a warning button in hover state
|
|
225
|
+
/// @group button
|
|
226
|
+
$warningButtonHoverBorderColor: #c79413;
|
|
227
|
+
|
|
228
|
+
/// Background of a warning button in pressed state
|
|
229
|
+
/// @group button
|
|
230
|
+
$warningButtonActiveBg: #c79413;
|
|
231
|
+
|
|
232
|
+
/// Text color of a warning button in pressed state
|
|
233
|
+
/// @group button
|
|
234
|
+
$warningButtonTextActiveColor: var(--warning-button-text-color);
|
|
235
|
+
|
|
236
|
+
/// Border color of a warning button in pressed state
|
|
237
|
+
/// @group button
|
|
238
|
+
$warningButtonActiveBorderColor: #c79413;
|
|
239
|
+
|
|
240
|
+
/// Box shadow of a warning button in focused state
|
|
241
|
+
/// @group button
|
|
242
|
+
$warningButtonFocusShadow: 0 0 0 0.2rem lighten($warningButtonBg, 35%);
|
|
243
|
+
|
|
244
|
+
/// Background of a help button
|
|
245
|
+
/// @group button
|
|
246
|
+
$helpButtonBg: #9c27b0;
|
|
247
|
+
|
|
248
|
+
/// Text color of a help button
|
|
249
|
+
/// @group button
|
|
250
|
+
$helpButtonTextColor: #ffffff;
|
|
251
|
+
|
|
252
|
+
/// Border of a help button
|
|
253
|
+
/// @group button
|
|
254
|
+
$helpButtonBorder: 1px solid #9c27b0;
|
|
255
|
+
|
|
256
|
+
/// Background of a help help in hover state
|
|
257
|
+
/// @group button
|
|
258
|
+
$helpButtonHoverBg: #8e24aa;
|
|
259
|
+
|
|
260
|
+
/// Text color of a help button in hover state
|
|
261
|
+
/// @group button
|
|
262
|
+
$helpButtonTextHoverColor: #ffffff;
|
|
263
|
+
|
|
264
|
+
/// Border color of a help button in hover state
|
|
265
|
+
/// @group button
|
|
266
|
+
$helpButtonHoverBorderColor: var(--help-button-hover-border-color);
|
|
267
|
+
|
|
268
|
+
/// Background of a help button in pressed state
|
|
269
|
+
/// @group button
|
|
270
|
+
$helpButtonActiveBg: var(--help-button-active);
|
|
271
|
+
|
|
272
|
+
/// Text color of a help button in pressed state
|
|
273
|
+
/// @group button
|
|
274
|
+
$helpButtonTextActiveColor: #ffffff;
|
|
275
|
+
|
|
276
|
+
/// Border color of a help button in pressed state
|
|
277
|
+
/// @group button
|
|
278
|
+
$helpButtonActiveBorderColor: var(--help-button-active);
|
|
279
|
+
|
|
280
|
+
/// Box shadow of a help button in focused state
|
|
281
|
+
/// @group button
|
|
282
|
+
$helpButtonFocusShadow: 0 0 0 0.2rem #ce93d8;
|
|
283
|
+
|
|
284
|
+
/// Background of a danger button
|
|
285
|
+
/// @group button
|
|
286
|
+
$dangerButtonBg: #c4170b;
|
|
287
|
+
|
|
288
|
+
/// Text color of a danger button
|
|
289
|
+
/// @group button
|
|
290
|
+
$dangerButtonTextColor: #ffffff;
|
|
291
|
+
|
|
292
|
+
/// Border of a danger button
|
|
293
|
+
/// @group button
|
|
294
|
+
$dangerButtonBorder: 1px solid #c4170b;
|
|
295
|
+
|
|
296
|
+
/// Background of a danger button in hover state
|
|
297
|
+
/// @group button
|
|
298
|
+
$dangerButtonHoverBg: #a61409;
|
|
299
|
+
|
|
300
|
+
/// Text color of a danger button in hover state
|
|
301
|
+
/// @group button
|
|
302
|
+
$dangerButtonTextHoverColor: #ffffff;
|
|
303
|
+
|
|
304
|
+
/// Border color of a danger button in hover state
|
|
305
|
+
/// @group button
|
|
306
|
+
$dangerButtonHoverBorderColor: #a61409;
|
|
307
|
+
|
|
308
|
+
/// Background of a danger button in pressed state
|
|
309
|
+
/// @group button
|
|
310
|
+
$dangerButtonActiveBg: #a61409;
|
|
311
|
+
|
|
312
|
+
/// Text color of a danger button in pressed state
|
|
313
|
+
/// @group button
|
|
314
|
+
$dangerButtonTextActiveColor: #ffffff;
|
|
315
|
+
|
|
316
|
+
/// Border color of a danger button in pressed state
|
|
317
|
+
/// @group button
|
|
318
|
+
$dangerButtonActiveBorderColor: #a61409;
|
|
319
|
+
|
|
320
|
+
/// Box shadow of a danger button in focused state
|
|
321
|
+
/// @group button
|
|
322
|
+
$dangerButtonFocusShadow: 0 0 0 0.2rem lighten($dangerButtonBg, 35%);
|
|
323
|
+
|
|
324
|
+
/// Text color of a link button
|
|
325
|
+
/// @group button
|
|
326
|
+
$linkButtonColor: var(--text-color-link);
|
|
327
|
+
|
|
328
|
+
/// Text color of a link button in hover state
|
|
329
|
+
/// @group button
|
|
330
|
+
$linkButtonHoverColor: var(--text-color-link-hover);
|
|
331
|
+
|
|
332
|
+
/// Text decoration of a link button in hover state
|
|
333
|
+
/// @group button
|
|
334
|
+
$linkButtonTextHoverDecoration: underline;
|
|
335
|
+
|
|
336
|
+
/// Box shadow of a link button in focused state
|
|
337
|
+
/// @group button
|
|
338
|
+
$linkButtonFocusShadow: 0 0 0 0.2rem $focusOutlineColor;
|
|
339
|
+
|
|
340
|
+
/// Background of a toggle button
|
|
341
|
+
/// @group button
|
|
342
|
+
$toggleButtonBg: var(--toggle-button-bg);
|
|
343
|
+
|
|
344
|
+
/// Border of a toggle button
|
|
345
|
+
/// @group button
|
|
346
|
+
$toggleButtonBorder: 1px solid var(--toggle-button-border);
|
|
347
|
+
|
|
348
|
+
/// Text color of a toggle button
|
|
349
|
+
/// @group button
|
|
350
|
+
$toggleButtonTextColor: $textColor;
|
|
351
|
+
|
|
352
|
+
/// Icon color of a toggle button
|
|
353
|
+
/// @group button
|
|
354
|
+
$toggleButtonIconColor: $textSecondaryColor;
|
|
355
|
+
|
|
356
|
+
/// Background of a toggle button in hover state
|
|
357
|
+
/// @group button
|
|
358
|
+
$toggleButtonHoverBg: var(--toggle-button-hover-bg);
|
|
359
|
+
|
|
360
|
+
/// Border color of a toggle button in hover state
|
|
361
|
+
/// @group button
|
|
362
|
+
$toggleButtonHoverBorderColor: var(--toggle-button-border);
|
|
363
|
+
|
|
364
|
+
/// Text color of a toggle button in hover state
|
|
365
|
+
/// @group button
|
|
366
|
+
$toggleButtonTextHoverColor: $textColor;
|
|
367
|
+
|
|
368
|
+
/// Icon color of a toggle button in hover state
|
|
369
|
+
/// @group button
|
|
370
|
+
$toggleButtonIconHoverColor: $textSecondaryColor;
|
|
371
|
+
|
|
372
|
+
/// Background of a toggle button in selected state
|
|
373
|
+
/// @group button
|
|
374
|
+
$toggleButtonActiveBg: var(--primary-color);
|
|
375
|
+
|
|
376
|
+
/// Border color of a toggle button in selected state
|
|
377
|
+
/// @group button
|
|
378
|
+
$toggleButtonActiveBorderColor: var(--primary-color);
|
|
379
|
+
|
|
380
|
+
/// Text color of a toggle button in selected state
|
|
381
|
+
/// @group button
|
|
382
|
+
$toggleButtonTextActiveColor: var(--primary-text-color);
|
|
383
|
+
|
|
384
|
+
/// Icon color of a toggle button in selected state
|
|
385
|
+
/// @group button
|
|
386
|
+
$toggleButtonIconActiveColor: var(--primary-text-color);
|
|
387
|
+
|
|
388
|
+
/// Hover background of a toggle button in selected state
|
|
389
|
+
/// @group button
|
|
390
|
+
$toggleButtonActiveHoverBg: var(--primary-dark-color);
|
|
391
|
+
|
|
392
|
+
/// Hover border color of a toggle button in selected state
|
|
393
|
+
/// @group button
|
|
394
|
+
$toggleButtonActiveHoverBorderColor: var(--primary-dark-color);
|
|
395
|
+
|
|
396
|
+
/// Hover text color of a toggle button in selected state
|
|
397
|
+
/// @group button
|
|
398
|
+
$toggleButtonTextActiveHoverColor: var(--primary-text-color);
|
|
399
|
+
|
|
400
|
+
/// Hover icon of a toggle button in selected state
|
|
401
|
+
/// @group button
|
|
402
|
+
$toggleButtonIconActiveHoverColor: var(--primary-text-color);
|
|
403
|
+
|
|
404
|
+
/// Width of the speed dial button
|
|
405
|
+
/// @group button
|
|
406
|
+
$speedDialButtonWidth: 4rem;
|
|
407
|
+
|
|
408
|
+
/// Height of the speed dial button
|
|
409
|
+
/// @group button
|
|
410
|
+
$speedDialButtonHeight: 4rem;
|
|
411
|
+
|
|
412
|
+
/// Icon size of the speed dial button
|
|
413
|
+
/// @group button
|
|
414
|
+
$speedDialButtonIconFontSize: 1.3rem;
|
|
415
|
+
|
|
416
|
+
/// Width of a speed dial item
|
|
417
|
+
/// @group button
|
|
418
|
+
$speedDialActionWidth: 3rem;
|
|
419
|
+
|
|
420
|
+
/// Height of a speed dial item
|
|
421
|
+
/// @group button
|
|
422
|
+
$speedDialActionHeight: 3rem;
|
|
423
|
+
|
|
424
|
+
/// Background color of a speed dial item
|
|
425
|
+
/// @group button
|
|
426
|
+
$speedDialActionBg: #ffffff;
|
|
427
|
+
|
|
428
|
+
/// Background color of a speed dial item in hover state
|
|
429
|
+
/// @group button
|
|
430
|
+
$speedDialActionHoverBg: #f5f5f5;
|
|
431
|
+
|
|
432
|
+
/// Text color of a speed dial item
|
|
433
|
+
/// @group button
|
|
434
|
+
$speedDialActionTextColor: #212121;
|
|
435
|
+
|
|
436
|
+
/// Text color of a speed dial item in hover state
|
|
437
|
+
/// @group button
|
|
438
|
+
$speedDialActionTextHoverColor: #212121;
|