@progress/kendo-theme-utils 11.1.0-dev.4 → 11.1.0-dev.6
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 +8003 -5365
- package/dist/meta/sassdoc-raw-data.json +7988 -5539
- package/package.json +3 -3
- package/scss/border/_outline-color.scss +216 -0
- package/scss/flex-grid/_grid-column-start-end.scss +28 -12
- package/scss/flex-grid/_grid-row-start-end.scss +10 -2
- package/scss/flex-grid/_grid-template-columns.scss +8 -14
- package/scss/flex-grid/_grid-template-rows.scss +60 -0
- package/scss/flex-grid/_order.scss +1 -1
- package/scss/layout/_display.scss +88 -0
- package/scss/responsive-layout/_col-gap.scss +46 -46
- package/scss/spacing/_padding.scss +2 -8
|
@@ -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
|
|
|
@@ -287,91 +287,91 @@
|
|
|
287
287
|
/// Sets column gap to 0 pixels.
|
|
288
288
|
/// @example --kendo-col-gap: 0px;
|
|
289
289
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-0
|
|
290
|
-
/// @group col-gap
|
|
290
|
+
/// @group col-gap
|
|
291
291
|
/// @contextType css
|
|
292
292
|
|
|
293
293
|
/// Sets column gap to 1 pixel.
|
|
294
294
|
/// @example --kendo-col-gap: 1px;
|
|
295
295
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-1px
|
|
296
|
-
/// @group col-gap
|
|
296
|
+
/// @group col-gap
|
|
297
297
|
/// @contextType css
|
|
298
298
|
|
|
299
299
|
/// Sets column gap to 0.125rem (2px at 16px base).
|
|
300
300
|
/// @example --kendo-col-gap: 0.125rem;
|
|
301
301
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-0\.5
|
|
302
|
-
/// @group col-gap
|
|
302
|
+
/// @group col-gap
|
|
303
303
|
/// @contextType css
|
|
304
304
|
|
|
305
305
|
/// Sets column gap to 0.25rem (4px at 16px base).
|
|
306
306
|
/// @example --kendo-col-gap: 0.25rem;
|
|
307
307
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-1
|
|
308
|
-
/// @group col-gap
|
|
308
|
+
/// @group col-gap
|
|
309
309
|
/// @contextType css
|
|
310
310
|
|
|
311
311
|
/// Sets column gap to 0.375rem (6px at 16px base).
|
|
312
312
|
/// @example --kendo-col-gap: 0.375rem;
|
|
313
313
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-1\.5
|
|
314
|
-
/// @group col-gap
|
|
314
|
+
/// @group col-gap
|
|
315
315
|
/// @contextType css
|
|
316
316
|
|
|
317
317
|
/// Sets column gap to 0.5rem (8px at 16px base).
|
|
318
318
|
/// @example --kendo-col-gap: 0.5rem;
|
|
319
319
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-2
|
|
320
|
-
/// @group col-gap
|
|
320
|
+
/// @group col-gap
|
|
321
321
|
/// @contextType css
|
|
322
322
|
|
|
323
323
|
/// Sets column gap to 0.625rem (10px at 16px base).
|
|
324
324
|
/// @example --kendo-col-gap: 0.625rem;
|
|
325
325
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-2\.5
|
|
326
|
-
/// @group col-gap
|
|
326
|
+
/// @group col-gap
|
|
327
327
|
/// @contextType css
|
|
328
328
|
|
|
329
329
|
/// Sets column gap to 0.75rem (12px at 16px base).
|
|
330
330
|
/// @example --kendo-col-gap: 0.75rem;
|
|
331
331
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-3
|
|
332
|
-
/// @group col-gap
|
|
332
|
+
/// @group col-gap
|
|
333
333
|
/// @contextType css
|
|
334
334
|
|
|
335
335
|
/// Sets column gap to 0.875rem (14px at 16px base).
|
|
336
336
|
/// @example --kendo-col-gap: 0.875rem;
|
|
337
337
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-3\.5
|
|
338
|
-
/// @group col-gap
|
|
338
|
+
/// @group col-gap
|
|
339
339
|
/// @contextType css
|
|
340
340
|
|
|
341
341
|
/// Sets column gap to 1rem (16px at 16px base).
|
|
342
342
|
/// @example --kendo-col-gap: 1rem;
|
|
343
343
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-4
|
|
344
|
-
/// @group col-gap
|
|
344
|
+
/// @group col-gap
|
|
345
345
|
/// @contextType css
|
|
346
346
|
|
|
347
347
|
/// Sets column gap to 1.125rem (18px at 16px base).
|
|
348
348
|
/// @example --kendo-col-gap: 1.125rem;
|
|
349
349
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-4\.5
|
|
350
|
-
/// @group col-gap
|
|
350
|
+
/// @group col-gap
|
|
351
351
|
/// @contextType css
|
|
352
352
|
|
|
353
353
|
/// Sets column gap to 1.25rem (20px at 16px base).
|
|
354
354
|
/// @example --kendo-col-gap: 1.25rem;
|
|
355
355
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-5
|
|
356
|
-
/// @group col-gap
|
|
356
|
+
/// @group col-gap
|
|
357
357
|
/// @contextType css
|
|
358
358
|
|
|
359
359
|
/// Sets column gap to 1.375rem (22px at 16px base).
|
|
360
360
|
/// @example --kendo-col-gap: 1.375rem;
|
|
361
361
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-5\.5
|
|
362
|
-
/// @group col-gap
|
|
362
|
+
/// @group col-gap
|
|
363
363
|
/// @contextType css
|
|
364
364
|
|
|
365
365
|
/// Sets column gap to 1.5rem (24px at 16px base).
|
|
366
366
|
/// @example --kendo-col-gap: 1.5rem;
|
|
367
367
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-6
|
|
368
|
-
/// @group col-gap
|
|
368
|
+
/// @group col-gap
|
|
369
369
|
/// @contextType css
|
|
370
370
|
|
|
371
371
|
/// Sets column gap to 1.625rem (26px at 16px base).
|
|
372
372
|
/// @example --kendo-col-gap: 1.625rem;
|
|
373
373
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-6\.5
|
|
374
|
-
/// @group col-gap
|
|
374
|
+
/// @group col-gap
|
|
375
375
|
/// @contextType css
|
|
376
376
|
|
|
377
377
|
/// Sets column gap to 1.75rem (28px at 16px base).
|
|
@@ -383,187 +383,187 @@
|
|
|
383
383
|
/// Sets column gap to 1.875rem (30px at 16px base).
|
|
384
384
|
/// @example --kendo-col-gap: 1.875rem;
|
|
385
385
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-7\.5
|
|
386
|
-
/// @group col-gap
|
|
386
|
+
/// @group col-gap
|
|
387
387
|
/// @contextType css
|
|
388
388
|
|
|
389
389
|
/// Sets column gap to 2rem (32px at 16px base).
|
|
390
390
|
/// @example --kendo-col-gap: 2rem;
|
|
391
391
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-8
|
|
392
|
-
/// @group col-gap
|
|
392
|
+
/// @group col-gap
|
|
393
393
|
/// @contextType css
|
|
394
394
|
|
|
395
395
|
/// Sets column gap to 2.25rem (36px at 16px base).
|
|
396
396
|
/// @example --kendo-col-gap: 2.25rem;
|
|
397
397
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-9
|
|
398
|
-
/// @group col-gap
|
|
398
|
+
/// @group col-gap
|
|
399
399
|
/// @contextType css
|
|
400
400
|
|
|
401
401
|
/// Sets column gap to 2.5rem (40px at 16px base).
|
|
402
402
|
/// @example --kendo-col-gap: 2.5rem;
|
|
403
403
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-10
|
|
404
|
-
/// @group col-gap
|
|
404
|
+
/// @group col-gap
|
|
405
405
|
/// @contextType css
|
|
406
406
|
|
|
407
407
|
/// Sets column gap to 2.75rem (44px at 16px base).
|
|
408
408
|
/// @example --kendo-col-gap: 2.75rem;
|
|
409
409
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-11
|
|
410
|
-
/// @group col-gap
|
|
410
|
+
/// @group col-gap
|
|
411
411
|
/// @contextType css
|
|
412
412
|
|
|
413
413
|
/// Sets column gap to 3rem (48px at 16px base).
|
|
414
414
|
/// @example --kendo-col-gap: 3rem;
|
|
415
415
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-12
|
|
416
|
-
/// @group col-gap
|
|
416
|
+
/// @group col-gap
|
|
417
417
|
/// @contextType css
|
|
418
418
|
|
|
419
419
|
/// Sets column gap to 3.25rem (52px at 16px base).
|
|
420
420
|
/// @example --kendo-col-gap: 3.25rem;
|
|
421
421
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-13
|
|
422
|
-
/// @group col-gap
|
|
422
|
+
/// @group col-gap
|
|
423
423
|
/// @contextType css
|
|
424
424
|
|
|
425
425
|
/// Sets column gap to 3.5rem (56px at 16px base).
|
|
426
426
|
/// @example --kendo-col-gap: 3.5rem;
|
|
427
427
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-14
|
|
428
|
-
/// @group col-gap
|
|
428
|
+
/// @group col-gap
|
|
429
429
|
/// @contextType css
|
|
430
430
|
|
|
431
431
|
/// Sets column gap to 3.75rem (60px at 16px base).
|
|
432
432
|
/// @example --kendo-col-gap: 3.75rem;
|
|
433
433
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-15
|
|
434
|
-
/// @group col-gap
|
|
434
|
+
/// @group col-gap
|
|
435
435
|
/// @contextType css
|
|
436
436
|
|
|
437
437
|
/// Sets column gap to 4rem (64px at 16px base).
|
|
438
438
|
/// @example --kendo-col-gap: 4rem;
|
|
439
439
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-16
|
|
440
|
-
/// @group col-gap
|
|
440
|
+
/// @group col-gap
|
|
441
441
|
/// @contextType css
|
|
442
442
|
|
|
443
443
|
/// Sets column gap to 4.25rem (68px at 16px base).
|
|
444
444
|
/// @example --kendo-col-gap: 4.25rem;
|
|
445
445
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-17
|
|
446
|
-
/// @group col-gap
|
|
446
|
+
/// @group col-gap
|
|
447
447
|
/// @contextType css
|
|
448
448
|
|
|
449
449
|
/// Sets column gap to 4.5rem (72px at 16px base).
|
|
450
450
|
/// @example --kendo-col-gap: 4.5rem;
|
|
451
451
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-18
|
|
452
|
-
/// @group col-gap
|
|
452
|
+
/// @group col-gap
|
|
453
453
|
/// @contextType css
|
|
454
454
|
|
|
455
455
|
/// Sets column gap to 4.75rem (76px at 16px base).
|
|
456
456
|
/// @example --kendo-col-gap: 4.75rem;
|
|
457
457
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-19
|
|
458
|
-
/// @group col-gap
|
|
458
|
+
/// @group col-gap
|
|
459
459
|
/// @contextType css
|
|
460
460
|
|
|
461
461
|
/// Sets column gap to 5rem (80px at 16px base).
|
|
462
462
|
/// @example --kendo-col-gap: 5rem;
|
|
463
463
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-20
|
|
464
|
-
/// @group col-gap
|
|
464
|
+
/// @group col-gap
|
|
465
465
|
/// @contextType css
|
|
466
466
|
|
|
467
467
|
/// Sets column gap to 5.25rem (84px at 16px base).
|
|
468
468
|
/// @example --kendo-col-gap: 5.25rem;
|
|
469
469
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-21
|
|
470
|
-
/// @group col-gap
|
|
470
|
+
/// @group col-gap
|
|
471
471
|
/// @contextType css
|
|
472
472
|
|
|
473
473
|
/// Sets column gap to 5.5rem (88px at 16px base).
|
|
474
474
|
/// @example --kendo-col-gap: 5.5rem;
|
|
475
475
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-22
|
|
476
|
-
/// @group col-gap
|
|
476
|
+
/// @group col-gap
|
|
477
477
|
/// @contextType css
|
|
478
478
|
|
|
479
479
|
/// Sets column gap to 5.75rem (92px at 16px base).
|
|
480
480
|
/// @example --kendo-col-gap: 5.75rem;
|
|
481
481
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-23
|
|
482
|
-
/// @group col-gap
|
|
482
|
+
/// @group col-gap
|
|
483
483
|
/// @contextType css
|
|
484
484
|
|
|
485
485
|
/// Sets column gap to 6rem (96px at 16px base).
|
|
486
486
|
/// @example --kendo-col-gap: 6rem;
|
|
487
487
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-24
|
|
488
|
-
/// @group col-gap
|
|
488
|
+
/// @group col-gap
|
|
489
489
|
/// @contextType css
|
|
490
490
|
|
|
491
491
|
/// Sets column gap to 7rem (112px at 16px base).
|
|
492
492
|
/// @example --kendo-col-gap: 7rem;
|
|
493
493
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-25
|
|
494
|
-
/// @group col-gap
|
|
494
|
+
/// @group col-gap
|
|
495
495
|
/// @contextType css
|
|
496
496
|
|
|
497
497
|
/// Sets column gap to 8rem (128px at 16px base).
|
|
498
498
|
/// @example --kendo-col-gap: 8rem;
|
|
499
499
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-26
|
|
500
|
-
/// @group col-gap
|
|
500
|
+
/// @group col-gap
|
|
501
501
|
/// @contextType css
|
|
502
502
|
|
|
503
503
|
/// Sets column gap to 9rem (144px at 16px base).
|
|
504
504
|
/// @example --kendo-col-gap: 9rem;
|
|
505
505
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-27
|
|
506
|
-
/// @group col-gap
|
|
506
|
+
/// @group col-gap
|
|
507
507
|
/// @contextType css
|
|
508
508
|
|
|
509
509
|
/// Sets column gap to 10rem (160px at 16px base).
|
|
510
510
|
/// @example --kendo-col-gap: 10rem;
|
|
511
511
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-28
|
|
512
|
-
/// @group col-gap
|
|
512
|
+
/// @group col-gap
|
|
513
513
|
/// @contextType css
|
|
514
514
|
|
|
515
515
|
/// Sets column gap to 11rem (176px at 16px base).
|
|
516
516
|
/// @example --kendo-col-gap: 11rem;
|
|
517
517
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-29
|
|
518
|
-
/// @group col-gap
|
|
518
|
+
/// @group col-gap
|
|
519
519
|
/// @contextType css
|
|
520
520
|
|
|
521
521
|
/// Sets column gap to 12rem (192px at 16px base).
|
|
522
522
|
/// @example --kendo-col-gap: 12rem;
|
|
523
523
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-30
|
|
524
|
-
/// @group col-gap
|
|
524
|
+
/// @group col-gap
|
|
525
525
|
/// @contextType css
|
|
526
526
|
|
|
527
527
|
/// Sets column gap to extra small spacing.
|
|
528
528
|
/// @example --kendo-col-gap: var(--kendo-spacing-1, 0.25rem);
|
|
529
529
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-xs
|
|
530
|
-
/// @group col-gap
|
|
530
|
+
/// @group col-gap
|
|
531
531
|
/// @contextType css
|
|
532
532
|
|
|
533
533
|
/// Sets column gap to small spacing.
|
|
534
534
|
/// @example --kendo-col-gap: var(--kendo-spacing-2, 0.5rem);
|
|
535
535
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-sm
|
|
536
|
-
/// @group col-gap
|
|
536
|
+
/// @group col-gap
|
|
537
537
|
/// @contextType css
|
|
538
538
|
|
|
539
539
|
/// Sets column gap to medium spacing.
|
|
540
540
|
/// @example --kendo-col-gap: var(--kendo-spacing-3, 0.75rem);
|
|
541
541
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-md
|
|
542
|
-
/// @group col-gap
|
|
542
|
+
/// @group col-gap
|
|
543
543
|
/// @contextType css
|
|
544
544
|
|
|
545
545
|
/// Sets column gap to large spacing.
|
|
546
546
|
/// @example --kendo-col-gap: var(--kendo-spacing-4, 1rem);
|
|
547
547
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-lg
|
|
548
|
-
/// @group col-gap
|
|
548
|
+
/// @group col-gap
|
|
549
549
|
/// @contextType css
|
|
550
550
|
|
|
551
551
|
/// Sets column gap to extra large spacing.
|
|
552
552
|
/// @example --kendo-col-gap: var(--kendo-spacing-6, 1.5rem);
|
|
553
553
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-xl
|
|
554
|
-
/// @group col-gap
|
|
554
|
+
/// @group col-gap
|
|
555
555
|
/// @contextType css
|
|
556
556
|
|
|
557
557
|
/// Sets column gap to thin spacing.
|
|
558
558
|
/// @example --kendo-col-gap: var(--kendo-spacing-0\.5, 0.125rem);
|
|
559
559
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-thin
|
|
560
|
-
/// @group col-gap
|
|
560
|
+
/// @group col-gap
|
|
561
561
|
/// @contextType css
|
|
562
562
|
|
|
563
563
|
/// Sets column gap to hair spacing.
|
|
564
564
|
/// @example --kendo-col-gap: var(--kendo-spacing-1px, 1px);
|
|
565
565
|
/// @name .k-col-gap-{xs|sm|md|lg|xl|xxl}-hair
|
|
566
|
-
/// @group col-gap
|
|
566
|
+
/// @group col-gap
|
|
567
567
|
/// @contextType css
|
|
568
568
|
|
|
569
569
|
@use "../_globals.scss" as *;
|
|
@@ -16,12 +16,6 @@
|
|
|
16
16
|
/// @group padding
|
|
17
17
|
/// @contextType css
|
|
18
18
|
|
|
19
|
-
/// This is equivalent to `padding: 0.125rem;`.
|
|
20
|
-
/// @example padding: 0.125rem;
|
|
21
|
-
/// @name .k-p-{xs|sm|md|lg|xl|xxl}-0\.5
|
|
22
|
-
/// @group padding
|
|
23
|
-
/// @contextType css
|
|
24
|
-
|
|
25
19
|
/// This is equivalent to `padding: 0.25rem;`.
|
|
26
20
|
/// @example padding: 0.25rem;
|
|
27
21
|
/// @name .k-p-xs
|
|
@@ -484,7 +478,7 @@
|
|
|
484
478
|
/// This is equivalent to `padding-inline: 0.125rem;`.
|
|
485
479
|
/// @example padding-inline: 0.125rem;
|
|
486
480
|
/// @name .k-px-{xs|sm|md|lg|xl|xxl}-0\.5
|
|
487
|
-
/// @group padding
|
|
481
|
+
/// @group padding-responsive
|
|
488
482
|
/// @contextType css
|
|
489
483
|
|
|
490
484
|
/// This is equivalent to `padding-inline: 0.25rem;`.
|
|
@@ -550,7 +544,7 @@
|
|
|
550
544
|
/// This is equivalent to `padding-block: 0.125rem;`.
|
|
551
545
|
/// @example padding-block: 0.125rem;
|
|
552
546
|
/// @name .k-py-{xs|sm|md|lg|xl|xxl}-0\.5
|
|
553
|
-
/// @group padding
|
|
547
|
+
/// @group padding-responsive
|
|
554
548
|
/// @contextType css
|
|
555
549
|
|
|
556
550
|
/// This is equivalent to `padding-block: 0.25rem;`.
|