@progress/kendo-theme-classic 12.3.1-dev.9 → 13.0.0-dev.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/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 +20456 -15782
- package/dist/meta/sassdoc-raw-data.json +9898 -7606
- package/dist/meta/variables.json +715 -465
- 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 +5 -5
- package/scss/appbar/_variables.scss +6 -16
- package/scss/avatar/_variables.scss +37 -23
- package/scss/badge/_variables.scss +22 -43
- package/scss/bottom-navigation/_variables.scss +12 -17
- package/scss/breadcrumb/_variables.scss +6 -30
- package/scss/button/_variables.scss +22 -41
- package/scss/calendar/_variables.scss +9 -31
- package/scss/card/_variables.scss +7 -17
- package/scss/checkbox/_variables.scss +13 -23
- package/scss/chip/_variables.scss +38 -50
- package/scss/coloreditor/_variables.scss +9 -39
- package/scss/colorgradient/_variables.scss +12 -42
- package/scss/colorpalette/_variables.scss +7 -19
- package/scss/column-menu/_variables.scss +6 -25
- package/scss/datetimepicker/_variables.scss +6 -16
- package/scss/dialog/_variables.scss +7 -10
- package/scss/fab/_variables.scss +21 -34
- package/scss/floating-label/_variables.scss +2 -2
- package/scss/forms/_variables.scss +7 -17
- package/scss/grid/_variables.scss +7 -42
- package/scss/icons/_variables.scss +6 -0
- package/scss/input/_variables.scss +36 -34
- package/scss/list/_variables.scss +6 -73
- package/scss/loader/_variables.scss +13 -17
- package/scss/menu/_variables.scss +6 -0
- package/scss/messagebox/_variables.scss +8 -17
- package/scss/notification/_functions.scss +3 -3
- package/scss/notification/_variables.scss +6 -13
- package/scss/otp/_variables.scss +1 -22
- package/scss/overlay/_variables.scss +5 -17
- package/scss/pager/_variables.scss +7 -26
- package/scss/radio/_variables.scss +6 -22
- package/scss/signature/_variables.scss +0 -21
- package/scss/split-button/_variables.scss +2 -2
- package/scss/spreadsheet/_variables.scss +1 -1
- package/scss/suggestion/_variables.scss +4 -45
- package/scss/switch/_variables.scss +101 -7
- package/scss/table/_variables.scss +6 -25
- package/scss/tabstrip/_variables.scss +6 -25
- package/scss/timeselector/_variables.scss +24 -42
- package/scss/toolbar/_variables.scss +15 -26
- package/scss/tooltip/_functions.scss +3 -3
- package/scss/tooltip/_variables.scss +1 -13
- package/scss/treeview/_variables.scss +8 -33
- package/scss/window/_variables.scss +12 -19
package/scss/fab/_variables.scss
CHANGED
|
@@ -3,6 +3,23 @@
|
|
|
3
3
|
|
|
4
4
|
// Floating Action Button
|
|
5
5
|
|
|
6
|
+
/// The default theme color of the FAB.
|
|
7
|
+
/// @group floating-action-button
|
|
8
|
+
/// @role default
|
|
9
|
+
$kendo-fab-default-theme-color: "primary" !default;
|
|
10
|
+
/// The default fill mode of the FAB.
|
|
11
|
+
/// @group floating-action-button
|
|
12
|
+
/// @role default
|
|
13
|
+
$kendo-fab-default-fill-mode: "solid" !default;
|
|
14
|
+
/// The default roundness of the FAB.
|
|
15
|
+
/// @group floating-action-button
|
|
16
|
+
/// @role default
|
|
17
|
+
$kendo-fab-default-roundness: "full" !default;
|
|
18
|
+
/// The default size of the FAB.
|
|
19
|
+
/// @group floating-action-button
|
|
20
|
+
/// @role default
|
|
21
|
+
$kendo-fab-default-size: "md" !default;
|
|
22
|
+
|
|
6
23
|
/// The width of the border around the FAB.
|
|
7
24
|
/// @group floating-action-button
|
|
8
25
|
$kendo-fab-border-width: 1px !default;
|
|
@@ -92,38 +109,6 @@ $kendo-fab-item-icon-border-width: 0 !default;
|
|
|
92
109
|
/// @group floating-action-button
|
|
93
110
|
$kendo-fab-item-icon-border-radius: 50% !default;
|
|
94
111
|
|
|
95
|
-
/// The theme colors map for the FAB.
|
|
96
|
-
/// @group floating-action-button
|
|
97
|
-
$kendo-fab-theme-colors: (
|
|
98
|
-
"primary": k-color(primary),
|
|
99
|
-
"secondary": k-color(secondary),
|
|
100
|
-
"tertiary": k-color(tertiary),
|
|
101
|
-
"info": k-color(info),
|
|
102
|
-
"success": k-color(success),
|
|
103
|
-
"warning": k-color(warning),
|
|
104
|
-
"error": k-color(error),
|
|
105
|
-
"dark": k-color(dark),
|
|
106
|
-
"light": k-color(light),
|
|
107
|
-
"inverse": if($kendo-is-dark-theme, k-color(light), k-color(dark))
|
|
108
|
-
) !default;
|
|
109
|
-
|
|
110
|
-
/// The size map for the FAB.
|
|
111
|
-
/// @group floating-action-button
|
|
112
|
-
$kendo-fab-sizes: (
|
|
113
|
-
sm: (
|
|
114
|
-
padding-x: $kendo-fab-sm-padding-x,
|
|
115
|
-
padding-y: $kendo-fab-sm-padding-y
|
|
116
|
-
),
|
|
117
|
-
md: (
|
|
118
|
-
padding-x: $kendo-fab-md-padding-x,
|
|
119
|
-
padding-y: $kendo-fab-md-padding-y
|
|
120
|
-
),
|
|
121
|
-
lg: (
|
|
122
|
-
padding-x: $kendo-fab-lg-padding-x,
|
|
123
|
-
padding-y: $kendo-fab-lg-padding-y
|
|
124
|
-
)
|
|
125
|
-
) !default;
|
|
126
|
-
|
|
127
112
|
/// The base shadow of the FAB.
|
|
128
113
|
/// @group floating-action-button
|
|
129
114
|
$kendo-fab-shadow: k-elevation(5) !default;
|
|
@@ -186,6 +171,10 @@ $kendo-fab-generating-opacity: 40% !default;
|
|
|
186
171
|
|
|
187
172
|
|
|
188
173
|
@forward "@progress/kendo-theme-core/scss/components/fab/_variables.scss" with (
|
|
174
|
+
$kendo-fab-default-theme-color: $kendo-fab-default-theme-color,
|
|
175
|
+
$kendo-fab-default-fill-mode: $kendo-fab-default-fill-mode,
|
|
176
|
+
$kendo-fab-default-roundness: $kendo-fab-default-roundness,
|
|
177
|
+
$kendo-fab-default-size: $kendo-fab-default-size,
|
|
189
178
|
$kendo-fab-border-width: $kendo-fab-border-width,
|
|
190
179
|
$kendo-fab-font-family: $kendo-fab-font-family,
|
|
191
180
|
$kendo-fab-font-size: $kendo-fab-font-size,
|
|
@@ -211,8 +200,6 @@ $kendo-fab-generating-opacity: 40% !default;
|
|
|
211
200
|
$kendo-fab-item-icon-padding-y: $kendo-fab-item-icon-padding-y,
|
|
212
201
|
$kendo-fab-item-icon-border-width: $kendo-fab-item-icon-border-width,
|
|
213
202
|
$kendo-fab-item-icon-border-radius: $kendo-fab-item-icon-border-radius,
|
|
214
|
-
$kendo-fab-theme-colors: $kendo-fab-theme-colors,
|
|
215
|
-
$kendo-fab-sizes: $kendo-fab-sizes,
|
|
216
203
|
$kendo-fab-shadow: $kendo-fab-shadow,
|
|
217
204
|
$kendo-fab-disabled-shadow: $kendo-fab-disabled-shadow,
|
|
218
205
|
$kendo-fab-active-shadow: $kendo-fab-active-shadow,
|
|
@@ -8,13 +8,13 @@
|
|
|
8
8
|
$kendo-floating-label-scale: 1 !default;
|
|
9
9
|
/// The font size of the Floating Label.
|
|
10
10
|
/// @group floating-label
|
|
11
|
-
$kendo-floating-label-font-size: $kendo-input-font-size !default;
|
|
11
|
+
$kendo-floating-label-font-size: $kendo-input-md-font-size !default;
|
|
12
12
|
/// The maximum width of the Floating Label.
|
|
13
13
|
/// @group floating-label
|
|
14
14
|
$kendo-floating-label-max-width: 90% !default;
|
|
15
15
|
/// The line height of the Floating Label.
|
|
16
16
|
/// @group floating-label
|
|
17
|
-
$kendo-floating-label-line-height: $kendo-input-line-height !default;
|
|
17
|
+
$kendo-floating-label-line-height: $kendo-input-md-line-height !default;
|
|
18
18
|
/// The height of the Floating Label.
|
|
19
19
|
/// @group floating-label
|
|
20
20
|
$kendo-floating-label-height: calc( #{$kendo-floating-label-line-height} * #{$kendo-floating-label-font-size} ) !default;
|
|
@@ -6,6 +6,11 @@
|
|
|
6
6
|
|
|
7
7
|
// Forms
|
|
8
8
|
|
|
9
|
+
/// The default size of the Form.
|
|
10
|
+
/// @group form
|
|
11
|
+
/// @role default
|
|
12
|
+
$kendo-form-default-size: "md" !default;
|
|
13
|
+
|
|
9
14
|
/// The padding of the inline Form.
|
|
10
15
|
/// @group form
|
|
11
16
|
$kendo-form-spacer: calc( #{k-spacing(2)} * 2 ) !default;
|
|
@@ -143,22 +148,8 @@ $kendo-form-field-info-margin: k-spacing(2) !default;
|
|
|
143
148
|
/// @group form
|
|
144
149
|
$kendo-fieldset-legend-text: k-color(on-app-surface) !default;
|
|
145
150
|
|
|
146
|
-
/// The sizes map for the Form.
|
|
147
|
-
/// @group form
|
|
148
|
-
$kendo-form-sizes: (
|
|
149
|
-
sm: (
|
|
150
|
-
form-rows-spacing: $kendo-form-sm-rows-spacing
|
|
151
|
-
),
|
|
152
|
-
md: (
|
|
153
|
-
form-rows-spacing: $kendo-form-md-rows-spacing
|
|
154
|
-
),
|
|
155
|
-
lg: (
|
|
156
|
-
form-rows-spacing: $kendo-form-lg-rows-spacing
|
|
157
|
-
)
|
|
158
|
-
) !default;
|
|
159
|
-
|
|
160
|
-
|
|
161
151
|
@forward "@progress/kendo-theme-core/scss/components/forms/_variables.scss" with (
|
|
152
|
+
$kendo-form-default-size: $kendo-form-default-size,
|
|
162
153
|
$kendo-form-spacer: $kendo-form-spacer,
|
|
163
154
|
$kendo-form-font-size: $kendo-form-font-size,
|
|
164
155
|
$kendo-form-line-height: $kendo-form-line-height,
|
|
@@ -197,6 +188,5 @@ $kendo-form-sizes: (
|
|
|
197
188
|
$kendo-fieldset-legend-margin: $kendo-fieldset-legend-margin,
|
|
198
189
|
$kendo-form-alert-error-margin: $kendo-form-alert-error-margin,
|
|
199
190
|
$kendo-form-field-info-margin: $kendo-form-field-info-margin,
|
|
200
|
-
$kendo-fieldset-legend-text: $kendo-fieldset-legend-text
|
|
201
|
-
$kendo-form-sizes: $kendo-form-sizes
|
|
191
|
+
$kendo-fieldset-legend-text: $kendo-fieldset-legend-text
|
|
202
192
|
);
|
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
@use "../popup/_variables.scss" as *;
|
|
11
11
|
|
|
12
12
|
// Grid
|
|
13
|
+
|
|
14
|
+
/// The default size of the Grid.
|
|
15
|
+
/// @group grid
|
|
16
|
+
/// @role default
|
|
17
|
+
$kendo-grid-default-size: "md" !default;
|
|
18
|
+
|
|
13
19
|
/// The width of the border around the Grid.
|
|
14
20
|
/// @group grid
|
|
15
21
|
$kendo-grid-border-width: 1px !default;
|
|
@@ -171,47 +177,6 @@ $kendo-grid-md-selection-aggregates-padding-x: $kendo-grid-padding-y !default;
|
|
|
171
177
|
$kendo-grid-md-selection-aggregates-padding-y: $kendo-grid-padding-y !default;
|
|
172
178
|
|
|
173
179
|
|
|
174
|
-
// Kendo Grid sizes
|
|
175
|
-
/// The sizes of the Grid.
|
|
176
|
-
/// @group grid
|
|
177
|
-
$kendo-grid-sizes: (
|
|
178
|
-
sm: (
|
|
179
|
-
header-padding-x: $kendo-grid-sm-header-padding-x,
|
|
180
|
-
header-padding-y: $kendo-grid-sm-header-padding-y,
|
|
181
|
-
grouping-header-padding-x: $kendo-grid-sm-grouping-header-padding-x,
|
|
182
|
-
grouping-header-padding-y: $kendo-grid-sm-grouping-header-padding-y,
|
|
183
|
-
cell-padding-x: $kendo-grid-sm-cell-padding-x,
|
|
184
|
-
cell-padding-y: $kendo-grid-sm-cell-padding-y,
|
|
185
|
-
filter-cell-padding-x: $kendo-grid-sm-filter-cell-padding-x,
|
|
186
|
-
filter-cell-padding-y: $kendo-grid-sm-filter-cell-padding-y,
|
|
187
|
-
edit-cell-padding-x: $kendo-grid-sm-edit-cell-padding-x,
|
|
188
|
-
edit-cell-padding-y: $kendo-grid-sm-edit-cell-padding-y,
|
|
189
|
-
button-padding-y: $kendo-button-sm-padding-y,
|
|
190
|
-
button-calc-size: $kendo-button-sm-calc-size,
|
|
191
|
-
group-dropclue-height: $kendo-grid-sm-group-dropclue-height,
|
|
192
|
-
selection-aggregates-padding-x: $kendo-grid-sm-selection-aggregates-padding-x,
|
|
193
|
-
selection-aggregates-padding-y: $kendo-grid-sm-selection-aggregates-padding-y
|
|
194
|
-
),
|
|
195
|
-
md: (
|
|
196
|
-
header-padding-x: $kendo-grid-md-header-padding-x,
|
|
197
|
-
header-padding-y: $kendo-grid-md-header-padding-y,
|
|
198
|
-
grouping-header-padding-x: $kendo-grid-md-grouping-header-padding-x,
|
|
199
|
-
grouping-header-padding-y: $kendo-grid-md-grouping-header-padding-y,
|
|
200
|
-
cell-padding-x: $kendo-grid-md-cell-padding-x,
|
|
201
|
-
cell-padding-y: $kendo-grid-md-cell-padding-y,
|
|
202
|
-
filter-cell-padding-x: $kendo-grid-md-filter-cell-padding-x,
|
|
203
|
-
filter-cell-padding-y: $kendo-grid-md-filter-cell-padding-y,
|
|
204
|
-
edit-cell-padding-x: $kendo-grid-md-edit-cell-padding-x,
|
|
205
|
-
edit-cell-padding-y: $kendo-grid-md-edit-cell-padding-y,
|
|
206
|
-
button-padding-y: $kendo-button-md-padding-y,
|
|
207
|
-
button-calc-size: $kendo-button-md-calc-size,
|
|
208
|
-
group-dropclue-height: $kendo-grid-md-group-dropclue-height,
|
|
209
|
-
selection-aggregates-padding-x: $kendo-grid-md-selection-aggregates-padding-x,
|
|
210
|
-
selection-aggregates-padding-y: $kendo-grid-md-selection-aggregates-padding-y
|
|
211
|
-
),
|
|
212
|
-
) !default;
|
|
213
|
-
|
|
214
|
-
|
|
215
180
|
/// The font size of the Grid header.
|
|
216
181
|
/// @group grid
|
|
217
182
|
$kendo-grid-header-font-size: null !default;
|
|
@@ -518,6 +483,7 @@ $kendo-grid-stack-focus-outline: color-mix(in srgb, k-color(on-app-surface) 12%,
|
|
|
518
483
|
$kendo-grid-stack-expandable-shadow: k-elevation(2) !default;
|
|
519
484
|
|
|
520
485
|
@forward "@progress/kendo-theme-core/scss/components/grid/_variables.scss" with (
|
|
486
|
+
$kendo-grid-default-size: $kendo-grid-default-size,
|
|
521
487
|
$kendo-grid-border-width: $kendo-grid-border-width,
|
|
522
488
|
$kendo-grid-font-family: $kendo-grid-font-family,
|
|
523
489
|
$kendo-grid-font-size: $kendo-grid-font-size,
|
|
@@ -568,7 +534,6 @@ $kendo-grid-stack-expandable-shadow: k-elevation(2) !default;
|
|
|
568
534
|
$kendo-grid-md-group-dropclue-height: $kendo-grid-md-group-dropclue-height,
|
|
569
535
|
$kendo-grid-md-selection-aggregates-padding-x: $kendo-grid-md-selection-aggregates-padding-x,
|
|
570
536
|
$kendo-grid-md-selection-aggregates-padding-y: $kendo-grid-md-selection-aggregates-padding-y,
|
|
571
|
-
$kendo-grid-sizes: $kendo-grid-sizes,
|
|
572
537
|
$kendo-grid-header-font-size: $kendo-grid-header-font-size,
|
|
573
538
|
$kendo-grid-header-first-border: $kendo-grid-header-first-border,
|
|
574
539
|
$kendo-grid-header-menu-icon-spacing: $kendo-grid-header-menu-icon-spacing,
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
@use "../core/_index.scss" as *;
|
|
2
2
|
|
|
3
|
+
/// The default size of the Icon.
|
|
4
|
+
/// @group icon
|
|
5
|
+
/// @role default
|
|
6
|
+
$kendo-icon-default-size: "md" !default;
|
|
7
|
+
|
|
3
8
|
/// The default size icon size.
|
|
4
9
|
/// @group icon
|
|
5
10
|
$kendo-icon-size: 16px !default;
|
|
@@ -32,6 +37,7 @@ $kendo-icon-spacing: k-spacing(1) !default;
|
|
|
32
37
|
$kendo-icon-padding: k-spacing(1) !default;
|
|
33
38
|
|
|
34
39
|
@forward "@progress/kendo-theme-core/scss/components/icons/_variables.scss" with (
|
|
40
|
+
$kendo-icon-default-size: $kendo-icon-default-size,
|
|
35
41
|
$kendo-icon-size: $kendo-icon-size,
|
|
36
42
|
$kendo-icon-size-xs: $kendo-icon-size-xs,
|
|
37
43
|
$kendo-icon-size-sm: $kendo-icon-size-sm,
|
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
|
|
4
4
|
// Input
|
|
5
5
|
|
|
6
|
+
/// The default fill mode of the Input.
|
|
7
|
+
/// @group input
|
|
8
|
+
/// @role default
|
|
9
|
+
$kendo-input-default-fill-mode: "solid" !default;
|
|
10
|
+
/// The default roundness of the Input.
|
|
11
|
+
/// @group input
|
|
12
|
+
/// @role default
|
|
13
|
+
$kendo-input-default-roundness: "md" !default;
|
|
14
|
+
/// The default size of the Input.
|
|
15
|
+
/// @group input
|
|
16
|
+
/// @role default
|
|
17
|
+
$kendo-input-default-size: "md" !default;
|
|
18
|
+
|
|
6
19
|
/// The default width of the Input components.
|
|
7
20
|
/// @group input
|
|
8
21
|
$kendo-input-default-width: 100% !default;
|
|
@@ -40,7 +53,7 @@ $kendo-input-font-family: var( --kendo-font-family, inherit ) !default;
|
|
|
40
53
|
|
|
41
54
|
/// Font size of input components.
|
|
42
55
|
/// @group input
|
|
43
|
-
$kendo-input-font-size:
|
|
56
|
+
$kendo-input-font-size: null !default;
|
|
44
57
|
/// The font size of the small Input components.
|
|
45
58
|
/// @group input
|
|
46
59
|
$kendo-input-sm-font-size: var( --kendo-font-size, inherit ) !default;
|
|
@@ -54,7 +67,7 @@ $kendo-input-lg-font-size: var( --kendo-font-size-lg, inherit ) !default;
|
|
|
54
67
|
|
|
55
68
|
/// Line height of input components.
|
|
56
69
|
/// @group input
|
|
57
|
-
$kendo-input-line-height:
|
|
70
|
+
$kendo-input-line-height: null !default;
|
|
58
71
|
/// The line height of the small Input components.
|
|
59
72
|
/// @group input
|
|
60
73
|
$kendo-input-sm-line-height: var( --kendo-line-height, normal ) !default;
|
|
@@ -69,35 +82,6 @@ $kendo-input-sm-calc-size: calc( ( #{$kendo-input-sm-line-height} * 1em ) + ( #{
|
|
|
69
82
|
$kendo-input-md-calc-size: calc( ( #{$kendo-input-md-line-height} * 1em ) + ( #{$kendo-input-md-padding-y} * 2 ) + ( #{$kendo-input-border-width * 2} ) ) !default;
|
|
70
83
|
$kendo-input-lg-calc-size: calc( ( #{$kendo-input-lg-line-height} * 1em ) + ( #{$kendo-input-lg-padding-y} * 2 ) + ( #{$kendo-input-border-width * 2} ) ) !default;
|
|
71
84
|
|
|
72
|
-
/// The sizes map for the Input components.
|
|
73
|
-
/// @group input
|
|
74
|
-
$kendo-input-sizes: (
|
|
75
|
-
sm: (
|
|
76
|
-
padding-x: $kendo-input-sm-padding-x,
|
|
77
|
-
padding-y: $kendo-input-sm-padding-y,
|
|
78
|
-
font-size: $kendo-input-sm-font-size,
|
|
79
|
-
line-height: $kendo-input-sm-line-height,
|
|
80
|
-
button-padding-x: $kendo-input-sm-padding-y,
|
|
81
|
-
button-padding-y: $kendo-input-sm-padding-y
|
|
82
|
-
),
|
|
83
|
-
md: (
|
|
84
|
-
padding-x: $kendo-input-md-padding-x,
|
|
85
|
-
padding-y: $kendo-input-md-padding-y,
|
|
86
|
-
font-size: $kendo-input-md-font-size,
|
|
87
|
-
line-height: $kendo-input-md-line-height,
|
|
88
|
-
button-padding-x: $kendo-input-md-padding-y,
|
|
89
|
-
button-padding-y: $kendo-input-md-padding-y
|
|
90
|
-
),
|
|
91
|
-
lg: (
|
|
92
|
-
padding-x: $kendo-input-lg-padding-x,
|
|
93
|
-
padding-y: $kendo-input-lg-padding-y,
|
|
94
|
-
font-size: $kendo-input-lg-font-size,
|
|
95
|
-
line-height: $kendo-input-lg-line-height,
|
|
96
|
-
button-padding-x: $kendo-input-lg-padding-y,
|
|
97
|
-
button-padding-y: $kendo-input-lg-padding-y
|
|
98
|
-
)
|
|
99
|
-
) !default;
|
|
100
|
-
|
|
101
85
|
/// The background color of the Input components.
|
|
102
86
|
/// @group input
|
|
103
87
|
$kendo-input-bg: k-color(surface-alt) !default;
|
|
@@ -278,6 +262,19 @@ $kendo-input-invalid-border: k-color(error-on-surface) !default;
|
|
|
278
262
|
/// @group input
|
|
279
263
|
$kendo-input-invalid-shadow: null !default;
|
|
280
264
|
|
|
265
|
+
/// The default fill mode of the Picker.
|
|
266
|
+
/// @group picker
|
|
267
|
+
/// @role default
|
|
268
|
+
$kendo-picker-default-fill-mode: "solid" !default;
|
|
269
|
+
/// The default roundness of the Picker.
|
|
270
|
+
/// @group picker
|
|
271
|
+
/// @role default
|
|
272
|
+
$kendo-picker-default-roundness: "md" !default;
|
|
273
|
+
/// The default size of the Picker.
|
|
274
|
+
/// @group picker
|
|
275
|
+
/// @role default
|
|
276
|
+
$kendo-picker-default-size: "md" !default;
|
|
277
|
+
|
|
281
278
|
/// The background color of the Picker components.
|
|
282
279
|
/// @group picker
|
|
283
280
|
$kendo-picker-bg: $kendo-button-bg !default;
|
|
@@ -344,7 +341,7 @@ $kendo-picker-disabled-shadow: null !default;
|
|
|
344
341
|
|
|
345
342
|
/// The background color of the outline Picker components.
|
|
346
343
|
/// @group picker
|
|
347
|
-
$kendo-picker-outline-bg:
|
|
344
|
+
$kendo-picker-outline-bg: transparent !default;
|
|
348
345
|
/// The text color of the outline Picker components.
|
|
349
346
|
/// @group picker
|
|
350
347
|
$kendo-picker-outline-text: k-color(on-app-surface) !default;
|
|
@@ -387,7 +384,7 @@ $kendo-picker-outline-hover-focus-border: null !default;
|
|
|
387
384
|
|
|
388
385
|
/// The background color of the flat Picker components.
|
|
389
386
|
/// @group picker
|
|
390
|
-
$kendo-picker-flat-bg:
|
|
387
|
+
$kendo-picker-flat-bg: transparent !default;
|
|
391
388
|
/// The text color of the flat Picker components.
|
|
392
389
|
/// @group picker
|
|
393
390
|
$kendo-picker-flat-text: k-color(on-app-surface) !default;
|
|
@@ -434,6 +431,9 @@ $kendo-use-input-spinner-icon-offset: false !default;
|
|
|
434
431
|
|
|
435
432
|
|
|
436
433
|
@forward "@progress/kendo-theme-core/scss/components/input/_variables.scss" with (
|
|
434
|
+
$kendo-input-default-fill-mode: $kendo-input-default-fill-mode,
|
|
435
|
+
$kendo-input-default-roundness: $kendo-input-default-roundness,
|
|
436
|
+
$kendo-input-default-size: $kendo-input-default-size,
|
|
437
437
|
$kendo-input-default-width: $kendo-input-default-width,
|
|
438
438
|
$kendo-input-border-width: $kendo-input-border-width,
|
|
439
439
|
$kendo-input-border-radius: $kendo-input-border-radius,
|
|
@@ -455,7 +455,6 @@ $kendo-use-input-spinner-icon-offset: false !default;
|
|
|
455
455
|
$kendo-input-sm-calc-size: $kendo-input-sm-calc-size,
|
|
456
456
|
$kendo-input-md-calc-size: $kendo-input-md-calc-size,
|
|
457
457
|
$kendo-input-lg-calc-size: $kendo-input-lg-calc-size,
|
|
458
|
-
$kendo-input-sizes: $kendo-input-sizes,
|
|
459
458
|
$kendo-input-bg: $kendo-input-bg,
|
|
460
459
|
$kendo-input-text: $kendo-input-text,
|
|
461
460
|
$kendo-input-border: $kendo-input-border,
|
|
@@ -510,6 +509,9 @@ $kendo-use-input-spinner-icon-offset: false !default;
|
|
|
510
509
|
$kendo-input-suffix-bg: $kendo-input-suffix-bg,
|
|
511
510
|
$kendo-input-invalid-border: $kendo-input-invalid-border,
|
|
512
511
|
$kendo-input-invalid-shadow: $kendo-input-invalid-shadow,
|
|
512
|
+
$kendo-picker-default-fill-mode: $kendo-picker-default-fill-mode,
|
|
513
|
+
$kendo-picker-default-roundness: $kendo-picker-default-roundness,
|
|
514
|
+
$kendo-picker-default-size: $kendo-picker-default-size,
|
|
513
515
|
$kendo-picker-bg: $kendo-picker-bg,
|
|
514
516
|
$kendo-picker-text: $kendo-picker-text,
|
|
515
517
|
$kendo-picker-border: $kendo-picker-border,
|
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
// List
|
|
4
4
|
|
|
5
|
+
/// The default size of the List.
|
|
6
|
+
/// @group list
|
|
7
|
+
/// @role default
|
|
8
|
+
$kendo-list-default-size: "md" !default;
|
|
9
|
+
|
|
5
10
|
/// The font family of the List components.
|
|
6
11
|
/// @group list
|
|
7
12
|
$kendo-list-font-family: var( --kendo-font-family, inherit ) !default;
|
|
@@ -246,78 +251,6 @@ $kendo-list-item-group-label-md-padding-y: 0 !default;
|
|
|
246
251
|
/// @group list
|
|
247
252
|
$kendo-list-item-group-label-lg-padding-y: 0 !default;
|
|
248
253
|
|
|
249
|
-
/// The map with the sizes of the List.
|
|
250
|
-
/// @group list
|
|
251
|
-
$kendo-list-sizes: (
|
|
252
|
-
sm: (
|
|
253
|
-
font-size: $kendo-list-sm-font-size,
|
|
254
|
-
line-height: $kendo-list-sm-line-height,
|
|
255
|
-
header-padding-x: $kendo-list-sm-header-padding-x,
|
|
256
|
-
header-padding-y: $kendo-list-sm-header-padding-y,
|
|
257
|
-
header-font-size: $kendo-list-sm-header-font-size,
|
|
258
|
-
header-line-height: $kendo-list-sm-header-line-height,
|
|
259
|
-
item-padding-x: $kendo-list-sm-item-padding-x,
|
|
260
|
-
item-padding-y: $kendo-list-sm-item-padding-y,
|
|
261
|
-
item-font-size: $kendo-list-sm-item-font-size,
|
|
262
|
-
item-line-height: $kendo-list-sm-item-line-height,
|
|
263
|
-
group-item-padding-x: $kendo-list-sm-group-item-padding-x,
|
|
264
|
-
group-item-padding-y: $kendo-list-sm-group-item-padding-y,
|
|
265
|
-
group-item-font-size: $kendo-list-sm-group-item-font-size,
|
|
266
|
-
group-item-line-height: $kendo-list-sm-group-item-line-height,
|
|
267
|
-
item-group-label-padding-x: $kendo-list-item-group-label-sm-padding-x,
|
|
268
|
-
item-group-label-padding-y: $kendo-list-item-group-label-sm-padding-y,
|
|
269
|
-
item-group-label-font-size: $kendo-list-item-group-label-sm-font-size,
|
|
270
|
-
item-group-label-line-height: $kendo-list-item-group-label-sm-line-height,
|
|
271
|
-
filter-padding-x: $kendo-list-sm-filter-padding-x,
|
|
272
|
-
filter-padding-y: $kendo-list-sm-filter-padding-y
|
|
273
|
-
),
|
|
274
|
-
md: (
|
|
275
|
-
font-size: $kendo-list-md-font-size,
|
|
276
|
-
line-height: $kendo-list-md-line-height,
|
|
277
|
-
header-padding-x: $kendo-list-md-header-padding-x,
|
|
278
|
-
header-padding-y: $kendo-list-md-header-padding-y,
|
|
279
|
-
header-font-size: $kendo-list-md-header-font-size,
|
|
280
|
-
header-line-height: $kendo-list-md-header-line-height,
|
|
281
|
-
item-padding-x: $kendo-list-md-item-padding-x,
|
|
282
|
-
item-padding-y: $kendo-list-md-item-padding-y,
|
|
283
|
-
item-font-size: $kendo-list-md-item-font-size,
|
|
284
|
-
item-line-height: $kendo-list-md-item-line-height,
|
|
285
|
-
group-item-padding-x: $kendo-list-md-group-item-padding-x,
|
|
286
|
-
group-item-padding-y: $kendo-list-md-group-item-padding-y,
|
|
287
|
-
group-item-font-size: $kendo-list-md-group-item-font-size,
|
|
288
|
-
group-item-line-height: $kendo-list-md-group-item-line-height,
|
|
289
|
-
item-group-label-padding-x: $kendo-list-item-group-label-md-padding-x,
|
|
290
|
-
item-group-label-padding-y: $kendo-list-item-group-label-md-padding-y,
|
|
291
|
-
item-group-label-font-size: $kendo-list-item-group-label-md-font-size,
|
|
292
|
-
item-group-label-line-height: $kendo-list-item-group-label-md-line-height,
|
|
293
|
-
filter-padding-x: $kendo-list-md-filter-padding-x,
|
|
294
|
-
filter-padding-y: $kendo-list-md-filter-padding-y
|
|
295
|
-
),
|
|
296
|
-
lg: (
|
|
297
|
-
font-size: $kendo-list-lg-font-size,
|
|
298
|
-
line-height: $kendo-list-lg-line-height,
|
|
299
|
-
header-padding-x: $kendo-list-lg-header-padding-x,
|
|
300
|
-
header-padding-y: $kendo-list-lg-header-padding-y,
|
|
301
|
-
header-font-size: $kendo-list-lg-header-font-size,
|
|
302
|
-
header-line-height: $kendo-list-lg-header-line-height,
|
|
303
|
-
item-padding-x: $kendo-list-lg-item-padding-x,
|
|
304
|
-
item-padding-y: $kendo-list-lg-item-padding-y,
|
|
305
|
-
item-font-size: $kendo-list-lg-item-font-size,
|
|
306
|
-
item-line-height: $kendo-list-lg-item-line-height,
|
|
307
|
-
group-item-padding-x: $kendo-list-lg-group-item-padding-x,
|
|
308
|
-
group-item-padding-y: $kendo-list-lg-group-item-padding-y,
|
|
309
|
-
group-item-font-size: $kendo-list-lg-group-item-font-size,
|
|
310
|
-
group-item-line-height: $kendo-list-lg-group-item-line-height,
|
|
311
|
-
item-group-label-padding-x: $kendo-list-item-group-label-lg-padding-x,
|
|
312
|
-
item-group-label-padding-y: $kendo-list-item-group-label-lg-padding-y,
|
|
313
|
-
item-group-label-font-size: $kendo-list-item-group-label-lg-font-size,
|
|
314
|
-
item-group-label-line-height: $kendo-list-item-group-label-lg-line-height,
|
|
315
|
-
filter-padding-x: $kendo-list-lg-filter-padding-x,
|
|
316
|
-
filter-padding-y: $kendo-list-lg-filter-padding-y
|
|
317
|
-
)
|
|
318
|
-
) !default;
|
|
319
|
-
|
|
320
|
-
|
|
321
254
|
/// The background color of the List component.
|
|
322
255
|
/// @group list
|
|
323
256
|
$kendo-list-bg: k-color(surface-alt) !default;
|
|
@@ -400,6 +333,7 @@ $kendo-list-option-label-text: k-color(subtle) !default;
|
|
|
400
333
|
|
|
401
334
|
|
|
402
335
|
@forward "@progress/kendo-theme-core/scss/components/list/_variables.scss" with (
|
|
336
|
+
$kendo-list-default-size: $kendo-list-default-size,
|
|
403
337
|
$kendo-list-font-family: $kendo-list-font-family,
|
|
404
338
|
$kendo-list-font-size: $kendo-list-font-size,
|
|
405
339
|
$kendo-list-sm-font-size: $kendo-list-sm-font-size,
|
|
@@ -473,7 +407,6 @@ $kendo-list-option-label-text: k-color(subtle) !default;
|
|
|
473
407
|
$kendo-list-lg-filter-padding-x: $kendo-list-lg-filter-padding-x,
|
|
474
408
|
$kendo-list-lg-filter-padding-y: $kendo-list-lg-filter-padding-y,
|
|
475
409
|
$kendo-list-group-item-font-weight: $kendo-list-group-item-font-weight,
|
|
476
|
-
$kendo-list-sizes: $kendo-list-sizes,
|
|
477
410
|
$kendo-list-bg: $kendo-list-bg,
|
|
478
411
|
$kendo-list-text: $kendo-list-text,
|
|
479
412
|
$kendo-list-border: $kendo-list-border,
|
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
// Loader
|
|
4
4
|
|
|
5
|
+
/// The default size of the Loader.
|
|
6
|
+
/// @group loader
|
|
7
|
+
/// @role default
|
|
8
|
+
$kendo-loader-default-size: "md" !default;
|
|
9
|
+
|
|
10
|
+
/// The default theme color of the Loader.
|
|
11
|
+
/// @group loader
|
|
12
|
+
/// @role default
|
|
13
|
+
$kendo-loader-default-theme-color: "primary" !default;
|
|
14
|
+
|
|
5
15
|
/// The border radius of the Loader segment.
|
|
6
16
|
/// @group loader
|
|
7
17
|
$kendo-loader-segment-border-radius: 50% !default;
|
|
@@ -126,23 +136,10 @@ $kendo-loading-opacity: .3 !default;
|
|
|
126
136
|
/// @group loading
|
|
127
137
|
$kendo-zindex-loading: 100 !default;
|
|
128
138
|
|
|
129
|
-
/// The theme colors of the Loader.
|
|
130
|
-
/// @group loader
|
|
131
|
-
$kendo-loader-theme-colors: (
|
|
132
|
-
"primary": k-color(primary),
|
|
133
|
-
"secondary": k-color(secondary),
|
|
134
|
-
"tertiary": k-color(tertiary),
|
|
135
|
-
"info": k-color(info),
|
|
136
|
-
"success": k-color(success),
|
|
137
|
-
"warning": k-color(warning),
|
|
138
|
-
"error": k-color(error),
|
|
139
|
-
"dark": k-color(dark),
|
|
140
|
-
"light": k-color(light),
|
|
141
|
-
"inverse": if($kendo-is-dark-theme, k-color(light), k-color(dark))
|
|
142
|
-
) !default;
|
|
143
|
-
|
|
144
139
|
|
|
145
140
|
@forward "@progress/kendo-theme-core/scss/components/loader/_variables.scss" with (
|
|
141
|
+
$kendo-loader-default-size: $kendo-loader-default-size,
|
|
142
|
+
$kendo-loader-default-theme-color: $kendo-loader-default-theme-color,
|
|
146
143
|
$kendo-loader-segment-border-radius: $kendo-loader-segment-border-radius,
|
|
147
144
|
$kendo-loader-sm-segment-size: $kendo-loader-sm-segment-size,
|
|
148
145
|
$kendo-loader-md-segment-size: $kendo-loader-md-segment-size,
|
|
@@ -179,6 +176,5 @@ $kendo-loader-theme-colors: (
|
|
|
179
176
|
$kendo-loading-bg: $kendo-loading-bg,
|
|
180
177
|
$kendo-loading-text: $kendo-loading-text,
|
|
181
178
|
$kendo-loading-opacity: $kendo-loading-opacity,
|
|
182
|
-
$kendo-zindex-loading: $kendo-zindex-loading
|
|
183
|
-
$kendo-loader-theme-colors: $kendo-loader-theme-colors
|
|
179
|
+
$kendo-zindex-loading: $kendo-zindex-loading
|
|
184
180
|
);
|
|
@@ -6,6 +6,11 @@
|
|
|
6
6
|
|
|
7
7
|
// Menu
|
|
8
8
|
|
|
9
|
+
/// The default size of the Menu group.
|
|
10
|
+
/// @group menu
|
|
11
|
+
/// @role default
|
|
12
|
+
$kendo-menu-group-default-size: "md" !default;
|
|
13
|
+
|
|
9
14
|
/// The width of the border around the Menu.
|
|
10
15
|
/// @group menu
|
|
11
16
|
$kendo-menu-border-width: 1px !default;
|
|
@@ -303,6 +308,7 @@ $kendo-menu-popup-item-focus-shadow: $kendo-menu-item-focus-shadow !default;
|
|
|
303
308
|
|
|
304
309
|
|
|
305
310
|
@forward "@progress/kendo-theme-core/scss/components/menu/_variables.scss" with (
|
|
311
|
+
$kendo-menu-group-default-size: $kendo-menu-group-default-size,
|
|
306
312
|
$kendo-menu-border-width: $kendo-menu-border-width,
|
|
307
313
|
$kendo-menu-font-family: $kendo-menu-font-family,
|
|
308
314
|
$kendo-menu-font-size: $kendo-menu-font-size,
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
@use "../core/_index.scss" as *;
|
|
2
2
|
|
|
3
3
|
// Message box
|
|
4
|
+
|
|
5
|
+
/// The default theme color of the MessageBox.
|
|
6
|
+
/// @group messagebox
|
|
7
|
+
/// @role default
|
|
8
|
+
$kendo-message-box-default-theme-color: null !default;
|
|
9
|
+
|
|
4
10
|
/// The margin of the MessageBox.
|
|
5
11
|
/// @group messagebox
|
|
6
12
|
$kendo-message-box-margin: 0 0 k-spacing(4) 0 !default;
|
|
@@ -38,23 +44,9 @@ $kendo-message-box-link-font-style: italic !default;
|
|
|
38
44
|
/// @group messagebox
|
|
39
45
|
$kendo-message-box-link-text-decoration: underline !default;
|
|
40
46
|
|
|
41
|
-
/// The theme colors map for the MessageBox.
|
|
42
|
-
/// @group messagebox
|
|
43
|
-
$kendo-message-box-theme-colors: (
|
|
44
|
-
"primary": k-color(primary),
|
|
45
|
-
"secondary": k-color(secondary),
|
|
46
|
-
"tertiary": k-color(tertiary),
|
|
47
|
-
"info": k-color(info),
|
|
48
|
-
"success": k-color(success),
|
|
49
|
-
"warning": k-color(warning),
|
|
50
|
-
"error": k-color(error),
|
|
51
|
-
"dark": k-color(dark),
|
|
52
|
-
"light": k-color(light),
|
|
53
|
-
"inverse": if($kendo-is-dark-theme, k-color(light), k-color(dark)),
|
|
54
|
-
) !default;
|
|
55
|
-
|
|
56
47
|
|
|
57
48
|
@forward "@progress/kendo-theme-core/scss/components/messagebox/_variables.scss" with (
|
|
49
|
+
$kendo-message-box-default-theme-color: $kendo-message-box-default-theme-color,
|
|
58
50
|
$kendo-message-box-margin: $kendo-message-box-margin,
|
|
59
51
|
$kendo-message-box-padding-x: $kendo-message-box-padding-x,
|
|
60
52
|
$kendo-message-box-padding-y: $kendo-message-box-padding-y,
|
|
@@ -65,6 +57,5 @@ $kendo-message-box-theme-colors: (
|
|
|
65
57
|
$kendo-message-box-text-level: $kendo-message-box-text-level,
|
|
66
58
|
$kendo-message-box-border-level: $kendo-message-box-border-level,
|
|
67
59
|
$kendo-message-box-link-font-style: $kendo-message-box-link-font-style,
|
|
68
|
-
$kendo-message-box-link-text-decoration: $kendo-message-box-link-text-decoration
|
|
69
|
-
$kendo-message-box-theme-colors: $kendo-message-box-theme-colors
|
|
60
|
+
$kendo-message-box-link-text-decoration: $kendo-message-box-link-text-decoration
|
|
70
61
|
);
|
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
@function notification-theme( $colors ) {
|
|
6
6
|
$_theme: ();
|
|
7
7
|
|
|
8
|
-
@each $name
|
|
8
|
+
@each $name in $colors {
|
|
9
9
|
$_theme: map.merge(( $name: (
|
|
10
10
|
color: k-color(on-#{$name}),
|
|
11
|
-
background-color: $
|
|
12
|
-
border: $
|
|
11
|
+
background-color: k-color(#{$name}),
|
|
12
|
+
border: k-color(#{$name}),
|
|
13
13
|
)), $_theme );
|
|
14
14
|
}
|
|
15
15
|
|
|
@@ -5,6 +5,10 @@
|
|
|
5
5
|
|
|
6
6
|
// Notification
|
|
7
7
|
|
|
8
|
+
/// The default theme color of the Notification.
|
|
9
|
+
/// @group notification
|
|
10
|
+
/// @role default
|
|
11
|
+
$kendo-notification-default-theme-color: null !default;
|
|
8
12
|
|
|
9
13
|
/// The row-gap between the elements in the Notification group.
|
|
10
14
|
/// @group notification
|
|
@@ -56,24 +60,14 @@ $kendo-notification-icon-spacing: $kendo-icon-spacing !default;
|
|
|
56
60
|
|
|
57
61
|
/// The theme colors map for the Notification.
|
|
58
62
|
/// @group notification
|
|
59
|
-
$kendo-notification-theme-colors: (
|
|
60
|
-
"primary": k-color(primary),
|
|
61
|
-
"secondary": k-color(secondary),
|
|
62
|
-
"tertiary": k-color(tertiary),
|
|
63
|
-
"info": k-color(info),
|
|
64
|
-
"success": k-color(success),
|
|
65
|
-
"warning": k-color(warning),
|
|
66
|
-
"error": k-color(error),
|
|
67
|
-
"dark": k-color(dark),
|
|
68
|
-
"light": k-color(light),
|
|
69
|
-
"inverse": if($kendo-is-dark-theme, k-color(light), k-color(dark))
|
|
70
|
-
) !default;
|
|
63
|
+
$kendo-notification-theme-colors: ("base", "primary", "secondary", "tertiary", "info", "success", "warning", "error", "dark", "light", "inverse") !default;
|
|
71
64
|
/// The generated theme colors map for the Notification.
|
|
72
65
|
/// @group notification
|
|
73
66
|
$kendo-notification-theme: notification-theme( $kendo-notification-theme-colors ) !default;
|
|
74
67
|
|
|
75
68
|
|
|
76
69
|
@forward "@progress/kendo-theme-core/scss/components/notification/_variables.scss" with (
|
|
70
|
+
$kendo-notification-default-theme-color: $kendo-notification-default-theme-color,
|
|
77
71
|
$kendo-notification-group-gap: $kendo-notification-group-gap,
|
|
78
72
|
$kendo-notification-padding-x: $kendo-notification-padding-x,
|
|
79
73
|
$kendo-notification-padding-y: $kendo-notification-padding-y,
|
|
@@ -89,6 +83,5 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
|
|
|
89
83
|
$kendo-notification-border: $kendo-notification-border,
|
|
90
84
|
$kendo-notification-shadow: $kendo-notification-shadow,
|
|
91
85
|
$kendo-notification-icon-spacing: $kendo-notification-icon-spacing,
|
|
92
|
-
$kendo-notification-theme-colors: $kendo-notification-theme-colors,
|
|
93
86
|
$kendo-notification-theme: $kendo-notification-theme
|
|
94
87
|
);
|