@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
|
@@ -1,129 +1,130 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../core/" as *;
|
|
3
3
|
|
|
4
|
-
///
|
|
4
|
+
/// The font size of the List component.
|
|
5
5
|
/// @group list
|
|
6
6
|
$kendo-list-sm-font-size: var( --kendo-font-size, inherit ) !default;
|
|
7
7
|
$kendo-list-md-font-size: var( --kendo-font-size, inherit ) !default;
|
|
8
8
|
$kendo-list-lg-font-size: var( --kendo-font-size, inherit ) !default;
|
|
9
9
|
|
|
10
|
-
///
|
|
10
|
+
/// The line height of the List component.
|
|
11
11
|
/// @group list
|
|
12
12
|
$kendo-list-sm-line-height: var( --kendo-line-height, normal ) !default;
|
|
13
13
|
$kendo-list-md-line-height: var( --kendo-line-height, normal ) !default;
|
|
14
14
|
$kendo-list-lg-line-height: var( --kendo-line-height, normal ) !default;
|
|
15
15
|
|
|
16
|
-
///
|
|
16
|
+
/// The horizontal padding of the List header.
|
|
17
17
|
/// @group list
|
|
18
18
|
$kendo-list-sm-header-padding-x: map.get( $kendo-spacing, 2 ) !default;
|
|
19
19
|
$kendo-list-md-header-padding-x: map.get( $kendo-spacing, 2 ) !default;
|
|
20
20
|
$kendo-list-lg-header-padding-x: map.get( $kendo-spacing, 2 ) !default;
|
|
21
21
|
|
|
22
|
-
///
|
|
22
|
+
/// The vertical padding of the List header.
|
|
23
23
|
/// @group list
|
|
24
24
|
$kendo-list-sm-header-padding-y: map.get( $kendo-spacing, 1.5 ) !default;
|
|
25
25
|
$kendo-list-md-header-padding-y: map.get( $kendo-spacing, 2 ) !default;
|
|
26
26
|
$kendo-list-lg-header-padding-y: map.get( $kendo-spacing, 2.5 ) !default;
|
|
27
27
|
|
|
28
|
-
///
|
|
28
|
+
/// The border width of the List header.
|
|
29
29
|
/// @group list
|
|
30
30
|
$kendo-list-header-border-width: 0 !default;
|
|
31
31
|
|
|
32
|
-
///
|
|
32
|
+
/// The font size of the List header.
|
|
33
33
|
/// @group list
|
|
34
34
|
$kendo-list-sm-header-font-size: var( --kendo-font-size, inherit ) !default;
|
|
35
35
|
$kendo-list-md-header-font-size: var( --kendo-font-size, inherit ) !default;
|
|
36
36
|
$kendo-list-lg-header-font-size: var( --kendo-font-size, inherit ) !default;
|
|
37
37
|
|
|
38
|
-
///
|
|
38
|
+
/// The line height of the List header.
|
|
39
39
|
/// @group list
|
|
40
40
|
$kendo-list-sm-header-line-height: var( --kendo-line-height, normal ) !default;
|
|
41
41
|
$kendo-list-md-header-line-height: var( --kendo-line-height, normal ) !default;
|
|
42
42
|
$kendo-list-lg-header-line-height: var( --kendo-line-height, normal ) !default;
|
|
43
43
|
|
|
44
|
-
///
|
|
44
|
+
/// The font weight of the List header.
|
|
45
45
|
/// @group list
|
|
46
46
|
$kendo-list-header-font-weight: var( --kendo-font-weight-bold, normal ) !default;
|
|
47
47
|
|
|
48
|
-
///
|
|
48
|
+
/// The horizontal padding of the List items.
|
|
49
49
|
/// @group list
|
|
50
50
|
$kendo-list-sm-item-padding-x: map.get( $kendo-spacing, 2 ) !default;
|
|
51
51
|
$kendo-list-md-item-padding-x: map.get( $kendo-spacing, 2 ) !default;
|
|
52
52
|
$kendo-list-lg-item-padding-x: map.get( $kendo-spacing, 2 ) !default;
|
|
53
53
|
|
|
54
|
-
///
|
|
54
|
+
/// The vertical padding of the List items.
|
|
55
55
|
/// @group list
|
|
56
56
|
$kendo-list-sm-item-padding-y: map.get( $kendo-spacing, 1.5 ) !default;
|
|
57
57
|
$kendo-list-md-item-padding-y: map.get( $kendo-spacing, 2 ) !default;
|
|
58
58
|
$kendo-list-lg-item-padding-y: map.get( $kendo-spacing, 2.5 ) !default;
|
|
59
59
|
|
|
60
|
-
///
|
|
60
|
+
/// The font size of the List items.
|
|
61
61
|
/// @group list
|
|
62
62
|
$kendo-list-sm-item-font-size: var( --kendo-font-size, inherit ) !default;
|
|
63
63
|
$kendo-list-md-item-font-size: var( --kendo-font-size, inherit ) !default;
|
|
64
64
|
$kendo-list-lg-item-font-size: var( --kendo-font-size, inherit ) !default;
|
|
65
65
|
|
|
66
|
-
///
|
|
66
|
+
/// The line height of the List items.
|
|
67
67
|
/// @group list
|
|
68
68
|
$kendo-list-sm-item-line-height: var( --kendo-line-height, normal ) !default;
|
|
69
69
|
$kendo-list-md-item-line-height: var( --kendo-line-height, normal ) !default;
|
|
70
70
|
$kendo-list-lg-item-line-height: var( --kendo-line-height, normal ) !default;
|
|
71
71
|
|
|
72
|
-
///
|
|
72
|
+
/// The font size of the List item group label.
|
|
73
73
|
/// @group list
|
|
74
74
|
$kendo-list-item-group-label-sm-font-size: var( --kendo-font-size-xs, inherit ) !default;
|
|
75
75
|
$kendo-list-item-group-label-md-font-size: var( --kendo-font-size-xs, inherit ) !default;
|
|
76
76
|
$kendo-list-item-group-label-lg-font-size: var( --kendo-font-size-xs, inherit ) !default;
|
|
77
77
|
|
|
78
|
-
///
|
|
78
|
+
/// The horizontal padding of the List group items.
|
|
79
79
|
/// @group list
|
|
80
80
|
$kendo-list-sm-group-item-padding-x: map.get( $kendo-spacing, 2 ) !default;
|
|
81
81
|
$kendo-list-md-group-item-padding-x: map.get( $kendo-spacing, 2 ) !default;
|
|
82
82
|
$kendo-list-lg-group-item-padding-x: map.get( $kendo-spacing, 2 ) !default;
|
|
83
83
|
|
|
84
|
-
///
|
|
84
|
+
/// The vertical padding of the List group items.
|
|
85
85
|
/// @group list
|
|
86
86
|
$kendo-list-sm-group-item-padding-y: map.get( $kendo-spacing, 1.5 ) !default;
|
|
87
87
|
$kendo-list-md-group-item-padding-y: map.get( $kendo-spacing, 2 ) !default;
|
|
88
88
|
$kendo-list-lg-group-item-padding-y: map.get( $kendo-spacing, 2.5 ) !default;
|
|
89
89
|
|
|
90
|
-
///
|
|
90
|
+
/// The horizontal padding of the List item group label.
|
|
91
91
|
/// @group list
|
|
92
92
|
$kendo-list-item-group-label-sm-padding-x: map.get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
|
|
93
93
|
$kendo-list-item-group-label-md-padding-x: map.get( $kendo-spacing, 1 ) !default;
|
|
94
94
|
$kendo-list-item-group-label-lg-padding-x: map.get( $kendo-spacing, 1.5 ) !default;
|
|
95
95
|
|
|
96
|
-
///
|
|
96
|
+
/// The vertical padding of the List item group label.
|
|
97
97
|
/// @group list
|
|
98
98
|
$kendo-list-item-group-label-sm-padding-y: map.get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
|
|
99
99
|
$kendo-list-item-group-label-md-padding-y: map.get( $kendo-spacing, 1 ) !default;
|
|
100
100
|
$kendo-list-item-group-label-lg-padding-y: map.get( $kendo-spacing, 1.5 ) !default;
|
|
101
101
|
|
|
102
|
-
///
|
|
102
|
+
/// The border width of the List group items.
|
|
103
103
|
/// @group list
|
|
104
104
|
$kendo-list-group-item-border-width: 1px 0 0 !default;
|
|
105
105
|
|
|
106
|
-
///
|
|
106
|
+
/// The font size of the List group items.
|
|
107
107
|
/// @group list
|
|
108
108
|
$kendo-list-sm-group-item-font-size: var( --kendo-font-size, inherit ) !default;
|
|
109
109
|
$kendo-list-md-group-item-font-size: var( --kendo-font-size, inherit ) !default;
|
|
110
110
|
$kendo-list-lg-group-item-font-size: var( --kendo-font-size, inherit ) !default;
|
|
111
111
|
|
|
112
|
-
///
|
|
112
|
+
/// The line height of the List group items.
|
|
113
113
|
/// @group list
|
|
114
114
|
$kendo-list-sm-group-item-line-height: var( --kendo-line-height, normal ) !default;
|
|
115
115
|
$kendo-list-md-group-item-line-height: var( --kendo-line-height, normal ) !default;
|
|
116
116
|
$kendo-list-lg-group-item-line-height: var( --kendo-line-height, normal ) !default;
|
|
117
117
|
|
|
118
|
-
///
|
|
118
|
+
/// The font weight of the List group item.
|
|
119
119
|
/// @group list
|
|
120
120
|
$kendo-list-group-item-font-weight: var( --kendo-font-weight-bold, normal ) !default;
|
|
121
121
|
|
|
122
|
-
///
|
|
122
|
+
/// The text color of the List item icon
|
|
123
123
|
/// @group list
|
|
124
124
|
$kendo-list-item-icon-text: get-theme-color-var( primary-100 ) !default;
|
|
125
125
|
|
|
126
|
-
|
|
126
|
+
/// The map with the sizes of the List.
|
|
127
|
+
/// @group list
|
|
127
128
|
$kendo-list-sizes: (
|
|
128
129
|
sm: (
|
|
129
130
|
font-size: $kendo-list-sm-font-size,
|
|
@@ -185,89 +186,89 @@ $kendo-list-sizes: (
|
|
|
185
186
|
) !default;
|
|
186
187
|
|
|
187
188
|
|
|
188
|
-
///
|
|
189
|
+
/// The background color of the List component.
|
|
189
190
|
/// @group list
|
|
190
191
|
$kendo-list-bg: var( --kendo-component-bg, transparent ) !default;
|
|
191
|
-
///
|
|
192
|
+
/// The text color of the List component.
|
|
192
193
|
/// @group list
|
|
193
194
|
$kendo-list-text: var( --kendo-component-text, inherit ) !default;
|
|
194
|
-
///
|
|
195
|
+
/// The border color of the List component.
|
|
195
196
|
/// @group list
|
|
196
197
|
$kendo-list-border: var( --kendo-component-border, inherit ) !default;
|
|
197
198
|
|
|
198
199
|
|
|
199
|
-
///
|
|
200
|
+
/// The background color of the List header.
|
|
200
201
|
/// @group list
|
|
201
202
|
$kendo-list-header-bg: $kendo-color-white !default;
|
|
202
|
-
///
|
|
203
|
+
/// The text color of the List header.
|
|
203
204
|
/// @group list
|
|
204
205
|
$kendo-list-header-text: get-theme-color-var( primary-100 ) !default;
|
|
205
|
-
///
|
|
206
|
+
/// The border color of the List header.
|
|
206
207
|
/// @group list
|
|
207
208
|
$kendo-list-header-border: inherit !default;
|
|
208
|
-
///
|
|
209
|
+
/// The box shadow of the List header.
|
|
209
210
|
/// @group list
|
|
210
211
|
$kendo-list-header-shadow: $kendo-box-shadow-depth-3 !default;
|
|
211
212
|
|
|
212
213
|
|
|
213
|
-
///
|
|
214
|
+
/// The background color of the List items.
|
|
214
215
|
/// @group list
|
|
215
216
|
$kendo-list-item-bg: $kendo-color-white !default;
|
|
216
|
-
///
|
|
217
|
+
/// The text color of the List items.
|
|
217
218
|
/// @group list
|
|
218
219
|
$kendo-list-item-text: get-theme-color-var( neutral-160 ) !default;
|
|
219
220
|
|
|
220
|
-
///
|
|
221
|
+
/// The background color of the hovered List items.
|
|
221
222
|
/// @group list
|
|
222
223
|
$kendo-list-item-hover-bg: get-theme-color-var( neutral-20 ) !default;
|
|
223
|
-
///
|
|
224
|
+
/// The text color of the hovered List items.
|
|
224
225
|
/// @group list
|
|
225
226
|
$kendo-list-item-hover-text: get-theme-color-var( neutral-190 ) !default;
|
|
226
227
|
|
|
227
|
-
///
|
|
228
|
+
/// The background color of the focused List items.
|
|
228
229
|
/// @group list
|
|
229
230
|
$kendo-list-item-focus-bg: $kendo-color-white !default;
|
|
230
|
-
///
|
|
231
|
+
/// The text color of the focused List items.
|
|
231
232
|
/// @group list
|
|
232
233
|
$kendo-list-item-focus-text: get-theme-color-var( neutral-160 ) !default;
|
|
233
|
-
///
|
|
234
|
+
/// The box shadow of the focused List items.
|
|
234
235
|
/// @group list
|
|
235
236
|
$kendo-list-item-focus-shadow: inset 0 0 0 1px get-theme-color-var( neutral-130 ) !default;
|
|
236
237
|
|
|
237
|
-
///
|
|
238
|
+
/// The background color of the selected List items.
|
|
238
239
|
/// @group list
|
|
239
240
|
$kendo-list-item-selected-bg: get-theme-color-var( neutral-40 ) !default;
|
|
240
|
-
///
|
|
241
|
+
/// The text color of the selected List items.
|
|
241
242
|
/// @group list
|
|
242
243
|
$kendo-list-item-selected-text: get-theme-color-var( neutral-190 ) !default;
|
|
243
244
|
|
|
244
|
-
///
|
|
245
|
+
/// The background color of the selected hovered List items.
|
|
245
246
|
/// @group list
|
|
246
247
|
$kendo-list-item-selected-hover-bg: get-theme-color-var( neutral-50 ) !default;
|
|
247
|
-
///
|
|
248
|
+
/// The text color of the selected hovered List items.
|
|
248
249
|
/// @group list
|
|
249
250
|
$kendo-list-item-selected-hover-text: get-theme-color-var( neutral-190 ) !default;
|
|
250
251
|
|
|
251
|
-
///
|
|
252
|
+
/// The background color of the disabled List items.
|
|
252
253
|
/// @group list
|
|
253
254
|
$kendo-list-item-disabled-bg: $kendo-color-white !default;
|
|
254
|
-
///
|
|
255
|
+
/// The text color of the disabled List items.
|
|
255
256
|
/// @group list
|
|
256
257
|
$kendo-list-item-disabled-text: get-theme-color-var( neutral-90 ) !default;
|
|
257
258
|
|
|
258
|
-
///
|
|
259
|
+
/// The background color of the List group items.
|
|
259
260
|
/// @group list
|
|
260
261
|
$kendo-list-group-item-bg: $kendo-color-white !default;
|
|
261
|
-
///
|
|
262
|
+
/// The text color of the List group items.
|
|
262
263
|
/// @group list
|
|
263
264
|
$kendo-list-group-item-text: get-theme-color-var( primary-100 ) !default;
|
|
264
|
-
/// The border color of
|
|
265
|
+
/// The border color of the List group items.
|
|
265
266
|
/// @group list
|
|
266
267
|
$kendo-list-group-item-border: inherit !default;
|
|
267
|
-
/// The base shadow of
|
|
268
|
+
/// The base shadow of the List group items.
|
|
268
269
|
/// @group list
|
|
269
270
|
$kendo-list-group-item-shadow: none !default;
|
|
270
271
|
|
|
271
|
-
///
|
|
272
|
+
/// The text color of the 'No Data' text.
|
|
272
273
|
/// @group list
|
|
273
274
|
$kendo-list-no-data-text: get-theme-color-var( neutral-160 ) !default;
|
|
@@ -6,14 +6,15 @@
|
|
|
6
6
|
|
|
7
7
|
// Radio button
|
|
8
8
|
|
|
9
|
-
///
|
|
9
|
+
/// The border radius of the RadioButton.
|
|
10
10
|
/// @group radio
|
|
11
11
|
$kendo-radio-border-radius: 50% !default;
|
|
12
|
-
///
|
|
12
|
+
/// The border width of the RadioButton.
|
|
13
13
|
/// @group radio
|
|
14
14
|
$kendo-radio-border-width: 1px !default;
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
/// The map with the different RadioButton sizes.
|
|
17
|
+
/// @group radio
|
|
17
18
|
$kendo-radio-sizes: (
|
|
18
19
|
sm: (
|
|
19
20
|
size: map.get( $kendo-spacing, 4 ),
|
|
@@ -35,140 +36,142 @@ $kendo-radio-sizes: (
|
|
|
35
36
|
)
|
|
36
37
|
) !default;
|
|
37
38
|
|
|
38
|
-
///
|
|
39
|
+
/// The background color of the RadioButton.
|
|
39
40
|
/// @group radio
|
|
40
41
|
$kendo-radio-bg: $kendo-component-bg !default;
|
|
41
|
-
///
|
|
42
|
+
/// The color of the RadioButton.
|
|
42
43
|
/// @group radio
|
|
43
44
|
$kendo-radio-text: transparent !default;
|
|
44
|
-
///
|
|
45
|
+
/// The border color of the RadioButton.
|
|
45
46
|
/// @group radio
|
|
46
47
|
$kendo-radio-border: get-theme-color-var( neutral-160 ) !default;
|
|
47
48
|
|
|
48
|
-
///
|
|
49
|
+
/// The background color of the hovered RadioButton.
|
|
49
50
|
/// @group radio
|
|
50
51
|
$kendo-radio-hover-bg: $kendo-radio-bg !default;
|
|
51
|
-
///
|
|
52
|
+
/// The color of the hovered RadioButton.
|
|
52
53
|
/// @group radio
|
|
53
54
|
$kendo-radio-hover-text: get-theme-color( neutral, 130 ) !default;
|
|
54
|
-
///
|
|
55
|
+
/// The border color of the hovered RadioButton.
|
|
55
56
|
/// @group radio
|
|
56
57
|
$kendo-radio-hover-border: $kendo-radio-border !default;
|
|
57
58
|
|
|
58
|
-
///
|
|
59
|
+
/// The background color of the checked RadioButton.
|
|
59
60
|
/// @group radio
|
|
60
61
|
$kendo-radio-checked-bg: $kendo-radio-bg !default;
|
|
61
|
-
///
|
|
62
|
+
/// The color of the checked RadioButton.
|
|
62
63
|
/// @group radio
|
|
63
64
|
$kendo-radio-checked-text: get-theme-color-var( primary-100 ) !default;
|
|
64
|
-
///
|
|
65
|
+
/// The border color of the checked RadioButton.
|
|
65
66
|
/// @group radio
|
|
66
67
|
$kendo-radio-checked-border: get-theme-color-var( primary-100 ) !default;
|
|
67
68
|
|
|
68
|
-
///
|
|
69
|
+
/// The background color of the checked and hovered RadioButton.
|
|
69
70
|
/// @group radio
|
|
70
71
|
$kendo-radio-hover-checked-bg: $kendo-radio-bg !default;
|
|
71
|
-
///
|
|
72
|
+
/// The color of the checked and hovered RadioButton.
|
|
72
73
|
/// @group radio
|
|
73
74
|
$kendo-radio-hover-checked-text: get-theme-color-var( primary-110 ) !default;
|
|
74
|
-
///
|
|
75
|
+
/// The border color of the checked and hovered RadioButton.
|
|
75
76
|
/// @group radio
|
|
76
77
|
$kendo-radio-hover-checked-border: get-theme-color-var( primary-110 ) !default;
|
|
77
78
|
|
|
78
|
-
///
|
|
79
|
+
/// The border color of the focused RadioButton.
|
|
79
80
|
/// @group radio
|
|
80
81
|
$kendo-radio-focus-border: null !default;
|
|
81
|
-
///
|
|
82
|
+
/// The box shadow of the focused RadioButton.
|
|
82
83
|
/// @group radio
|
|
83
84
|
$kendo-radio-focus-shadow: null !default;
|
|
84
|
-
/// The outline of
|
|
85
|
+
/// The outline of the focused RadioButton.
|
|
85
86
|
/// @group radio
|
|
86
87
|
$kendo-radio-focus-outline: 1px solid get-theme-color-var( neutral-130 ) !default;
|
|
88
|
+
/// The outline offset of the focused RadioButton.
|
|
89
|
+
/// @group radio
|
|
87
90
|
$kendo-radio-focus-outline-offset: 2px !default;
|
|
88
91
|
|
|
89
|
-
///
|
|
92
|
+
/// The background color of the disabled RadioButton.
|
|
90
93
|
/// @group radio
|
|
91
94
|
$kendo-radio-disabled-bg: $kendo-radio-bg !default;
|
|
92
|
-
///
|
|
95
|
+
/// The color of the disabled RadioButton.
|
|
93
96
|
/// @group radio
|
|
94
97
|
$kendo-radio-disabled-text: get-theme-color-var( neutral-60 ) !default;
|
|
95
|
-
///
|
|
98
|
+
/// The border color of the disabled RadioButton.
|
|
96
99
|
/// @group radio
|
|
97
100
|
$kendo-radio-disabled-border: get-theme-color-var( neutral-60 ) !default;
|
|
98
101
|
|
|
99
|
-
///
|
|
102
|
+
/// The background color of the disabled and checked RadioButton.
|
|
100
103
|
/// @group radio
|
|
101
104
|
$kendo-radio-disabled-checked-bg: $kendo-radio-disabled-bg !default;
|
|
102
|
-
///
|
|
105
|
+
/// The color of the disabled and checked RadioButton.
|
|
103
106
|
/// @group radio
|
|
104
107
|
$kendo-radio-disabled-checked-text: $kendo-radio-disabled-text !default;
|
|
105
|
-
///
|
|
108
|
+
/// The border color of the disabled and checked RadioButton.
|
|
106
109
|
/// @group radio
|
|
107
110
|
$kendo-radio-disabled-checked-border: $kendo-radio-disabled-border !default;
|
|
108
111
|
|
|
109
|
-
///
|
|
112
|
+
/// The background color of the invalid RadioButton.
|
|
110
113
|
/// @group radio
|
|
111
114
|
$kendo-radio-invalid-bg: $kendo-radio-bg !default;
|
|
112
|
-
///
|
|
115
|
+
/// The color of the invalid RadioButton.
|
|
113
116
|
/// @group radio
|
|
114
117
|
$kendo-radio-invalid-text: $kendo-invalid-text !default;
|
|
115
|
-
///
|
|
118
|
+
/// The border color of the invalid RadioButton.
|
|
116
119
|
/// @group radio
|
|
117
120
|
$kendo-radio-invalid-border: $kendo-invalid-border !default;
|
|
118
121
|
|
|
119
122
|
|
|
120
123
|
// Radio indicator
|
|
121
124
|
|
|
122
|
-
///
|
|
125
|
+
/// The type of the RadioButton indicator.
|
|
123
126
|
/// @group radio
|
|
124
127
|
$kendo-radio-indicator-type: pseudo !default;
|
|
125
128
|
|
|
126
|
-
///
|
|
129
|
+
/// The border radius of the RadioButton indicator.
|
|
127
130
|
/// @group radio
|
|
128
131
|
$kendo-radio-indicator-border-radius: 50% !default;
|
|
129
132
|
|
|
130
|
-
///
|
|
133
|
+
/// The glyph font family of the RadioButton indicator.
|
|
131
134
|
/// @group radio
|
|
132
135
|
$kendo-radio-glyph-font-family: "WebComponentsIcons", monospace !default;
|
|
133
|
-
///
|
|
136
|
+
/// The glyph of the RadioButton indicator.
|
|
134
137
|
/// @group radio
|
|
135
138
|
$kendo-radio-checked-glyph: "\e308" !default;
|
|
136
139
|
|
|
137
|
-
///
|
|
140
|
+
/// The image of the checked RadioButton indicator.
|
|
138
141
|
/// @group radio
|
|
139
142
|
$kendo-radio-checked-image: escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><circle cx='50%' cy='50%' r='4' fill='#{$kendo-radio-checked-text}'/></svg>") ) !default;
|
|
140
|
-
///
|
|
143
|
+
/// The image of the disabled and checked RadioButton indicator.
|
|
141
144
|
/// @group radio
|
|
142
145
|
$kendo-radio-disabled-checked-image: null !default;
|
|
143
146
|
|
|
144
147
|
|
|
145
148
|
// Radio label
|
|
146
149
|
|
|
147
|
-
/// The horizontal margin of the
|
|
150
|
+
/// The horizontal margin of the RadioButton inside of a label.
|
|
148
151
|
/// @group radio
|
|
149
152
|
$kendo-radio-label-spacing: map.get( $kendo-spacing, 2 ) !default;
|
|
150
153
|
|
|
151
154
|
|
|
152
155
|
// Radio list
|
|
153
156
|
|
|
154
|
-
/// The horizontal list item margin of
|
|
157
|
+
/// The horizontal list item margin of the RadioButton.
|
|
155
158
|
/// @group radio
|
|
156
159
|
$kendo-radio-list-spacing: map.get( $kendo-spacing, 4 ) !default;
|
|
157
|
-
/// The horizontal list item padding of
|
|
160
|
+
/// The horizontal list item padding of the RadioButton.
|
|
158
161
|
/// @group radio
|
|
159
162
|
$kendo-radio-list-item-padding-x: 0px !default;
|
|
160
|
-
/// The vertical list item padding of
|
|
163
|
+
/// The vertical list item padding of the RadioButton.
|
|
161
164
|
/// @group radio
|
|
162
165
|
$kendo-radio-list-item-padding-y: $kendo-list-md-item-padding-y !default;
|
|
163
|
-
///
|
|
166
|
+
/// The gap between the list items of the RadioButton.
|
|
164
167
|
/// @group radio
|
|
165
168
|
$kendo-radio-list-item-gap: map.get( $kendo-spacing, 2 ) !default;
|
|
166
169
|
|
|
167
170
|
// Radio ripple
|
|
168
171
|
|
|
169
|
-
///
|
|
172
|
+
/// The background color of the RadioButton ripple.
|
|
170
173
|
/// @group radio
|
|
171
174
|
$kendo-radio-ripple-bg: get-theme-color-var( primary-100 ) !default;
|
|
172
|
-
///
|
|
175
|
+
/// The opacity of the RadioButton ripple.
|
|
173
176
|
/// @group radio
|
|
174
177
|
$kendo-radio-ripple-opacity: .25 !default;
|
|
@@ -1,29 +1,37 @@
|
|
|
1
1
|
@use "../core/" as *;
|
|
2
2
|
@use "../button/variables" as *;
|
|
3
3
|
|
|
4
|
-
///
|
|
4
|
+
/// The vertical padding of the small arrow Button.
|
|
5
5
|
/// @group split-button
|
|
6
6
|
$kendo-split-button-sm-arrow-padding-y: $kendo-button-sm-padding-y !default;
|
|
7
|
+
/// The vertical padding of the medium arrow Button.
|
|
8
|
+
/// @group split-button
|
|
7
9
|
$kendo-split-button-md-arrow-padding-y: $kendo-button-md-padding-y !default;
|
|
10
|
+
/// The vertical padding of the large arrow Button.
|
|
11
|
+
/// @group split-button
|
|
8
12
|
$kendo-split-button-lg-arrow-padding-y: $kendo-button-lg-padding-y !default;
|
|
9
13
|
|
|
10
|
-
///
|
|
14
|
+
/// The horizontal padding of the small arrow Button.
|
|
11
15
|
/// @group split-button
|
|
12
16
|
$kendo-split-button-sm-arrow-padding-x: $kendo-split-button-sm-arrow-padding-y !default;
|
|
17
|
+
/// The horizontal padding of the medium arrow Button.
|
|
18
|
+
/// @group split-button
|
|
13
19
|
$kendo-split-button-md-arrow-padding-x: $kendo-split-button-md-arrow-padding-y !default;
|
|
20
|
+
/// The horizontal padding of the large arrow Button.
|
|
21
|
+
/// @group split-button
|
|
14
22
|
$kendo-split-button-lg-arrow-padding-x: $kendo-split-button-lg-arrow-padding-y !default;
|
|
15
23
|
|
|
16
|
-
///
|
|
24
|
+
/// The height of the SplitButton arrow delimiter.
|
|
17
25
|
/// @group split-button
|
|
18
26
|
$kendo-split-button-arrow-delimiter-size: calc( #{$kendo-button-inner-calc-size} / 2 ) !default;
|
|
19
|
-
///
|
|
27
|
+
/// The width of the SplitButton arrow delimiter.
|
|
20
28
|
/// @group split-button
|
|
21
29
|
$kendo-split-button-arrow-delimiter-line-size: 1px !default;
|
|
22
|
-
///
|
|
30
|
+
/// The background color of the SplitButton arrow delimiter.
|
|
23
31
|
/// @group split-button
|
|
24
32
|
$kendo-split-button-arrow-delimiter-bg: get-theme-color-var( neutral-60 ) !default;
|
|
25
33
|
|
|
26
|
-
///
|
|
34
|
+
/// The sizes map for the SplitButton.
|
|
27
35
|
/// @group split-button
|
|
28
36
|
$kendo-split-button-sizes: (
|
|
29
37
|
sm: $kendo-split-button-sm-arrow-padding-y,
|
|
@@ -460,14 +460,11 @@
|
|
|
460
460
|
box-sizing: border-box;
|
|
461
461
|
position: absolute;
|
|
462
462
|
}
|
|
463
|
-
.k-spreadsheet .k-
|
|
463
|
+
.k-spreadsheet .k-spreadsheet-editor-button {
|
|
464
464
|
position: absolute;
|
|
465
465
|
padding: 0;
|
|
466
466
|
z-index: 60;
|
|
467
467
|
}
|
|
468
|
-
.k-spreadsheet .k-selection-wrapper .k-spreadsheet-editor-button.k-spreadsheet-last-column {
|
|
469
|
-
transform: translateX(-100%);
|
|
470
|
-
}
|
|
471
468
|
|
|
472
469
|
.k-spreadsheet-active-cell {
|
|
473
470
|
// sass-lint:disable-block no-important
|