@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
|
@@ -28,6 +28,222 @@
|
|
|
28
28
|
/// @group outline-color
|
|
29
29
|
/// @contextType css
|
|
30
30
|
|
|
31
|
+
/// Sets the border color to the app surface color.
|
|
32
|
+
/// @example outline-color: var(--kendo-color-app-surface, #fafafa);
|
|
33
|
+
/// @name .k-outline-app-surface
|
|
34
|
+
/// @group outline-color
|
|
35
|
+
/// @contextType css
|
|
36
|
+
|
|
37
|
+
/// Sets the border color to the on app surface color.
|
|
38
|
+
/// @example outline-color: var(--kendo-color-on-app-surface, #424242);
|
|
39
|
+
/// @name .k-outline-on-app-surface
|
|
40
|
+
/// @group outline-color
|
|
41
|
+
/// @contextType css
|
|
42
|
+
|
|
43
|
+
/// Sets the border color to the subtle color.
|
|
44
|
+
/// @example outline-color: var(--kendo-color-subtle, #666666);
|
|
45
|
+
/// @name .k-outline-subtle
|
|
46
|
+
/// @group outline-color
|
|
47
|
+
/// @contextType css
|
|
48
|
+
|
|
49
|
+
/// Sets the border color to the surface color.
|
|
50
|
+
/// @example outline-color: var(--kendo-color-surface, #ffffff);
|
|
51
|
+
/// @name .k-outline-surface
|
|
52
|
+
/// @group outline-color
|
|
53
|
+
/// @contextType css
|
|
54
|
+
|
|
55
|
+
/// Sets the border color to the surface alt color.
|
|
56
|
+
/// @example outline-color: var(--kendo-color-surface-alt, #f5f5f5);
|
|
57
|
+
/// @name .k-outline-surface-alt
|
|
58
|
+
/// @group outline-color
|
|
59
|
+
/// @contextType css
|
|
60
|
+
|
|
61
|
+
/// Sets the border color to the border color.
|
|
62
|
+
/// @example outline-color: var(--kendo-color-border, #d9d9d9);
|
|
63
|
+
/// @name .k-outline-border
|
|
64
|
+
/// @group outline-color
|
|
65
|
+
/// @contextType css
|
|
66
|
+
|
|
67
|
+
/// Sets the border color to the border alt color.
|
|
68
|
+
/// @example outline-color: var(--kendo-color-outline-alt, #e0e0e0);
|
|
69
|
+
/// @name .k-outline-alt
|
|
70
|
+
/// @group outline-color
|
|
71
|
+
/// @contextType css
|
|
72
|
+
|
|
73
|
+
/// Sets the border color to the base subtle color.
|
|
74
|
+
/// @example outline-color: var(--kendo-color-base-subtle, #f0f0f0);
|
|
75
|
+
/// @name .k-outline-base-subtle
|
|
76
|
+
/// @group outline-color
|
|
77
|
+
/// @contextType css
|
|
78
|
+
|
|
79
|
+
/// Sets the border color to the base emphasis color.
|
|
80
|
+
/// @example outline-color: var(--kendo-color-base-emphasis, #000000);
|
|
81
|
+
/// @name .k-outline-base-emphasis
|
|
82
|
+
/// @group outline-color
|
|
83
|
+
/// @contextType css
|
|
84
|
+
|
|
85
|
+
/// Sets the border color to the primary subtle color.
|
|
86
|
+
/// @example outline-color: var(--kendo-color-primary-subtle, #e3f2fd);
|
|
87
|
+
/// @name .k-outline-primary-subtle
|
|
88
|
+
/// @group outline-color
|
|
89
|
+
/// @contextType css
|
|
90
|
+
|
|
91
|
+
/// Sets the border color to the primary color.
|
|
92
|
+
/// @example outline-color: var(--kendo-color-primary, #2196f3);
|
|
93
|
+
/// @name .k-outline-primary
|
|
94
|
+
/// @group outline-color
|
|
95
|
+
/// @contextType css
|
|
96
|
+
|
|
97
|
+
/// Sets the border color to the primary emphasis color.
|
|
98
|
+
/// @example outline-color: var(--kendo-color-primary-emphasis, #1976d2);
|
|
99
|
+
/// @name .k-outline-primary-emphasis
|
|
100
|
+
/// @group outline-color
|
|
101
|
+
/// @contextType css
|
|
102
|
+
|
|
103
|
+
/// Sets the border color to the secondary subtle color.
|
|
104
|
+
/// @example outline-color: var(--kendo-color-secondary-subtle, #f3e5f5);
|
|
105
|
+
/// @name .k-outline-secondary-subtle
|
|
106
|
+
/// @group outline-color
|
|
107
|
+
/// @contextType css
|
|
108
|
+
|
|
109
|
+
/// Sets the border color to the secondary color.
|
|
110
|
+
/// @example outline-color: var(--kendo-color-secondary, #9c27b0);
|
|
111
|
+
/// @name .k-outline-secondary
|
|
112
|
+
/// @group outline-color
|
|
113
|
+
/// @contextType css
|
|
114
|
+
|
|
115
|
+
/// Sets the border color to the secondary emphasis color.
|
|
116
|
+
/// @example outline-color: var(--kendo-color-secondary-emphasis, #7b1fa2);
|
|
117
|
+
/// @name .k-outline-secondary-emphasis
|
|
118
|
+
/// @group outline-color
|
|
119
|
+
/// @contextType css
|
|
120
|
+
|
|
121
|
+
/// Sets the border color to the tertiary subtle color.
|
|
122
|
+
/// @example outline-color: var(--kendo-color-tertiary-subtle, #fff3e0);
|
|
123
|
+
/// @name .k-outline-tertiary-subtle
|
|
124
|
+
/// @group outline-color
|
|
125
|
+
/// @contextType css
|
|
126
|
+
|
|
127
|
+
/// Sets the border color to the tertiary color.
|
|
128
|
+
/// @example outline-color: var(--kendo-color-tertiary, #ff9800);
|
|
129
|
+
/// @name .k-outline-tertiary
|
|
130
|
+
/// @group outline-color
|
|
131
|
+
/// @contextType css
|
|
132
|
+
|
|
133
|
+
/// Sets the border color to the tertiary emphasis color.
|
|
134
|
+
/// @example outline-color: var(--kendo-color-tertiary-emphasis, #f57c00);
|
|
135
|
+
/// @name .k-outline-tertiary-emphasis
|
|
136
|
+
/// @group outline-color
|
|
137
|
+
/// @contextType css
|
|
138
|
+
|
|
139
|
+
/// Sets the border color to the info subtle color.
|
|
140
|
+
/// @example outline-color: var(--kendo-color-info-subtle, #e1f5fe);
|
|
141
|
+
/// @name .k-outline-info-subtle
|
|
142
|
+
/// @group outline-color
|
|
143
|
+
/// @contextType css
|
|
144
|
+
|
|
145
|
+
/// Sets the border color to the info color.
|
|
146
|
+
/// @example outline-color: var(--kendo-color-info, #00bcd4);
|
|
147
|
+
/// @name .k-outline-info
|
|
148
|
+
/// @group outline-color
|
|
149
|
+
/// @contextType css
|
|
150
|
+
|
|
151
|
+
/// Sets the border color to the info emphasis color.
|
|
152
|
+
/// @example outline-color: var(--kendo-color-info-emphasis, #0097a7);
|
|
153
|
+
/// @name .k-outline-info-emphasis
|
|
154
|
+
/// @group outline-color
|
|
155
|
+
/// @contextType css
|
|
156
|
+
|
|
157
|
+
/// Sets the border color to the success subtle color.
|
|
158
|
+
/// @example outline-color: var(--kendo-color-success-subtle, #e8f5e8);
|
|
159
|
+
/// @name .k-outline-success-subtle
|
|
160
|
+
/// @group outline-color
|
|
161
|
+
/// @contextType css
|
|
162
|
+
|
|
163
|
+
/// Sets the border color to the success color.
|
|
164
|
+
/// @example outline-color: var(--kendo-color-success, #4caf50);
|
|
165
|
+
/// @name .k-outline-success
|
|
166
|
+
/// @group outline-color
|
|
167
|
+
/// @contextType css
|
|
168
|
+
|
|
169
|
+
/// Sets the border color to the success emphasis color.
|
|
170
|
+
/// @example outline-color: var(--kendo-color-success-emphasis, #388e3c);
|
|
171
|
+
/// @name .k-outline-success-emphasis
|
|
172
|
+
/// @group outline-color
|
|
173
|
+
/// @contextType css
|
|
174
|
+
|
|
175
|
+
/// Sets the border color to the warning subtle color.
|
|
176
|
+
/// @example outline-color: var(--kendo-color-warning-subtle, #fff8e1);
|
|
177
|
+
/// @name .k-outline-warning-subtle
|
|
178
|
+
/// @group outline-color
|
|
179
|
+
/// @contextType css
|
|
180
|
+
|
|
181
|
+
/// Sets the border color to the warning color.
|
|
182
|
+
/// @example outline-color: var(--kendo-color-warning, #ff9800);
|
|
183
|
+
/// @name .k-outline-warning
|
|
184
|
+
/// @group outline-color
|
|
185
|
+
/// @contextType css
|
|
186
|
+
|
|
187
|
+
/// Sets the border color to the warning emphasis color.
|
|
188
|
+
/// @example outline-color: var(--kendo-color-warning-emphasis, #f57c00);
|
|
189
|
+
/// @name .k-outline-warning-emphasis
|
|
190
|
+
/// @group outline-color
|
|
191
|
+
/// @contextType css
|
|
192
|
+
|
|
193
|
+
/// Sets the border color to the error subtle color.
|
|
194
|
+
/// @example outline-color: var(--kendo-color-error-subtle, #ffebee);
|
|
195
|
+
/// @name .k-outline-error-subtle
|
|
196
|
+
/// @group outline-color
|
|
197
|
+
/// @contextType css
|
|
198
|
+
|
|
199
|
+
/// Sets the border color to the error color.
|
|
200
|
+
/// @example outline-color: var(--kendo-color-error, #f44336);
|
|
201
|
+
/// @name .k-outline-error
|
|
202
|
+
/// @group outline-color
|
|
203
|
+
/// @contextType css
|
|
204
|
+
|
|
205
|
+
/// Sets the border color to the error emphasis color.
|
|
206
|
+
/// @example outline-color: var(--kendo-color-error-emphasis, #d32f2f);
|
|
207
|
+
/// @name .k-outline-error-emphasis
|
|
208
|
+
/// @group outline-color
|
|
209
|
+
/// @contextType css
|
|
210
|
+
|
|
211
|
+
/// Sets the border color to the light subtle color.
|
|
212
|
+
/// @example outline-color: var(--kendo-color-light-subtle, #f8f9fa);
|
|
213
|
+
/// @name .k-outline-light-subtle
|
|
214
|
+
/// @group outline-color
|
|
215
|
+
/// @contextType css
|
|
216
|
+
|
|
217
|
+
/// Sets the border color to the light color.
|
|
218
|
+
/// @example outline-color: var(--kendo-color-light, #f8f9fa);
|
|
219
|
+
/// @name .k-outline-light
|
|
220
|
+
/// @group outline-color
|
|
221
|
+
/// @contextType css
|
|
222
|
+
|
|
223
|
+
/// Sets the border color to the light emphasis color.
|
|
224
|
+
/// @example outline-color: var(--kendo-color-light-emphasis, #dee2e6);
|
|
225
|
+
/// @name .k-outline-light-emphasis
|
|
226
|
+
/// @group outline-color
|
|
227
|
+
/// @contextType css
|
|
228
|
+
|
|
229
|
+
/// Sets the border color to the dark subtle color.
|
|
230
|
+
/// @example outline-color: var(--kendo-color-dark-subtle, #6c757d);
|
|
231
|
+
/// @name .k-outline-dark-subtle
|
|
232
|
+
/// @group outline-color
|
|
233
|
+
/// @contextType css
|
|
234
|
+
|
|
235
|
+
/// Sets the border color to the dark color.
|
|
236
|
+
/// @example outline-color: var(--kendo-color-dark, #343a40);
|
|
237
|
+
/// @name .k-outline-dark
|
|
238
|
+
/// @group outline-color
|
|
239
|
+
/// @contextType css
|
|
240
|
+
|
|
241
|
+
/// Sets the border color to the dark emphasis color.
|
|
242
|
+
/// @example outline-color: var(--kendo-color-dark-emphasis, #212529);
|
|
243
|
+
/// @name .k-outline-dark-emphasis
|
|
244
|
+
/// @group outline-color
|
|
245
|
+
/// @contextType css
|
|
246
|
+
|
|
31
247
|
@use "sass:map";
|
|
32
248
|
@use "../_globals.scss" as *;
|
|
33
249
|
|
|
@@ -4,12 +4,72 @@
|
|
|
4
4
|
/// @group opacity
|
|
5
5
|
/// @contextType css
|
|
6
6
|
|
|
7
|
+
/// This is equivalent to `opacity: 0.05;`.
|
|
8
|
+
/// @example opacity: 0.5;
|
|
9
|
+
/// @name .k-opacity-5
|
|
10
|
+
/// @group opacity
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// This is equivalent to `opacity: 0.1;`.
|
|
14
|
+
/// @example opacity: 0.1;
|
|
15
|
+
/// @name .k-opacity-10
|
|
16
|
+
/// @group opacity
|
|
17
|
+
/// @contextType css
|
|
18
|
+
|
|
19
|
+
/// This is equivalent to `opacity: 0.2;`.
|
|
20
|
+
/// @example opacity: 0.2;
|
|
21
|
+
/// @name .k-opacity-20
|
|
22
|
+
/// @group opacity
|
|
23
|
+
/// @contextType css
|
|
24
|
+
|
|
25
|
+
/// This is equivalent to `opacity: 0.3;`.
|
|
26
|
+
/// @example opacity: 0.3;
|
|
27
|
+
/// @name .k-opacity-30
|
|
28
|
+
/// @group opacity
|
|
29
|
+
/// @contextType css
|
|
30
|
+
|
|
31
|
+
/// This is equivalent to `opacity: 0.4;`.
|
|
32
|
+
/// @example opacity: 0.4;
|
|
33
|
+
/// @name .k-opacity-40
|
|
34
|
+
/// @group opacity
|
|
35
|
+
/// @contextType css
|
|
36
|
+
|
|
37
|
+
/// This is equivalent to `opacity: 0.5;`.
|
|
38
|
+
/// @example opacity: 0.5;
|
|
39
|
+
/// @name .k-opacity-50
|
|
40
|
+
/// @group opacity
|
|
41
|
+
/// @contextType css
|
|
42
|
+
|
|
43
|
+
/// This is equivalent to `opacity: 0.6;`.
|
|
44
|
+
/// @example opacity: 0.6;
|
|
45
|
+
/// @name .k-opacity-60
|
|
46
|
+
/// @group opacity
|
|
47
|
+
/// @contextType css
|
|
48
|
+
|
|
49
|
+
/// This is equivalent to `opacity: 0.7;`.
|
|
50
|
+
/// @example opacity: 0.7;
|
|
51
|
+
/// @name .k-opacity-70
|
|
52
|
+
/// @group opacity
|
|
53
|
+
/// @contextType css
|
|
54
|
+
|
|
55
|
+
/// This is equivalent to `opacity: 0.8;`.
|
|
56
|
+
/// @example opacity: 0.8;
|
|
57
|
+
/// @name .k-opacity-80
|
|
58
|
+
/// @group opacity
|
|
59
|
+
/// @contextType css
|
|
60
|
+
|
|
61
|
+
/// This is equivalent to `opacity: 0.9;`.
|
|
62
|
+
/// @example opacity: 0.9;
|
|
63
|
+
/// @name .k-opacity-90
|
|
64
|
+
/// @group opacity
|
|
65
|
+
|
|
7
66
|
/// This is equivalent to `opacity: 1;`.
|
|
8
67
|
/// @example opacity: 1;
|
|
9
|
-
/// @name .k-opacity-
|
|
68
|
+
/// @name .k-opacity-100
|
|
10
69
|
/// @group opacity
|
|
11
70
|
/// @contextType css
|
|
12
71
|
|
|
72
|
+
|
|
13
73
|
@use "sass:map";
|
|
14
74
|
@use "../_globals.scss" as *;
|
|
15
75
|
|
|
@@ -1,3 +1,57 @@
|
|
|
1
|
+
/// Applies elevation level 1 shadow effect.
|
|
2
|
+
/// @example box-shadow: var(--kendo-elevation-1, 0 2px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.12));
|
|
3
|
+
/// @name .k-elevation-1
|
|
4
|
+
/// @group elevation
|
|
5
|
+
/// @contextType css
|
|
6
|
+
|
|
7
|
+
/// Applies elevation level 2 shadow effect.
|
|
8
|
+
/// @example box-shadow: var(--kendo-elevation-2, 0 4px 6px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.12));
|
|
9
|
+
/// @name .k-elevation-2
|
|
10
|
+
/// @group elevation
|
|
11
|
+
/// @contextType css
|
|
12
|
+
|
|
13
|
+
/// Applies elevation level 3 shadow effect.
|
|
14
|
+
/// @example box-shadow: var(--kendo-elevation-3, 0 6px 8px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.12));
|
|
15
|
+
/// @name .k-elevation-3
|
|
16
|
+
/// @group elevation
|
|
17
|
+
/// @contextType css
|
|
18
|
+
|
|
19
|
+
/// Applies elevation level 4 shadow effect.
|
|
20
|
+
/// @example box-shadow: var(--kendo-elevation-4, 0 8px 10px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.12));
|
|
21
|
+
/// @name .k-elevation-4
|
|
22
|
+
/// @group elevation
|
|
23
|
+
/// @contextType css
|
|
24
|
+
|
|
25
|
+
/// Applies elevation level 5 shadow effect.
|
|
26
|
+
/// @example box-shadow: var(--kendo-elevation-5, 0 10px 12px rgba(0, 0, 0, 0.16), 0 4px 16px rgba(0, 0, 0, 0.12));
|
|
27
|
+
/// @name .k-elevation-5
|
|
28
|
+
/// @group elevation
|
|
29
|
+
/// @contextType css
|
|
30
|
+
|
|
31
|
+
/// Applies elevation level 6 shadow effect.
|
|
32
|
+
/// @example box-shadow: var(--kendo-elevation-6, 0 12px 14px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.12));
|
|
33
|
+
/// @name .k-elevation-6
|
|
34
|
+
/// @group elevation
|
|
35
|
+
/// @contextType css
|
|
36
|
+
|
|
37
|
+
/// Applies elevation level 7 shadow effect.
|
|
38
|
+
/// @example box-shadow: var(--kendo-elevation-7, 0 14px 16px rgba(0, 0, 0, 0.24), 0 4px 16px rgba(0, 0, 0, 0.12));
|
|
39
|
+
/// @name .k-elevation-7
|
|
40
|
+
/// @group elevation
|
|
41
|
+
/// @contextType css
|
|
42
|
+
|
|
43
|
+
/// Applies elevation level 8 shadow effect.
|
|
44
|
+
/// @example box-shadow: var(--kendo-elevation-8, 0 16px 18px rgba(0, 0, 0, 0.28), 0 4px 16px rgba(0, 0, 0, 0.12));
|
|
45
|
+
/// @name .k-elevation-8
|
|
46
|
+
/// @group elevation
|
|
47
|
+
/// @contextType css
|
|
48
|
+
|
|
49
|
+
/// Applies elevation level 9 shadow effect.
|
|
50
|
+
/// @example box-shadow: var(--kendo-elevation-9, 0 32px 34px rgba(0, 0, 0, 0.32), 0 4px 16px rgba(0, 0, 0, 0.12));
|
|
51
|
+
/// @name .k-elevation-9
|
|
52
|
+
/// @group elevation
|
|
53
|
+
/// @contextType css
|
|
54
|
+
|
|
1
55
|
@use "@progress/kendo-theme-core/scss/elevation/index.import.scss" as *;
|
|
2
56
|
@use "../_globals.scss" as *;
|
|
3
57
|
|
|
@@ -22,6 +22,34 @@
|
|
|
22
22
|
/// @group flex-direction
|
|
23
23
|
/// @contextType css
|
|
24
24
|
|
|
25
|
+
// ============================================================================
|
|
26
|
+
// Responsive Flex Direction Utilities
|
|
27
|
+
// ============================================================================
|
|
28
|
+
|
|
29
|
+
/// This is equivalent to `flex-direction: row; for the specific breakpoint`.
|
|
30
|
+
/// @example flex-direction: row;
|
|
31
|
+
/// @name .k-flex-{xs|sm|md|lg|xl|xxl}-row
|
|
32
|
+
/// @group flex-direction-responsive
|
|
33
|
+
/// @contextType css
|
|
34
|
+
|
|
35
|
+
/// This is equivalent to `flex-direction: row-reverse; for the specific breakpoint`.
|
|
36
|
+
/// @example flex-direction: row-reverse;
|
|
37
|
+
/// @name .k-flex-{xs|sm|md|lg|xl|xxl}-row-reverse
|
|
38
|
+
/// @group flex-direction-responsive
|
|
39
|
+
/// @contextType css
|
|
40
|
+
|
|
41
|
+
/// This is equivalent to `flex-direction: column; for the specific breakpoint`.
|
|
42
|
+
/// @example flex-direction: column;
|
|
43
|
+
/// @name .k-flex-{xs|sm|md|lg|xl|xxl}-col
|
|
44
|
+
/// @group flex-direction-responsive
|
|
45
|
+
/// @contextType css
|
|
46
|
+
|
|
47
|
+
/// This is equivalent to `flex-direction: column-reverse; for the specific breakpoint`.
|
|
48
|
+
/// @example flex-direction: column-reverse;
|
|
49
|
+
/// @name .k-flex-{xs|sm|md|lg|xl|xxl}-col-reverse
|
|
50
|
+
/// @group flex-direction-responsive
|
|
51
|
+
/// @contextType css
|
|
52
|
+
|
|
25
53
|
@use "sass:map";
|
|
26
54
|
@use "../_globals.scss" as *;
|
|
27
55
|
|
package/scss/flex-grid/_gap.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// This is equivalent to `gap: 0;`.
|
|
2
2
|
/// @example gap: 0;
|
|
3
|
-
/// @name .k-gap-0
|
|
3
|
+
/// @name .k-gap-{0-30}
|
|
4
4
|
/// @group gap
|
|
5
5
|
/// @contextType css
|
|
6
6
|
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
/// @group gap
|
|
11
11
|
/// @contextType css
|
|
12
12
|
|
|
13
|
-
/// This is equivalent to `gap: 0.
|
|
14
|
-
/// @example gap: 0.
|
|
15
|
-
/// @name .k-gap-
|
|
13
|
+
/// This is equivalent to `gap: 0.125rem;`.
|
|
14
|
+
/// @example gap: 0.125rem;
|
|
15
|
+
/// @name .k-gap-0\.5
|
|
16
16
|
/// @group gap
|
|
17
17
|
/// @contextType css
|
|
18
18
|
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
|
|
61
61
|
/// This is equivalent to `column-gap: 0;`.
|
|
62
62
|
/// @example column-gap: 0;
|
|
63
|
-
/// @name .k-gap-x-0
|
|
63
|
+
/// @name .k-gap-x-{0-30}
|
|
64
64
|
/// @group gap
|
|
65
65
|
/// @contextType css
|
|
66
66
|
|
|
@@ -70,9 +70,9 @@
|
|
|
70
70
|
/// @group gap
|
|
71
71
|
/// @contextType css
|
|
72
72
|
|
|
73
|
-
/// This is equivalent to `column-gap: 0.
|
|
74
|
-
/// @example column-gap: 0.
|
|
75
|
-
/// @name .k-gap-x-
|
|
73
|
+
/// This is equivalent to `column-gap: 0.125rem;`.
|
|
74
|
+
/// @example column-gap: 0.125rem;
|
|
75
|
+
/// @name .k-gap-x-0\.5
|
|
76
76
|
/// @group gap
|
|
77
77
|
/// @contextType css
|
|
78
78
|
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
|
|
121
121
|
/// This is equivalent to `row-gap: 0;`.
|
|
122
122
|
/// @example row-gap: 0;
|
|
123
|
-
/// @name .k-gap-y-0
|
|
123
|
+
/// @name .k-gap-y-{0-30}
|
|
124
124
|
/// @group gap
|
|
125
125
|
/// @contextType css
|
|
126
126
|
|
|
@@ -130,9 +130,9 @@
|
|
|
130
130
|
/// @group gap
|
|
131
131
|
/// @contextType css
|
|
132
132
|
|
|
133
|
-
/// This is equivalent to `row-gap: 0.
|
|
134
|
-
/// @example row-gap: 0.
|
|
135
|
-
/// @name .k-gap-y-
|
|
133
|
+
/// This is equivalent to `row-gap: 0.125rem;`.
|
|
134
|
+
/// @example row-gap: 0.125rem;
|
|
135
|
+
/// @name .k-gap-y-0\.5
|
|
136
136
|
/// @group gap
|
|
137
137
|
/// @contextType css
|
|
138
138
|
|
|
@@ -178,6 +178,190 @@
|
|
|
178
178
|
/// @group gap
|
|
179
179
|
/// @contextType css
|
|
180
180
|
|
|
181
|
+
// ============================================================================
|
|
182
|
+
// Responsive Gap Utilities
|
|
183
|
+
// ============================================================================
|
|
184
|
+
|
|
185
|
+
/// This is equivalent to `gap: 0;`.
|
|
186
|
+
/// @example gap: 0;
|
|
187
|
+
/// @name .k-gap-{xs|sm|md|lg|xl|xxl}-{0-30}
|
|
188
|
+
/// @group gap-responsive
|
|
189
|
+
/// @contextType css
|
|
190
|
+
|
|
191
|
+
/// This is equivalent to `gap: 1px;`.
|
|
192
|
+
/// @example gap: 1px;
|
|
193
|
+
/// @name .k-gap-{xs|sm|md|lg|xl|xxl}-1px
|
|
194
|
+
/// @group gap-responsive
|
|
195
|
+
/// @contextType css
|
|
196
|
+
|
|
197
|
+
/// This is equivalent to `gap: 0.125rem;`.
|
|
198
|
+
/// @example gap: 0.25rem;
|
|
199
|
+
/// @name .k-gap-{xs|sm|md|lg|xl|xxl}-0\.5
|
|
200
|
+
/// @group gap-responsive
|
|
201
|
+
/// @contextType css
|
|
202
|
+
|
|
203
|
+
/// This is equivalent to `gap: 0.25rem;`.
|
|
204
|
+
/// @example gap: 0.25rem;
|
|
205
|
+
/// @name .k-gap-{xs|sm|md|lg|xl|xxl}-xs
|
|
206
|
+
/// @group gap-responsive
|
|
207
|
+
/// @contextType css
|
|
208
|
+
|
|
209
|
+
/// This is equivalent to `gap: 0.5rem;`.
|
|
210
|
+
/// @example gap: 0.5rem;
|
|
211
|
+
/// @name .k-gap-{xs|sm|md|lg|xl|xxl}-sm
|
|
212
|
+
/// @group gap-responsive
|
|
213
|
+
/// @contextType css
|
|
214
|
+
|
|
215
|
+
/// This is equivalent to `gap: 0.75rem;`.
|
|
216
|
+
/// @example gap: 0.75rem;
|
|
217
|
+
/// @name .k-gap-{xs|sm|md|lg|xl|xxl}-md
|
|
218
|
+
/// @group gap-responsive
|
|
219
|
+
/// @contextType css
|
|
220
|
+
|
|
221
|
+
/// This is equivalent to `gap: 1rem;`.
|
|
222
|
+
/// @example gap: 1rem;
|
|
223
|
+
/// @name .k-gap-{xs|sm|md|lg|xl|xxl}-lg
|
|
224
|
+
/// @group gap-responsive
|
|
225
|
+
/// @contextType css
|
|
226
|
+
|
|
227
|
+
/// This is equivalent to `gap: 1.5rem;`.
|
|
228
|
+
/// @example gap: 1.5rem;
|
|
229
|
+
/// @name .k-gap-{xs|sm|md|lg|xl|xxl}-xl
|
|
230
|
+
/// @group gap-responsive
|
|
231
|
+
/// @contextType css
|
|
232
|
+
|
|
233
|
+
/// This is equivalent to `gap: 0.125rem;`.
|
|
234
|
+
/// @example gap: 0.125rem;
|
|
235
|
+
/// @name .k-gap-{xs|sm|md|lg|xl|xxl}-thin
|
|
236
|
+
/// @group gap-responsive
|
|
237
|
+
/// @contextType css
|
|
238
|
+
|
|
239
|
+
/// This is equivalent to `gap: 1px;`.
|
|
240
|
+
/// @example gap: 1px;
|
|
241
|
+
/// @name .k-gap-hair-{xs|sm|md|lg|xl|xxl}
|
|
242
|
+
/// @group gap-responsive
|
|
243
|
+
/// @contextType css
|
|
244
|
+
|
|
245
|
+
/// This is equivalent to `column-gap: 0;`.
|
|
246
|
+
/// @example column-gap: 0;
|
|
247
|
+
/// @name .k-gap-x-{xs|sm|md|lg|xl|xxl}-{0-30}
|
|
248
|
+
/// @group gap-responsive
|
|
249
|
+
/// @contextType css
|
|
250
|
+
|
|
251
|
+
/// This is equivalent to `column-gap: 1px;`.
|
|
252
|
+
/// @example column-gap: 1px;
|
|
253
|
+
/// @name .k-gap-x-{xs|sm|md|lg|xl|xxl}-1px
|
|
254
|
+
/// @group gap-responsive
|
|
255
|
+
/// @contextType css
|
|
256
|
+
|
|
257
|
+
/// This is equivalent to `column-gap: 0.125rem;`.
|
|
258
|
+
/// @example column-gap: 0.125rem;
|
|
259
|
+
/// @name .k-gap-x-{xs|sm|md|lg|xl|xxl}-0\.5
|
|
260
|
+
/// @group gap-responsive
|
|
261
|
+
/// @contextType css
|
|
262
|
+
|
|
263
|
+
/// This is equivalent to `column-gap: 0.25rem;`.
|
|
264
|
+
/// @example column-gap: 0.25rem;
|
|
265
|
+
/// @name .k-gap-x-{xs|sm|md|lg|xl|xxl}-xs
|
|
266
|
+
/// @group gap-responsive
|
|
267
|
+
/// @contextType css
|
|
268
|
+
|
|
269
|
+
/// This is equivalent to `column-gap: 0.5rem;`.
|
|
270
|
+
/// @example column-gap: 0.5rem;
|
|
271
|
+
/// @name .k-gap-x-{xs|sm|md|lg|xl|xxl}-sm
|
|
272
|
+
/// @group gap-responsive
|
|
273
|
+
/// @contextType css
|
|
274
|
+
|
|
275
|
+
/// This is equivalent to `column-gap: 0.75rem;`.
|
|
276
|
+
/// @example column-gap: 0.75rem;
|
|
277
|
+
/// @name .k-gap-x-{xs|sm|md|lg|xl|xxl}-md
|
|
278
|
+
/// @group gap-responsive
|
|
279
|
+
/// @contextType css
|
|
280
|
+
|
|
281
|
+
/// This is equivalent to `column-gap: 1rem;`.
|
|
282
|
+
/// @example column-gap: 1rem;
|
|
283
|
+
/// @name .k-gap-x-{xs|sm|md|lg|xl|xxl}-lg
|
|
284
|
+
/// @group gap-responsive
|
|
285
|
+
/// @contextType css
|
|
286
|
+
|
|
287
|
+
/// This is equivalent to `column-gap: 1.5rem;`.
|
|
288
|
+
/// @example column-gap: 1.5rem;
|
|
289
|
+
/// @name .k-gap-x-{xs|sm|md|lg|xl|xxl}-xl
|
|
290
|
+
/// @group gap-responsive
|
|
291
|
+
/// @contextType css
|
|
292
|
+
|
|
293
|
+
/// This is equivalent to `column-gap: 0.125rem;`.
|
|
294
|
+
/// @example column-gap: 0.125rem;
|
|
295
|
+
/// @name .k-gap-x-{xs|sm|md|lg|xl|xxl}-thin
|
|
296
|
+
/// @group gap-responsive
|
|
297
|
+
/// @contextType css
|
|
298
|
+
|
|
299
|
+
/// This is equivalent to `column-gap: 1px;`.
|
|
300
|
+
/// @example column-gap: 1px;
|
|
301
|
+
/// @name .k-gap-x-{xs|sm|md|lg|xl|xxl}-hair
|
|
302
|
+
/// @group gap-responsive
|
|
303
|
+
/// @contextType css
|
|
304
|
+
|
|
305
|
+
/// This is equivalent to `row-gap: 0;`.
|
|
306
|
+
/// @example row-gap: 0;
|
|
307
|
+
/// @name .k-gap-y-{xs|sm|md|lg|xl|xxl}-{0-30}
|
|
308
|
+
/// @group gap-responsive
|
|
309
|
+
/// @contextType css
|
|
310
|
+
|
|
311
|
+
/// This is equivalent to `row-gap: 1px;`.
|
|
312
|
+
/// @example row-gap: 1px;
|
|
313
|
+
/// @name .k-gap-y-{xs|sm|md|lg|xl|xxl}-1px
|
|
314
|
+
/// @group gap-responsive
|
|
315
|
+
/// @contextType css
|
|
316
|
+
|
|
317
|
+
/// This is equivalent to `row-gap: 0.125rem;`.
|
|
318
|
+
/// @example row-gap: 0.125rem;
|
|
319
|
+
/// @name .k-gap-y-{xs|sm|md|lg|xl|xxl}-0\.5
|
|
320
|
+
/// @group gap-responsive
|
|
321
|
+
/// @contextType css
|
|
322
|
+
|
|
323
|
+
/// This is equivalent to `row-gap: 0.25rem;`.
|
|
324
|
+
/// @example row-gap: 0.25rem;
|
|
325
|
+
/// @name .k-gap-y-{xs|sm|md|lg|xl|xxl}-xs
|
|
326
|
+
/// @group gap-responsive
|
|
327
|
+
/// @contextType css
|
|
328
|
+
|
|
329
|
+
/// This is equivalent to `row-gap: 0.5rem;`.
|
|
330
|
+
/// @example row-gap: 0.5rem;
|
|
331
|
+
/// @name .k-gap-y-{xs|sm|md|lg|xl|xxl}-sm
|
|
332
|
+
/// @group gap-responsive
|
|
333
|
+
/// @contextType css
|
|
334
|
+
|
|
335
|
+
/// This is equivalent to `row-gap: 0.75rem;`.
|
|
336
|
+
/// @example row-gap: 0.75rem;
|
|
337
|
+
/// @name .k-gap-y-{xs|sm|md|lg|xl|xxl}-md
|
|
338
|
+
/// @group gap-responsive
|
|
339
|
+
/// @contextType css
|
|
340
|
+
|
|
341
|
+
/// This is equivalent to `row-gap: 1rem;`.
|
|
342
|
+
/// @example row-gap: 1rem;
|
|
343
|
+
/// @name .k-gap-y-{xs|sm|md|lg|xl|xxl}-lg
|
|
344
|
+
/// @group gap-responsive
|
|
345
|
+
/// @contextType css
|
|
346
|
+
|
|
347
|
+
/// This is equivalent to `row-gap: 1.5rem;`.
|
|
348
|
+
/// @example row-gap: 1.5rem;
|
|
349
|
+
/// @name .k-gap-y-{xs|sm|md|lg|xl|xxl}-xl
|
|
350
|
+
/// @group gap-responsive
|
|
351
|
+
/// @contextType css
|
|
352
|
+
|
|
353
|
+
/// This is equivalent to `row-gap: 0.125rem;`.
|
|
354
|
+
/// @example row-gap: 0.125rem;
|
|
355
|
+
/// @name .k-gap-y-{xs|sm|md|lg|xl|xxl}-thin
|
|
356
|
+
/// @group gap-responsive
|
|
357
|
+
/// @contextType css
|
|
358
|
+
|
|
359
|
+
/// This is equivalent to `row-gap: 1px;`.
|
|
360
|
+
/// @example row-gap: 1px;
|
|
361
|
+
/// @name .k-gap-y-{xs|sm|md|lg|xl|xxl}-hair
|
|
362
|
+
/// @group gap-responsive
|
|
363
|
+
/// @contextType css
|
|
364
|
+
|
|
181
365
|
@use "sass:map";
|
|
182
366
|
@use "../_globals.scss" as *;
|
|
183
367
|
|