@progress/kendo-theme-fluent 6.2.1-dev.0 → 6.2.1-dev.151
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 +4420 -232
- package/dist/meta/sassdoc-data.json +5200 -2550
- package/dist/meta/sassdoc-raw-data.json +2576 -1251
- package/lib/swatches/all.json +1 -1
- package/lib/swatches/fluent-main.json +1 -1
- package/package.json +5 -5
- package/scss/button/_variables.scss +49 -30
- package/scss/calendar/_layout.scss +2 -0
- package/scss/checkbox/_variables.scss +53 -53
- package/scss/chip/_variables.scss +44 -28
- package/scss/core/color-system/_variables.scss +23 -21
- package/scss/core/module-system/_components.scss +0 -1
- package/scss/datetimepicker/_layout.scss +5 -5
- package/scss/dropdowntree/_layout.scss +3 -1
- package/scss/editor/_layout.scss +0 -1
- package/scss/fab/_layout.scss +16 -2
- package/scss/grid/_layout.scss +9 -0
- package/scss/grid/_theme.scss +12 -0
- package/scss/grid/_variables.scss +7 -0
- package/scss/input/_variables.scss +153 -109
- package/scss/list/_variables.scss +49 -48
- package/scss/radio/_variables.scss +43 -40
- package/scss/split-button/_variables.scss +14 -6
- package/scss/spreadsheet/_layout.scss +1 -4
- package/scss/switch/_variables.scss +50 -49
|
@@ -2,425 +2,454 @@
|
|
|
2
2
|
@use "../core/" as *;
|
|
3
3
|
@use "../button/_variables.scss"as *;
|
|
4
4
|
|
|
5
|
-
///
|
|
5
|
+
/// The width of the Input components.
|
|
6
6
|
/// @group input
|
|
7
7
|
$kendo-input-width: 100% !default;
|
|
8
8
|
|
|
9
|
-
///
|
|
9
|
+
/// The width of the border around the Input components.
|
|
10
10
|
/// @group input
|
|
11
11
|
$kendo-input-border-width: 1px !default;
|
|
12
12
|
|
|
13
|
-
//
|
|
13
|
+
// The width of the border around the focused Input components.
|
|
14
14
|
$kendo-input-focus-border-width: 2px !default;
|
|
15
15
|
|
|
16
|
-
///
|
|
16
|
+
/// The height of the border around the Input components.
|
|
17
17
|
/// @group input
|
|
18
18
|
$kendo-input-border-height: ( $kendo-input-border-width * 2 ) !default;
|
|
19
19
|
|
|
20
|
-
///
|
|
20
|
+
/// The horizontal padding of the small Input components.
|
|
21
21
|
/// @group input
|
|
22
22
|
$kendo-input-sm-padding-x: map.get( $kendo-spacing, 2 ) !default;
|
|
23
|
+
/// The horizontal padding of the medium Input components.
|
|
24
|
+
/// @group input
|
|
23
25
|
$kendo-input-md-padding-x: map.get( $kendo-spacing, 2 ) !default;
|
|
26
|
+
/// The horizontal padding of the large Input components.
|
|
27
|
+
/// @group input
|
|
24
28
|
$kendo-input-lg-padding-x: map.get( $kendo-spacing, 2 ) !default;
|
|
25
29
|
|
|
26
|
-
///
|
|
30
|
+
/// The vertical padding of the small Input components.
|
|
27
31
|
/// @group input
|
|
28
32
|
$kendo-input-sm-padding-y: map.get( $kendo-spacing, 1 ) !default;
|
|
33
|
+
/// The vertical padding of the medium Input components.
|
|
34
|
+
/// @group input
|
|
29
35
|
$kendo-input-md-padding-y: map.get( $kendo-spacing, 1.5 ) !default;
|
|
36
|
+
/// The vertical padding of the large Input components.
|
|
37
|
+
/// @group input
|
|
30
38
|
$kendo-input-lg-padding-y: map.get( $kendo-spacing, 2 ) !default;
|
|
31
39
|
|
|
32
|
-
///
|
|
40
|
+
/// The font size of the small Input components.
|
|
33
41
|
/// @group input
|
|
34
42
|
$kendo-input-sm-font-size: var( --kendo-font-size, inherit ) !default;
|
|
43
|
+
/// The font size of the medium Input components.
|
|
44
|
+
/// @group input
|
|
35
45
|
$kendo-input-md-font-size: var( --kendo-font-size, inherit ) !default;
|
|
46
|
+
/// The font size of the large Input components.
|
|
47
|
+
/// @group input
|
|
36
48
|
$kendo-input-lg-font-size: var( --kendo-font-size, inherit ) !default;
|
|
37
49
|
|
|
38
|
-
///
|
|
50
|
+
/// The line height of the small Input components.
|
|
39
51
|
/// @group input
|
|
40
52
|
$kendo-input-sm-line-height: var( --kendo-line-height, normal ) !default;
|
|
53
|
+
/// The line height of the medium Input components.
|
|
54
|
+
/// @group input
|
|
41
55
|
$kendo-input-md-line-height: var( --kendo-line-height, normal ) !default;
|
|
56
|
+
/// The line height of the large Input components.
|
|
57
|
+
/// @group input
|
|
42
58
|
$kendo-input-lg-line-height: var( --kendo-line-height, normal ) !default;
|
|
43
59
|
|
|
44
|
-
//
|
|
60
|
+
// The font family of the Input components.
|
|
45
61
|
$kendo-input-font-family: var( --kendo-font-family, inherit) !default;
|
|
46
62
|
|
|
47
|
-
//
|
|
63
|
+
// The font weight of the Input components.
|
|
48
64
|
$kendo-input-font-weight: var( --kendo-font-weight, normal ) !default;
|
|
49
65
|
|
|
50
|
-
|
|
66
|
+
/// The width of the small Input button.
|
|
67
|
+
/// @group input
|
|
51
68
|
$kendo-input-sm-button-width: calc( #{$kendo-button-sm-line-height} * 1em + #{$kendo-button-sm-padding-y} * 2 ) !default;
|
|
69
|
+
/// The width of the medium Input button.
|
|
70
|
+
/// @group input
|
|
52
71
|
$kendo-input-md-button-width: calc( #{$kendo-button-md-line-height} * 1em + #{$kendo-button-md-padding-y} * 2 ) !default;
|
|
72
|
+
/// The width of the large Input button.
|
|
73
|
+
/// @group input
|
|
53
74
|
$kendo-input-lg-button-width: calc( #{$kendo-button-lg-line-height} * 1em + #{$kendo-button-lg-padding-y} * 2 ) !default;
|
|
54
|
-
|
|
75
|
+
/// The border width of the Input button.
|
|
76
|
+
/// @group input
|
|
55
77
|
$kendo-input-button-border-width: 1px !default;
|
|
56
78
|
|
|
79
|
+
/// The width of the small Input spinner button.
|
|
80
|
+
/// @group input
|
|
57
81
|
$kendo-input-sm-spinner-width: $kendo-input-sm-button-width !default;
|
|
82
|
+
/// The width of the medium Input spinner button.
|
|
83
|
+
/// @group input
|
|
58
84
|
$kendo-input-md-spinner-width: $kendo-input-md-button-width !default;
|
|
85
|
+
/// The width of the large Input spinner button.
|
|
86
|
+
/// @group input
|
|
59
87
|
$kendo-input-lg-spinner-width: $kendo-input-lg-button-width !default;
|
|
60
|
-
|
|
88
|
+
/// The icon offset of the Input spinner button.
|
|
89
|
+
/// @group input
|
|
61
90
|
$kendo-input-spinner-icon-offset: null !default;
|
|
62
91
|
|
|
63
|
-
/// The text color of the solid
|
|
92
|
+
/// The text color of the solid Input components.
|
|
64
93
|
/// @group input
|
|
65
94
|
$kendo-input-solid-text: get-theme-color-var( neutral-160 ) !default;
|
|
66
95
|
|
|
67
|
-
/// The background color of the solid
|
|
96
|
+
/// The background color of the solid Input components.
|
|
68
97
|
/// @group input
|
|
69
98
|
$kendo-input-solid-bg: $kendo-color-white !default;
|
|
70
99
|
|
|
71
|
-
/// The border color of the solid
|
|
100
|
+
/// The border color of the solid Input components.
|
|
72
101
|
/// @group input
|
|
73
102
|
$kendo-input-solid-border: get-theme-color-var( neutral-130 ) !default;
|
|
74
103
|
|
|
75
|
-
/// The
|
|
104
|
+
/// The text color of the hovered solid Input components.
|
|
76
105
|
/// @group input
|
|
77
106
|
$kendo-input-solid-hover-text: get-theme-color-var( neutral-190 ) !default;
|
|
78
107
|
|
|
79
|
-
/// The
|
|
108
|
+
/// The background color of the hovered solid Input components.
|
|
80
109
|
/// @group input
|
|
81
110
|
$kendo-input-solid-hover-bg: $kendo-input-solid-bg !default;
|
|
82
111
|
|
|
83
|
-
/// The
|
|
112
|
+
/// The border color of the hovered solid Input components.
|
|
84
113
|
/// @group input
|
|
85
114
|
$kendo-input-solid-hover-border: get-theme-color-var( neutral-160 ) !default;
|
|
86
115
|
|
|
87
|
-
/// The
|
|
116
|
+
/// The text color of the focused solid Input components.
|
|
88
117
|
/// @group input
|
|
89
118
|
$kendo-input-solid-focus-text: $kendo-input-solid-text !default;
|
|
90
119
|
|
|
91
|
-
/// The
|
|
120
|
+
/// The background color of the focused solid Input components.
|
|
92
121
|
/// @group input
|
|
93
122
|
$kendo-input-solid-focus-bg: $kendo-input-solid-bg !default;
|
|
94
123
|
|
|
95
|
-
/// The
|
|
124
|
+
/// The border color of the focused solid Input components.
|
|
96
125
|
/// @group input
|
|
97
126
|
$kendo-input-solid-focus-border: get-theme-color-var( primary-100 ) !default;
|
|
98
127
|
|
|
99
|
-
/// The
|
|
128
|
+
/// The text color of the hovered and focused solid Input components.
|
|
100
129
|
/// @group input
|
|
101
130
|
$kendo-input-solid-hover-focus-text: $kendo-input-solid-focus-text !default;
|
|
102
131
|
|
|
103
|
-
/// The
|
|
132
|
+
/// The background color of the hovered and focused solid Input components.
|
|
104
133
|
/// @group input
|
|
105
134
|
$kendo-input-solid-hover-focus-bg: $kendo-input-solid-focus-bg !default;
|
|
106
135
|
|
|
107
|
-
/// The
|
|
136
|
+
/// The border color of the hovered and focused solid Input components.
|
|
108
137
|
/// @group input
|
|
109
138
|
$kendo-input-solid-hover-focus-border: $kendo-input-solid-focus-border !default;
|
|
110
139
|
|
|
111
|
-
/// The
|
|
140
|
+
/// The text color of the disabled solid Input components.
|
|
112
141
|
/// @group input
|
|
113
142
|
$kendo-input-solid-disabled-text: $kendo-disabled-text !default;
|
|
114
143
|
|
|
115
|
-
/// The
|
|
144
|
+
/// The background color of the disabled solid Input components.
|
|
116
145
|
/// @group input
|
|
117
146
|
$kendo-input-solid-disabled-bg: $kendo-disabled-bg !default;
|
|
118
147
|
|
|
119
|
-
/// The
|
|
148
|
+
/// The border color of the disabled solid Input components.
|
|
120
149
|
/// @group input
|
|
121
150
|
$kendo-input-solid-disabled-border: $kendo-disabled-border !default;
|
|
122
151
|
|
|
123
|
-
/// The text color of the outline
|
|
152
|
+
/// The text color of the outline Input components.
|
|
124
153
|
/// @group input
|
|
125
154
|
$kendo-input-outline-text: get-theme-color-var( neutral-160 ) !default;
|
|
126
155
|
|
|
127
|
-
/// The background color of the outline
|
|
156
|
+
/// The background color of the outline Input components.
|
|
128
157
|
/// @group input
|
|
129
158
|
$kendo-input-outline-bg: $kendo-color-white !default;
|
|
130
159
|
|
|
131
|
-
/// The border color of the outline
|
|
160
|
+
/// The border color of the outline Input components.
|
|
132
161
|
/// @group input
|
|
133
162
|
$kendo-input-outline-border: get-theme-color-var( neutral-130 ) !default;
|
|
134
163
|
|
|
135
|
-
/// The
|
|
164
|
+
/// The text color of the hovered outline Input components.
|
|
136
165
|
/// @group input
|
|
137
166
|
$kendo-input-outline-hover-text: get-theme-color-var( neutral-190 ) !default;
|
|
138
167
|
|
|
139
|
-
/// The
|
|
168
|
+
/// The background color of the hovered outline Input components.
|
|
140
169
|
/// @group input
|
|
141
170
|
$kendo-input-outline-hover-bg: $kendo-color-white !default;
|
|
142
171
|
|
|
143
|
-
/// The
|
|
172
|
+
/// The border color of the hovered outline Input components.
|
|
144
173
|
/// @group input
|
|
145
174
|
$kendo-input-outline-hover-border: get-theme-color-var( neutral-160 ) !default;
|
|
146
175
|
|
|
147
|
-
/// The
|
|
176
|
+
/// The text color of the focused outline Input components.
|
|
148
177
|
/// @group input
|
|
149
178
|
$kendo-input-outline-focus-text: get-theme-color-var( neutral-160 ) !default;
|
|
150
179
|
|
|
151
|
-
/// The
|
|
180
|
+
/// The background color of the focused outline Input components.
|
|
152
181
|
/// @group input
|
|
153
182
|
$kendo-input-outline-focus-bg: $kendo-color-white !default;
|
|
154
183
|
|
|
155
|
-
/// The
|
|
184
|
+
/// The border color of the focused outline Input components.
|
|
156
185
|
/// @group input
|
|
157
186
|
$kendo-input-outline-focus-border: get-theme-color-var( primary-100 ) !default;
|
|
158
187
|
|
|
159
|
-
/// The
|
|
188
|
+
/// The text color of the hovered and focused outline Input components.
|
|
160
189
|
/// @group input
|
|
161
190
|
$kendo-input-outline-hover-focus-text: $kendo-input-outline-focus-text !default;
|
|
162
191
|
|
|
163
|
-
/// The
|
|
192
|
+
/// The background color of the hovered and focused outline Input components.
|
|
164
193
|
/// @group input
|
|
165
194
|
$kendo-input-outline-hover-focus-bg: $kendo-input-outline-focus-bg !default;
|
|
166
195
|
|
|
167
|
-
/// The
|
|
196
|
+
/// The border color of the hovered and focused outline Input components.
|
|
168
197
|
/// @group input
|
|
169
198
|
$kendo-input-outline-hover-focus-border: $kendo-input-outline-focus-border !default;
|
|
170
199
|
|
|
171
|
-
/// The
|
|
200
|
+
/// The text color of the disabled outline Input components.
|
|
172
201
|
/// @group input
|
|
173
202
|
$kendo-input-outline-disabled-text: $kendo-disabled-text !default;
|
|
174
203
|
|
|
175
|
-
/// The
|
|
204
|
+
/// The background color of the disabled outline Input components.
|
|
176
205
|
/// @group input
|
|
177
206
|
$kendo-input-outline-disabled-bg: none !default;
|
|
178
207
|
|
|
179
|
-
/// The
|
|
208
|
+
/// The border color of the disabled outline Input components.
|
|
180
209
|
/// @group input
|
|
181
210
|
$kendo-input-outline-disabled-border: $kendo-disabled-text !default;
|
|
182
211
|
|
|
183
|
-
/// The text color of the flat
|
|
212
|
+
/// The text color of the flat Input components.
|
|
184
213
|
/// @group input
|
|
185
214
|
$kendo-input-flat-text: get-theme-color-var( neutral-160 ) !default;
|
|
186
215
|
|
|
187
|
-
/// The background color of the flat
|
|
216
|
+
/// The background color of the flat Input components.
|
|
188
217
|
/// @group input
|
|
189
218
|
$kendo-input-flat-bg: $kendo-color-white !default;
|
|
190
219
|
|
|
191
|
-
/// The border color of the flat
|
|
220
|
+
/// The border color of the flat Input components.
|
|
192
221
|
/// @group input
|
|
193
222
|
$kendo-input-flat-border: get-theme-color-var( neutral-130 ) !default;
|
|
194
223
|
|
|
195
|
-
/// The
|
|
224
|
+
/// The text color of the hovered flat Input components.
|
|
196
225
|
/// @group input
|
|
197
226
|
$kendo-input-flat-hover-text: get-theme-color-var( neutral-190 ) !default;
|
|
198
227
|
|
|
199
|
-
/// The
|
|
228
|
+
/// The background color of the hovered flat Input components.
|
|
200
229
|
/// @group input
|
|
201
230
|
$kendo-input-flat-hover-bg: $kendo-color-white !default;
|
|
202
231
|
|
|
203
|
-
/// The
|
|
232
|
+
/// The border color of the hovered flat Input components.
|
|
204
233
|
/// @group input
|
|
205
234
|
$kendo-input-flat-hover-border: get-theme-color-var( neutral-160 ) !default;
|
|
206
235
|
|
|
207
|
-
/// The
|
|
236
|
+
/// The text color of the focused flat Input components.
|
|
208
237
|
/// @group input
|
|
209
238
|
$kendo-input-flat-focus-text: get-theme-color-var( neutral-160 ) !default;
|
|
210
239
|
|
|
211
|
-
/// The
|
|
240
|
+
/// The background color of the focused flat Input components.
|
|
212
241
|
/// @group input
|
|
213
242
|
$kendo-input-flat-focus-bg: $kendo-color-white !default;
|
|
214
243
|
|
|
215
|
-
/// The
|
|
244
|
+
/// The border color of the focused flat Input components.
|
|
216
245
|
/// @group input
|
|
217
246
|
$kendo-input-flat-focus-border: get-theme-color-var( primary-100 ) !default;
|
|
218
247
|
|
|
219
|
-
/// The
|
|
248
|
+
/// The text color of the hovered and focused flat Input components.
|
|
220
249
|
/// @group input
|
|
221
250
|
$kendo-input-flat-hover-focus-text: $kendo-input-flat-focus-text !default;
|
|
222
251
|
|
|
223
|
-
/// The
|
|
252
|
+
/// The background color of the hovered and focused flat Input components.
|
|
224
253
|
/// @group input
|
|
225
254
|
$kendo-input-flat-hover-focus-bg: $kendo-input-flat-focus-bg !default;
|
|
226
255
|
|
|
227
|
-
/// The
|
|
256
|
+
/// The border color of the hovered and focused flat Input components.
|
|
228
257
|
/// @group input
|
|
229
258
|
$kendo-input-flat-hover-focus-border: $kendo-input-flat-focus-border !default;
|
|
230
259
|
|
|
231
|
-
/// The
|
|
260
|
+
/// The text color of the disabled flat Input components.
|
|
232
261
|
/// @group input
|
|
233
262
|
$kendo-input-flat-disabled-text: $kendo-disabled-text !default;
|
|
234
263
|
|
|
235
|
-
/// The
|
|
264
|
+
/// The background color of the disabled flat Input components.
|
|
236
265
|
/// @group input
|
|
237
266
|
$kendo-input-flat-disabled-bg: none !default;
|
|
238
267
|
|
|
239
|
-
/// The
|
|
268
|
+
/// The border color of the disabled flat Input components.
|
|
240
269
|
/// @group input
|
|
241
270
|
$kendo-input-flat-disabled-border: $kendo-disabled-text !default;
|
|
242
271
|
|
|
243
|
-
/// The text color of the solid
|
|
272
|
+
/// The text color of the solid Picker components.
|
|
244
273
|
/// @group input
|
|
245
274
|
$kendo-picker-solid-text: get-theme-color-var( neutral-160 ) !default;
|
|
246
275
|
|
|
247
|
-
/// The background color of the solid
|
|
276
|
+
/// The background color of the solid Picker components.
|
|
248
277
|
/// @group input
|
|
249
278
|
$kendo-picker-solid-bg: $kendo-color-white !default;
|
|
250
279
|
|
|
251
|
-
/// The border color of the solid
|
|
280
|
+
/// The border color of the solid Picker components.
|
|
252
281
|
/// @group input
|
|
253
282
|
$kendo-picker-solid-border: get-theme-color-var( neutral-130 )!default;
|
|
254
283
|
|
|
255
|
-
/// The
|
|
284
|
+
/// The text color of the hovered solid Picker components.
|
|
256
285
|
/// @group input
|
|
257
286
|
$kendo-picker-solid-hover-text: get-theme-color-var( neutral-190 ) !default;
|
|
258
287
|
|
|
259
|
-
/// The
|
|
288
|
+
/// The background color of hovered the solid Picker components.
|
|
260
289
|
/// @group input
|
|
261
290
|
$kendo-picker-solid-hover-bg: $kendo-color-white !default;
|
|
262
291
|
|
|
263
|
-
/// The
|
|
292
|
+
/// The border color of the hovered solid Picker components.
|
|
264
293
|
/// @group input
|
|
265
294
|
$kendo-picker-solid-hover-border: get-theme-color-var( neutral-160 ) !default;
|
|
266
295
|
|
|
267
|
-
/// The
|
|
296
|
+
/// The text color of the focused solid Picker components.
|
|
268
297
|
/// @group input
|
|
269
298
|
$kendo-picker-solid-focus-text: get-theme-color-var( neutral-160 ) !default;
|
|
270
299
|
|
|
271
|
-
/// The
|
|
300
|
+
/// The background color of the focused solid Picker components.
|
|
272
301
|
/// @group input
|
|
273
302
|
$kendo-picker-solid-focus-bg: $kendo-color-white !default;
|
|
274
303
|
|
|
275
|
-
/// The
|
|
304
|
+
/// The border color of the focused solid Picker components.
|
|
276
305
|
/// @group input
|
|
277
306
|
$kendo-picker-solid-focus-border: get-theme-color-var( primary-100 ) !default;
|
|
278
307
|
|
|
279
|
-
/// The
|
|
308
|
+
/// The text color of the hovered and focused solid Picker components.
|
|
280
309
|
/// @group input
|
|
281
310
|
$kendo-picker-solid-hover-focus-text: $kendo-picker-solid-focus-text !default;
|
|
282
311
|
|
|
283
|
-
/// The
|
|
312
|
+
/// The background color of the hovered and focused solid Picker components.
|
|
284
313
|
/// @group input
|
|
285
314
|
$kendo-picker-solid-hover-focus-bg: $kendo-picker-solid-focus-bg !default;
|
|
286
315
|
|
|
287
|
-
/// The
|
|
316
|
+
/// The border color of the hovered and focused solid Picker components.
|
|
288
317
|
/// @group input
|
|
289
318
|
$kendo-picker-solid-hover-focus-border: $kendo-picker-solid-focus-border !default;
|
|
290
319
|
|
|
291
|
-
/// The
|
|
320
|
+
/// The text color of the disabled solid Picker components.
|
|
292
321
|
/// @group input
|
|
293
322
|
$kendo-picker-solid-disabled-text: $kendo-disabled-text !default;
|
|
294
323
|
|
|
295
|
-
/// The
|
|
324
|
+
/// The background color of the disabled solid Picker components.
|
|
296
325
|
/// @group input
|
|
297
326
|
$kendo-picker-solid-disabled-bg: get-theme-color-var( neutral-30 ) !default;
|
|
298
327
|
|
|
299
|
-
/// The
|
|
328
|
+
/// The border color of the disabled solid Picker components.
|
|
300
329
|
/// @group input
|
|
301
330
|
$kendo-picker-solid-disabled-border: $kendo-disabled-border !default;
|
|
302
331
|
|
|
303
|
-
/// The text color of the outline
|
|
332
|
+
/// The text color of the outline Picker components.
|
|
304
333
|
/// @group input
|
|
305
334
|
$kendo-picker-outline-text: get-theme-color-var( neutral-160 ) !default;
|
|
306
335
|
|
|
307
|
-
/// The background color of the outline
|
|
336
|
+
/// The background color of the outline Picker components.
|
|
308
337
|
/// @group input
|
|
309
338
|
$kendo-picker-outline-bg: none !default;
|
|
310
339
|
|
|
311
|
-
/// The border color of the outline
|
|
340
|
+
/// The border color of the outline Picker components.
|
|
312
341
|
/// @group input
|
|
313
342
|
$kendo-picker-outline-border: get-theme-color-var( neutral-160 ) !default;
|
|
314
343
|
|
|
315
|
-
/// The
|
|
344
|
+
/// The text color of the hovered outline Picker components.
|
|
316
345
|
/// @group input
|
|
317
346
|
$kendo-picker-outline-hover-text: $kendo-color-white !default;
|
|
318
347
|
|
|
319
|
-
/// The
|
|
348
|
+
/// The background color of the hovered outline Picker components.
|
|
320
349
|
/// @group input
|
|
321
350
|
$kendo-picker-outline-hover-bg: get-theme-color-var( neutral-190 ) !default;
|
|
322
351
|
|
|
323
|
-
/// The
|
|
352
|
+
/// The border color of the hovered outline Picker components.
|
|
324
353
|
/// @group input
|
|
325
354
|
$kendo-picker-outline-hover-border: $kendo-picker-outline-hover-bg!default;
|
|
326
355
|
|
|
327
|
-
/// The
|
|
356
|
+
/// The text color of the focused outline Picker components.
|
|
328
357
|
/// @group input
|
|
329
358
|
$kendo-picker-outline-focus-text: get-theme-color-var( neutral-160 ) !default;
|
|
330
359
|
|
|
331
|
-
/// The
|
|
360
|
+
/// The background color of the focused outline Picker components.
|
|
332
361
|
/// @group input
|
|
333
362
|
$kendo-picker-outline-focus-bg: $kendo-color-white!default;
|
|
334
363
|
|
|
335
|
-
/// The
|
|
364
|
+
/// The border color of the focused outline Picker components.
|
|
336
365
|
/// @group input
|
|
337
366
|
$kendo-picker-outline-focus-border: get-theme-color-var( primary-100 ) !default;
|
|
338
367
|
|
|
339
|
-
/// The
|
|
368
|
+
/// The text color of the hovered and focused outline Picker components.
|
|
340
369
|
/// @group input
|
|
341
370
|
$kendo-picker-outline-hover-focus-text: $kendo-color-white !default;
|
|
342
371
|
|
|
343
|
-
/// The
|
|
372
|
+
/// The background color of the hovered and focused outline Picker components.
|
|
344
373
|
/// @group input
|
|
345
374
|
$kendo-picker-outline-hover-focus-bg: get-theme-color-var( neutral-190 ) !default;
|
|
346
375
|
|
|
347
|
-
/// The
|
|
376
|
+
/// The border color of the hovered and focused outline Picker components.
|
|
348
377
|
/// @group input
|
|
349
378
|
$kendo-picker-outline-hover-focus-border: get-theme-color-var( primary-100 ) !default;
|
|
350
379
|
|
|
351
|
-
/// The
|
|
380
|
+
/// The text color of the disabled outline Picker components.
|
|
352
381
|
/// @group input
|
|
353
382
|
$kendo-picker-outline-disabled-text: $kendo-disabled-text !default;
|
|
354
383
|
|
|
355
|
-
/// The
|
|
384
|
+
/// The background color of the disabled outline Picker components.
|
|
356
385
|
/// @group input
|
|
357
386
|
$kendo-picker-outline-disabled-bg: none !default;
|
|
358
387
|
|
|
359
|
-
/// The
|
|
388
|
+
/// The border color of the disabled outline Picker components.
|
|
360
389
|
/// @group input
|
|
361
390
|
$kendo-picker-outline-disabled-border: $kendo-picker-outline-disabled-text!default;
|
|
362
391
|
|
|
363
|
-
/// The text color of the flat
|
|
392
|
+
/// The text color of the flat Picker components.
|
|
364
393
|
/// @group input
|
|
365
394
|
$kendo-picker-flat-text: get-theme-color-var( neutral-160 ) !default;
|
|
366
395
|
|
|
367
|
-
/// The background color of the flat
|
|
396
|
+
/// The background color of the flat Picker components.
|
|
368
397
|
/// @group input
|
|
369
398
|
$kendo-picker-flat-bg: $kendo-color-white !default;
|
|
370
399
|
|
|
371
|
-
/// The border color of the flat
|
|
400
|
+
/// The border color of the flat Picker components.
|
|
372
401
|
/// @group input
|
|
373
402
|
$kendo-picker-flat-border: get-theme-color-var( neutral-130 ) !default;
|
|
374
403
|
|
|
375
|
-
/// The
|
|
404
|
+
/// The text color of the hovered flat Picker components.
|
|
376
405
|
/// @group input
|
|
377
406
|
$kendo-picker-flat-hover-text: get-theme-color-var( neutral-190 ) !default;
|
|
378
407
|
|
|
379
|
-
/// The
|
|
408
|
+
/// The background color of the hovered flat Picker components.
|
|
380
409
|
/// @group input
|
|
381
410
|
$kendo-picker-flat-hover-bg: get-theme-color-var( neutral-20 ) !default;
|
|
382
411
|
|
|
383
|
-
/// The
|
|
412
|
+
/// The border color of the hovered flat Picker components.
|
|
384
413
|
/// @group input
|
|
385
414
|
$kendo-picker-flat-hover-border: get-theme-color-var( neutral-160 ) !default;
|
|
386
415
|
|
|
387
|
-
/// The
|
|
416
|
+
/// The text color of the focused flat Picker components.
|
|
388
417
|
/// @group input
|
|
389
418
|
$kendo-picker-flat-focus-text: get-theme-color-var( neutral-160 ) !default;
|
|
390
419
|
|
|
391
|
-
/// The
|
|
420
|
+
/// The background color of the focused flat Picker components.
|
|
392
421
|
/// @group input
|
|
393
422
|
$kendo-picker-flat-focus-bg: $kendo-color-white !default;
|
|
394
423
|
|
|
395
|
-
/// The
|
|
424
|
+
/// The border color of the focused flat Picker components.
|
|
396
425
|
/// @group input
|
|
397
426
|
$kendo-picker-flat-focus-border: get-theme-color-var( primary-100 ) !default;
|
|
398
427
|
|
|
399
|
-
/// The
|
|
428
|
+
/// The text color of the hovered and focused flat Picker components.
|
|
400
429
|
/// @group input
|
|
401
430
|
$kendo-picker-flat-hover-focus-text: $kendo-picker-flat-hover-text !default;
|
|
402
431
|
|
|
403
|
-
/// The
|
|
432
|
+
/// The background color of the hovered and focused flat Picker components.
|
|
404
433
|
/// @group input
|
|
405
434
|
$kendo-picker-flat-hover-focus-bg: $kendo-picker-flat-hover-bg !default;
|
|
406
435
|
|
|
407
|
-
/// The
|
|
436
|
+
/// The border color of the hovered and focused flat Picker components.
|
|
408
437
|
/// @group input
|
|
409
438
|
$kendo-picker-flat-hover-focus-border: $kendo-picker-flat-border !default;
|
|
410
439
|
|
|
411
|
-
/// The
|
|
440
|
+
/// The text color of the disabled flat Picker components.
|
|
412
441
|
/// @group input
|
|
413
442
|
$kendo-picker-flat-disabled-text: $kendo-disabled-text !default;
|
|
414
443
|
|
|
415
|
-
/// The
|
|
444
|
+
/// The background color of the disabled flat Picker components.
|
|
416
445
|
/// @group input
|
|
417
446
|
$kendo-picker-flat-disabled-bg: none !default;
|
|
418
447
|
|
|
419
|
-
/// The
|
|
448
|
+
/// The border color of the disabled flat Picker components.
|
|
420
449
|
/// @group input
|
|
421
450
|
$kendo-picker-flat-disabled-border: $kendo-picker-flat-disabled-text !default;
|
|
422
451
|
|
|
423
|
-
///
|
|
452
|
+
/// The sizes map for the Input components.
|
|
424
453
|
/// @group input
|
|
425
454
|
$kendo-input-sizes: (
|
|
426
455
|
sm: (
|
|
@@ -591,22 +620,37 @@ $kendo-input-theme-colors: (
|
|
|
591
620
|
)
|
|
592
621
|
) !default;
|
|
593
622
|
|
|
594
|
-
|
|
623
|
+
/// The background color of the Input prefix.
|
|
624
|
+
/// @group input
|
|
595
625
|
$kendo-input-prefix-bg: get-theme-color-var( neutral-20 ) !default;
|
|
596
626
|
|
|
597
|
-
|
|
627
|
+
/// The background color of the Input suffix.
|
|
628
|
+
/// @group input
|
|
598
629
|
$kendo-input-suffix-bg: get-theme-color-var( neutral-20 ) !default;
|
|
599
630
|
|
|
600
|
-
|
|
631
|
+
/// The border color of the invalid Input components.
|
|
632
|
+
/// @group input
|
|
601
633
|
$kendo-input-invalid-border: var( --kendo-invalid-border, #{$kendo-invalid-border} ) !default;
|
|
634
|
+
/// The text color of the invalid Input components.
|
|
635
|
+
/// @group input
|
|
602
636
|
$kendo-input-invalid-text: var( --kendo-invalid-text, #{$kendo-invalid-text} ) !default;
|
|
603
637
|
|
|
604
|
-
|
|
638
|
+
/// The text color of the Input placeholder.
|
|
639
|
+
/// @group input
|
|
605
640
|
$kendo-input-placeholder-text: get-theme-color-var( neutral-130 ) !default;
|
|
641
|
+
/// The opacity of the Input placeholder.
|
|
642
|
+
/// @group input
|
|
606
643
|
$kendo-input-placeholder-opacity: 1 !default;
|
|
607
644
|
|
|
608
|
-
|
|
645
|
+
/// The color of the Input clear value icon.
|
|
646
|
+
/// @group input
|
|
609
647
|
$kendo-input-clear-value-text: get-theme-color-var( neutral-130 ) !default;
|
|
648
|
+
/// The opacity of the Input clear value icon.
|
|
649
|
+
/// @group input
|
|
610
650
|
$kendo-input-clear-value-opacity: .6 !default;
|
|
651
|
+
/// The color of the hovered Input clear value icon.
|
|
652
|
+
/// @group input
|
|
611
653
|
$kendo-input-clear-value-hover-text: inherit !default;
|
|
654
|
+
/// The opacity of the hovered Input clear value icon.
|
|
655
|
+
/// @group input
|
|
612
656
|
$kendo-input-clear-value-hover-opacity: 1 !default;
|