@progress/kendo-theme-utils 11.1.0-dev.3 → 11.1.0-dev.5
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/dist/meta/sassdoc-data.json +24415 -7623
- package/dist/meta/sassdoc-raw-data.json +24604 -7623
- package/package.json +3 -3
- package/scss/accessibility/_screen-readers.scss +13 -0
- package/scss/background/_background-color.scss +216 -0
- package/scss/border/_border-color.scss +216 -0
- package/scss/border/_outline-color.scss +216 -0
- package/scss/effects/_opacity.scss +61 -1
- package/scss/elevation/index.import.scss +54 -0
- package/scss/flex-grid/_flex-direction.scss +28 -0
- package/scss/flex-grid/_gap.scss +196 -12
- package/scss/flex-grid/_grid-column-start-end.scss +496 -6
- package/scss/flex-grid/_grid-row-start-end.scss +416 -6
- package/scss/flex-grid/_grid-template-columns.scss +136 -0
- package/scss/flex-grid/_grid-template-rows.scss +60 -0
- package/scss/flex-grid/_order.scss +1 -1
- package/scss/interactivity/_accent-color.scss +1 -1
- package/scss/interactivity/_caret-color.scss +1 -1
- package/scss/interactivity/_will-change.scss +23 -1
- package/scss/layout/_display.scss +88 -0
- package/scss/responsive-layout/_col-gap.scss +568 -0
- package/scss/responsive-layout/_col.scss +172 -0
- package/scss/spacing/_margin.scss +113 -70
- package/scss/spacing/_padding.scss +163 -28
- package/scss/spacing/_space-between.scss +2 -1
- package/scss/typography/_font-family.scss +24 -0
- package/scss/typography/_font-style.scss +10 -4
- package/scss/typography/_letter-spacing.scss +42 -0
- package/scss/typography/_line-height.scss +24 -0
- package/scss/typography/_text-color.scss +246 -1
|
@@ -1,4 +1,26 @@
|
|
|
1
|
-
|
|
1
|
+
/// This is equivalent to `will-change: auto;`.
|
|
2
|
+
/// @example will-change: auto;
|
|
3
|
+
/// @name .k-will-change-auto
|
|
4
|
+
/// @group will-change
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// This is equivalent to `will-change: scroll-position;`.
|
|
8
|
+
/// @example will-change: scroll-position;
|
|
9
|
+
/// @name .k-will-change-scroll
|
|
10
|
+
/// @group will-change
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// This is equivalent to `will-change: contents;`.
|
|
14
|
+
/// @example will-change: contents;
|
|
15
|
+
/// @name .k-will-change-contents
|
|
16
|
+
/// @group will-change
|
|
17
|
+
/// @contextType css
|
|
18
|
+
|
|
19
|
+
/// This is equivalent to `will-change: transform;`.
|
|
20
|
+
/// @example will-change: transform;
|
|
21
|
+
/// @name .k-will-change-transform
|
|
22
|
+
/// @group will-change
|
|
23
|
+
/// @contextType css
|
|
2
24
|
|
|
3
25
|
@use "sass:map";
|
|
4
26
|
@use "../_globals.scss" as *;
|
|
@@ -82,6 +82,94 @@
|
|
|
82
82
|
/// @group display
|
|
83
83
|
/// @contextType css
|
|
84
84
|
|
|
85
|
+
// ============================================================================
|
|
86
|
+
// Responsive Display Utilities
|
|
87
|
+
// ============================================================================
|
|
88
|
+
|
|
89
|
+
/// This is equivalent to `display: none;`.
|
|
90
|
+
/// @example display: none;
|
|
91
|
+
/// @name .k-d-{xs|md|lg|xl|xxl}-none
|
|
92
|
+
/// @group display-responsive
|
|
93
|
+
/// @contextType css
|
|
94
|
+
|
|
95
|
+
/// This is equivalent to `display: contents;`.
|
|
96
|
+
/// @example display: contents;
|
|
97
|
+
/// @name .k-d-{xs|md|lg|xl|xxl}-contents
|
|
98
|
+
/// @group display-responsive
|
|
99
|
+
/// @contextType css
|
|
100
|
+
|
|
101
|
+
/// This is equivalent to `display: block;`.
|
|
102
|
+
/// @example display: block;
|
|
103
|
+
/// @name .k-d-{xs|md|lg|xl|xxl}-block
|
|
104
|
+
/// @group display-responsive
|
|
105
|
+
/// @contextType css
|
|
106
|
+
|
|
107
|
+
/// This is equivalent to `display: inline;`.
|
|
108
|
+
/// @example display: inline;
|
|
109
|
+
/// @name .k-d-{xs|md|lg|xl|xxl}-inline
|
|
110
|
+
/// @group display-responsive
|
|
111
|
+
/// @contextType css
|
|
112
|
+
|
|
113
|
+
/// This is equivalent to `display: inline-block;`.
|
|
114
|
+
/// @example display: inline-block;
|
|
115
|
+
/// @name .k-d-{xs|md|lg|xl|xxl}-inline-block
|
|
116
|
+
/// @group display-responsive
|
|
117
|
+
/// @contextType css
|
|
118
|
+
|
|
119
|
+
/// This is equivalent to `display: flex;`.
|
|
120
|
+
/// @example display: flex;
|
|
121
|
+
/// @name .k-d-{xs|md|lg|xl|xxl}-flex
|
|
122
|
+
/// @group display-responsive
|
|
123
|
+
/// @contextType css
|
|
124
|
+
|
|
125
|
+
/// This is equivalent to `display: inline-flex;`.
|
|
126
|
+
/// @example display: inline-flex;
|
|
127
|
+
/// @name .k-d-{xs|md|lg|xl|xxl}-inline-flex
|
|
128
|
+
/// @group display-responsive
|
|
129
|
+
/// @contextType css
|
|
130
|
+
|
|
131
|
+
/// This is equivalent to `display: grid`. It defines the element as a grid container and establishes a new grid formatting context for its contents.
|
|
132
|
+
/// @example display: grid
|
|
133
|
+
/// @name .k-d-{xs|md|lg|xl|xxl}-grid
|
|
134
|
+
/// @group display-responsive
|
|
135
|
+
/// @contextType css
|
|
136
|
+
|
|
137
|
+
/// This is equivalent to `display: inline-grid`. It defines the element as a grid container and establishes a new grid formatting context for its contents.
|
|
138
|
+
/// @example display: inline-grid
|
|
139
|
+
/// @name .k-d-{xs|md|lg|xl|xxl}-inline-grid
|
|
140
|
+
/// @group display-responsive
|
|
141
|
+
/// @contextType css
|
|
142
|
+
|
|
143
|
+
/// This is equivalent to `display: table;`.
|
|
144
|
+
/// @example display: table;
|
|
145
|
+
/// @name .k-d-{xs|md|lg|xl|xxl}-table
|
|
146
|
+
/// @group display-responsive
|
|
147
|
+
/// @contextType css
|
|
148
|
+
|
|
149
|
+
/// This is equivalent to `display: inline-table;`.
|
|
150
|
+
/// @example display: inline-table;
|
|
151
|
+
/// @name .k-d-{xs|md|lg|xl|xxl}-inline-table
|
|
152
|
+
/// @group display-responsive
|
|
153
|
+
/// @contextType css
|
|
154
|
+
|
|
155
|
+
/// This is equivalent to `display: list-item;`.
|
|
156
|
+
/// @example display: list-item;
|
|
157
|
+
/// @name .k-d-{xs|md|lg|xl|xxl}-list-item
|
|
158
|
+
/// @group display-responsive
|
|
159
|
+
/// @contextType css
|
|
160
|
+
|
|
161
|
+
/// This is equivalent to `display: table-row;`.
|
|
162
|
+
/// @example display: table-row;
|
|
163
|
+
/// @name .k-d-{xs|md|lg|xl|xxl}-table-row
|
|
164
|
+
/// @group display-responsive
|
|
165
|
+
/// @contextType css
|
|
166
|
+
|
|
167
|
+
/// This is equivalent to `display: table-cell;`.
|
|
168
|
+
/// @example display: table-cell;
|
|
169
|
+
/// @name .k-d-{xs|md|lg|xl|xxl}-table-cell
|
|
170
|
+
/// @group display-responsive
|
|
171
|
+
/// @contextType css
|
|
172
|
+
|
|
85
173
|
@use "sass:map";
|
|
86
174
|
@use "../_globals.scss" as *;
|
|
87
175
|
|
|
@@ -1,3 +1,571 @@
|
|
|
1
|
+
/// Sets column gap to 0 pixels.
|
|
2
|
+
/// @example --kendo-col-gap: 0px;
|
|
3
|
+
/// @name .k-col-gap-0
|
|
4
|
+
/// @group col-gap
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// Sets column gap to 1 pixel.
|
|
8
|
+
/// @example --kendo-col-gap: 1px;
|
|
9
|
+
/// @name .k-col-gap-1px
|
|
10
|
+
/// @group col-gap
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// Sets column gap to 0.125rem (2px at 16px base).
|
|
14
|
+
/// @example --kendo-col-gap: 0.125rem;
|
|
15
|
+
/// @name .k-col-gap-0\.5
|
|
16
|
+
/// @group col-gap
|
|
17
|
+
/// @contextType css
|
|
18
|
+
|
|
19
|
+
/// Sets column gap to 0.25rem (4px at 16px base).
|
|
20
|
+
/// @example --kendo-col-gap: 0.25rem;
|
|
21
|
+
/// @name .k-col-gap-1
|
|
22
|
+
/// @group col-gap
|
|
23
|
+
/// @contextType css
|
|
24
|
+
|
|
25
|
+
/// Sets column gap to 0.375rem (6px at 16px base).
|
|
26
|
+
/// @example --kendo-col-gap: 0.375rem;
|
|
27
|
+
/// @name .k-col-gap-1\.5
|
|
28
|
+
/// @group col-gap
|
|
29
|
+
/// @contextType css
|
|
30
|
+
|
|
31
|
+
/// Sets column gap to 0.5rem (8px at 16px base).
|
|
32
|
+
/// @example --kendo-col-gap: 0.5rem;
|
|
33
|
+
/// @name .k-col-gap-2
|
|
34
|
+
/// @group col-gap
|
|
35
|
+
/// @contextType css
|
|
36
|
+
|
|
37
|
+
/// Sets column gap to 0.625rem (10px at 16px base).
|
|
38
|
+
/// @example --kendo-col-gap: 0.625rem;
|
|
39
|
+
/// @name .k-col-gap-2\.5
|
|
40
|
+
/// @group col-gap
|
|
41
|
+
/// @contextType css
|
|
42
|
+
|
|
43
|
+
/// Sets column gap to 0.75rem (12px at 16px base).
|
|
44
|
+
/// @example --kendo-col-gap: 0.75rem;
|
|
45
|
+
/// @name .k-col-gap-3
|
|
46
|
+
/// @group col-gap
|
|
47
|
+
/// @contextType css
|
|
48
|
+
|
|
49
|
+
/// Sets column gap to 0.875rem (14px at 16px base).
|
|
50
|
+
/// @example --kendo-col-gap: 0.875rem;
|
|
51
|
+
/// @name .k-col-gap-3\.5
|
|
52
|
+
/// @group col-gap
|
|
53
|
+
/// @contextType css
|
|
54
|
+
|
|
55
|
+
/// Sets column gap to 1rem (16px at 16px base).
|
|
56
|
+
/// @example --kendo-col-gap: 1rem;
|
|
57
|
+
/// @name .k-col-gap-4
|
|
58
|
+
/// @group col-gap
|
|
59
|
+
/// @contextType css
|
|
60
|
+
|
|
61
|
+
/// Sets column gap to 1.125rem (18px at 16px base).
|
|
62
|
+
/// @example --kendo-col-gap: 1.125rem;
|
|
63
|
+
/// @name .k-col-gap-4\.5
|
|
64
|
+
/// @group col-gap
|
|
65
|
+
/// @contextType css
|
|
66
|
+
|
|
67
|
+
/// Sets column gap to 1.25rem (20px at 16px base).
|
|
68
|
+
/// @example --kendo-col-gap: 1.25rem;
|
|
69
|
+
/// @name .k-col-gap-5
|
|
70
|
+
/// @group col-gap
|
|
71
|
+
/// @contextType css
|
|
72
|
+
|
|
73
|
+
/// Sets column gap to 1.375rem (22px at 16px base).
|
|
74
|
+
/// @example --kendo-col-gap: 1.375rem;
|
|
75
|
+
/// @name .k-col-gap-5\.5
|
|
76
|
+
/// @group col-gap
|
|
77
|
+
/// @contextType css
|
|
78
|
+
|
|
79
|
+
/// Sets column gap to 1.5rem (24px at 16px base).
|
|
80
|
+
/// @example --kendo-col-gap: 1.5rem;
|
|
81
|
+
/// @name .k-col-gap-6
|
|
82
|
+
/// @group col-gap
|
|
83
|
+
/// @contextType css
|
|
84
|
+
|
|
85
|
+
/// Sets column gap to 1.625rem (26px at 16px base).
|
|
86
|
+
/// @example --kendo-col-gap: 1.625rem;
|
|
87
|
+
/// @name .k-col-gap-6\.5
|
|
88
|
+
/// @group col-gap
|
|
89
|
+
/// @contextType css
|
|
90
|
+
|
|
91
|
+
/// Sets column gap to 1.75rem (28px at 16px base).
|
|
92
|
+
/// @example --kendo-col-gap: 1.75rem;
|
|
93
|
+
/// @name .k-col-gap-7
|
|
94
|
+
/// @group col-gap
|
|
95
|
+
/// @contextType css
|
|
96
|
+
|
|
97
|
+
/// Sets column gap to 1.875rem (30px at 16px base).
|
|
98
|
+
/// @example --kendo-col-gap: 1.875rem;
|
|
99
|
+
/// @name .k-col-gap-7\.5
|
|
100
|
+
/// @group col-gap
|
|
101
|
+
/// @contextType css
|
|
102
|
+
|
|
103
|
+
/// Sets column gap to 2rem (32px at 16px base).
|
|
104
|
+
/// @example --kendo-col-gap: 2rem;
|
|
105
|
+
/// @name .k-col-gap-8
|
|
106
|
+
/// @group col-gap
|
|
107
|
+
/// @contextType css
|
|
108
|
+
|
|
109
|
+
/// Sets column gap to 2.25rem (36px at 16px base).
|
|
110
|
+
/// @example --kendo-col-gap: 2.25rem;
|
|
111
|
+
/// @name .k-col-gap-9
|
|
112
|
+
/// @group col-gap
|
|
113
|
+
/// @contextType css
|
|
114
|
+
|
|
115
|
+
/// Sets column gap to 2.5rem (40px at 16px base).
|
|
116
|
+
/// @example --kendo-col-gap: 2.5rem;
|
|
117
|
+
/// @name .k-col-gap-10
|
|
118
|
+
/// @group col-gap
|
|
119
|
+
/// @contextType css
|
|
120
|
+
|
|
121
|
+
/// Sets column gap to 2.75rem (44px at 16px base).
|
|
122
|
+
/// @example --kendo-col-gap: 2.75rem;
|
|
123
|
+
/// @name .k-col-gap-11
|
|
124
|
+
/// @group col-gap
|
|
125
|
+
/// @contextType css
|
|
126
|
+
|
|
127
|
+
/// Sets column gap to 3rem (48px at 16px base).
|
|
128
|
+
/// @example --kendo-col-gap: 3rem;
|
|
129
|
+
/// @name .k-col-gap-12
|
|
130
|
+
/// @group col-gap
|
|
131
|
+
/// @contextType css
|
|
132
|
+
|
|
133
|
+
/// Sets column gap to 3.25rem (52px at 16px base).
|
|
134
|
+
/// @example --kendo-col-gap: 3.25rem;
|
|
135
|
+
/// @name .k-col-gap-13
|
|
136
|
+
/// @group col-gap
|
|
137
|
+
/// @contextType css
|
|
138
|
+
|
|
139
|
+
/// Sets column gap to 3.5rem (56px at 16px base).
|
|
140
|
+
/// @example --kendo-col-gap: 3.5rem;
|
|
141
|
+
/// @name .k-col-gap-14
|
|
142
|
+
/// @group col-gap
|
|
143
|
+
/// @contextType css
|
|
144
|
+
|
|
145
|
+
/// Sets column gap to 3.75rem (60px at 16px base).
|
|
146
|
+
/// @example --kendo-col-gap: 3.75rem;
|
|
147
|
+
/// @name .k-col-gap-15
|
|
148
|
+
/// @group col-gap
|
|
149
|
+
/// @contextType css
|
|
150
|
+
|
|
151
|
+
/// Sets column gap to 4rem (64px at 16px base).
|
|
152
|
+
/// @example --kendo-col-gap: 4rem;
|
|
153
|
+
/// @name .k-col-gap-16
|
|
154
|
+
/// @group col-gap
|
|
155
|
+
/// @contextType css
|
|
156
|
+
|
|
157
|
+
/// Sets column gap to 4.25rem (68px at 16px base).
|
|
158
|
+
/// @example --kendo-col-gap: 4.25rem;
|
|
159
|
+
/// @name .k-col-gap-17
|
|
160
|
+
/// @group col-gap
|
|
161
|
+
/// @contextType css
|
|
162
|
+
|
|
163
|
+
/// Sets column gap to 4.5rem (72px at 16px base).
|
|
164
|
+
/// @example --kendo-col-gap: 4.5rem;
|
|
165
|
+
/// @name .k-col-gap-18
|
|
166
|
+
/// @group col-gap
|
|
167
|
+
/// @contextType css
|
|
168
|
+
|
|
169
|
+
/// Sets column gap to 4.75rem (76px at 16px base).
|
|
170
|
+
/// @example --kendo-col-gap: 4.75rem;
|
|
171
|
+
/// @name .k-col-gap-19
|
|
172
|
+
/// @group col-gap
|
|
173
|
+
/// @contextType css
|
|
174
|
+
|
|
175
|
+
/// Sets column gap to 5rem (80px at 16px base).
|
|
176
|
+
/// @example --kendo-col-gap: 5rem;
|
|
177
|
+
/// @name .k-col-gap-20
|
|
178
|
+
/// @group col-gap
|
|
179
|
+
/// @contextType css
|
|
180
|
+
|
|
181
|
+
/// Sets column gap to 5.25rem (84px at 16px base).
|
|
182
|
+
/// @example --kendo-col-gap: 5.25rem;
|
|
183
|
+
/// @name .k-col-gap-21
|
|
184
|
+
/// @group col-gap
|
|
185
|
+
/// @contextType css
|
|
186
|
+
|
|
187
|
+
/// Sets column gap to 5.5rem (88px at 16px base).
|
|
188
|
+
/// @example --kendo-col-gap: 5.5rem;
|
|
189
|
+
/// @name .k-col-gap-22
|
|
190
|
+
/// @group col-gap
|
|
191
|
+
/// @contextType css
|
|
192
|
+
|
|
193
|
+
/// Sets column gap to 5.75rem (92px at 16px base).
|
|
194
|
+
/// @example --kendo-col-gap: 5.75rem;
|
|
195
|
+
/// @name .k-col-gap-23
|
|
196
|
+
/// @group col-gap
|
|
197
|
+
/// @contextType css
|
|
198
|
+
|
|
199
|
+
/// Sets column gap to 6rem (96px at 16px base).
|
|
200
|
+
/// @example --kendo-col-gap: 6rem;
|
|
201
|
+
/// @name .k-col-gap-24
|
|
202
|
+
/// @group col-gap
|
|
203
|
+
/// @contextType css
|
|
204
|
+
|
|
205
|
+
/// Sets column gap to 7rem (112px at 16px base).
|
|
206
|
+
/// @example --kendo-col-gap: 7rem;
|
|
207
|
+
/// @name .k-col-gap-25
|
|
208
|
+
/// @group col-gap
|
|
209
|
+
/// @contextType css
|
|
210
|
+
|
|
211
|
+
/// Sets column gap to 8rem (128px at 16px base).
|
|
212
|
+
/// @example --kendo-col-gap: 8rem;
|
|
213
|
+
/// @name .k-col-gap-26
|
|
214
|
+
/// @group col-gap
|
|
215
|
+
/// @contextType css
|
|
216
|
+
|
|
217
|
+
/// Sets column gap to 9rem (144px at 16px base).
|
|
218
|
+
/// @example --kendo-col-gap: 9rem;
|
|
219
|
+
/// @name .k-col-gap-27
|
|
220
|
+
/// @group col-gap
|
|
221
|
+
/// @contextType css
|
|
222
|
+
|
|
223
|
+
/// Sets column gap to 10rem (160px at 16px base).
|
|
224
|
+
/// @example --kendo-col-gap: 10rem;
|
|
225
|
+
/// @name .k-col-gap-28
|
|
226
|
+
/// @group col-gap
|
|
227
|
+
/// @contextType css
|
|
228
|
+
|
|
229
|
+
/// Sets column gap to 11rem (176px at 16px base).
|
|
230
|
+
/// @example --kendo-col-gap: 11rem;
|
|
231
|
+
/// @name .k-col-gap-29
|
|
232
|
+
/// @group col-gap
|
|
233
|
+
/// @contextType css
|
|
234
|
+
|
|
235
|
+
/// Sets column gap to 12rem (192px at 16px base).
|
|
236
|
+
/// @example --kendo-col-gap: 12rem;
|
|
237
|
+
/// @name .k-col-gap-30
|
|
238
|
+
/// @group col-gap
|
|
239
|
+
/// @contextType css
|
|
240
|
+
|
|
241
|
+
/// Sets column gap to extra small spacing.
|
|
242
|
+
/// @example --kendo-col-gap: var(--kendo-spacing-1, 0.25rem);
|
|
243
|
+
/// @name .k-col-gap-xs
|
|
244
|
+
/// @group col-gap
|
|
245
|
+
/// @contextType css
|
|
246
|
+
|
|
247
|
+
/// Sets column gap to small spacing.
|
|
248
|
+
/// @example --kendo-col-gap: var(--kendo-spacing-2, 0.5rem);
|
|
249
|
+
/// @name .k-col-gap-sm
|
|
250
|
+
/// @group col-gap
|
|
251
|
+
/// @contextType css
|
|
252
|
+
|
|
253
|
+
/// Sets column gap to medium spacing.
|
|
254
|
+
/// @example --kendo-col-gap: var(--kendo-spacing-3, 0.75rem);
|
|
255
|
+
/// @name .k-col-gap-md
|
|
256
|
+
/// @group col-gap
|
|
257
|
+
/// @contextType css
|
|
258
|
+
|
|
259
|
+
/// Sets column gap to large spacing.
|
|
260
|
+
/// @example --kendo-col-gap: var(--kendo-spacing-4, 1rem);
|
|
261
|
+
/// @name .k-col-gap-lg
|
|
262
|
+
/// @group col-gap
|
|
263
|
+
/// @contextType css
|
|
264
|
+
|
|
265
|
+
/// Sets column gap to extra large spacing.
|
|
266
|
+
/// @example --kendo-col-gap: var(--kendo-spacing-6, 1.5rem);
|
|
267
|
+
/// @name .k-col-gap-xl
|
|
268
|
+
/// @group col-gap
|
|
269
|
+
/// @contextType css
|
|
270
|
+
|
|
271
|
+
/// Sets column gap to thin spacing.
|
|
272
|
+
/// @example --kendo-col-gap: var(--kendo-spacing-0\.5, 0.125rem);
|
|
273
|
+
/// @name .k-col-gap-thin
|
|
274
|
+
/// @group col-gap
|
|
275
|
+
/// @contextType css
|
|
276
|
+
|
|
277
|
+
/// Sets column gap to hair spacing.
|
|
278
|
+
/// @example --kendo-col-gap: var(--kendo-spacing-1px, 1px);
|
|
279
|
+
/// @name .k-col-gap-hair
|
|
280
|
+
/// @group col-gap
|
|
281
|
+
/// @contextType css
|
|
282
|
+
|
|
283
|
+
// ============================================================================
|
|
284
|
+
// Responsive Column Gap Utilities
|
|
285
|
+
// ============================================================================
|
|
286
|
+
|
|
287
|
+
/// Sets column gap to 0 pixels.
|
|
288
|
+
/// @example --kendo-col-gap: 0px;
|
|
289
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-0
|
|
290
|
+
/// @group col-gap
|
|
291
|
+
/// @contextType css
|
|
292
|
+
|
|
293
|
+
/// Sets column gap to 1 pixel.
|
|
294
|
+
/// @example --kendo-col-gap: 1px;
|
|
295
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-1px
|
|
296
|
+
/// @group col-gap
|
|
297
|
+
/// @contextType css
|
|
298
|
+
|
|
299
|
+
/// Sets column gap to 0.125rem (2px at 16px base).
|
|
300
|
+
/// @example --kendo-col-gap: 0.125rem;
|
|
301
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-0\.5
|
|
302
|
+
/// @group col-gap
|
|
303
|
+
/// @contextType css
|
|
304
|
+
|
|
305
|
+
/// Sets column gap to 0.25rem (4px at 16px base).
|
|
306
|
+
/// @example --kendo-col-gap: 0.25rem;
|
|
307
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-1
|
|
308
|
+
/// @group col-gap
|
|
309
|
+
/// @contextType css
|
|
310
|
+
|
|
311
|
+
/// Sets column gap to 0.375rem (6px at 16px base).
|
|
312
|
+
/// @example --kendo-col-gap: 0.375rem;
|
|
313
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-1\.5
|
|
314
|
+
/// @group col-gap
|
|
315
|
+
/// @contextType css
|
|
316
|
+
|
|
317
|
+
/// Sets column gap to 0.5rem (8px at 16px base).
|
|
318
|
+
/// @example --kendo-col-gap: 0.5rem;
|
|
319
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-2
|
|
320
|
+
/// @group col-gap
|
|
321
|
+
/// @contextType css
|
|
322
|
+
|
|
323
|
+
/// Sets column gap to 0.625rem (10px at 16px base).
|
|
324
|
+
/// @example --kendo-col-gap: 0.625rem;
|
|
325
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-2\.5
|
|
326
|
+
/// @group col-gap
|
|
327
|
+
/// @contextType css
|
|
328
|
+
|
|
329
|
+
/// Sets column gap to 0.75rem (12px at 16px base).
|
|
330
|
+
/// @example --kendo-col-gap: 0.75rem;
|
|
331
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-3
|
|
332
|
+
/// @group col-gap
|
|
333
|
+
/// @contextType css
|
|
334
|
+
|
|
335
|
+
/// Sets column gap to 0.875rem (14px at 16px base).
|
|
336
|
+
/// @example --kendo-col-gap: 0.875rem;
|
|
337
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-3\.5
|
|
338
|
+
/// @group col-gap
|
|
339
|
+
/// @contextType css
|
|
340
|
+
|
|
341
|
+
/// Sets column gap to 1rem (16px at 16px base).
|
|
342
|
+
/// @example --kendo-col-gap: 1rem;
|
|
343
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-4
|
|
344
|
+
/// @group col-gap
|
|
345
|
+
/// @contextType css
|
|
346
|
+
|
|
347
|
+
/// Sets column gap to 1.125rem (18px at 16px base).
|
|
348
|
+
/// @example --kendo-col-gap: 1.125rem;
|
|
349
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-4\.5
|
|
350
|
+
/// @group col-gap
|
|
351
|
+
/// @contextType css
|
|
352
|
+
|
|
353
|
+
/// Sets column gap to 1.25rem (20px at 16px base).
|
|
354
|
+
/// @example --kendo-col-gap: 1.25rem;
|
|
355
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-5
|
|
356
|
+
/// @group col-gap
|
|
357
|
+
/// @contextType css
|
|
358
|
+
|
|
359
|
+
/// Sets column gap to 1.375rem (22px at 16px base).
|
|
360
|
+
/// @example --kendo-col-gap: 1.375rem;
|
|
361
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-5\.5
|
|
362
|
+
/// @group col-gap
|
|
363
|
+
/// @contextType css
|
|
364
|
+
|
|
365
|
+
/// Sets column gap to 1.5rem (24px at 16px base).
|
|
366
|
+
/// @example --kendo-col-gap: 1.5rem;
|
|
367
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-6
|
|
368
|
+
/// @group col-gap
|
|
369
|
+
/// @contextType css
|
|
370
|
+
|
|
371
|
+
/// Sets column gap to 1.625rem (26px at 16px base).
|
|
372
|
+
/// @example --kendo-col-gap: 1.625rem;
|
|
373
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-6\.5
|
|
374
|
+
/// @group col-gap
|
|
375
|
+
/// @contextType css
|
|
376
|
+
|
|
377
|
+
/// Sets column gap to 1.75rem (28px at 16px base).
|
|
378
|
+
/// @example --kendo-col-gap: 1.75rem;
|
|
379
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-7
|
|
380
|
+
/// @group col-gap
|
|
381
|
+
/// @contextType css
|
|
382
|
+
|
|
383
|
+
/// Sets column gap to 1.875rem (30px at 16px base).
|
|
384
|
+
/// @example --kendo-col-gap: 1.875rem;
|
|
385
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-7\.5
|
|
386
|
+
/// @group col-gap
|
|
387
|
+
/// @contextType css
|
|
388
|
+
|
|
389
|
+
/// Sets column gap to 2rem (32px at 16px base).
|
|
390
|
+
/// @example --kendo-col-gap: 2rem;
|
|
391
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-8
|
|
392
|
+
/// @group col-gap
|
|
393
|
+
/// @contextType css
|
|
394
|
+
|
|
395
|
+
/// Sets column gap to 2.25rem (36px at 16px base).
|
|
396
|
+
/// @example --kendo-col-gap: 2.25rem;
|
|
397
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-9
|
|
398
|
+
/// @group col-gap
|
|
399
|
+
/// @contextType css
|
|
400
|
+
|
|
401
|
+
/// Sets column gap to 2.5rem (40px at 16px base).
|
|
402
|
+
/// @example --kendo-col-gap: 2.5rem;
|
|
403
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-10
|
|
404
|
+
/// @group col-gap
|
|
405
|
+
/// @contextType css
|
|
406
|
+
|
|
407
|
+
/// Sets column gap to 2.75rem (44px at 16px base).
|
|
408
|
+
/// @example --kendo-col-gap: 2.75rem;
|
|
409
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-11
|
|
410
|
+
/// @group col-gap
|
|
411
|
+
/// @contextType css
|
|
412
|
+
|
|
413
|
+
/// Sets column gap to 3rem (48px at 16px base).
|
|
414
|
+
/// @example --kendo-col-gap: 3rem;
|
|
415
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-12
|
|
416
|
+
/// @group col-gap
|
|
417
|
+
/// @contextType css
|
|
418
|
+
|
|
419
|
+
/// Sets column gap to 3.25rem (52px at 16px base).
|
|
420
|
+
/// @example --kendo-col-gap: 3.25rem;
|
|
421
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-13
|
|
422
|
+
/// @group col-gap
|
|
423
|
+
/// @contextType css
|
|
424
|
+
|
|
425
|
+
/// Sets column gap to 3.5rem (56px at 16px base).
|
|
426
|
+
/// @example --kendo-col-gap: 3.5rem;
|
|
427
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-14
|
|
428
|
+
/// @group col-gap
|
|
429
|
+
/// @contextType css
|
|
430
|
+
|
|
431
|
+
/// Sets column gap to 3.75rem (60px at 16px base).
|
|
432
|
+
/// @example --kendo-col-gap: 3.75rem;
|
|
433
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-15
|
|
434
|
+
/// @group col-gap
|
|
435
|
+
/// @contextType css
|
|
436
|
+
|
|
437
|
+
/// Sets column gap to 4rem (64px at 16px base).
|
|
438
|
+
/// @example --kendo-col-gap: 4rem;
|
|
439
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-16
|
|
440
|
+
/// @group col-gap
|
|
441
|
+
/// @contextType css
|
|
442
|
+
|
|
443
|
+
/// Sets column gap to 4.25rem (68px at 16px base).
|
|
444
|
+
/// @example --kendo-col-gap: 4.25rem;
|
|
445
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-17
|
|
446
|
+
/// @group col-gap
|
|
447
|
+
/// @contextType css
|
|
448
|
+
|
|
449
|
+
/// Sets column gap to 4.5rem (72px at 16px base).
|
|
450
|
+
/// @example --kendo-col-gap: 4.5rem;
|
|
451
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-18
|
|
452
|
+
/// @group col-gap
|
|
453
|
+
/// @contextType css
|
|
454
|
+
|
|
455
|
+
/// Sets column gap to 4.75rem (76px at 16px base).
|
|
456
|
+
/// @example --kendo-col-gap: 4.75rem;
|
|
457
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-19
|
|
458
|
+
/// @group col-gap
|
|
459
|
+
/// @contextType css
|
|
460
|
+
|
|
461
|
+
/// Sets column gap to 5rem (80px at 16px base).
|
|
462
|
+
/// @example --kendo-col-gap: 5rem;
|
|
463
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-20
|
|
464
|
+
/// @group col-gap
|
|
465
|
+
/// @contextType css
|
|
466
|
+
|
|
467
|
+
/// Sets column gap to 5.25rem (84px at 16px base).
|
|
468
|
+
/// @example --kendo-col-gap: 5.25rem;
|
|
469
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-21
|
|
470
|
+
/// @group col-gap
|
|
471
|
+
/// @contextType css
|
|
472
|
+
|
|
473
|
+
/// Sets column gap to 5.5rem (88px at 16px base).
|
|
474
|
+
/// @example --kendo-col-gap: 5.5rem;
|
|
475
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-22
|
|
476
|
+
/// @group col-gap
|
|
477
|
+
/// @contextType css
|
|
478
|
+
|
|
479
|
+
/// Sets column gap to 5.75rem (92px at 16px base).
|
|
480
|
+
/// @example --kendo-col-gap: 5.75rem;
|
|
481
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-23
|
|
482
|
+
/// @group col-gap
|
|
483
|
+
/// @contextType css
|
|
484
|
+
|
|
485
|
+
/// Sets column gap to 6rem (96px at 16px base).
|
|
486
|
+
/// @example --kendo-col-gap: 6rem;
|
|
487
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-24
|
|
488
|
+
/// @group col-gap
|
|
489
|
+
/// @contextType css
|
|
490
|
+
|
|
491
|
+
/// Sets column gap to 7rem (112px at 16px base).
|
|
492
|
+
/// @example --kendo-col-gap: 7rem;
|
|
493
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-25
|
|
494
|
+
/// @group col-gap
|
|
495
|
+
/// @contextType css
|
|
496
|
+
|
|
497
|
+
/// Sets column gap to 8rem (128px at 16px base).
|
|
498
|
+
/// @example --kendo-col-gap: 8rem;
|
|
499
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-26
|
|
500
|
+
/// @group col-gap
|
|
501
|
+
/// @contextType css
|
|
502
|
+
|
|
503
|
+
/// Sets column gap to 9rem (144px at 16px base).
|
|
504
|
+
/// @example --kendo-col-gap: 9rem;
|
|
505
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-27
|
|
506
|
+
/// @group col-gap
|
|
507
|
+
/// @contextType css
|
|
508
|
+
|
|
509
|
+
/// Sets column gap to 10rem (160px at 16px base).
|
|
510
|
+
/// @example --kendo-col-gap: 10rem;
|
|
511
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-28
|
|
512
|
+
/// @group col-gap
|
|
513
|
+
/// @contextType css
|
|
514
|
+
|
|
515
|
+
/// Sets column gap to 11rem (176px at 16px base).
|
|
516
|
+
/// @example --kendo-col-gap: 11rem;
|
|
517
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-29
|
|
518
|
+
/// @group col-gap
|
|
519
|
+
/// @contextType css
|
|
520
|
+
|
|
521
|
+
/// Sets column gap to 12rem (192px at 16px base).
|
|
522
|
+
/// @example --kendo-col-gap: 12rem;
|
|
523
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-30
|
|
524
|
+
/// @group col-gap
|
|
525
|
+
/// @contextType css
|
|
526
|
+
|
|
527
|
+
/// Sets column gap to extra small spacing.
|
|
528
|
+
/// @example --kendo-col-gap: var(--kendo-spacing-1, 0.25rem);
|
|
529
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-xs
|
|
530
|
+
/// @group col-gap
|
|
531
|
+
/// @contextType css
|
|
532
|
+
|
|
533
|
+
/// Sets column gap to small spacing.
|
|
534
|
+
/// @example --kendo-col-gap: var(--kendo-spacing-2, 0.5rem);
|
|
535
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-sm
|
|
536
|
+
/// @group col-gap
|
|
537
|
+
/// @contextType css
|
|
538
|
+
|
|
539
|
+
/// Sets column gap to medium spacing.
|
|
540
|
+
/// @example --kendo-col-gap: var(--kendo-spacing-3, 0.75rem);
|
|
541
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-md
|
|
542
|
+
/// @group col-gap
|
|
543
|
+
/// @contextType css
|
|
544
|
+
|
|
545
|
+
/// Sets column gap to large spacing.
|
|
546
|
+
/// @example --kendo-col-gap: var(--kendo-spacing-4, 1rem);
|
|
547
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-lg
|
|
548
|
+
/// @group col-gap
|
|
549
|
+
/// @contextType css
|
|
550
|
+
|
|
551
|
+
/// Sets column gap to extra large spacing.
|
|
552
|
+
/// @example --kendo-col-gap: var(--kendo-spacing-6, 1.5rem);
|
|
553
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-xl
|
|
554
|
+
/// @group col-gap
|
|
555
|
+
/// @contextType css
|
|
556
|
+
|
|
557
|
+
/// Sets column gap to thin spacing.
|
|
558
|
+
/// @example --kendo-col-gap: var(--kendo-spacing-0\.5, 0.125rem);
|
|
559
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-thin
|
|
560
|
+
/// @group col-gap
|
|
561
|
+
/// @contextType css
|
|
562
|
+
|
|
563
|
+
/// Sets column gap to hair spacing.
|
|
564
|
+
/// @example --kendo-col-gap: var(--kendo-spacing-1px, 1px);
|
|
565
|
+
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-hair
|
|
566
|
+
/// @group col-gap
|
|
567
|
+
/// @contextType css
|
|
568
|
+
|
|
1
569
|
@use "../_globals.scss" as *;
|
|
2
570
|
@use "@progress/kendo-theme-core/scss/functions/index.import.scss" as *;
|
|
3
571
|
@use "sass:map";
|