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