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