@progress/kendo-theme-utils 6.2.1-dev.0 → 6.2.1-dev.151
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/all.css +5166 -1018
- package/dist/all.scss +5365 -511
- package/dist/meta/sassdoc-data.json +25209 -1198
- package/dist/meta/sassdoc-raw-data.json +25209 -1198
- package/dist/meta/variables.json +1 -1
- package/package.json +3 -3
- package/scss/_variables.scss +188 -32
- package/scss/background/_background-clip.scss +31 -0
- package/scss/background/_background-color.scss +23 -1
- package/scss/background/index.import.scss +2 -0
- package/scss/border/_border-color.scss +30 -1
- package/scss/border/_border-radius.scss +323 -1
- package/scss/border/_border-style.scss +246 -1
- package/scss/border/_border-width.scss +211 -1
- package/scss/border/_outline-color.scss +29 -1
- package/scss/border/_outline-offset.scss +29 -1
- package/scss/border/_outline-style.scss +35 -1
- package/scss/border/_outline-width.scss +29 -1
- package/scss/effects/_opacity.scss +19 -0
- package/scss/effects/index.import.scss +7 -0
- package/scss/filter/_backdrop.scss +37 -0
- package/scss/filter/index.import.scss +5 -0
- package/scss/flex-grid/_align-content.scss +77 -1
- package/scss/flex-grid/_align-items.scss +71 -1
- package/scss/flex-grid/_align-self.scss +77 -1
- package/scss/flex-grid/_flex-basis.scss +4 -2
- package/scss/flex-grid/_flex-direction.scss +8 -4
- package/scss/flex-grid/_flex-grow.scss +4 -2
- package/scss/flex-grid/_flex-shrink.scss +4 -2
- package/scss/flex-grid/_flex-wrap.scss +6 -3
- package/scss/flex-grid/_flex.scss +7 -3
- package/scss/flex-grid/_gap.scss +179 -1
- package/scss/flex-grid/_grid-auto-columns.scss +23 -1
- package/scss/flex-grid/_grid-auto-flow.scss +35 -1
- package/scss/flex-grid/_grid-auto-rows.scss +23 -1
- package/scss/flex-grid/_grid-column-start-end.scss +17 -1
- package/scss/flex-grid/_grid-row-start-end.scss +17 -1
- package/scss/flex-grid/_grid-template-columns.scss +17 -1
- package/scss/flex-grid/_grid-template-rows.scss +17 -1
- package/scss/flex-grid/_justify-content.scss +77 -1
- package/scss/flex-grid/_justify-items.scss +83 -1
- package/scss/flex-grid/_justify-self.scss +77 -1
- package/scss/flex-grid/_order.scss +9 -0
- package/scss/flex-grid/_place-content.scss +77 -1
- package/scss/flex-grid/_place-items.scss +59 -1
- package/scss/flex-grid/_place-self.scss +65 -1
- package/scss/index.import.scss +6 -2
- package/scss/interactivity/_appearance.scss +4 -2
- package/scss/interactivity/_cursor.scss +23 -1
- package/scss/interactivity/_pointer-events.scss +4 -4
- package/scss/interactivity/_resize.scss +8 -6
- package/scss/interactivity/_scroll.scss +325 -1
- package/scss/interactivity/_touch-action.scss +52 -4
- package/scss/interactivity/_user-select.scss +10 -7
- package/scss/layout/_aspect-ratio.scss +8 -6
- package/scss/layout/_box-sizing.scss +19 -0
- package/scss/layout/_clear.scss +8 -6
- package/scss/layout/_columns.scss +85 -0
- package/scss/layout/_display.scss +38 -9
- package/scss/layout/_float.scss +6 -5
- package/scss/layout/_object-fit.scss +43 -0
- package/scss/layout/_object-position.scss +61 -0
- package/scss/layout/_overflow.scss +22 -6
- package/scss/layout/_placement.scss +174 -0
- package/scss/layout/_position.scss +10 -111
- package/scss/layout/_visibility.scss +17 -2
- package/scss/layout/_zindex.scss +41 -1
- package/scss/layout/index.import.scss +10 -0
- package/scss/sizing/_height.scss +143 -1
- package/scss/sizing/_width.scss +143 -1
- package/scss/spacing/_margin.scss +545 -1
- package/scss/spacing/_padding.scss +545 -1
- package/scss/svg/_fill.scss +43 -0
- package/scss/svg/_stroke.scss +43 -0
- package/scss/svg/index.import.scss +7 -0
- package/scss/table/_border-collapse.scss +11 -1
- package/scss/table/_table-layout.scss +6 -6
- package/scss/transform/_flip.scss +4 -2
- package/scss/transform/_origin.scss +53 -1
- package/scss/transform/_rotate.scss +16 -8
- package/scss/transform/_scale.scss +6 -3
- package/scss/transform/_skew.scss +23 -1
- package/scss/transform/_translate.scss +18 -9
- package/scss/typography/_font-size.scss +29 -1
- package/scss/typography/_font-style.scss +11 -1
- package/scss/typography/_font-weight.scss +53 -1
- package/scss/typography/_list-style.scss +25 -0
- package/scss/typography/_text-align.scss +8 -6
- package/scss/typography/_text-decoration.scss +31 -0
- package/scss/typography/_text-overflow.scss +12 -0
- package/scss/typography/_text-transform.scss +9 -8
- package/scss/typography/_vertical-align.scss +55 -0
- package/scss/typography/_white-space.scss +12 -8
- package/scss/typography/index.import.scss +6 -3
|
@@ -1,4 +1,548 @@
|
|
|
1
|
-
|
|
1
|
+
/// This is equivalent to `padding: 0;`.
|
|
2
|
+
/// @example padding: 0;
|
|
3
|
+
/// @name .k-p-0
|
|
4
|
+
/// @group padding
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// This is equivalent to `padding: 1px;`.
|
|
8
|
+
/// @example padding: 1px;
|
|
9
|
+
/// @name .k-p-1px
|
|
10
|
+
/// @group padding
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// This is equivalent to `padding: 0.25rem;`.
|
|
14
|
+
/// @example padding: 0.25rem;
|
|
15
|
+
/// @name .k-p-1
|
|
16
|
+
/// @group padding
|
|
17
|
+
/// @contextType css
|
|
18
|
+
|
|
19
|
+
/// This is equivalent to `padding: -1px;`.
|
|
20
|
+
/// @example padding: -1px;
|
|
21
|
+
/// @name .k-p--1px
|
|
22
|
+
/// @group padding
|
|
23
|
+
/// @contextType css
|
|
24
|
+
|
|
25
|
+
/// This is equivalent to `padding: -0.25rem;`.
|
|
26
|
+
/// @example padding: -0.25rem;
|
|
27
|
+
/// @name .k-p--1
|
|
28
|
+
/// @group padding
|
|
29
|
+
/// @contextType css
|
|
30
|
+
|
|
31
|
+
/// This is equivalent to `padding: 0.25rem;`.
|
|
32
|
+
/// @example padding: 0.25rem;
|
|
33
|
+
/// @name .k-p-xs
|
|
34
|
+
/// @group padding
|
|
35
|
+
/// @contextType css
|
|
36
|
+
|
|
37
|
+
/// This is equivalent to `padding: 0.5rem;`.
|
|
38
|
+
/// @example padding: 0.5rem;
|
|
39
|
+
/// @name .k-p-sm
|
|
40
|
+
/// @group padding
|
|
41
|
+
/// @contextType css
|
|
42
|
+
|
|
43
|
+
/// This is equivalent to `padding: 0.75rem;`.
|
|
44
|
+
/// @example padding: 0.75rem;
|
|
45
|
+
/// @name .k-p-pd
|
|
46
|
+
/// @group padding
|
|
47
|
+
/// @contextType css
|
|
48
|
+
|
|
49
|
+
/// This is equivalent to `padding: 1rem;`.
|
|
50
|
+
/// @example padding: 1rem;
|
|
51
|
+
/// @name .k-p-lg
|
|
52
|
+
/// @group padding
|
|
53
|
+
/// @contextType css
|
|
54
|
+
|
|
55
|
+
/// This is equivalent to `padding: 1.5rem;`.
|
|
56
|
+
/// @example padding: 1.5rem;
|
|
57
|
+
/// @name .k-p-xl
|
|
58
|
+
/// @group padding
|
|
59
|
+
/// @contextType css
|
|
60
|
+
|
|
61
|
+
/// This is equivalent to `padding: 0.125rem;`.
|
|
62
|
+
/// @example padding: 0.125rem;
|
|
63
|
+
/// @name .k-p-thin
|
|
64
|
+
/// @group padding
|
|
65
|
+
/// @contextType css
|
|
66
|
+
|
|
67
|
+
/// This is equivalent to `padding: 1px;`.
|
|
68
|
+
/// @example padding: 1px;
|
|
69
|
+
/// @name .k-p-hair
|
|
70
|
+
/// @group padding
|
|
71
|
+
/// @contextType css
|
|
72
|
+
|
|
73
|
+
/// This is equivalent to `padding: auto;`.
|
|
74
|
+
/// @example padding: auto;
|
|
75
|
+
/// @name .k-p-auto
|
|
76
|
+
/// @group padding
|
|
77
|
+
/// @contextType css
|
|
78
|
+
|
|
79
|
+
/// This is equivalent to `padding-top: 0;`.
|
|
80
|
+
/// @example padding-top: 0;
|
|
81
|
+
/// @name .k-pt-0
|
|
82
|
+
/// @group padding
|
|
83
|
+
/// @contextType css
|
|
84
|
+
|
|
85
|
+
/// This is equivalent to `padding-top: 1px;`.
|
|
86
|
+
/// @example padding-top: 1px;
|
|
87
|
+
/// @name .k-pt-1px
|
|
88
|
+
/// @group padding
|
|
89
|
+
/// @contextType css
|
|
90
|
+
|
|
91
|
+
/// This is equivalent to `padding-top: 0.25rem;`.
|
|
92
|
+
/// @example padding-top: 0.25rem;
|
|
93
|
+
/// @name .k-pt-1
|
|
94
|
+
/// @group padding
|
|
95
|
+
/// @contextType css
|
|
96
|
+
|
|
97
|
+
/// This is equivalent to `padding-top: -1px;`.
|
|
98
|
+
/// @example padding-top: -1px;
|
|
99
|
+
/// @name .k-pt--1px
|
|
100
|
+
/// @group padding
|
|
101
|
+
/// @contextType css
|
|
102
|
+
|
|
103
|
+
/// This is equivalent to `padding-top: -0.25rem;`.
|
|
104
|
+
/// @example padding-top: -0.25rem;
|
|
105
|
+
/// @name .k-pt--1
|
|
106
|
+
/// @group padding
|
|
107
|
+
/// @contextType css
|
|
108
|
+
|
|
109
|
+
/// This is equivalent to `padding-top: 0.25rem;`.
|
|
110
|
+
/// @example padding-top: 0.25rem;
|
|
111
|
+
/// @name .k-pt-xs
|
|
112
|
+
/// @group padding
|
|
113
|
+
/// @contextType css
|
|
114
|
+
|
|
115
|
+
/// This is equivalent to `padding-top: 0.5rem;`.
|
|
116
|
+
/// @example padding-top: 0.5rem;
|
|
117
|
+
/// @name .k-pt-sm
|
|
118
|
+
/// @group padding
|
|
119
|
+
/// @contextType css
|
|
120
|
+
|
|
121
|
+
/// This is equivalent to `padding-top: 0.75rem;`.
|
|
122
|
+
/// @example padding-top: 0.75rem;
|
|
123
|
+
/// @name .k-pt-md
|
|
124
|
+
/// @group padding
|
|
125
|
+
/// @contextType css
|
|
126
|
+
|
|
127
|
+
/// This is equivalent to `padding-top: 1rem;`.
|
|
128
|
+
/// @example padding-top: 1rem;
|
|
129
|
+
/// @name .k-pt-lg
|
|
130
|
+
/// @group padding
|
|
131
|
+
/// @contextType css
|
|
132
|
+
|
|
133
|
+
/// This is equivalent to `padding-top: 1.5rem;`.
|
|
134
|
+
/// @example padding-top: 1.5rem;
|
|
135
|
+
/// @name .k-pt-xl
|
|
136
|
+
/// @group padding
|
|
137
|
+
/// @contextType css
|
|
138
|
+
|
|
139
|
+
/// This is equivalent to `padding-top: 0.125rem;`.
|
|
140
|
+
/// @example padding-top: 0.125rem;
|
|
141
|
+
/// @name .k-pt-thin
|
|
142
|
+
/// @group padding
|
|
143
|
+
/// @contextType css
|
|
144
|
+
|
|
145
|
+
/// This is equivalent to `padding-top: 1px;`.
|
|
146
|
+
/// @example padding-top: 1px;
|
|
147
|
+
/// @name .k-pt-hair
|
|
148
|
+
/// @group padding
|
|
149
|
+
/// @contextType css
|
|
150
|
+
|
|
151
|
+
/// This is equivalent to `padding-top: auto;`.
|
|
152
|
+
/// @example padding-top: auto;
|
|
153
|
+
/// @name .k-pt-auto
|
|
154
|
+
/// @group padding
|
|
155
|
+
/// @contextType css
|
|
156
|
+
|
|
157
|
+
/// This is equivalent to `padding-right: 0;`.
|
|
158
|
+
/// @example padding-right: 0;
|
|
159
|
+
/// @name .k-pr-0
|
|
160
|
+
/// @group padding
|
|
161
|
+
/// @contextType css
|
|
162
|
+
|
|
163
|
+
/// This is equivalent to `padding-right: 1px;`.
|
|
164
|
+
/// @example padding-right: 1px;
|
|
165
|
+
/// @name .k-pr-1px
|
|
166
|
+
/// @group padding
|
|
167
|
+
/// @contextType css
|
|
168
|
+
|
|
169
|
+
/// This is equivalent to `padding-right: 0.25rem;`.
|
|
170
|
+
/// @example padding-right: 0.25rem;
|
|
171
|
+
/// @name .k-pr-1
|
|
172
|
+
/// @group padding
|
|
173
|
+
/// @contextType css
|
|
174
|
+
|
|
175
|
+
/// This is equivalent to `padding-right: -1px;`.
|
|
176
|
+
/// @example padding-right: -1px;
|
|
177
|
+
/// @name .k-pr--1px
|
|
178
|
+
/// @group padding
|
|
179
|
+
/// @contextType css
|
|
180
|
+
|
|
181
|
+
/// This is equivalent to `padding-right: -0.25rem;`.
|
|
182
|
+
/// @example padding-right: -0.25rem;
|
|
183
|
+
/// @name .k-pr--1
|
|
184
|
+
/// @group padding
|
|
185
|
+
/// @contextType css
|
|
186
|
+
|
|
187
|
+
/// This is equivalent to `padding-right: 0.25rem;`.
|
|
188
|
+
/// @example padding-right: 0.25rem;
|
|
189
|
+
/// @name .k-pr-xs
|
|
190
|
+
/// @group padding
|
|
191
|
+
/// @contextType css
|
|
192
|
+
|
|
193
|
+
/// This is equivalent to `padding-right: 0.5rem;`.
|
|
194
|
+
/// @example padding-right: 0.5rem;
|
|
195
|
+
/// @name .k-pr-sm
|
|
196
|
+
/// @group padding
|
|
197
|
+
/// @contextType css
|
|
198
|
+
|
|
199
|
+
/// This is equivalent to `padding-right: 0.75rem;`.
|
|
200
|
+
/// @example padding-right: 0.75rem;
|
|
201
|
+
/// @name .k-pr-md
|
|
202
|
+
/// @group padding
|
|
203
|
+
/// @contextType css
|
|
204
|
+
|
|
205
|
+
/// This is equivalent to `padding-right: 1rem;`.
|
|
206
|
+
/// @example padding-right: 1rem;
|
|
207
|
+
/// @name .k-pr-lg
|
|
208
|
+
/// @group padding
|
|
209
|
+
/// @contextType css
|
|
210
|
+
|
|
211
|
+
/// This is equivalent to `padding-right: 1.5rem;`.
|
|
212
|
+
/// @example padding-right: 1.5rem;
|
|
213
|
+
/// @name .k-pr-xl
|
|
214
|
+
/// @group padding
|
|
215
|
+
/// @contextType css
|
|
216
|
+
|
|
217
|
+
/// This is equivalent to `padding-right: 0.125rem;`.
|
|
218
|
+
/// @example padding-right: 0.125rem;
|
|
219
|
+
/// @name .k-pr-thin
|
|
220
|
+
/// @group padding
|
|
221
|
+
/// @contextType css
|
|
222
|
+
|
|
223
|
+
/// This is equivalent to `padding-right: 1px;`.
|
|
224
|
+
/// @example padding-right: 1px;
|
|
225
|
+
/// @name .k-pr-hair
|
|
226
|
+
/// @group padding
|
|
227
|
+
/// @contextType css
|
|
228
|
+
|
|
229
|
+
/// This is equivalent to `padding-right: auto;`.
|
|
230
|
+
/// @example padding-right: auto;
|
|
231
|
+
/// @name .k-pr-auto
|
|
232
|
+
/// @group padding
|
|
233
|
+
/// @contextType css
|
|
234
|
+
|
|
235
|
+
/// This is equivalent to `padding-bottom: 0;`.
|
|
236
|
+
/// @example padding-bottom: 0;
|
|
237
|
+
/// @name .k-pb-0
|
|
238
|
+
/// @group padding
|
|
239
|
+
/// @contextType css
|
|
240
|
+
|
|
241
|
+
/// This is equivalent to `padding-bottom: 1px;`.
|
|
242
|
+
/// @example padding-bottom: 1px;
|
|
243
|
+
/// @name .k-pb-1px
|
|
244
|
+
/// @group padding
|
|
245
|
+
/// @contextType css
|
|
246
|
+
|
|
247
|
+
/// This is equivalent to `padding-bottom: 0.25rem;`.
|
|
248
|
+
/// @example padding-bottom: 0.25rem;
|
|
249
|
+
/// @name .k-pb-1
|
|
250
|
+
/// @group padding
|
|
251
|
+
/// @contextType css
|
|
252
|
+
|
|
253
|
+
/// This is equivalent to `padding-bottom: -1px;`.
|
|
254
|
+
/// @example padding-bottom: -1px;
|
|
255
|
+
/// @name .k-pb--1px
|
|
256
|
+
/// @group padding
|
|
257
|
+
/// @contextType css
|
|
258
|
+
|
|
259
|
+
/// This is equivalent to `padding-bottom: -0.25rem;`.
|
|
260
|
+
/// @example padding-bottom: -0.25rem;
|
|
261
|
+
/// @name .k-pb--1
|
|
262
|
+
/// @group padding
|
|
263
|
+
/// @contextType css
|
|
264
|
+
|
|
265
|
+
/// This is equivalent to `padding-bottom: 0.25rem;`.
|
|
266
|
+
/// @example padding-bottom: 0.25rem;
|
|
267
|
+
/// @name .k-pb-xs
|
|
268
|
+
/// @group padding
|
|
269
|
+
/// @contextType css
|
|
270
|
+
|
|
271
|
+
/// This is equivalent to `padding-bottom: 0.5rem;`.
|
|
272
|
+
/// @example padding-bottom: 0.5rem;
|
|
273
|
+
/// @name .k-pb-sm
|
|
274
|
+
/// @group padding
|
|
275
|
+
/// @contextType css
|
|
276
|
+
|
|
277
|
+
/// This is equivalent to `padding-bottom: 0.75rem;`.
|
|
278
|
+
/// @example padding-bottom: 0.75rem;
|
|
279
|
+
/// @name .k-pb-md
|
|
280
|
+
/// @group padding
|
|
281
|
+
/// @contextType css
|
|
282
|
+
|
|
283
|
+
/// This is equivalent to `padding-bottom: 1rem;`.
|
|
284
|
+
/// @example padding-bottom: 1rem;
|
|
285
|
+
/// @name .k-pb-lg
|
|
286
|
+
/// @group padding
|
|
287
|
+
/// @contextType css
|
|
288
|
+
|
|
289
|
+
/// This is equivalent to `padding-bottom: 1.5rem;`.
|
|
290
|
+
/// @example padding-bottom: 1.5rem;
|
|
291
|
+
/// @name .k-pb-xl
|
|
292
|
+
/// @group padding
|
|
293
|
+
/// @contextType css
|
|
294
|
+
|
|
295
|
+
/// This is equivalent to `padding-bottom: 0.125rem;`.
|
|
296
|
+
/// @example padding-bottom: 0.125rem;
|
|
297
|
+
/// @name .k-pb-thin
|
|
298
|
+
/// @group padding
|
|
299
|
+
/// @contextType css
|
|
300
|
+
|
|
301
|
+
/// This is equivalent to `padding-bottom: 1px;`.
|
|
302
|
+
/// @example padding-bottom: 1px;
|
|
303
|
+
/// @name .k-pb-hair
|
|
304
|
+
/// @group padding
|
|
305
|
+
/// @contextType css
|
|
306
|
+
|
|
307
|
+
/// This is equivalent to `padding-bottom: auto;`.
|
|
308
|
+
/// @example padding-bottom: auto;
|
|
309
|
+
/// @name .k-pb-auto
|
|
310
|
+
/// @group padding
|
|
311
|
+
/// @contextType css
|
|
312
|
+
|
|
313
|
+
/// This is equivalent to `padding-left: 0;`.
|
|
314
|
+
/// @example padding-left: 0;
|
|
315
|
+
/// @name .k-pl-0
|
|
316
|
+
/// @group padding
|
|
317
|
+
/// @contextType css
|
|
318
|
+
|
|
319
|
+
/// This is equivalent to `padding-left: 1px;`.
|
|
320
|
+
/// @example padding-left: 1px;
|
|
321
|
+
/// @name .k-pl-1px
|
|
322
|
+
/// @group padding
|
|
323
|
+
/// @contextType css
|
|
324
|
+
|
|
325
|
+
/// This is equivalent to `padding-left: 0.25rem;`.
|
|
326
|
+
/// @example padding-left: 0.25rem;
|
|
327
|
+
/// @name .k-pl-1
|
|
328
|
+
/// @group padding
|
|
329
|
+
/// @contextType css
|
|
330
|
+
|
|
331
|
+
/// This is equivalent to `padding-left: -1px;`.
|
|
332
|
+
/// @example padding-left: -1px;
|
|
333
|
+
/// @name .k-pl--1px
|
|
334
|
+
/// @group padding
|
|
335
|
+
/// @contextType css
|
|
336
|
+
|
|
337
|
+
/// This is equivalent to `padding-left: -0.25rem;`.
|
|
338
|
+
/// @example padding-left: -0.25rem;
|
|
339
|
+
/// @name .k-pl--1
|
|
340
|
+
/// @group padding
|
|
341
|
+
/// @contextType css
|
|
342
|
+
|
|
343
|
+
/// This is equivalent to `padding-left: 0.25rem;`.
|
|
344
|
+
/// @example padding-left: 0.25rem;
|
|
345
|
+
/// @name .k-pl-xs
|
|
346
|
+
/// @group padding
|
|
347
|
+
/// @contextType css
|
|
348
|
+
|
|
349
|
+
/// This is equivalent to `padding-left: 0.5rem;`.
|
|
350
|
+
/// @example padding-left: 0.5rem;
|
|
351
|
+
/// @name .k-pl-sm
|
|
352
|
+
/// @group padding
|
|
353
|
+
/// @contextType css
|
|
354
|
+
|
|
355
|
+
/// This is equivalent to `padding-left: 0.75rem;`.
|
|
356
|
+
/// @example padding-left: 0.75rem;
|
|
357
|
+
/// @name .k-pl-md
|
|
358
|
+
/// @group padding
|
|
359
|
+
/// @contextType css
|
|
360
|
+
|
|
361
|
+
/// This is equivalent to `padding-left: 1rem;`.
|
|
362
|
+
/// @example padding-left: 1rem;
|
|
363
|
+
/// @name .k-pl-lg
|
|
364
|
+
/// @group padding
|
|
365
|
+
/// @contextType css
|
|
366
|
+
|
|
367
|
+
/// This is equivalent to `padding-left: 1.5rem;`.
|
|
368
|
+
/// @example padding-left: 1.5rem;
|
|
369
|
+
/// @name .k-pl-xl
|
|
370
|
+
/// @group padding
|
|
371
|
+
/// @contextType css
|
|
372
|
+
|
|
373
|
+
/// This is equivalent to `padding-left: 0.125rem;`.
|
|
374
|
+
/// @example padding-left: 0.125rem;
|
|
375
|
+
/// @name .k-pl-thin
|
|
376
|
+
/// @group padding
|
|
377
|
+
/// @contextType css
|
|
378
|
+
|
|
379
|
+
/// This is equivalent to `padding-left: 1px;`.
|
|
380
|
+
/// @example padding-left: 1px;
|
|
381
|
+
/// @name .k-pl-hair
|
|
382
|
+
/// @group padding
|
|
383
|
+
/// @contextType css
|
|
384
|
+
|
|
385
|
+
/// This is equivalent to `padding-left: auto;`.
|
|
386
|
+
/// @example padding-left: auto;
|
|
387
|
+
/// @name .k-pl-auto
|
|
388
|
+
/// @group padding
|
|
389
|
+
/// @contextType css
|
|
390
|
+
|
|
391
|
+
/// This is equivalent to `padding-inline: 0;`.
|
|
392
|
+
/// @example padding-inline: 0;
|
|
393
|
+
/// @name .k-px-0
|
|
394
|
+
/// @group padding
|
|
395
|
+
/// @contextType css
|
|
396
|
+
|
|
397
|
+
/// This is equivalent to `padding-inline: 1px;`.
|
|
398
|
+
/// @example padding-inline: 1px;
|
|
399
|
+
/// @name .k-px-1px
|
|
400
|
+
/// @group padding
|
|
401
|
+
/// @contextType css
|
|
402
|
+
|
|
403
|
+
/// This is equivalent to `padding-inline: 0.25rem;`.
|
|
404
|
+
/// @example padding-inline: 0.25rem;
|
|
405
|
+
/// @name .k-px-1
|
|
406
|
+
/// @group padding
|
|
407
|
+
/// @contextType css
|
|
408
|
+
|
|
409
|
+
/// This is equivalent to `padding-inline: -1px;`.
|
|
410
|
+
/// @example padding-inline: -1px;
|
|
411
|
+
/// @name .k-px--1px
|
|
412
|
+
/// @group padding
|
|
413
|
+
/// @contextType css
|
|
414
|
+
|
|
415
|
+
/// This is equivalent to `padding-inline: -0.25rem;`.
|
|
416
|
+
/// @example padding-inline: -0.25rem;
|
|
417
|
+
/// @name .k-px--1
|
|
418
|
+
/// @group padding
|
|
419
|
+
/// @contextType css
|
|
420
|
+
|
|
421
|
+
/// This is equivalent to `padding-inline: 0.25rem;`.
|
|
422
|
+
/// @example padding-inline: 0.25rem;
|
|
423
|
+
/// @name .k-px-xs
|
|
424
|
+
/// @group padding
|
|
425
|
+
/// @contextType css
|
|
426
|
+
|
|
427
|
+
/// This is equivalent to `padding-inline: 0.5rem;`.
|
|
428
|
+
/// @example padding-inline: 0.5rem;
|
|
429
|
+
/// @name .k-px-sm
|
|
430
|
+
/// @group padding
|
|
431
|
+
/// @contextType css
|
|
432
|
+
|
|
433
|
+
/// This is equivalent to `padding-inline: 0.75rem;`.
|
|
434
|
+
/// @example padding-inline: 0.75rem;
|
|
435
|
+
/// @name .k-px-md
|
|
436
|
+
/// @group padding
|
|
437
|
+
/// @contextType css
|
|
438
|
+
|
|
439
|
+
/// This is equivalent to `padding-inline: 1rem;`.
|
|
440
|
+
/// @example padding-inline: 1rem;
|
|
441
|
+
/// @name .k-px-lg
|
|
442
|
+
/// @group padding
|
|
443
|
+
/// @contextType css
|
|
444
|
+
|
|
445
|
+
/// This is equivalent to `padding-inline: 1.5rem;`.
|
|
446
|
+
/// @example padding-inline: 1.5rem;
|
|
447
|
+
/// @name .k-px-xl
|
|
448
|
+
/// @group padding
|
|
449
|
+
/// @contextType css
|
|
450
|
+
|
|
451
|
+
/// This is equivalent to `padding-inline: 0.125rem;`.
|
|
452
|
+
/// @example padding-inline: 0.125rem;
|
|
453
|
+
/// @name .k-px-thin
|
|
454
|
+
/// @group padding
|
|
455
|
+
/// @contextType css
|
|
456
|
+
|
|
457
|
+
/// This is equivalent to `padding-inline: 1px;`.
|
|
458
|
+
/// @example padding-inline: 1px;
|
|
459
|
+
/// @name .k-px-hair
|
|
460
|
+
/// @group padding
|
|
461
|
+
/// @contextType css
|
|
462
|
+
|
|
463
|
+
/// This is equivalent to `padding-inline: auto;`.
|
|
464
|
+
/// @example padding-inline: auto;
|
|
465
|
+
/// @name .k-px-auto
|
|
466
|
+
/// @group padding
|
|
467
|
+
/// @contextType css
|
|
468
|
+
|
|
469
|
+
/// This is equivalent to `padding-block: 0;`.
|
|
470
|
+
/// @example padding-block: 0;
|
|
471
|
+
/// @name .k-py-0
|
|
472
|
+
/// @group padding
|
|
473
|
+
/// @contextType css
|
|
474
|
+
|
|
475
|
+
/// This is equivalent to `padding-block: 1px;`.
|
|
476
|
+
/// @example padding-block: 1px;
|
|
477
|
+
/// @name .k-py-1px
|
|
478
|
+
/// @group padding
|
|
479
|
+
/// @contextType css
|
|
480
|
+
|
|
481
|
+
/// This is equivalent to `padding-block: 0.25rem;`.
|
|
482
|
+
/// @example padding-block: 0.25rem;
|
|
483
|
+
/// @name .k-py-1
|
|
484
|
+
/// @group padding
|
|
485
|
+
/// @contextType css
|
|
486
|
+
|
|
487
|
+
/// This is equivalent to `padding-block: -1px;`.
|
|
488
|
+
/// @example padding-block: -1px;
|
|
489
|
+
/// @name .k-py--1px
|
|
490
|
+
/// @group padding
|
|
491
|
+
/// @contextType css
|
|
492
|
+
|
|
493
|
+
/// This is equivalent to `padding-block: -0.25rem;`.
|
|
494
|
+
/// @example padding-block: -0.25rem;
|
|
495
|
+
/// @name .k-py--1
|
|
496
|
+
/// @group padding
|
|
497
|
+
/// @contextType css
|
|
498
|
+
|
|
499
|
+
/// This is equivalent to `padding-block: 0.25rem;`.
|
|
500
|
+
/// @example padding-block: 0.25rem;
|
|
501
|
+
/// @name .k-py-xs
|
|
502
|
+
/// @group padding
|
|
503
|
+
/// @contextType css
|
|
504
|
+
|
|
505
|
+
/// This is equivalent to `padding-block: 0.5rem;`.
|
|
506
|
+
/// @example padding-block: 0.5rem;
|
|
507
|
+
/// @name .k-py-sm
|
|
508
|
+
/// @group padding
|
|
509
|
+
/// @contextType css
|
|
510
|
+
|
|
511
|
+
/// This is equivalent to `padding-block: 0.75rem;`.
|
|
512
|
+
/// @example padding-block: 0.75rem;
|
|
513
|
+
/// @name .k-py-md
|
|
514
|
+
/// @group padding
|
|
515
|
+
/// @contextType css
|
|
516
|
+
|
|
517
|
+
/// This is equivalent to `padding-block: 1rem;`.
|
|
518
|
+
/// @example padding-block: 1rem;
|
|
519
|
+
/// @name .k-py-lg
|
|
520
|
+
/// @group padding
|
|
521
|
+
/// @contextType css
|
|
522
|
+
|
|
523
|
+
/// This is equivalent to `padding-block: 1.5rem;`.
|
|
524
|
+
/// @example padding-block: 1.5rem;
|
|
525
|
+
/// @name .k-py-xl
|
|
526
|
+
/// @group padding
|
|
527
|
+
/// @contextType css
|
|
528
|
+
|
|
529
|
+
/// This is equivalent to `padding-block: 0.125rem;`.
|
|
530
|
+
/// @example padding-block: 0.125rem;
|
|
531
|
+
/// @name .k-py-thin
|
|
532
|
+
/// @group padding
|
|
533
|
+
/// @contextType css
|
|
534
|
+
|
|
535
|
+
/// This is equivalent to `padding-block: 1px;`.
|
|
536
|
+
/// @example padding-block: 1px;
|
|
537
|
+
/// @name .k-py-hair
|
|
538
|
+
/// @group padding
|
|
539
|
+
/// @contextType css
|
|
540
|
+
|
|
541
|
+
/// This is equivalent to `padding-block: auto;`.
|
|
542
|
+
/// @example padding-block: auto;
|
|
543
|
+
/// @name .k-py-auto
|
|
544
|
+
/// @group padding
|
|
545
|
+
/// @contextType css
|
|
2
546
|
|
|
3
547
|
@mixin kendo-utils--spacing--padding() {
|
|
4
548
|
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/// This is equivalent to `fill: none;`.
|
|
2
|
+
/// @example fill: none;
|
|
3
|
+
/// @name .k-fill-none
|
|
4
|
+
/// @group fill
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// This is equivalent to `fill: inherit;`.
|
|
8
|
+
/// @example fill: inherit;
|
|
9
|
+
/// @name .k-fill-inherit
|
|
10
|
+
/// @group fill
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// This is equivalent to `fill: currentColor;`.
|
|
14
|
+
/// @example fill: currentColor;
|
|
15
|
+
/// @name .k-fill-currentColor
|
|
16
|
+
/// @group fill
|
|
17
|
+
/// @contextType css
|
|
18
|
+
|
|
19
|
+
/// This is equivalent to `fill: transparent;`.
|
|
20
|
+
/// @example fill: transparent;
|
|
21
|
+
/// @name .k-fill-transparent
|
|
22
|
+
/// @group fill
|
|
23
|
+
/// @contextType css
|
|
24
|
+
|
|
25
|
+
/// This is equivalent to `fill: black;`.
|
|
26
|
+
/// @example fill: black;
|
|
27
|
+
/// @name .k-fill-black
|
|
28
|
+
/// @group fill
|
|
29
|
+
/// @contextType css
|
|
30
|
+
|
|
31
|
+
/// This is equivalent to `fill: white;`.
|
|
32
|
+
/// @example fill: white;
|
|
33
|
+
/// @name .k-fill-white
|
|
34
|
+
/// @group fill
|
|
35
|
+
/// @contextType css
|
|
36
|
+
|
|
37
|
+
@mixin kendo-utils--svg--fill() {
|
|
38
|
+
|
|
39
|
+
// fill utility classes
|
|
40
|
+
$kendo-utils-fill: k-map-get( $kendo-utils, "fill-stroke" ) !default;
|
|
41
|
+
@include generate-utils( fill, fill, $kendo-utils-fill );
|
|
42
|
+
|
|
43
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/// This is equivalent to `stroke: none;`.
|
|
2
|
+
/// @example stroke: none;
|
|
3
|
+
/// @name .k-stroke-none
|
|
4
|
+
/// @group stroke
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// This is equivalent to `stroke: inherit;`.
|
|
8
|
+
/// @example stroke: inherit;
|
|
9
|
+
/// @name .k-stroke-inherit
|
|
10
|
+
/// @group stroke
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// This is equivalent to `stroke: currentColor;`.
|
|
14
|
+
/// @example stroke: currentColor;
|
|
15
|
+
/// @name .k-stroke-currentColor
|
|
16
|
+
/// @group stroke
|
|
17
|
+
/// @contextType css
|
|
18
|
+
|
|
19
|
+
/// This is equivalent to `stroke: transparent;`.
|
|
20
|
+
/// @example stroke: transparent;
|
|
21
|
+
/// @name .k-stroke-transparent
|
|
22
|
+
/// @group stroke
|
|
23
|
+
/// @contextType css
|
|
24
|
+
|
|
25
|
+
/// This is equivalent to `stroke: black;`.
|
|
26
|
+
/// @example stroke: black;
|
|
27
|
+
/// @name .k-stroke-black
|
|
28
|
+
/// @group stroke
|
|
29
|
+
/// @contextType css
|
|
30
|
+
|
|
31
|
+
/// This is equivalent to `stroke: white;`.
|
|
32
|
+
/// @example stroke: white;
|
|
33
|
+
/// @name .k-stroke-white
|
|
34
|
+
/// @group stroke
|
|
35
|
+
/// @contextType css
|
|
36
|
+
|
|
37
|
+
@mixin kendo-utils--svg--stroke() {
|
|
38
|
+
|
|
39
|
+
// stroke utility classes
|
|
40
|
+
$kendo-utils-stroke: k-map-get( $kendo-utils, "stroke-stroke" ) !default;
|
|
41
|
+
@include generate-utils( stroke, stroke, $kendo-utils-stroke );
|
|
42
|
+
|
|
43
|
+
}
|
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
/// This is equivalent to `border-collapse: collapse;`.
|
|
2
|
+
/// @example border-collapse: collapse;
|
|
3
|
+
/// @name .k-border-collapse
|
|
4
|
+
/// @group border-collapse
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// This is equivalent to `border-collapse: separate;`.
|
|
8
|
+
/// @example border-collapse: separate;
|
|
9
|
+
/// @name .k-border-separate
|
|
10
|
+
/// @group border-collapse
|
|
11
|
+
/// @contextType css
|
|
2
12
|
|
|
3
13
|
@mixin kendo-utils--table--border-collapse() {
|
|
4
14
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
///
|
|
4
|
-
/// @name .k-table-layout-auto
|
|
1
|
+
/// This is equivalent to `table-layout: auto;`.
|
|
2
|
+
/// @example table-layout: auto;
|
|
3
|
+
/// @name .k-table-auto
|
|
5
4
|
/// @group table-layout
|
|
6
5
|
/// @contextType css
|
|
7
6
|
|
|
8
|
-
/// This is equivalent to `table-layout: fixed;`.
|
|
9
|
-
/// @
|
|
7
|
+
/// This is equivalent to `table-layout: fixed;`.
|
|
8
|
+
/// @example table-layout: fixed;
|
|
9
|
+
/// @name .k-table-fixed
|
|
10
10
|
/// @group table-layout
|
|
11
11
|
/// @contextType css
|
|
12
12
|
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
/// This is equivalent to `transform: scaleX( -1 );`.
|
|
1
|
+
/// This is equivalent to `transform: scaleX( -1 );`.
|
|
2
|
+
/// @example transform: scaleX( -1 );
|
|
2
3
|
/// @name .k-flip-h
|
|
3
4
|
/// @group transform
|
|
4
5
|
/// @contextType css
|
|
5
6
|
|
|
6
|
-
/// This is equivalent to `transform: scaleY( -1 );`.
|
|
7
|
+
/// This is equivalent to `transform: scaleY( -1 );`.
|
|
8
|
+
/// @example transform: scaleY( -1 );
|
|
7
9
|
/// @name .k-flip-v
|
|
8
10
|
/// @group transform
|
|
9
11
|
/// @contextType css
|