@progress/kendo-theme-default 12.2.0-dev.2 → 12.2.0-dev.4
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 +1 -1
- package/dist/default-blue.css +1 -1
- package/dist/default-dataviz-v4.css +1 -1
- package/dist/default-green.css +1 -1
- package/dist/default-main-dark.css +1 -1
- package/dist/default-main.css +1 -1
- package/dist/default-nordic.css +1 -1
- package/dist/default-ocean-blue-a11y.css +1 -1
- package/dist/default-ocean-blue.css +1 -1
- package/dist/default-orange.css +1 -1
- package/dist/default-purple.css +1 -1
- package/dist/default-turquoise.css +1 -1
- package/dist/default-urban.css +1 -1
- package/dist/meta/sassdoc-data.json +91605 -60575
- package/dist/meta/sassdoc-raw-data.json +35717 -21592
- package/dist/meta/variables.json +1 -113
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue-a11y.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/package.json +4 -4
- package/scss/action-buttons/_variables.scss +19 -0
- package/scss/action-sheet/_variables.scss +146 -0
- package/scss/adaptive/_variables.scss +36 -0
- package/scss/appbar/_variables.scss +2 -0
- package/scss/badge/_variables.scss +2 -0
- package/scss/bottom-navigation/_variables.scss +2 -0
- package/scss/button/_variables.scss +28 -24
- package/scss/card/_variables.scss +2 -0
- package/scss/chat/_variables.scss +1 -1
- package/scss/checkbox/_variables.scss +2 -0
- package/scss/chip/_variables.scss +0 -2
- package/scss/color-preview/_variables.scss +18 -0
- package/scss/column-menu/_variables.scss +40 -0
- package/scss/dataviz/_variables.scss +202 -0
- package/scss/daterangepicker/_variables.scss +2 -0
- package/scss/draggable/_variables.scss +40 -0
- package/scss/editor/_variables.scss +6 -0
- package/scss/grid/_variables.scss +178 -18
- package/scss/imageeditor/_variables.scss +62 -0
- package/scss/input/_variables.scss +0 -4
- package/scss/list/_variables.scss +126 -30
- package/scss/listgroup/_variables.scss +20 -0
- package/scss/loader/_variables.scss +2 -0
- package/scss/marquee/_variables.scss +6 -0
- package/scss/menu/_variables.scss +37 -5
- package/scss/messagebox/_variables.scss +24 -0
- package/scss/otp/_variables.scss +2 -0
- package/scss/overlay/_variables.scss +6 -0
- package/scss/pivotgrid/_variables.scss +9 -21
- package/scss/scheduler/_variables.scss +2 -0
- package/scss/signature/_variables.scss +42 -0
- package/scss/skeleton/_variables.scss +4 -0
- package/scss/spreadsheet/_variables.scss +4 -0
- package/scss/stepper/_variables.scss +3 -3
- package/scss/suggestion/_variables.scss +2 -0
- package/scss/table/_variables.scss +12 -0
- package/scss/timeselector/_variables.scss +86 -0
- package/scss/upload/_variables.scss +4 -0
|
@@ -8,27 +8,47 @@ $kendo-list-font-family: var( --kendo-font-family, inherit ) !default;
|
|
|
8
8
|
/// The font size of the List component, if no size is set.
|
|
9
9
|
/// @group list
|
|
10
10
|
$kendo-list-font-size: null !default;
|
|
11
|
+
/// The font size of the small List.
|
|
12
|
+
/// @group list
|
|
11
13
|
$kendo-list-sm-font-size: var( --kendo-font-size, inherit ) !default;
|
|
14
|
+
/// The font size of the medium List.
|
|
15
|
+
/// @group list
|
|
12
16
|
$kendo-list-md-font-size: var( --kendo-font-size, inherit ) !default;
|
|
17
|
+
/// The font size of the large List.
|
|
18
|
+
/// @group list
|
|
13
19
|
$kendo-list-lg-font-size: var( --kendo-font-size-lg, inherit ) !default;
|
|
14
20
|
|
|
15
21
|
/// The line height of the List component, if no size is set.
|
|
16
22
|
/// @group list
|
|
17
23
|
$kendo-list-line-height: null !default;
|
|
24
|
+
/// The line height of the small List.
|
|
25
|
+
/// @group list
|
|
18
26
|
$kendo-list-sm-line-height: var( --kendo-line-height, normal ) !default;
|
|
27
|
+
/// The line height of the medium List.
|
|
28
|
+
/// @group list
|
|
19
29
|
$kendo-list-md-line-height: var( --kendo-line-height, normal ) !default;
|
|
30
|
+
/// The line height of the large List.
|
|
31
|
+
/// @group list
|
|
20
32
|
$kendo-list-lg-line-height: var( --kendo-line-height-lg, normal ) !default;
|
|
21
33
|
|
|
22
|
-
/// The horizontal padding of the List header
|
|
34
|
+
/// The horizontal padding of the small List header.
|
|
23
35
|
/// @group list
|
|
24
36
|
$kendo-list-sm-header-padding-x: k-spacing(2) !default;
|
|
37
|
+
/// The horizontal padding of the medium List header.
|
|
38
|
+
/// @group list
|
|
25
39
|
$kendo-list-md-header-padding-x: k-spacing(2) !default;
|
|
40
|
+
/// The horizontal padding of the large List header.
|
|
41
|
+
/// @group list
|
|
26
42
|
$kendo-list-lg-header-padding-x: k-spacing(2) !default;
|
|
27
43
|
|
|
28
|
-
/// The vertical padding of the List header
|
|
44
|
+
/// The vertical padding of the small List header.
|
|
29
45
|
/// @group list
|
|
30
46
|
$kendo-list-sm-header-padding-y: k-spacing(0.5) !default;
|
|
47
|
+
/// The vertical padding of the medium List header.
|
|
48
|
+
/// @group list
|
|
31
49
|
$kendo-list-md-header-padding-y: k-spacing(1) !default;
|
|
50
|
+
/// The vertical padding of the large List header.
|
|
51
|
+
/// @group list
|
|
32
52
|
$kendo-list-lg-header-padding-y: k-spacing(1.5) !default;
|
|
33
53
|
|
|
34
54
|
/// The border width of the List header.
|
|
@@ -38,69 +58,117 @@ $kendo-list-header-border-width: 0 0 1px !default;
|
|
|
38
58
|
/// The font size of the List header, if no size is set.
|
|
39
59
|
/// @group list
|
|
40
60
|
$kendo-list-header-font-size: null !default;
|
|
61
|
+
/// The font size of the small List header.
|
|
62
|
+
/// @group list
|
|
41
63
|
$kendo-list-sm-header-font-size: null !default;
|
|
64
|
+
/// The font size of the medium List header.
|
|
65
|
+
/// @group list
|
|
42
66
|
$kendo-list-md-header-font-size: null !default;
|
|
67
|
+
/// The font size of the large List header.
|
|
68
|
+
/// @group list
|
|
43
69
|
$kendo-list-lg-header-font-size: null !default;
|
|
44
70
|
|
|
45
71
|
/// The line height of the List header, if no size is set.
|
|
46
72
|
/// @group list
|
|
47
73
|
$kendo-list-header-line-height: null !default;
|
|
74
|
+
/// The line height of the small List header.
|
|
75
|
+
/// @group list
|
|
48
76
|
$kendo-list-sm-header-line-height: null !default;
|
|
77
|
+
/// The line height of the medium List header.
|
|
78
|
+
/// @group list
|
|
49
79
|
$kendo-list-md-header-line-height: null !default;
|
|
80
|
+
/// The line height of the large List header.
|
|
81
|
+
/// @group list
|
|
50
82
|
$kendo-list-lg-header-line-height: null !default;
|
|
51
83
|
|
|
52
84
|
/// The font weight of the List header.
|
|
53
85
|
/// @group list
|
|
54
86
|
$kendo-list-header-font-weight: var( --kendo-font-weight-bold, normal ) !default;
|
|
55
87
|
|
|
56
|
-
/// The horizontal padding of the List filter
|
|
88
|
+
/// The horizontal padding of the small List filter.
|
|
57
89
|
/// @group list
|
|
58
90
|
$kendo-list-sm-filter-padding-x: k-spacing(2) !default;
|
|
91
|
+
/// The horizontal padding of the medium List filter.
|
|
92
|
+
/// @group list
|
|
59
93
|
$kendo-list-md-filter-padding-x: k-spacing(2) !default;
|
|
94
|
+
/// The horizontal padding of the large List filter.
|
|
95
|
+
/// @group list
|
|
60
96
|
$kendo-list-lg-filter-padding-x: k-spacing(2) !default;
|
|
61
97
|
|
|
62
|
-
/// The vertical padding of the List filter
|
|
98
|
+
/// The vertical padding of the small List filter.
|
|
63
99
|
/// @group list
|
|
64
100
|
$kendo-list-sm-filter-padding-y: k-spacing(2) !default;
|
|
101
|
+
/// The vertical padding of the medium List filter.
|
|
102
|
+
/// @group list
|
|
65
103
|
$kendo-list-md-filter-padding-y: k-spacing(2) !default;
|
|
104
|
+
/// The vertical padding of the large List filter.
|
|
105
|
+
/// @group list
|
|
66
106
|
$kendo-list-lg-filter-padding-y: k-spacing(2) !default;
|
|
67
107
|
|
|
68
|
-
/// The horizontal padding of the List
|
|
108
|
+
/// The horizontal padding of the small List item.
|
|
69
109
|
/// @group list
|
|
70
110
|
$kendo-list-sm-item-padding-x: k-spacing(2) !default;
|
|
111
|
+
/// The horizontal padding of the medium List item.
|
|
112
|
+
/// @group list
|
|
71
113
|
$kendo-list-md-item-padding-x: k-spacing(2) !default;
|
|
114
|
+
/// The horizontal padding of the large List item.
|
|
115
|
+
/// @group list
|
|
72
116
|
$kendo-list-lg-item-padding-x: k-spacing(2) !default;
|
|
73
117
|
|
|
74
|
-
/// The vertical padding of the List
|
|
118
|
+
/// The vertical padding of the small List item.
|
|
75
119
|
/// @group list
|
|
76
120
|
$kendo-list-sm-item-padding-y: k-spacing(0.5) !default;
|
|
121
|
+
/// The vertical padding of the medium List item.
|
|
122
|
+
/// @group list
|
|
77
123
|
$kendo-list-md-item-padding-y: k-spacing(1) !default;
|
|
124
|
+
/// The vertical padding of the large List item.
|
|
125
|
+
/// @group list
|
|
78
126
|
$kendo-list-lg-item-padding-y: k-spacing(2) !default;
|
|
79
127
|
|
|
80
128
|
/// The font size of the List items, if no size is set.
|
|
81
129
|
/// @group list
|
|
82
130
|
$kendo-list-item-font-size: null !default;
|
|
131
|
+
/// The font size of the small List item.
|
|
132
|
+
/// @group list
|
|
83
133
|
$kendo-list-sm-item-font-size: null !default;
|
|
134
|
+
/// The font size of the medium List item.
|
|
135
|
+
/// @group list
|
|
84
136
|
$kendo-list-md-item-font-size: null !default;
|
|
137
|
+
/// The font size of the large List item.
|
|
138
|
+
/// @group list
|
|
85
139
|
$kendo-list-lg-item-font-size: null !default;
|
|
86
140
|
|
|
87
141
|
/// The line height of the List items, if no size is set.
|
|
88
142
|
/// @group list
|
|
89
143
|
$kendo-list-item-line-height: null !default;
|
|
144
|
+
/// The line height of the small List item.
|
|
145
|
+
/// @group list
|
|
90
146
|
$kendo-list-sm-item-line-height: null !default;
|
|
147
|
+
/// The line height of the medium List item.
|
|
148
|
+
/// @group list
|
|
91
149
|
$kendo-list-md-item-line-height: null !default;
|
|
150
|
+
/// The line height of the large List item.
|
|
151
|
+
/// @group list
|
|
92
152
|
$kendo-list-lg-item-line-height: null !default;
|
|
93
153
|
|
|
94
|
-
/// The horizontal padding of the List group
|
|
154
|
+
/// The horizontal padding of the small List group item.
|
|
95
155
|
/// @group list
|
|
96
156
|
$kendo-list-sm-group-item-padding-x: k-spacing(2) !default;
|
|
157
|
+
/// The horizontal padding of the medium List group item.
|
|
158
|
+
/// @group list
|
|
97
159
|
$kendo-list-md-group-item-padding-x: k-spacing(2) !default;
|
|
160
|
+
/// The horizontal padding of the large List group item.
|
|
161
|
+
/// @group list
|
|
98
162
|
$kendo-list-lg-group-item-padding-x: k-spacing(2) !default;
|
|
99
163
|
|
|
100
|
-
/// The vertical padding of the List group
|
|
164
|
+
/// The vertical padding of the small List group item.
|
|
101
165
|
/// @group list
|
|
102
166
|
$kendo-list-sm-group-item-padding-y: k-spacing(0.5) !default;
|
|
167
|
+
/// The vertical padding of the medium List group item.
|
|
168
|
+
/// @group list
|
|
103
169
|
$kendo-list-md-group-item-padding-y: k-spacing(1) !default;
|
|
170
|
+
/// The vertical padding of the large List group item.
|
|
171
|
+
/// @group list
|
|
104
172
|
$kendo-list-lg-group-item-padding-y: k-spacing(1.5) !default;
|
|
105
173
|
|
|
106
174
|
/// The border width of the List group items.
|
|
@@ -110,43 +178,71 @@ $kendo-list-group-item-border-width: 1px 0 0 !default;
|
|
|
110
178
|
/// The font size of the List group items, if no size is set.
|
|
111
179
|
/// @group list
|
|
112
180
|
$kendo-list-group-item-font-size: null !default;
|
|
181
|
+
/// The font size of the small List group item.
|
|
182
|
+
/// @group list
|
|
113
183
|
$kendo-list-sm-group-item-font-size: null !default;
|
|
184
|
+
/// The font size of the medium List group item.
|
|
185
|
+
/// @group list
|
|
114
186
|
$kendo-list-md-group-item-font-size: null !default;
|
|
187
|
+
/// The font size of the large List group item.
|
|
188
|
+
/// @group list
|
|
115
189
|
$kendo-list-lg-group-item-font-size: null !default;
|
|
116
190
|
|
|
117
191
|
/// The line height of the List group items, if no size is set.
|
|
118
192
|
/// @group list
|
|
119
193
|
$kendo-list-group-item-line-height: null !default;
|
|
194
|
+
/// The line height of the small List group item.
|
|
195
|
+
/// @group list
|
|
120
196
|
$kendo-list-sm-group-item-line-height: null !default;
|
|
197
|
+
/// The line height of the medium List group item.
|
|
198
|
+
/// @group list
|
|
121
199
|
$kendo-list-md-group-item-line-height: null !default;
|
|
200
|
+
/// The line height of the large List group item.
|
|
201
|
+
/// @group list
|
|
122
202
|
$kendo-list-lg-group-item-line-height: null !default;
|
|
123
203
|
|
|
124
204
|
/// The font weight of a List group item.
|
|
125
205
|
/// @group list
|
|
126
206
|
$kendo-list-group-item-font-weight: var( --kendo-font-weight-bold, normal ) !default;
|
|
127
207
|
|
|
128
|
-
/// The font size of the List item group label.
|
|
208
|
+
/// The font size of the small List item group label.
|
|
129
209
|
/// @group list
|
|
130
210
|
$kendo-list-item-group-label-sm-font-size: .75em !default;
|
|
211
|
+
/// The font size of the medium List item group label.
|
|
212
|
+
/// @group list
|
|
131
213
|
$kendo-list-item-group-label-md-font-size: .75em !default;
|
|
214
|
+
/// The font size of the large List item group label.
|
|
215
|
+
/// @group list
|
|
132
216
|
$kendo-list-item-group-label-lg-font-size: .75em !default;
|
|
133
217
|
|
|
134
|
-
/// The line
|
|
218
|
+
/// The line height of the small List item group label.
|
|
135
219
|
/// @group list
|
|
136
220
|
$kendo-list-item-group-label-sm-line-height: inherit !default;
|
|
221
|
+
/// The line height of the medium List item group label.
|
|
222
|
+
/// @group list
|
|
137
223
|
$kendo-list-item-group-label-md-line-height: inherit !default;
|
|
224
|
+
/// The line height of the large List item group label.
|
|
225
|
+
/// @group list
|
|
138
226
|
$kendo-list-item-group-label-lg-line-height: inherit !default;
|
|
139
227
|
|
|
140
|
-
/// The horizontal padding of the List item group label.
|
|
228
|
+
/// The horizontal padding of the small List item group label.
|
|
141
229
|
/// @group list
|
|
142
230
|
$kendo-list-item-group-label-sm-padding-x: .5em !default;
|
|
231
|
+
/// The horizontal padding of the medium List item group label.
|
|
232
|
+
/// @group list
|
|
143
233
|
$kendo-list-item-group-label-md-padding-x: .5em !default;
|
|
234
|
+
/// The horizontal padding of the large List item group label.
|
|
235
|
+
/// @group list
|
|
144
236
|
$kendo-list-item-group-label-lg-padding-x: .5em !default;
|
|
145
237
|
|
|
146
|
-
/// The vertical padding of the List item group label.
|
|
238
|
+
/// The vertical padding of the small List item group label.
|
|
147
239
|
/// @group list
|
|
148
240
|
$kendo-list-item-group-label-sm-padding-y: 0 !default;
|
|
241
|
+
/// The vertical padding of the medium List item group label.
|
|
242
|
+
/// @group list
|
|
149
243
|
$kendo-list-item-group-label-md-padding-y: 0 !default;
|
|
244
|
+
/// The vertical padding of the large List item group label.
|
|
245
|
+
/// @group list
|
|
150
246
|
$kendo-list-item-group-label-lg-padding-y: 0 !default;
|
|
151
247
|
|
|
152
248
|
/// The map with the sizes of the List.
|
|
@@ -157,16 +253,16 @@ $kendo-list-sizes: (
|
|
|
157
253
|
line-height: $kendo-list-sm-line-height,
|
|
158
254
|
header-padding-x: $kendo-list-sm-header-padding-x,
|
|
159
255
|
header-padding-y: $kendo-list-sm-header-padding-y,
|
|
160
|
-
header-font-size:
|
|
161
|
-
header-line-height:
|
|
256
|
+
header-font-size: $kendo-list-sm-header-font-size,
|
|
257
|
+
header-line-height: $kendo-list-sm-header-line-height,
|
|
162
258
|
item-padding-x: $kendo-list-sm-item-padding-x,
|
|
163
259
|
item-padding-y: $kendo-list-sm-item-padding-y,
|
|
164
|
-
item-font-size:
|
|
165
|
-
item-line-height:
|
|
260
|
+
item-font-size: $kendo-list-sm-item-font-size,
|
|
261
|
+
item-line-height: $kendo-list-sm-item-line-height,
|
|
166
262
|
group-item-padding-x: $kendo-list-sm-group-item-padding-x,
|
|
167
263
|
group-item-padding-y: $kendo-list-sm-group-item-padding-y,
|
|
168
|
-
group-item-font-size:
|
|
169
|
-
group-item-line-height:
|
|
264
|
+
group-item-font-size: $kendo-list-sm-group-item-font-size,
|
|
265
|
+
group-item-line-height: $kendo-list-sm-group-item-line-height,
|
|
170
266
|
item-group-label-padding-x: $kendo-list-item-group-label-sm-padding-x,
|
|
171
267
|
item-group-label-padding-y: $kendo-list-item-group-label-sm-padding-y,
|
|
172
268
|
item-group-label-font-size: $kendo-list-item-group-label-sm-font-size,
|
|
@@ -179,16 +275,16 @@ $kendo-list-sizes: (
|
|
|
179
275
|
line-height: $kendo-list-md-line-height,
|
|
180
276
|
header-padding-x: $kendo-list-md-header-padding-x,
|
|
181
277
|
header-padding-y: $kendo-list-md-header-padding-y,
|
|
182
|
-
header-font-size:
|
|
183
|
-
header-line-height:
|
|
278
|
+
header-font-size: $kendo-list-md-header-font-size,
|
|
279
|
+
header-line-height: $kendo-list-md-header-line-height,
|
|
184
280
|
item-padding-x: $kendo-list-md-item-padding-x,
|
|
185
281
|
item-padding-y: $kendo-list-md-item-padding-y,
|
|
186
|
-
item-font-size:
|
|
187
|
-
item-line-height:
|
|
282
|
+
item-font-size: $kendo-list-md-item-font-size,
|
|
283
|
+
item-line-height: $kendo-list-md-item-line-height,
|
|
188
284
|
group-item-padding-x: $kendo-list-md-group-item-padding-x,
|
|
189
285
|
group-item-padding-y: $kendo-list-md-group-item-padding-y,
|
|
190
|
-
group-item-font-size:
|
|
191
|
-
group-item-line-height:
|
|
286
|
+
group-item-font-size: $kendo-list-md-group-item-font-size,
|
|
287
|
+
group-item-line-height: $kendo-list-md-group-item-line-height,
|
|
192
288
|
item-group-label-padding-x: $kendo-list-item-group-label-md-padding-x,
|
|
193
289
|
item-group-label-padding-y: $kendo-list-item-group-label-md-padding-y,
|
|
194
290
|
item-group-label-font-size: $kendo-list-item-group-label-md-font-size,
|
|
@@ -201,16 +297,16 @@ $kendo-list-sizes: (
|
|
|
201
297
|
line-height: $kendo-list-lg-line-height,
|
|
202
298
|
header-padding-x: $kendo-list-lg-header-padding-x,
|
|
203
299
|
header-padding-y: $kendo-list-lg-header-padding-y,
|
|
204
|
-
header-font-size:
|
|
205
|
-
header-line-height:
|
|
300
|
+
header-font-size: $kendo-list-lg-header-font-size,
|
|
301
|
+
header-line-height: $kendo-list-lg-header-line-height,
|
|
206
302
|
item-padding-x: $kendo-list-lg-item-padding-x,
|
|
207
303
|
item-padding-y: $kendo-list-lg-item-padding-y,
|
|
208
|
-
item-font-size:
|
|
209
|
-
item-line-height:
|
|
304
|
+
item-font-size: $kendo-list-lg-item-font-size,
|
|
305
|
+
item-line-height: $kendo-list-lg-item-line-height,
|
|
210
306
|
group-item-padding-x: $kendo-list-lg-group-item-padding-x,
|
|
211
307
|
group-item-padding-y: $kendo-list-lg-group-item-padding-y,
|
|
212
|
-
group-item-font-size:
|
|
213
|
-
group-item-line-height:
|
|
308
|
+
group-item-font-size: $kendo-list-lg-group-item-font-size,
|
|
309
|
+
group-item-line-height: $kendo-list-lg-group-item-line-height,
|
|
214
310
|
item-group-label-padding-x: $kendo-list-item-group-label-lg-padding-x,
|
|
215
311
|
item-group-label-padding-y: $kendo-list-item-group-label-lg-padding-y,
|
|
216
312
|
item-group-label-font-size: $kendo-list-item-group-label-lg-font-size,
|
|
@@ -1,18 +1,38 @@
|
|
|
1
1
|
@use "../core/_index.scss" as *;
|
|
2
2
|
|
|
3
3
|
// Listgroup
|
|
4
|
+
/// The width of the border around the ListGroup.
|
|
5
|
+
/// @group listgroup
|
|
4
6
|
$kendo-listgroup-border-width: 1px !default;
|
|
7
|
+
/// The border radius of the ListGroup.
|
|
8
|
+
/// @group listgroup
|
|
5
9
|
$kendo-listgroup-border-radius: k-border-radius(md) !default;
|
|
6
10
|
|
|
11
|
+
/// The font size of the ListGroup.
|
|
12
|
+
/// @group listgroup
|
|
7
13
|
$kendo-listgroup-font-size: var( --kendo-font-size, inherit ) !default;
|
|
14
|
+
/// The line height of the ListGroup.
|
|
15
|
+
/// @group listgroup
|
|
8
16
|
$kendo-listgroup-line-height: var( --kendo-line-height, normal ) !default;
|
|
9
17
|
|
|
18
|
+
/// The background color of the ListGroup.
|
|
19
|
+
/// @group listgroup
|
|
10
20
|
$kendo-listgroup-bg: k-color(surface-alt) !default;
|
|
21
|
+
/// The text color of the ListGroup.
|
|
22
|
+
/// @group listgroup
|
|
11
23
|
$kendo-listgroup-text: k-color(on-app-surface) !default;
|
|
24
|
+
/// The border color of the ListGroup.
|
|
25
|
+
/// @group listgroup
|
|
12
26
|
$kendo-listgroup-border: k-color(border) !default;
|
|
13
27
|
|
|
28
|
+
/// The horizontal padding of the ListGroup item.
|
|
29
|
+
/// @group listgroup
|
|
14
30
|
$kendo-listgroup-item-padding-x: k-spacing(2) !default;
|
|
31
|
+
/// The vertical padding of the ListGroup item.
|
|
32
|
+
/// @group listgroup
|
|
15
33
|
$kendo-listgroup-item-padding-y: k-spacing(2) !default;
|
|
34
|
+
/// The width of the border around the ListGroup item.
|
|
35
|
+
/// @group listgroup
|
|
16
36
|
$kendo-listgroup-item-border-width: 1px !default;
|
|
17
37
|
|
|
18
38
|
@forward "@progress/kendo-theme-core/scss/components/listgroup/_variables.scss" with (
|
|
@@ -126,6 +126,8 @@ $kendo-loading-opacity: .3 !default;
|
|
|
126
126
|
/// @group loading
|
|
127
127
|
$kendo-zindex-loading: 100 !default;
|
|
128
128
|
|
|
129
|
+
/// The theme colors of the Loader.
|
|
130
|
+
/// @group loader
|
|
129
131
|
$kendo-loader-theme-colors: (
|
|
130
132
|
"primary": k-color(primary),
|
|
131
133
|
"secondary": k-color(secondary),
|
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
@use "../core/_index.scss" as *;
|
|
2
2
|
|
|
3
|
+
/// The text color of the Marquee.
|
|
4
|
+
/// @group marquee
|
|
3
5
|
$kendo-marquee-text: k-color(on-primary) !default;
|
|
6
|
+
/// The background color of the Marquee.
|
|
7
|
+
/// @group marquee
|
|
4
8
|
$kendo-marquee-bg: k-color(primary) !default;
|
|
9
|
+
/// The border color of the Marquee.
|
|
10
|
+
/// @group marquee
|
|
5
11
|
$kendo-marquee-border: k-color(border) !default;
|
|
6
12
|
|
|
7
13
|
@forward "@progress/kendo-theme-core/scss/components/marquee/_variables.scss" with (
|
|
@@ -168,12 +168,24 @@ $kendo-menu-popup-padding-y: null !default;
|
|
|
168
168
|
/// @group menu
|
|
169
169
|
$kendo-menu-popup-border-width: $kendo-popup-border-width !default;
|
|
170
170
|
|
|
171
|
+
/// The font size of the small Menu popup.
|
|
172
|
+
/// @group menu
|
|
171
173
|
$kendo-menu-popup-sm-font-size: var( --kendo-font-size, inherit ) !default;
|
|
174
|
+
/// The font size of the medium Menu popup.
|
|
175
|
+
/// @group menu
|
|
172
176
|
$kendo-menu-popup-md-font-size: var( --kendo-font-size, inherit ) !default;
|
|
177
|
+
/// The font size of the large Menu popup.
|
|
178
|
+
/// @group menu
|
|
173
179
|
$kendo-menu-popup-lg-font-size: var( --kendo-font-size-lg, inherit ) !default;
|
|
174
180
|
|
|
181
|
+
/// The line height of the small Menu popup.
|
|
182
|
+
/// @group menu
|
|
175
183
|
$kendo-menu-popup-sm-line-height: var( --kendo-line-height, normal ) !default;
|
|
184
|
+
/// The line height of the medium Menu popup.
|
|
185
|
+
/// @group menu
|
|
176
186
|
$kendo-menu-popup-md-line-height: var( --kendo-line-height, normal ) !default;
|
|
187
|
+
/// The line height of the large Menu popup.
|
|
188
|
+
/// @group menu
|
|
177
189
|
$kendo-menu-popup-lg-line-height: var( --kendo-line-height-lg, normal ) !default;
|
|
178
190
|
|
|
179
191
|
/// The background color of the Menu popup.
|
|
@@ -192,34 +204,54 @@ $kendo-menu-popup-gradient: null !default;
|
|
|
192
204
|
|
|
193
205
|
// Menu popup item
|
|
194
206
|
|
|
195
|
-
/// The horizontal padding of the Menu item
|
|
207
|
+
/// The horizontal padding of the small Menu popup item.
|
|
196
208
|
/// @group menu
|
|
197
209
|
$kendo-menu-popup-sm-item-padding-x: k-spacing(2) !default;
|
|
210
|
+
/// The horizontal padding of the medium Menu popup item.
|
|
211
|
+
/// @group menu
|
|
198
212
|
$kendo-menu-popup-md-item-padding-x: k-spacing(2) !default;
|
|
213
|
+
/// The horizontal padding of the large Menu popup item.
|
|
214
|
+
/// @group menu
|
|
199
215
|
$kendo-menu-popup-lg-item-padding-x: k-spacing(2) !default;
|
|
200
216
|
|
|
201
|
-
/// The vertical padding of the Menu item
|
|
217
|
+
/// The vertical padding of the small Menu popup item.
|
|
202
218
|
/// @group menu
|
|
203
219
|
$kendo-menu-popup-sm-item-padding-y: k-spacing(0.5) !default;
|
|
220
|
+
/// The vertical padding of the medium Menu popup item.
|
|
221
|
+
/// @group menu
|
|
204
222
|
$kendo-menu-popup-md-item-padding-y: k-spacing(1) !default;
|
|
223
|
+
/// The vertical padding of the large Menu popup item.
|
|
224
|
+
/// @group menu
|
|
205
225
|
$kendo-menu-popup-lg-item-padding-y: k-spacing(1.5) !default;
|
|
206
226
|
|
|
207
|
-
/// The end padding of the Menu item
|
|
227
|
+
/// The end padding of the small Menu popup item.
|
|
208
228
|
/// @group menu
|
|
209
229
|
$kendo-menu-popup-sm-item-padding-end: calc( #{$kendo-menu-popup-sm-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
|
|
230
|
+
/// The end padding of the medium Menu popup item.
|
|
231
|
+
/// @group menu
|
|
210
232
|
$kendo-menu-popup-md-item-padding-end: calc( #{$kendo-menu-popup-md-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
|
|
233
|
+
/// The end padding of the large Menu popup item.
|
|
234
|
+
/// @group menu
|
|
211
235
|
$kendo-menu-popup-lg-item-padding-end: calc( #{$kendo-menu-popup-lg-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
|
|
212
236
|
|
|
213
|
-
/// The start margin of the Menu item expand icon.
|
|
237
|
+
/// The start margin of the small Menu popup item expand icon.
|
|
214
238
|
/// @group menu
|
|
215
239
|
$kendo-menu-popup-sm-item-icon-margin-start: $kendo-menu-popup-sm-item-padding-x !default;
|
|
240
|
+
/// The start margin of the medium Menu popup item expand icon.
|
|
241
|
+
/// @group menu
|
|
216
242
|
$kendo-menu-popup-md-item-icon-margin-start: $kendo-menu-popup-md-item-padding-x !default;
|
|
243
|
+
/// The start margin of the large Menu popup item expand icon.
|
|
244
|
+
/// @group menu
|
|
217
245
|
$kendo-menu-popup-lg-item-icon-margin-start: $kendo-menu-popup-lg-item-padding-x !default;
|
|
218
246
|
|
|
219
|
-
/// The end margin of the Menu item expand icon.
|
|
247
|
+
/// The end margin of the small Menu popup item expand icon.
|
|
220
248
|
/// @group menu
|
|
221
249
|
$kendo-menu-popup-sm-item-icon-margin-end: calc( -1 * (#{$kendo-menu-popup-sm-item-padding-end} - #{list.slash( $kendo-menu-popup-sm-item-padding-x, 2 )}) ) !default;
|
|
250
|
+
/// The end margin of the medium Menu popup item expand icon.
|
|
251
|
+
/// @group menu
|
|
222
252
|
$kendo-menu-popup-md-item-icon-margin-end: calc( -1 * (#{$kendo-menu-popup-md-item-padding-end} - #{list.slash( $kendo-menu-popup-md-item-padding-x, 2 )}) ) !default;
|
|
253
|
+
/// The end margin of the large Menu popup item expand icon.
|
|
254
|
+
/// @group menu
|
|
223
255
|
$kendo-menu-popup-lg-item-icon-margin-end: calc( -1 * (#{$kendo-menu-popup-lg-item-padding-end} - #{list.slash( $kendo-menu-popup-lg-item-padding-x, 2 )}) ) !default;
|
|
224
256
|
|
|
225
257
|
/// The spacing between the Menu items in popup.
|
|
@@ -1,21 +1,45 @@
|
|
|
1
1
|
@use "../core/_index.scss" as *;
|
|
2
2
|
|
|
3
3
|
// Message box
|
|
4
|
+
/// The margin of the MessageBox.
|
|
5
|
+
/// @group messagebox
|
|
4
6
|
$kendo-message-box-margin: 0 0 k-spacing(4) 0 !default;
|
|
7
|
+
/// The horizontal padding of the MessageBox.
|
|
8
|
+
/// @group messagebox
|
|
5
9
|
$kendo-message-box-padding-x: k-spacing(2) !default;
|
|
10
|
+
/// The vertical padding of the MessageBox.
|
|
11
|
+
/// @group messagebox
|
|
6
12
|
$kendo-message-box-padding-y: k-spacing(1) !default;
|
|
13
|
+
/// The width of the border around the MessageBox.
|
|
14
|
+
/// @group messagebox
|
|
7
15
|
$kendo-message-box-border-width: 0 0 0 4px !default;
|
|
8
16
|
|
|
17
|
+
/// The font size of the MessageBox.
|
|
18
|
+
/// @group messagebox
|
|
9
19
|
$kendo-message-box-font-size: var( --kendo-font-size, inherit ) !default;
|
|
20
|
+
/// The line height of the MessageBox.
|
|
21
|
+
/// @group messagebox
|
|
10
22
|
$kendo-message-box-line-height: var( --kendo-line-height, normal ) !default;
|
|
11
23
|
|
|
24
|
+
/// The background color level of the MessageBox.
|
|
25
|
+
/// @group messagebox
|
|
12
26
|
$kendo-message-box-bg-level: -10 !default;
|
|
27
|
+
/// The text color level of the MessageBox.
|
|
28
|
+
/// @group messagebox
|
|
13
29
|
$kendo-message-box-text-level: 6 !default;
|
|
30
|
+
/// The border color level of the MessageBox.
|
|
31
|
+
/// @group messagebox
|
|
14
32
|
$kendo-message-box-border-level: -9 !default;
|
|
15
33
|
|
|
34
|
+
/// The font style of the MessageBox link.
|
|
35
|
+
/// @group messagebox
|
|
16
36
|
$kendo-message-box-link-font-style: italic !default;
|
|
37
|
+
/// The text decoration of the MessageBox link.
|
|
38
|
+
/// @group messagebox
|
|
17
39
|
$kendo-message-box-link-text-decoration: underline !default;
|
|
18
40
|
|
|
41
|
+
/// The theme colors map for the MessageBox.
|
|
42
|
+
/// @group messagebox
|
|
19
43
|
$kendo-message-box-theme-colors: (
|
|
20
44
|
"primary": k-color(primary),
|
|
21
45
|
"secondary": k-color(secondary),
|
package/scss/otp/_variables.scss
CHANGED
|
@@ -33,6 +33,8 @@ $kendo-otp-md-input-width: $kendo-input-md-calc-size !default;
|
|
|
33
33
|
/// @group one-time-password
|
|
34
34
|
$kendo-otp-lg-input-width: $kendo-input-lg-calc-size !default;
|
|
35
35
|
|
|
36
|
+
/// The sizes map of the OTP.
|
|
37
|
+
/// @group otp
|
|
36
38
|
$kendo-otp-sizes: (
|
|
37
39
|
sm: (
|
|
38
40
|
gap: $kendo-otp-sm-gap,
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
@use "../core/_index.scss" as *;
|
|
2
2
|
|
|
3
|
+
/// The theme colors map for the Overlay.
|
|
4
|
+
/// @group overlay
|
|
3
5
|
$kendo-overlay-theme-colors: (
|
|
4
6
|
"primary": k-color(primary),
|
|
5
7
|
"secondary": k-color(secondary),
|
|
@@ -13,7 +15,11 @@ $kendo-overlay-theme-colors: (
|
|
|
13
15
|
"inverse": if($kendo-is-dark-theme, k-color(light), k-color(dark)),
|
|
14
16
|
) !default;
|
|
15
17
|
|
|
18
|
+
/// The background color of the Overlay.
|
|
19
|
+
/// @group overlay
|
|
16
20
|
$kendo-overlay-bg: k-color(inverse) !default;
|
|
21
|
+
/// The opacity of the Overlay.
|
|
22
|
+
/// @group overlay
|
|
17
23
|
$kendo-overlay-opacity: .5 !default;
|
|
18
24
|
|
|
19
25
|
@forward "@progress/kendo-theme-core/scss/components/overlay/_variables.scss" with (
|
|
@@ -107,7 +107,7 @@ $kendo-pivotgrid-selected-border: null !default;
|
|
|
107
107
|
$kendo-pivotgrid-focus-shadow: $kendo-list-item-focus-shadow !default;
|
|
108
108
|
|
|
109
109
|
|
|
110
|
-
//
|
|
110
|
+
// PivotGrid Configurator
|
|
111
111
|
/// The horizontal padding of the PivotGrid configurator.
|
|
112
112
|
/// @group pivotgrid
|
|
113
113
|
$kendo-pivotgrid-configurator-padding-x: null !default;
|
|
@@ -248,23 +248,20 @@ $kendo-pivotgrid-treeview-padding-x: calc( #{$kendo-pivotgrid-spacer} / 2 ) !def
|
|
|
248
248
|
$kendo-pivotgrid-treeview-padding-y: k-spacing(0) !default;
|
|
249
249
|
|
|
250
250
|
// Legacy variables
|
|
251
|
+
/// The background color of the PivotGrid.
|
|
252
|
+
/// @group pivotgrid
|
|
251
253
|
$kendo-pivotgrid-alt-bg: $kendo-grid-header-bg !default;
|
|
254
|
+
/// The text color of the PivotGrid.
|
|
255
|
+
/// @group pivotgrid
|
|
252
256
|
$kendo-pivotgrid-alt-text: $kendo-grid-header-text !default;
|
|
257
|
+
/// The border color of the PivotGrid.
|
|
258
|
+
/// @group pivotgrid
|
|
253
259
|
$kendo-pivotgrid-chrome-border: $kendo-grid-border !default;
|
|
254
260
|
|
|
255
|
-
|
|
261
|
+
/// The background color of the PivotGrid row.
|
|
262
|
+
/// @group pivotgrid
|
|
256
263
|
$kendo-pivotgrid-row-headers-bg: k-color(base) !default;
|
|
257
264
|
|
|
258
|
-
$kendo-pivotgrid-button-bg: null !default;
|
|
259
|
-
$kendo-pivotgrid-button-text: null !default;
|
|
260
|
-
$kendo-pivotgrid-button-hover-bg: null !default;
|
|
261
|
-
$kendo-pivotgrid-button-hover-text: null !default;
|
|
262
|
-
$kendo-pivotgrid-button-active-bg: null !default;
|
|
263
|
-
$kendo-pivotgrid-button-active-text: null !default;
|
|
264
|
-
|
|
265
|
-
$kendo-pivotgrid-remove-bg: null !default;
|
|
266
|
-
$kendo-pivotgrid-remove-text: null !default;
|
|
267
|
-
|
|
268
265
|
@forward "@progress/kendo-theme-core/scss/components/pivotgrid/_variables.scss" with (
|
|
269
266
|
$kendo-pivotgrid-spacer: $kendo-pivotgrid-spacer,
|
|
270
267
|
$kendo-pivotgrid-padding-x: $kendo-pivotgrid-padding-x,
|
|
@@ -340,14 +337,5 @@ $kendo-pivotgrid-remove-text: null !default;
|
|
|
340
337
|
$kendo-pivotgrid-alt-bg: $kendo-pivotgrid-alt-bg,
|
|
341
338
|
$kendo-pivotgrid-alt-text: $kendo-pivotgrid-alt-text,
|
|
342
339
|
$kendo-pivotgrid-chrome-border: $kendo-pivotgrid-chrome-border,
|
|
343
|
-
$kendo-pivotgrid-container-bg: $kendo-pivotgrid-container-bg,
|
|
344
340
|
$kendo-pivotgrid-row-headers-bg: $kendo-pivotgrid-row-headers-bg,
|
|
345
|
-
$kendo-pivotgrid-button-bg: $kendo-pivotgrid-button-bg,
|
|
346
|
-
$kendo-pivotgrid-button-text: $kendo-pivotgrid-button-text,
|
|
347
|
-
$kendo-pivotgrid-button-hover-bg: $kendo-pivotgrid-button-hover-bg,
|
|
348
|
-
$kendo-pivotgrid-button-hover-text: $kendo-pivotgrid-button-hover-text,
|
|
349
|
-
$kendo-pivotgrid-button-active-bg: $kendo-pivotgrid-button-active-bg,
|
|
350
|
-
$kendo-pivotgrid-button-active-text: $kendo-pivotgrid-button-active-text,
|
|
351
|
-
$kendo-pivotgrid-remove-bg: $kendo-pivotgrid-remove-bg,
|
|
352
|
-
$kendo-pivotgrid-remove-text: $kendo-pivotgrid-remove-text
|
|
353
341
|
);
|
|
@@ -259,6 +259,8 @@ $kendo-scheduler-marquee-label-inset-x: k-spacing(1) !default;
|
|
|
259
259
|
/// @group scheduler
|
|
260
260
|
$kendo-scheduler-marquee-label-inset-y: k-spacing(0.5) !default;
|
|
261
261
|
|
|
262
|
+
/// The background color of the Scheduler header.
|
|
263
|
+
/// @group scheduler
|
|
262
264
|
$kendo-scheduler-header-bg: k-color(surface) !default;
|
|
263
265
|
|
|
264
266
|
@forward "@progress/kendo-theme-core/scss/components/scheduler/_variables.scss" with (
|