@progress/kendo-theme-default 12.2.0-dev.3 → 12.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +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
|
@@ -2,34 +2,70 @@
|
|
|
2
2
|
@use "../core/functions/index.import.scss" as *;
|
|
3
3
|
|
|
4
4
|
// Adaptive
|
|
5
|
+
/// The background color of the Adaptive component.
|
|
6
|
+
/// @group adaptive
|
|
5
7
|
$kendo-adaptive-bg: k-color(surface-alt) !default;
|
|
8
|
+
/// The text color of the Adaptive component.
|
|
9
|
+
/// @group adaptive
|
|
6
10
|
$kendo-adaptive-text: k-color(on-app-surface) !default;
|
|
11
|
+
/// The border color of the Adaptive component.
|
|
12
|
+
/// @group adaptive
|
|
7
13
|
$kendo-adaptive-border: k-color(border) !default;
|
|
8
14
|
|
|
15
|
+
/// The background color of the Adaptive content.
|
|
16
|
+
/// @group adaptive
|
|
9
17
|
$kendo-adaptive-content-bg: k-color(surface) !default;
|
|
18
|
+
/// The text color of the Adaptive content.
|
|
19
|
+
/// @group adaptive
|
|
10
20
|
$kendo-adaptive-content-text: k-color(on-app-surface) !default;
|
|
11
21
|
|
|
22
|
+
/// The background color of the Adaptive menu.
|
|
23
|
+
/// @group adaptive
|
|
12
24
|
$kendo-adaptive-menu-bg: k-color(primary) !default;
|
|
25
|
+
/// The text color of the Adaptive menu.
|
|
26
|
+
/// @group adaptive
|
|
13
27
|
$kendo-adaptive-menu-text: k-color(on-primary) !default;
|
|
14
28
|
|
|
29
|
+
/// The text color of the Adaptive menu clear button.
|
|
30
|
+
/// @group adaptive
|
|
15
31
|
$kendo-adaptive-menu-clear-text: k-color(primary) !default;
|
|
16
32
|
|
|
33
|
+
/// The border color of the Adaptive menu item.
|
|
34
|
+
/// @group adaptive
|
|
17
35
|
$kendo-adaptive-menu-item-border: k-color(border) !default;
|
|
36
|
+
/// The text color of the Adaptive menu title.
|
|
37
|
+
/// @group adaptive
|
|
18
38
|
$kendo-adaptive-menu-title-text: k-color(on-app-surface) !default;
|
|
19
39
|
|
|
40
|
+
/// The width of the border around the Adaptive component.
|
|
41
|
+
/// @group adaptive
|
|
20
42
|
$kendo-adaptive-border-width: 1px !default;
|
|
43
|
+
/// The font family of the Adaptive component.
|
|
44
|
+
/// @group adaptive
|
|
21
45
|
$kendo-adaptive-font-family: var( --kendo-font-family, inherit ) !default;
|
|
46
|
+
/// The font size of the Adaptive component.
|
|
47
|
+
/// @group adaptive
|
|
22
48
|
$kendo-adaptive-font-size: var( --kendo-font-size, inherit ) !default;
|
|
49
|
+
/// The line height of the Adaptive component.
|
|
50
|
+
/// @group adaptive
|
|
23
51
|
$kendo-adaptive-line-height: var( --kendo-line-height, normal ) !default;
|
|
24
52
|
|
|
25
53
|
|
|
26
54
|
// Adaptive Grid
|
|
55
|
+
/// The text color of the Adaptive Grid sort indicator.
|
|
56
|
+
/// @group adaptive
|
|
27
57
|
$kendo-adaptive-grid-sort-text: k-color(primary) !default;
|
|
28
58
|
|
|
29
59
|
|
|
30
60
|
// Adaptive Scheduler
|
|
61
|
+
/// The text color of the current date in the Adaptive Scheduler.
|
|
62
|
+
/// @group adaptive
|
|
31
63
|
$kendo-adaptive-scheduler-current-text: k-color(primary) !default;
|
|
64
|
+
/// The base text color of the Adaptive Scheduler.
|
|
65
|
+
/// @group adaptive
|
|
32
66
|
$kendo-adaptive-scheduler-base-text: inherit !default;
|
|
67
|
+
/// The subtle text color of the Adaptive Scheduler.
|
|
68
|
+
/// @group adaptive
|
|
33
69
|
$kendo-adaptive-scheduler-subtle-text: k-color(on-app-surface) !default;
|
|
34
70
|
|
|
35
71
|
@forward "@progress/kendo-theme-core/scss/components/adaptive/_variables.scss" with (
|
|
@@ -57,6 +57,8 @@ $kendo-appbar-box-shadow: k-elevation(4) !default;
|
|
|
57
57
|
/// @group appbar
|
|
58
58
|
$kendo-appbar-bottom-box-shadow: $kendo-appbar-box-shadow !default;
|
|
59
59
|
|
|
60
|
+
/// The theme colors of the Appbar.
|
|
61
|
+
/// @group appbar
|
|
60
62
|
$kendo-appbar-theme-colors: (
|
|
61
63
|
"primary": k-color(primary),
|
|
62
64
|
"secondary": k-color(secondary),
|
|
@@ -64,6 +64,8 @@ $kendo-bottom-nav-flat-bg: k-color(surface-alt) !default;
|
|
|
64
64
|
/// @group bottom-navigation
|
|
65
65
|
$kendo-bottom-nav-flat-border: k-color(border) !default;
|
|
66
66
|
|
|
67
|
+
/// The navigation theme colors of the BottomNavigation.
|
|
68
|
+
/// @group bottom-navigation
|
|
67
69
|
$kendo-bottom-navigation-theme-colors: (
|
|
68
70
|
"primary": k-color(primary),
|
|
69
71
|
"secondary": k-color(secondary),
|
|
@@ -65,14 +65,10 @@ $kendo-button-md-line-height: $kendo-button-line-height !default;
|
|
|
65
65
|
/// @group button
|
|
66
66
|
$kendo-button-lg-line-height: var( --kendo-line-height-lg, normal ) !default;
|
|
67
67
|
|
|
68
|
-
/// The calculated height of the Button.
|
|
69
|
-
/// @group button
|
|
70
68
|
$kendo-button-sm-calc-size: calc( ( #{$kendo-button-sm-line-height} * 1em ) + ( #{$kendo-button-sm-padding-y} * 2 ) + ( #{$kendo-button-border-width} * 2 ) ) !default;
|
|
71
69
|
$kendo-button-md-calc-size: calc( ( #{$kendo-button-md-line-height} * 1em ) + ( #{$kendo-button-md-padding-y} * 2 ) + ( #{$kendo-button-border-width} * 2 ) ) !default;
|
|
72
70
|
$kendo-button-lg-calc-size: calc( ( #{$kendo-button-lg-line-height} * 1em ) + ( #{$kendo-button-lg-padding-y} * 2 ) + ( #{$kendo-button-border-width} * 2 ) ) !default;
|
|
73
71
|
|
|
74
|
-
/// The calculated inner height of the Button excluding the border width.
|
|
75
|
-
/// @group button
|
|
76
72
|
$kendo-button-inner-calc-size: calc( ( #{$kendo-button-line-height} * 1em ) + ( #{$kendo-button-md-padding-y} * 2 ) ) !default;
|
|
77
73
|
$kendo-button-sm-inner-calc-size: calc( ( #{$kendo-button-sm-line-height} * 1em ) + ( #{$kendo-button-sm-padding-y} * 2 ) ) !default;
|
|
78
74
|
$kendo-button-md-inner-calc-size: calc( ( #{$kendo-button-md-line-height} * 1em ) + ( #{$kendo-button-md-padding-y} * 2 ) ) !default;
|
|
@@ -206,35 +202,53 @@ $kendo-button-disabled-shadow: null !default;
|
|
|
206
202
|
$kendo-button-pulsing-opacity: .4 !default;
|
|
207
203
|
|
|
208
204
|
// Solid Button
|
|
205
|
+
/// The button gradient of the Button.
|
|
206
|
+
/// @group button
|
|
209
207
|
$kendo-solid-button-gradient: null !default;
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
$kendo-solid-button-shade-bg-amount: 0 !default;
|
|
213
|
-
$kendo-solid-button-shade-border-amount: 0 !default;
|
|
214
|
-
$kendo-solid-button-hover-shade-text-amount: null !default;
|
|
215
|
-
$kendo-solid-button-hover-shade-bg-amount: .5 !default;
|
|
216
|
-
$kendo-solid-button-hover-shade-border-amount: .5 !default;
|
|
217
|
-
$kendo-solid-button-active-shade-text-amount: null !default;
|
|
218
|
-
$kendo-solid-button-active-shade-bg-amount: 1.5 !default;
|
|
219
|
-
$kendo-solid-button-active-shade-border-amount: 1.5 !default;
|
|
208
|
+
/// The shadow of the Button.
|
|
209
|
+
/// @group button
|
|
220
210
|
$kendo-solid-button-shadow: true !default;
|
|
211
|
+
/// The button shadow blur of the Button.
|
|
212
|
+
/// @group button
|
|
221
213
|
$kendo-solid-button-shadow-blur: 0px !default;
|
|
214
|
+
/// The button shadow spread of the Button.
|
|
215
|
+
/// @group button
|
|
222
216
|
$kendo-solid-button-shadow-spread: 2px !default;
|
|
217
|
+
/// The button shadow opacity of the Button.
|
|
218
|
+
/// @group button
|
|
223
219
|
$kendo-solid-button-shadow-opacity: .3 !default;
|
|
224
220
|
|
|
225
221
|
// Outline Button
|
|
222
|
+
/// The shadow of the Button.
|
|
223
|
+
/// @group button
|
|
226
224
|
$kendo-outline-button-shadow: true !default;
|
|
225
|
+
/// The button shadow blur of the Button.
|
|
226
|
+
/// @group button
|
|
227
227
|
$kendo-outline-button-shadow-blur: 0px !default;
|
|
228
|
+
/// The button shadow spread of the Button.
|
|
229
|
+
/// @group button
|
|
228
230
|
$kendo-outline-button-shadow-spread: 2px !default;
|
|
231
|
+
/// The button shadow opacity of the Button.
|
|
232
|
+
/// @group button
|
|
229
233
|
$kendo-outline-button-shadow-opacity: .3 !default;
|
|
230
234
|
|
|
231
235
|
// Link Button
|
|
236
|
+
/// The shadow of the Button.
|
|
237
|
+
/// @group button
|
|
232
238
|
$kendo-link-button-shadow: true !default;
|
|
239
|
+
/// The button shadow blur of the Button.
|
|
240
|
+
/// @group button
|
|
233
241
|
$kendo-link-button-shadow-blur: 0px !default;
|
|
242
|
+
/// The button shadow spread of the Button.
|
|
243
|
+
/// @group button
|
|
234
244
|
$kendo-link-button-shadow-spread: 2px !default;
|
|
245
|
+
/// The button shadow opacity of the Button.
|
|
246
|
+
/// @group button
|
|
235
247
|
$kendo-link-button-shadow-opacity: .3 !default;
|
|
236
248
|
|
|
237
249
|
// Clear Button
|
|
250
|
+
/// The button focus opacity of the Button.
|
|
251
|
+
/// @group button
|
|
238
252
|
$kendo-clear-button-focus-opacity: .1 !default;
|
|
239
253
|
|
|
240
254
|
/// The overlay opacity of the hovered flat Button. Used to create a background for the flat Button.
|
|
@@ -313,16 +327,6 @@ $kendo-button-transition: color .2s ease-in-out !default;
|
|
|
313
327
|
$kendo-button-disabled-shadow: $kendo-button-disabled-shadow,
|
|
314
328
|
$kendo-button-pulsing-opacity: $kendo-button-pulsing-opacity,
|
|
315
329
|
$kendo-solid-button-gradient: $kendo-solid-button-gradient,
|
|
316
|
-
$kendo-solid-button-shade-function: $kendo-solid-button-shade-function,
|
|
317
|
-
$kendo-solid-button-shade-text-amount: $kendo-solid-button-shade-text-amount,
|
|
318
|
-
$kendo-solid-button-shade-bg-amount: $kendo-solid-button-shade-bg-amount,
|
|
319
|
-
$kendo-solid-button-shade-border-amount: $kendo-solid-button-shade-border-amount,
|
|
320
|
-
$kendo-solid-button-hover-shade-text-amount: $kendo-solid-button-hover-shade-text-amount,
|
|
321
|
-
$kendo-solid-button-hover-shade-bg-amount: $kendo-solid-button-hover-shade-bg-amount,
|
|
322
|
-
$kendo-solid-button-hover-shade-border-amount: $kendo-solid-button-hover-shade-border-amount,
|
|
323
|
-
$kendo-solid-button-active-shade-text-amount: $kendo-solid-button-active-shade-text-amount,
|
|
324
|
-
$kendo-solid-button-active-shade-bg-amount: $kendo-solid-button-active-shade-bg-amount,
|
|
325
|
-
$kendo-solid-button-active-shade-border-amount: $kendo-solid-button-active-shade-border-amount,
|
|
326
330
|
$kendo-solid-button-shadow: $kendo-solid-button-shadow,
|
|
327
331
|
$kendo-solid-button-shadow-blur: $kendo-solid-button-shadow-blur,
|
|
328
332
|
$kendo-solid-button-shadow-spread: $kendo-solid-button-shadow-spread,
|
|
@@ -181,6 +181,8 @@ $kendo-card-callout-width: 20px !default;
|
|
|
181
181
|
/// @group card
|
|
182
182
|
$kendo-card-callout-height: 20px !default;
|
|
183
183
|
|
|
184
|
+
/// The theme colors of the Card.
|
|
185
|
+
/// @group card
|
|
184
186
|
$kendo-card-theme-colors: (
|
|
185
187
|
"primary": k-color(primary),
|
|
186
188
|
"secondary": k-color(secondary),
|
|
@@ -12,7 +12,7 @@ $kendo-chat-padding-x: k-spacing(4) !default;
|
|
|
12
12
|
$kendo-chat-padding-y: k-spacing(4) !default;
|
|
13
13
|
/// The minimum width of the Chat.
|
|
14
14
|
/// @group chat
|
|
15
|
-
$kendo-chat-width:
|
|
15
|
+
$kendo-chat-width: 280px !default;
|
|
16
16
|
/// The minimum height of the Chat.
|
|
17
17
|
/// @group chat
|
|
18
18
|
$kendo-chat-height: 600px !default;
|
|
@@ -40,6 +40,8 @@ $kendo-checkbox-md-ripple-size: 300% !default;
|
|
|
40
40
|
$kendo-checkbox-lg-ripple-size: 300% !default;
|
|
41
41
|
|
|
42
42
|
// A map with the different CheckBox sizes.
|
|
43
|
+
/// The sizes of the CheckBox.
|
|
44
|
+
/// @group checkbox
|
|
43
45
|
$kendo-checkbox-sizes: (
|
|
44
46
|
sm: (
|
|
45
47
|
size: $kendo-checkbox-sm-size,
|
|
@@ -63,8 +63,6 @@ $kendo-chip-md-line-height: $kendo-chip-line-height !default;
|
|
|
63
63
|
/// @group chip
|
|
64
64
|
$kendo-chip-lg-line-height: $kendo-chip-line-height !default;
|
|
65
65
|
|
|
66
|
-
/// The calculated height of the Chip.
|
|
67
|
-
/// @group chip
|
|
68
66
|
$kendo-chip-calc-size: calc( #{$kendo-chip-line-height} * 1em + calc( #{$kendo-chip-md-padding-y} * 2 ) + #{$kendo-chip-border-width} * 2 ) !default;
|
|
69
67
|
$kendo-chip-sm-calc-size: calc( #{$kendo-chip-sm-line-height} * 1em + calc( #{$kendo-chip-sm-padding-y} * 2 ) + #{$kendo-chip-border-width} * 2 ) !default;
|
|
70
68
|
|
|
@@ -2,15 +2,33 @@
|
|
|
2
2
|
@use "../core/functions/index.import.scss" as *;
|
|
3
3
|
|
|
4
4
|
// Color Preview
|
|
5
|
+
/// The border radius of the ColorPreview.
|
|
6
|
+
/// @group color-preview
|
|
5
7
|
$kendo-color-preview-border-radius: k-border-radius(md)!default;
|
|
8
|
+
/// The width of the border around the ColorPreview.
|
|
9
|
+
/// @group color-preview
|
|
6
10
|
$kendo-color-preview-border-width: 1px !default;
|
|
11
|
+
/// The background color of the ColorPreview.
|
|
12
|
+
/// @group color-preview
|
|
7
13
|
$kendo-color-preview-bg: null !default;
|
|
14
|
+
/// The text color of the ColorPreview.
|
|
15
|
+
/// @group color-preview
|
|
8
16
|
$kendo-color-preview-text: null !default;
|
|
17
|
+
/// The border color of the ColorPreview.
|
|
18
|
+
/// @group color-preview
|
|
9
19
|
$kendo-color-preview-border: k-color(border) !default;
|
|
20
|
+
/// The border color of the hovered ColorPreview.
|
|
21
|
+
/// @group color-preview
|
|
10
22
|
$kendo-color-preview-hover-border: k-color(border) !default;
|
|
11
23
|
|
|
24
|
+
/// The background color of the ColorPreview when no color is selected.
|
|
25
|
+
/// @group color-preview
|
|
12
26
|
$kendo-color-preview-no-color-bg: k-color(surface-alt) !default;
|
|
27
|
+
/// The text color of the ColorPreview when no color is selected.
|
|
28
|
+
/// @group color-preview
|
|
13
29
|
$kendo-color-preview-no-color-text: k-color(error) !default;
|
|
30
|
+
/// The border color of the ColorPreview when no color is selected.
|
|
31
|
+
/// @group color-preview
|
|
14
32
|
$kendo-color-preview-no-color-border: null !default;
|
|
15
33
|
|
|
16
34
|
$kendo-color-preview-no-color-image: k-escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' version='1.1'><line x1='0' x2='20' y1='0' y2='20' stroke='#{$kendo-color-preview-no-color-text}' stroke-width='1'/></svg>") ) !default;
|
|
@@ -1,26 +1,58 @@
|
|
|
1
1
|
@use "../core/_index.scss" as *;
|
|
2
2
|
|
|
3
|
+
/// The horizontal padding of the small ColumnMenu item.
|
|
4
|
+
/// @group column-menu
|
|
3
5
|
$kendo-column-menu-item-sm-padding-x: k-spacing(2) !default;
|
|
6
|
+
/// The vertical padding of the small ColumnMenu item.
|
|
7
|
+
/// @group column-menu
|
|
4
8
|
$kendo-column-menu-item-sm-padding-y: k-spacing(0.5) !default;
|
|
5
9
|
|
|
10
|
+
/// The horizontal padding of the medium ColumnMenu item.
|
|
11
|
+
/// @group column-menu
|
|
6
12
|
$kendo-column-menu-item-md-padding-x: k-spacing(2) !default;
|
|
13
|
+
/// The vertical padding of the medium ColumnMenu item.
|
|
14
|
+
/// @group column-menu
|
|
7
15
|
$kendo-column-menu-item-md-padding-y: k-spacing(1) !default;
|
|
8
16
|
|
|
17
|
+
/// The horizontal padding of the large ColumnMenu item.
|
|
18
|
+
/// @group column-menu
|
|
9
19
|
$kendo-column-menu-item-lg-padding-x: k-spacing(2) !default;
|
|
20
|
+
/// The vertical padding of the large ColumnMenu item.
|
|
21
|
+
/// @group column-menu
|
|
10
22
|
$kendo-column-menu-item-lg-padding-y: k-spacing(1.5) !default;
|
|
11
23
|
|
|
24
|
+
/// The font size of the ColumnMenu.
|
|
25
|
+
/// @group column-menu
|
|
12
26
|
$kendo-column-menu-font-size: var( --kendo-font-size, inherit ) !default;
|
|
27
|
+
/// The font size of the small ColumnMenu.
|
|
28
|
+
/// @group column-menu
|
|
13
29
|
$kendo-column-menu-sm-font-size: var( --kendo-font-size, inherit ) !default;
|
|
30
|
+
/// The font size of the medium ColumnMenu.
|
|
31
|
+
/// @group column-menu
|
|
14
32
|
$kendo-column-menu-md-font-size: var( --kendo-font-size, inherit ) !default;
|
|
33
|
+
/// The font size of the large ColumnMenu.
|
|
34
|
+
/// @group column-menu
|
|
15
35
|
$kendo-column-menu-lg-font-size: var( --kendo-font-size-lg, inherit ) !default;
|
|
16
36
|
|
|
37
|
+
/// The line height of the ColumnMenu.
|
|
38
|
+
/// @group column-menu
|
|
17
39
|
$kendo-column-menu-line-height: var( --kendo-line-height, normal ) !default;
|
|
40
|
+
/// The line height of the small ColumnMenu.
|
|
41
|
+
/// @group column-menu
|
|
18
42
|
$kendo-column-menu-sm-line-height: var( --kendo-line-height, normal ) !default;
|
|
43
|
+
/// The line height of the medium ColumnMenu.
|
|
44
|
+
/// @group column-menu
|
|
19
45
|
$kendo-column-menu-md-line-height: var( --kendo-line-height, normal ) !default;
|
|
46
|
+
/// The line height of the large ColumnMenu.
|
|
47
|
+
/// @group column-menu
|
|
20
48
|
$kendo-column-menu-lg-line-height: var( --kendo-line-height-lg, normal ) !default;
|
|
21
49
|
|
|
50
|
+
/// The font family of the ColumnMenu.
|
|
51
|
+
/// @group column-menu
|
|
22
52
|
$kendo-column-menu-font-family: var( --kendo-font-family, inherit ) !default;
|
|
23
53
|
|
|
54
|
+
/// The sizes map for the ColumnMenu.
|
|
55
|
+
/// @group column-menu
|
|
24
56
|
$kendo-column-menu-sizes: (
|
|
25
57
|
sm: (
|
|
26
58
|
padding-x: $kendo-column-menu-item-sm-padding-x,
|
|
@@ -43,9 +75,17 @@ $kendo-column-menu-sizes: (
|
|
|
43
75
|
) !default;
|
|
44
76
|
|
|
45
77
|
// Group Menu
|
|
78
|
+
/// The background color of the hovered GroupMenu item action.
|
|
79
|
+
/// @group column-menu
|
|
46
80
|
$kendo-group-menu-item-action-hover-bg: color-mix(in srgb, currentColor 4%, transparent) !default;
|
|
81
|
+
/// The background color of the selected GroupMenu item action.
|
|
82
|
+
/// @group column-menu
|
|
47
83
|
$kendo-group-menu-item-action-selected-bg: color-mix(in srgb, currentColor 16%, transparent) !default;
|
|
84
|
+
/// The text color of the GroupMenu item add action.
|
|
85
|
+
/// @group column-menu
|
|
48
86
|
$kendo-group-menu-item-add-action-text: k-color(primary) !default;
|
|
87
|
+
/// The border color of the GroupMenu item.
|
|
88
|
+
/// @group column-menu
|
|
49
89
|
$kendo-group-menu-item-border: k-color(border) !default;
|
|
50
90
|
|
|
51
91
|
|