@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,346 @@
|
|
|
1
|
+
/// Background of a paginator
|
|
2
|
+
/// @group data
|
|
3
|
+
$paginatorBg: var(--paginator-bg);
|
|
4
|
+
|
|
5
|
+
/// Text color of a paginator
|
|
6
|
+
/// @group data
|
|
7
|
+
$paginatorTextColor: $textSecondaryColor;
|
|
8
|
+
|
|
9
|
+
/// Border of a paginator
|
|
10
|
+
/// @group data
|
|
11
|
+
$paginatorBorder: solid var(--paginator-border);
|
|
12
|
+
|
|
13
|
+
/// Border width of a paginator
|
|
14
|
+
/// @group data
|
|
15
|
+
$paginatorBorderWidth: none;
|
|
16
|
+
|
|
17
|
+
/// Padding of a paginator
|
|
18
|
+
/// @group data
|
|
19
|
+
$paginatorPadding: 0.5rem 1rem;
|
|
20
|
+
|
|
21
|
+
/// Width of a paginator element
|
|
22
|
+
/// @group data
|
|
23
|
+
$paginatorElementWidth: $buttonIconOnlyWidth;
|
|
24
|
+
|
|
25
|
+
/// Height of a paginator element
|
|
26
|
+
/// @group data
|
|
27
|
+
$paginatorElementHeight: $buttonIconOnlyWidth;
|
|
28
|
+
|
|
29
|
+
/// Background of a paginator element
|
|
30
|
+
/// @group data
|
|
31
|
+
$paginatorElementBg: transparent;
|
|
32
|
+
|
|
33
|
+
/// Border of a paginator element
|
|
34
|
+
/// @group data
|
|
35
|
+
$paginatorElementBorder: 0 none;
|
|
36
|
+
|
|
37
|
+
/// Icon color of a paginator element
|
|
38
|
+
/// @group data
|
|
39
|
+
$paginatorElementIconColor: $textSecondaryColor;
|
|
40
|
+
|
|
41
|
+
/// Background of a paginator element in hover state
|
|
42
|
+
/// @group data
|
|
43
|
+
$paginatorElementHoverBg: var(--paginator-element-hover-bg);
|
|
44
|
+
|
|
45
|
+
/// Border color of a paginator element in hover state
|
|
46
|
+
/// @group data
|
|
47
|
+
$paginatorElementHoverBorderColor: transparent;
|
|
48
|
+
|
|
49
|
+
/// Icon color of a paginator element in hover state
|
|
50
|
+
/// @group data
|
|
51
|
+
$paginatorElementIconHoverColor: $textSecondaryColor;
|
|
52
|
+
|
|
53
|
+
/// Border radius of a paginator element
|
|
54
|
+
/// @group data
|
|
55
|
+
$paginatorElementBorderRadius: $borderRadius;
|
|
56
|
+
|
|
57
|
+
/// Margin of a paginator element
|
|
58
|
+
/// @group data
|
|
59
|
+
$paginatorElementMargin: 0.143rem;
|
|
60
|
+
|
|
61
|
+
/// Padding of a paginator element
|
|
62
|
+
/// @group data
|
|
63
|
+
$paginatorElementPadding: 0;
|
|
64
|
+
|
|
65
|
+
/// Border of a table header
|
|
66
|
+
/// @group data
|
|
67
|
+
$tableHeaderBorder: 1px solid var(--surface-border);
|
|
68
|
+
|
|
69
|
+
/// Border width of a table header
|
|
70
|
+
/// @group data
|
|
71
|
+
$tableHeaderBorderWidth: 0 0 1px 0;
|
|
72
|
+
|
|
73
|
+
/// Background of a table header
|
|
74
|
+
/// @group data
|
|
75
|
+
$tableHeaderBg: var(--paginator-bg);
|
|
76
|
+
|
|
77
|
+
/// Text color of a table header
|
|
78
|
+
/// @group data
|
|
79
|
+
$tableHeaderTextColor: $textColor;
|
|
80
|
+
|
|
81
|
+
/// Font weight of a table header
|
|
82
|
+
/// @group data
|
|
83
|
+
$tableHeaderFontWeight: var(--table-header-font-weight);
|
|
84
|
+
|
|
85
|
+
/// Padding of a table header, must be defined with a shorthand for vertical and horizontal values e.g. ".5rem .5rem"
|
|
86
|
+
/// @group data
|
|
87
|
+
$tableHeaderPadding: 0.875rem 0.875rem;
|
|
88
|
+
|
|
89
|
+
/// Padding of a table header cell, must be defined with a shorthand for vertical and horizontal values e.g. ".5rem .5rem"
|
|
90
|
+
/// @group data
|
|
91
|
+
$tableHeaderCellPadding: 0.595rem 0.875rem;
|
|
92
|
+
|
|
93
|
+
/// Background of a table header cell
|
|
94
|
+
/// @group data
|
|
95
|
+
$tableHeaderCellBg: var(--table-header-cell-bg);
|
|
96
|
+
|
|
97
|
+
/// Text color of a table header cell
|
|
98
|
+
/// @group data
|
|
99
|
+
$tableHeaderCellTextColor: $textColor;
|
|
100
|
+
|
|
101
|
+
/// Font weight of a table header cell
|
|
102
|
+
/// @group data
|
|
103
|
+
$tableHeaderCellFontWeight: var(--table-cell-font-weight);
|
|
104
|
+
|
|
105
|
+
/// Border of a table header cell
|
|
106
|
+
/// @group data
|
|
107
|
+
$tableHeaderCellBorder: 1px solid var(--surface-border);
|
|
108
|
+
|
|
109
|
+
/// Border width of a table header cell
|
|
110
|
+
/// @group data
|
|
111
|
+
$tableHeaderCellBorderWidth: 0 0 1px 0;
|
|
112
|
+
|
|
113
|
+
/// Background of a table header cell in hover state
|
|
114
|
+
/// @group data
|
|
115
|
+
$tableHeaderCellHoverBg: var(--table-header-cell-hover-bg);
|
|
116
|
+
|
|
117
|
+
/// Text color of a table header cell in hover state
|
|
118
|
+
/// @group data
|
|
119
|
+
$tableHeaderCellTextHoverColor: $textColor;
|
|
120
|
+
|
|
121
|
+
/// Icon color of a table header cell
|
|
122
|
+
/// @group data
|
|
123
|
+
$tableHeaderCellIconColor: $textSecondaryColor;
|
|
124
|
+
|
|
125
|
+
/// Icon color of a table header cell in hover state
|
|
126
|
+
/// @group data
|
|
127
|
+
$tableHeaderCellIconHoverColor: $textSecondaryColor;
|
|
128
|
+
|
|
129
|
+
/// Background of a table header cell in sorted state
|
|
130
|
+
/// @group data
|
|
131
|
+
$tableHeaderCellHighlightBg: var(--table-header-cell-highlight-bg);
|
|
132
|
+
|
|
133
|
+
/// Text color of a table header cell in sorted state
|
|
134
|
+
/// @group data
|
|
135
|
+
$tableHeaderCellHighlightTextColor: var(--primary-color);
|
|
136
|
+
|
|
137
|
+
/// Hover background of a table header cell in sorted state
|
|
138
|
+
/// @group data
|
|
139
|
+
$tableHeaderCellHighlightHoverBg: var(--table-cell-highlight-hover-bg);
|
|
140
|
+
|
|
141
|
+
/// Hover text color of a table header cell in sorted state
|
|
142
|
+
/// @group data
|
|
143
|
+
$tableHeaderCellHighlightTextHoverColor: var(--primary-color);
|
|
144
|
+
|
|
145
|
+
/// Size of a multiple column sorting order indicator
|
|
146
|
+
/// @group data
|
|
147
|
+
$tableSortableColumnBadgeSize: 1.143rem;
|
|
148
|
+
|
|
149
|
+
/// Background of a table body row
|
|
150
|
+
/// @group data
|
|
151
|
+
$tableBodyRowBg: var(--table-bg-color);
|
|
152
|
+
|
|
153
|
+
/// Text color of a table body row
|
|
154
|
+
/// @group data
|
|
155
|
+
$tableBodyRowTextColor: $textColor;
|
|
156
|
+
|
|
157
|
+
/// Background of an even table body row
|
|
158
|
+
/// @group data
|
|
159
|
+
$tableBodyRowEvenBg: var(--table-body-row-even-bg);
|
|
160
|
+
|
|
161
|
+
/// Background of a table body row in hover state
|
|
162
|
+
/// @group data
|
|
163
|
+
$tableBodyRowHoverBg: var(--table-body-row-hover-bg);
|
|
164
|
+
|
|
165
|
+
/// Text color of a table body row in hover state
|
|
166
|
+
/// @group data
|
|
167
|
+
$tableBodyRowTextHoverColor: $textColor;
|
|
168
|
+
|
|
169
|
+
/// Border for a cell of a table toby row
|
|
170
|
+
/// @group data
|
|
171
|
+
$tableBodyCellBorder: 1px solid var(--surface-border);
|
|
172
|
+
|
|
173
|
+
/// Border width for a cell of a table toby row
|
|
174
|
+
/// @group data
|
|
175
|
+
$tableBodyCellBorderWidth: 0 0 1px 0;
|
|
176
|
+
|
|
177
|
+
/// Padding for a cell of a table toby row, must be defined with a shorthand for vertical and horizontal values e.g. ".5rem .5rem"
|
|
178
|
+
/// @group data
|
|
179
|
+
$tableBodyCellPadding: 0.595rem 0.875rem;
|
|
180
|
+
|
|
181
|
+
/// Padding of a table footer cell, must be defined with a shorthand for vertical and horizontal values e.g. ".5rem .5rem"
|
|
182
|
+
/// @group data
|
|
183
|
+
$tableFooterCellPadding: 0.595rem 0.875rem;
|
|
184
|
+
|
|
185
|
+
/// Background of a table footer cell
|
|
186
|
+
/// @group data
|
|
187
|
+
$tableFooterCellBg: var(--table-header-cell-highlight-bg);
|
|
188
|
+
|
|
189
|
+
/// Text color of a table footer cell
|
|
190
|
+
/// @group data
|
|
191
|
+
$tableFooterCellTextColor: $textColor;
|
|
192
|
+
|
|
193
|
+
/// Font weight of a table footer cell
|
|
194
|
+
/// @group data
|
|
195
|
+
$tableFooterCellFontWeight: 600;
|
|
196
|
+
|
|
197
|
+
/// Border of a table footer cell
|
|
198
|
+
/// @group data
|
|
199
|
+
|
|
200
|
+
/// Border of a table footer cell
|
|
201
|
+
/// @group data
|
|
202
|
+
$tableFooterCellBorder: 1px solid var(--surface-border);
|
|
203
|
+
|
|
204
|
+
/// Border width of a table footer cell
|
|
205
|
+
/// @group data
|
|
206
|
+
$tableFooterCellBorderWidth: 0 0 1px 0;
|
|
207
|
+
|
|
208
|
+
/// Backgground of a table column resize indicator bar
|
|
209
|
+
/// @group data
|
|
210
|
+
$tableResizerHelperBg: var(--primary-color);
|
|
211
|
+
|
|
212
|
+
/// Border of a table footer
|
|
213
|
+
/// @group data
|
|
214
|
+
$tableFooterBorder: 1px solid #e9ecef;
|
|
215
|
+
|
|
216
|
+
/// Border width of a table footer
|
|
217
|
+
/// @group data
|
|
218
|
+
$tableFooterBorderWidth: 0 0 1px 0;
|
|
219
|
+
|
|
220
|
+
/// Background of a table footer
|
|
221
|
+
/// @group data
|
|
222
|
+
$tableFooterBg: #f8f9fa;
|
|
223
|
+
|
|
224
|
+
/// Text color of a table footer
|
|
225
|
+
/// @group data
|
|
226
|
+
$tableFooterTextColor: $textColor;
|
|
227
|
+
|
|
228
|
+
/// Font weight of a table footer
|
|
229
|
+
/// @group data
|
|
230
|
+
$tableFooterFontWeight: 600;
|
|
231
|
+
|
|
232
|
+
/// Padding of a table footer, must be defined with a shorthand for vertical and horizontal values e.g. ".5rem .5rem"
|
|
233
|
+
/// @group data
|
|
234
|
+
$tableFooterPadding: 0.875rem 0.875rem;
|
|
235
|
+
|
|
236
|
+
/// Content alignment of a table cell
|
|
237
|
+
/// @group data
|
|
238
|
+
$tableCellContentAlignment: left;
|
|
239
|
+
|
|
240
|
+
/// Border width of a table paginator positioned at top
|
|
241
|
+
/// @group data
|
|
242
|
+
$tableTopPaginatorBorderWidth: none;
|
|
243
|
+
|
|
244
|
+
/// Border width of a table paginator positioned at bottom
|
|
245
|
+
/// @group data
|
|
246
|
+
$tableBottomPaginatorBorderWidth: none;
|
|
247
|
+
|
|
248
|
+
/// Scale factor of a small datatable
|
|
249
|
+
/// @group data
|
|
250
|
+
$tableScaleSM: 0.5;
|
|
251
|
+
|
|
252
|
+
/// Scale factor of a large datatable
|
|
253
|
+
/// @group data
|
|
254
|
+
$tableScaleLG: 1.25;
|
|
255
|
+
|
|
256
|
+
/// Padding for content section of a dataview
|
|
257
|
+
/// @group data
|
|
258
|
+
$dataViewContentPadding: 0;
|
|
259
|
+
|
|
260
|
+
/// Border for content section of a dataview
|
|
261
|
+
/// @group data
|
|
262
|
+
$dataViewContentBorder: 0 none;
|
|
263
|
+
|
|
264
|
+
/// Border for an item of a dataview in list orientation
|
|
265
|
+
/// @group data
|
|
266
|
+
$dataViewListItemBorder: solid var(--table-footer-border);
|
|
267
|
+
|
|
268
|
+
/// Border width for an item of a dataview in list orientation
|
|
269
|
+
/// @group data
|
|
270
|
+
$dataViewListItemBorderWidth: 0 0 1px 0;
|
|
271
|
+
|
|
272
|
+
/// Background of a full calendar event
|
|
273
|
+
/// @group data
|
|
274
|
+
$fullCalendarEventBg: var(--primary-dark-color);
|
|
275
|
+
|
|
276
|
+
/// Border color of a full calendar event
|
|
277
|
+
/// @group data
|
|
278
|
+
$fullCalendarEventBorderColor: var(--primary-dark-color);
|
|
279
|
+
|
|
280
|
+
/// Border of a full calendar event
|
|
281
|
+
/// @group data
|
|
282
|
+
$fullCalendarEventBorder: 1px solid var(--primary-dark-color);
|
|
283
|
+
|
|
284
|
+
/// Text color of a full calendar event
|
|
285
|
+
/// @group data
|
|
286
|
+
$fullCalendarEventTextColor: var(--primary-text-color);
|
|
287
|
+
|
|
288
|
+
/// Padding of a tree
|
|
289
|
+
/// @group data
|
|
290
|
+
$treeContainerPadding: 0.286rem;
|
|
291
|
+
|
|
292
|
+
/// Padding of a tree node
|
|
293
|
+
/// @group data
|
|
294
|
+
$treeNodePadding: 0.143rem;
|
|
295
|
+
|
|
296
|
+
/// Padding of a tree node content consists of toggler, icon and label
|
|
297
|
+
/// @group data
|
|
298
|
+
$treeNodeContentPadding: 0.5rem;
|
|
299
|
+
|
|
300
|
+
/// Padding of a tree node children container
|
|
301
|
+
/// @group data
|
|
302
|
+
$treeNodeChildrenPadding: 0 0 0 1rem;
|
|
303
|
+
|
|
304
|
+
/// Color of a treenode data icon, $dataActionIconColor for the toggler element
|
|
305
|
+
/// @group data
|
|
306
|
+
$treeNodeIconColor: $textSecondaryColor;
|
|
307
|
+
|
|
308
|
+
/// Padding of a vertical timeline content element
|
|
309
|
+
/// @group data
|
|
310
|
+
$timelineVerticalEventContentPadding: 0 1rem;
|
|
311
|
+
|
|
312
|
+
/// Padding of a horizontal timeline content element
|
|
313
|
+
/// @group data
|
|
314
|
+
$timelineHorizontalEventContentPadding: 1rem 0;
|
|
315
|
+
|
|
316
|
+
/// Width of a timeline marker
|
|
317
|
+
/// @group data
|
|
318
|
+
$timelineEventMarkerWidth: 1rem;
|
|
319
|
+
|
|
320
|
+
/// Height of a timeline marker
|
|
321
|
+
/// @group data
|
|
322
|
+
$timelineEventMarkerHeight: 1rem;
|
|
323
|
+
|
|
324
|
+
/// Border radius of a timeline marker
|
|
325
|
+
/// @group data
|
|
326
|
+
$timelineEventMarkerBorderRadius: 50%;
|
|
327
|
+
|
|
328
|
+
/// Border of a timeline marker
|
|
329
|
+
/// @group data
|
|
330
|
+
$timelineEventMarkerBorder: 2px solid $highlightBg;
|
|
331
|
+
|
|
332
|
+
/// Background of a timeline marker
|
|
333
|
+
/// @group data
|
|
334
|
+
$timelineEventMarkerBackground: $highlightTextColor;
|
|
335
|
+
|
|
336
|
+
/// Size of a timeline connector
|
|
337
|
+
/// @group data
|
|
338
|
+
$timelineEventConnectorSize: 2px;
|
|
339
|
+
|
|
340
|
+
/// Color of a timeline event
|
|
341
|
+
/// @group data
|
|
342
|
+
$timelineEventColor: var(--surface-border);
|
|
343
|
+
|
|
344
|
+
/// Color of a line to connect to organization chart nodes
|
|
345
|
+
/// @group data
|
|
346
|
+
$organizationChartConnectorColor: var(--surface-border);
|