@progress/kendo-theme-bootstrap 7.2.1-dev.7 → 7.2.1-dev.8
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.scss +95 -100
- package/dist/meta/sassdoc-data.json +70 -70
- package/dist/meta/sassdoc-raw-data.json +35 -35
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.json +1 -1
- package/package.json +5 -5
- package/scss/breadcrumb/_variables.scss +1 -1
- package/scss/button/_variables.scss +1 -1
- package/scss/calendar/_variables.scss +1 -1
- package/scss/checkbox/_variables.scss +1 -1
- package/scss/core/color-system/_swatch-legacy.scss +1 -1
- package/scss/dataviz/_variables.scss +11 -11
- package/scss/dock-manager/_variables.scss +1 -1
- package/scss/fab/_theme.scss +6 -6
- package/scss/filter/_variables.scss +1 -1
- package/scss/gantt/_variables.scss +1 -1
- package/scss/grid/_variables.scss +6 -6
- package/scss/input/_variables.scss +3 -3
- package/scss/list/_variables.scss +1 -1
- package/scss/listview/_variables.scss +2 -2
- package/scss/map/_variables.scss +1 -1
- package/scss/mediaplayer/_variables.scss +1 -1
- package/scss/menu/_variables.scss +6 -6
- package/scss/pager/_variables.scss +1 -1
- package/scss/pivotgrid/_variables.scss +1 -1
- package/scss/signature/_variables.scss +1 -1
- package/scss/skeleton/_variables.scss +1 -1
- package/scss/slider/_variables.scss +1 -1
- package/scss/spreadsheet/_variables.scss +4 -4
- package/scss/stepper/_variables.scss +3 -3
- package/scss/switch/_variables.scss +2 -2
- package/scss/table/_variables.scss +3 -3
- package/scss/taskboard/_variables.scss +1 -1
- package/scss/timeline/_variables.scss +3 -3
- package/scss/toolbar/_variables.scss +1 -1
- package/scss/treeview/_variables.scss +1 -1
|
@@ -27,4 +27,4 @@ $kendo-filter-preview-operator-text: $kendo-subtle-text !default;
|
|
|
27
27
|
|
|
28
28
|
/// The box shadow of the focused Filter toolbar.
|
|
29
29
|
/// @group filter
|
|
30
|
-
$kendo-filter-toolbar-focus-shadow: 0 0 0 .25rem if($kendo-enable-color-system,
|
|
30
|
+
$kendo-filter-toolbar-focus-shadow: 0 0 0 .25rem if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
|
|
@@ -12,7 +12,7 @@ $kendo-gantt-treelist-bg: null !default;
|
|
|
12
12
|
$kendo-gantt-treelist-text: null !default;
|
|
13
13
|
$kendo-gantt-treelist-border: null !default;
|
|
14
14
|
|
|
15
|
-
$kendo-gantt-nonwork-bg: if($kendo-enable-color-system,
|
|
15
|
+
$kendo-gantt-nonwork-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 3%, transparent), rgba( k-contrast-color( $kendo-gantt-bg ), .025 )) !default;
|
|
16
16
|
$kendo-gantt-nonwork-text: null !default;
|
|
17
17
|
$kendo-gantt-nonwork-border: null !default;
|
|
18
18
|
|
|
@@ -222,7 +222,7 @@ $kendo-grid-selection-aggregates-font-weight: $kendo-font-weight-bold !default;
|
|
|
222
222
|
$kendo-grid-grouping-row-bg: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-grid-bg )) !default;
|
|
223
223
|
$kendo-grid-grouping-row-text: $kendo-grid-text !default;
|
|
224
224
|
|
|
225
|
-
$kendo-grid-sorted-bg: if($kendo-enable-color-system,
|
|
225
|
+
$kendo-grid-sorted-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 2%, transparent), rgba( k-contrast-color( $kendo-grid-bg ), .02 )) !default;
|
|
226
226
|
$kendo-grid-sorting-indicator-text: $kendo-color-primary !default;
|
|
227
227
|
$kendo-grid-sorting-index-font-size: ($kendo-icon-size * .75) !default;
|
|
228
228
|
$kendo-grid-sorting-index-height: $kendo-icon-size !default;
|
|
@@ -240,7 +240,7 @@ $kendo-grid-command-cell-padding-y: calc( #{$kendo-grid-cell-padding-y} - (#{$ke
|
|
|
240
240
|
// Must be a solid color
|
|
241
241
|
$kendo-grid-sticky-bg: $kendo-grid-bg !default;
|
|
242
242
|
$kendo-grid-sticky-text: $kendo-grid-text !default;
|
|
243
|
-
$kendo-grid-sticky-border: if($kendo-enable-color-system,
|
|
243
|
+
$kendo-grid-sticky-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba($kendo-grid-text, .5)) !default;
|
|
244
244
|
|
|
245
245
|
// Must be a solid color
|
|
246
246
|
$kendo-grid-sticky-alt-bg: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-grid-bg, .5 )) !default;
|
|
@@ -252,12 +252,12 @@ $kendo-grid-sticky-header-border: $kendo-grid-sticky-border !default;
|
|
|
252
252
|
$kendo-grid-sticky-footer-bg: $kendo-grid-header-bg !default;
|
|
253
253
|
$kendo-grid-sticky-footer-hover-bg: $kendo-grid-sticky-footer-bg !default;
|
|
254
254
|
|
|
255
|
-
$kendo-grid-sticky-selected-bg: if($kendo-enable-color-system,
|
|
256
|
-
$kendo-grid-sticky-selected-alt-bg: if($kendo-enable-color-system,
|
|
255
|
+
$kendo-grid-sticky-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), k-color-mix( $kendo-selected-bg, $kendo-grid-bg, 25% )) !default;
|
|
256
|
+
$kendo-grid-sticky-selected-alt-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 24%, transparent), k-color-shade( $kendo-grid-sticky-selected-bg, .4 )) !default;
|
|
257
257
|
|
|
258
258
|
// Must be a solid color
|
|
259
259
|
$kendo-grid-sticky-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-hover ), k-try-shade( $kendo-grid-bg )) !default;
|
|
260
|
-
$kendo-grid-sticky-selected-hover-bg: if($kendo-enable-color-system,
|
|
260
|
+
$kendo-grid-sticky-selected-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 24%, transparent), k-color-shade( $kendo-grid-sticky-selected-bg, .7 )) !default;
|
|
261
261
|
|
|
262
262
|
$kendo-grid-column-menu-width: 250px !default;
|
|
263
263
|
$kendo-grid-column-menu-max-width: 320px !default;
|
|
@@ -308,7 +308,7 @@ $kendo-grid-group-footer-second-cell-border: 1px !default;
|
|
|
308
308
|
|
|
309
309
|
/// Background color of the grid row resize indicator
|
|
310
310
|
/// @group grid
|
|
311
|
-
$kendo-grid-row-resizer-hover-bg: if($kendo-enable-color-system,
|
|
311
|
+
$kendo-grid-row-resizer-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 20%, transparent), rgba( k-contrast-color( $kendo-grid-bg ), .12 )) !default;
|
|
312
312
|
/// Active background color of the grid row resize indicator
|
|
313
313
|
/// @group grid
|
|
314
314
|
$kendo-grid-row-resizer-active-bg: $kendo-color-primary !default;
|
|
@@ -167,7 +167,7 @@ $kendo-input-outline-bg: null !default;
|
|
|
167
167
|
$kendo-input-outline-text: $kendo-base-text !default;
|
|
168
168
|
/// The border color of the outline Input components.
|
|
169
169
|
/// @group input
|
|
170
|
-
$kendo-input-outline-border: if($kendo-enable-color-system,
|
|
170
|
+
$kendo-input-outline-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( $kendo-base-text, .5 )) !default;
|
|
171
171
|
|
|
172
172
|
/// The background color of the outline hovered Input components.
|
|
173
173
|
/// @group input
|
|
@@ -358,7 +358,7 @@ $kendo-picker-outline-bg: null !default;
|
|
|
358
358
|
$kendo-picker-outline-text: $kendo-button-text !default;
|
|
359
359
|
/// The border color of the outline Picker components.
|
|
360
360
|
/// @group picker
|
|
361
|
-
$kendo-picker-outline-border: if($kendo-enable-color-system,
|
|
361
|
+
$kendo-picker-outline-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( $kendo-picker-outline-text, .5 )) !default;
|
|
362
362
|
|
|
363
363
|
/// The background color of the outline hovered Picker components.
|
|
364
364
|
/// @group picker
|
|
@@ -405,7 +405,7 @@ $kendo-picker-flat-border: $kendo-button-border !default;
|
|
|
405
405
|
|
|
406
406
|
/// The background color of the flat hovered Picker components.
|
|
407
407
|
/// @group picker
|
|
408
|
-
$kendo-picker-flat-hover-bg: if($kendo-enable-color-system,
|
|
408
|
+
$kendo-picker-flat-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 8%, transparent), rgba( $kendo-button-text, .08 )) !default;
|
|
409
409
|
/// The text color of the flat hovered Picker components.
|
|
410
410
|
/// @group picker
|
|
411
411
|
$kendo-picker-flat-hover-text: null !default;
|
|
@@ -220,7 +220,7 @@ $kendo-list-item-focus-bg: null !default;
|
|
|
220
220
|
$kendo-list-item-focus-text: null !default;
|
|
221
221
|
/// The box shadow of the focused List items.
|
|
222
222
|
/// @group list
|
|
223
|
-
$kendo-list-item-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system,
|
|
223
|
+
$kendo-list-item-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 15%, transparent), rgba( $kendo-list-text, .15 )) !default;
|
|
224
224
|
|
|
225
225
|
/// The background color of the selected List items.
|
|
226
226
|
/// @group list
|
|
@@ -41,7 +41,7 @@ $kendo-listview-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
|
41
41
|
$kendo-listview-item-selected-text: null !default;
|
|
42
42
|
/// The background color of the selected ListView items.
|
|
43
43
|
/// @group listview
|
|
44
|
-
$kendo-listview-item-selected-bg: if($kendo-enable-color-system,
|
|
44
|
+
$kendo-listview-item-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
|
|
45
45
|
/// The border color of the selected ListView items.
|
|
46
46
|
/// @group listview
|
|
47
47
|
$kendo-listview-item-selected-border: null !default;
|
|
@@ -57,4 +57,4 @@ $kendo-listview-item-focus-bg: null !default;
|
|
|
57
57
|
$kendo-listview-item-focus-border: null !default;
|
|
58
58
|
/// The box shadow of the focused ListView items.
|
|
59
59
|
/// @group listview
|
|
60
|
-
$kendo-listview-item-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system,
|
|
60
|
+
$kendo-listview-item-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 15%, transparent), rgba( $kendo-listview-text, .15 )) !default;
|
package/scss/map/_variables.scss
CHANGED
|
@@ -25,6 +25,6 @@ $kendo-map-zoom-control-button-padding-y: $kendo-map-zoom-control-button-padding
|
|
|
25
25
|
$kendo-map-attribution-padding-x: $kendo-padding-sm-x !default;
|
|
26
26
|
$kendo-map-attribution-padding-y: $kendo-padding-sm-y !default;
|
|
27
27
|
$kendo-map-attribution-font-size: ($kendo-map-font-size * .75) !default;
|
|
28
|
-
$kendo-map-attribution-bg: if($kendo-enable-color-system,
|
|
28
|
+
$kendo-map-attribution-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( app-surface ) 80%, transparent), rgba( $kendo-map-bg, .8 )) !default;
|
|
29
29
|
|
|
30
30
|
$kendo-map-marker-fill: $kendo-color-primary !default;
|
|
@@ -13,4 +13,4 @@ $kendo-media-player-titlebar-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
13
13
|
$kendo-media-player-titlebar-bg: null !default;
|
|
14
14
|
$kendo-media-player-titlebar-text: $kendo-media-player-bg !default;
|
|
15
15
|
$kendo-media-player-titlebar-border: null !default;
|
|
16
|
-
$kendo-media-player-titlebar-gradient: if($kendo-enable-color-system, (
|
|
16
|
+
$kendo-media-player-titlebar-gradient: if($kendo-enable-color-system, ( color-mix(in srgb, k-color( on-app-surface ) 70%, transparent), color-mix(in srgb, k-color( on-app-surface ) 0%, transparent) ), ( rgba( $kendo-media-player-text, .7 ), rgba( $kendo-media-player-text, 0 ) )) !default;
|
|
@@ -15,31 +15,31 @@ $kendo-menu-item-spacing: 0 !default;
|
|
|
15
15
|
$kendo-menu-item-icon-spacing: $kendo-icon-spacing !default;
|
|
16
16
|
|
|
17
17
|
$kendo-menu-item-bg: null !default;
|
|
18
|
-
$kendo-menu-item-text: if($kendo-enable-color-system,
|
|
18
|
+
$kendo-menu-item-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( $kendo-menu-text, .5 )) !default;
|
|
19
19
|
$kendo-menu-item-border: null !default;
|
|
20
20
|
$kendo-menu-item-gradient: null !default;
|
|
21
21
|
|
|
22
22
|
$kendo-menu-item-hover-bg: null !default;
|
|
23
|
-
$kendo-menu-item-hover-text: if($kendo-enable-color-system,
|
|
23
|
+
$kendo-menu-item-hover-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 70%, transparent), rgba( $kendo-menu-text, .7 )) !default;
|
|
24
24
|
$kendo-menu-item-hover-border: null !default;
|
|
25
25
|
$kendo-menu-item-hover-gradient: null !default;
|
|
26
26
|
|
|
27
27
|
$kendo-menu-item-expanded-bg: null !default;
|
|
28
|
-
$kendo-menu-item-expanded-text: if($kendo-enable-color-system,
|
|
28
|
+
$kendo-menu-item-expanded-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 90%, transparent), rgba( $kendo-menu-text, .9 )) !default;
|
|
29
29
|
$kendo-menu-item-expanded-border: null !default;
|
|
30
30
|
$kendo-menu-item-expanded-gradient: null !default;
|
|
31
31
|
|
|
32
|
-
$kendo-menu-item-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system,
|
|
32
|
+
$kendo-menu-item-focus-shadow: inset 0 0 0 3px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 15%, transparent), rgba( $kendo-menu-text, .15 )) !default;
|
|
33
33
|
|
|
34
34
|
$kendo-menu-separator-spacing: k-map-get( $kendo-spacing, 1 ) !default;
|
|
35
35
|
|
|
36
36
|
$kendo-menu-scroll-button-bg: $kendo-menu-bg !default;
|
|
37
|
-
$kendo-menu-scroll-button-text: if($kendo-enable-color-system,
|
|
37
|
+
$kendo-menu-scroll-button-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( $kendo-menu-text, .5 )) !default;
|
|
38
38
|
$kendo-menu-scroll-button-border: $kendo-menu-border !default;
|
|
39
39
|
$kendo-menu-scroll-button-gradient: null !default;
|
|
40
40
|
|
|
41
41
|
$kendo-menu-scroll-button-hover-bg: null !default;
|
|
42
|
-
$kendo-menu-scroll-button-hover-text: if($kendo-enable-color-system,
|
|
42
|
+
$kendo-menu-scroll-button-hover-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 70%, transparent), rgba( $kendo-menu-text, .7 )) !default;
|
|
43
43
|
$kendo-menu-scroll-button-hover-border: null !default;
|
|
44
44
|
$kendo-menu-scroll-button-hover-gradient: null !default;
|
|
45
45
|
|
|
@@ -123,7 +123,7 @@ $kendo-pager-item-focus-opacity: null !default;
|
|
|
123
123
|
$kendo-pager-item-focus-bg: $kendo-pager-item-bg !default;
|
|
124
124
|
/// The box shadow of the focused Pager items.
|
|
125
125
|
/// @group pager
|
|
126
|
-
$kendo-pager-item-focus-shadow: 0 0 0 3px if($kendo-enable-color-system,
|
|
126
|
+
$kendo-pager-item-focus-shadow: 0 0 0 3px if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-color-primary, .25)) !default;
|
|
127
127
|
|
|
128
128
|
/// The border radius of the Pager numbers.
|
|
129
129
|
/// @group pager
|
|
@@ -36,7 +36,7 @@ $kendo-pivotgrid-hover-bg: if($kendo-enable-color-system, k-color( base-subtle-h
|
|
|
36
36
|
$kendo-pivotgrid-hover-text: null !default;
|
|
37
37
|
$kendo-pivotgrid-hover-border: null !default;
|
|
38
38
|
|
|
39
|
-
$kendo-pivotgrid-selected-bg: if($kendo-enable-color-system,
|
|
39
|
+
$kendo-pivotgrid-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
|
|
40
40
|
$kendo-pivotgrid-selected-text: null !default;
|
|
41
41
|
$kendo-pivotgrid-selected-border: null !default;
|
|
42
42
|
|
|
@@ -18,7 +18,7 @@ $kendo-signature-lg-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
|
18
18
|
|
|
19
19
|
$kendo-signature-line-width: 1px !default;
|
|
20
20
|
$kendo-signature-line-style: dashed !default;
|
|
21
|
-
$kendo-signature-line-color: if($kendo-enable-color-system,
|
|
21
|
+
$kendo-signature-line-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( info ) 24%, transparent), rgba( $kendo-color-info, .24 )) !default;
|
|
22
22
|
|
|
23
23
|
$kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding-x} ) !default;
|
|
24
24
|
$kendo-signature-sm-line-size: calc( 100% - 2 * #{$kendo-signature-sm-padding-x} ) !default;
|
|
@@ -17,7 +17,7 @@ $kendo-skeleton-circle-border-radius: 9999px !default;
|
|
|
17
17
|
|
|
18
18
|
/// The background color of the Skeleton item.
|
|
19
19
|
/// @group skeleton
|
|
20
|
-
$kendo-skeleton-item-bg: if($kendo-enable-color-system,
|
|
20
|
+
$kendo-skeleton-item-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 20%, transparent), rgba( $kendo-color-inverse, .2 )) !default;
|
|
21
21
|
/// The background color of the Skeleton wave animation.
|
|
22
22
|
/// @group skeleton
|
|
23
23
|
$kendo-skeleton-wave-bg: rgba( black, .04 ) !default;
|
|
@@ -93,7 +93,7 @@ $kendo-slider-draghandle-pressed-gradient: null !default;
|
|
|
93
93
|
|
|
94
94
|
/// The shadow of the focused Slider drag handle.
|
|
95
95
|
/// @group slider
|
|
96
|
-
$kendo-slider-draghandle-focus-shadow: 0 0 0 3px if($kendo-enable-color-system,
|
|
96
|
+
$kendo-slider-draghandle-focus-shadow: 0 0 0 3px if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 50%, transparent), rgba( $kendo-color-primary, .5 )) !default;
|
|
97
97
|
|
|
98
98
|
/// The transition speed of the Slider.
|
|
99
99
|
/// @group slider
|
|
@@ -94,7 +94,7 @@ $kendo-spreadsheet-view-font-size: $kendo-spreadsheet-font-size !default;
|
|
|
94
94
|
|
|
95
95
|
/// The background color of the Spreadsheet selection.
|
|
96
96
|
/// @group spreadsheet
|
|
97
|
-
$kendo-spreadsheet-selection-bg: if($kendo-enable-color-system,
|
|
97
|
+
$kendo-spreadsheet-selection-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
|
|
98
98
|
/// The text color of the Spreadsheet selection.
|
|
99
99
|
/// @group spreadsheet
|
|
100
100
|
$kendo-spreadsheet-selection-text: null !default;
|
|
@@ -117,7 +117,7 @@ $kendo-spreadsheet-single-selection-border: $kendo-spreadsheet-bg !default;
|
|
|
117
117
|
|
|
118
118
|
/// The background color of the Spreadsheet partial selection.
|
|
119
119
|
/// @group spreadsheet
|
|
120
|
-
$kendo-spreadsheet-partial-selection-bg: if($kendo-enable-color-system,
|
|
120
|
+
$kendo-spreadsheet-partial-selection-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
|
|
121
121
|
|
|
122
122
|
/// The background color of the Spreadsheet active cell.
|
|
123
123
|
/// @group spreadsheet
|
|
@@ -128,7 +128,7 @@ $kendo-spreadsheet-active-cell-shadow: inset 0 0 0 1px $kendo-selected-bg !defau
|
|
|
128
128
|
|
|
129
129
|
/// The background color of the Spreadsheet auto fill.
|
|
130
130
|
/// @group spreadsheet
|
|
131
|
-
$kendo-spreadsheet-auto-fill-bg: if($kendo-enable-color-system,
|
|
131
|
+
$kendo-spreadsheet-auto-fill-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
|
|
132
132
|
/// The text color of the Spreadsheet auto fill.
|
|
133
133
|
/// @group spreadsheet
|
|
134
134
|
$kendo-spreadsheet-auto-fill-text: null !default;
|
|
@@ -258,7 +258,7 @@ $kendo-spreadsheet-drawing-outline-width: 2px !default;
|
|
|
258
258
|
|
|
259
259
|
/// The background color of the Spreadsheet drawing anchor.
|
|
260
260
|
/// @group spreadsheet
|
|
261
|
-
$kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system,
|
|
261
|
+
$kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
|
|
262
262
|
|
|
263
263
|
/// The vertical spacing of the Spreadsheet DropZone.
|
|
264
264
|
/// @group spreadsheet
|
|
@@ -103,7 +103,7 @@ $kendo-stepper-indicator-hover-border: null !default;
|
|
|
103
103
|
$kendo-stepper-indicator-disabled-bg: null !default;
|
|
104
104
|
/// The text color of the disabled Stepper indicator.
|
|
105
105
|
/// @group stepper
|
|
106
|
-
$kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system,
|
|
106
|
+
$kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 65%, transparent), $kendo-disabled-text) !default;
|
|
107
107
|
/// The border color of the disabled Stepper indicator.
|
|
108
108
|
/// @group stepper
|
|
109
109
|
$kendo-stepper-indicator-disabled-border: null !default;
|
|
@@ -130,7 +130,7 @@ $kendo-stepper-indicator-done-hover-border: null !default;
|
|
|
130
130
|
|
|
131
131
|
/// The background color of the Stepper's disabled done indicator.
|
|
132
132
|
/// @group stepper
|
|
133
|
-
$kendo-stepper-indicator-done-disabled-bg: if($kendo-enable-color-system,
|
|
133
|
+
$kendo-stepper-indicator-done-disabled-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 60%, transparent), k-color-mix( $kendo-stepper-indicator-done-bg, $kendo-component-bg, 60%)) !default;
|
|
134
134
|
/// The text color of the Stepper's disabled done indicator.
|
|
135
135
|
/// @group stepper
|
|
136
136
|
$kendo-stepper-indicator-done-disabled-text: if($kendo-enable-color-system, k-color( on-primary ), k-contrast-color( $kendo-stepper-indicator-done-bg )) !default;
|
|
@@ -182,7 +182,7 @@ $kendo-stepper-label-error-text: $kendo-color-error !default;
|
|
|
182
182
|
$kendo-stepper-label-hover-text: null !default;
|
|
183
183
|
/// The text color of the disabled Stepper label.
|
|
184
184
|
/// @group stepper
|
|
185
|
-
$kendo-stepper-label-disabled-text: if($kendo-enable-color-system,
|
|
185
|
+
$kendo-stepper-label-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 65%, transparent), $kendo-disabled-text) !default;
|
|
186
186
|
|
|
187
187
|
/// The text color of the optional Stepper label.
|
|
188
188
|
/// @group stepper
|
|
@@ -68,7 +68,7 @@ $kendo-switch-off-track-focus-border: if($kendo-enable-color-system, k-color( pr
|
|
|
68
68
|
$kendo-switch-off-track-focus-gradient: null !default;
|
|
69
69
|
/// The ring around the track when the focused Switch is not checked.
|
|
70
70
|
/// @group switch
|
|
71
|
-
$kendo-switch-off-track-focus-ring: .25rem solid if($kendo-enable-color-system,
|
|
71
|
+
$kendo-switch-off-track-focus-ring: .25rem solid if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
|
|
72
72
|
|
|
73
73
|
/// The background of the track when the disabled Switch is not checked.
|
|
74
74
|
/// @group switch
|
|
@@ -150,7 +150,7 @@ $kendo-switch-on-track-focus-border: null !default;
|
|
|
150
150
|
$kendo-switch-on-track-focus-gradient: null !default;
|
|
151
151
|
/// The ring around the track when the focused Switch is checked.
|
|
152
152
|
/// @group switch
|
|
153
|
-
$kendo-switch-on-track-focus-ring: .25rem solid if($kendo-enable-color-system,
|
|
153
|
+
$kendo-switch-on-track-focus-ring: .25rem solid if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-switch-on-track-border, .25 )) !default;
|
|
154
154
|
|
|
155
155
|
/// The background of the track when the disabled Switch is checked.
|
|
156
156
|
/// @group switch
|
|
@@ -111,7 +111,7 @@ $kendo-table-group-row-border: $kendo-table-header-border !default;
|
|
|
111
111
|
|
|
112
112
|
/// Background color of alternating rows in table.
|
|
113
113
|
/// @group table
|
|
114
|
-
$kendo-table-alt-row-bg: if($kendo-enable-color-system,
|
|
114
|
+
$kendo-table-alt-row-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 5%, transparent), rgba( k-contrast-color( $kendo-table-bg ), .04 )) !default;
|
|
115
115
|
/// Text color of alternating rows in table.
|
|
116
116
|
/// @group table
|
|
117
117
|
$kendo-table-alt-row-text: null !default;
|
|
@@ -122,7 +122,7 @@ $kendo-table-alt-row-border: null !default;
|
|
|
122
122
|
|
|
123
123
|
/// Background color of hovered rows in table.
|
|
124
124
|
/// @group table
|
|
125
|
-
$kendo-table-hover-bg: if($kendo-enable-color-system,
|
|
125
|
+
$kendo-table-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 9%, transparent), rgba( k-contrast-color( $kendo-table-bg ), .08 )) !default;
|
|
126
126
|
/// Text color of hovered rows in table.
|
|
127
127
|
/// @group table
|
|
128
128
|
$kendo-table-hover-text: null !default;
|
|
@@ -147,7 +147,7 @@ $kendo-table-focus-shadow: inset 0 0 0 2px rgba( $kendo-color-black, .08) !defau
|
|
|
147
147
|
|
|
148
148
|
/// Background color of selected rows in table.
|
|
149
149
|
/// @group table
|
|
150
|
-
$kendo-table-selected-bg: if($kendo-enable-color-system,
|
|
150
|
+
$kendo-table-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-selected-bg, .25 )) !default;
|
|
151
151
|
/// Text color of selected rows in table.
|
|
152
152
|
/// @group table
|
|
153
153
|
$kendo-table-selected-text: $kendo-table-text !default;
|
|
@@ -239,7 +239,7 @@ $kendo-taskboard-drag-placeholder-border-width: 1px !default;
|
|
|
239
239
|
$kendo-taskboard-drag-placeholder-border-radius: $kendo-taskboard-card-border-radius !default;
|
|
240
240
|
/// The background color of the TaskBoard Card placeholder.
|
|
241
241
|
/// @group taskboard
|
|
242
|
-
$kendo-taskboard-drag-placeholder-bg:
|
|
242
|
+
$kendo-taskboard-drag-placeholder-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 10%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .1 )) !default;
|
|
243
243
|
/// The border color of the TaskBoard Card placeholder.
|
|
244
244
|
/// @group taskboard
|
|
245
245
|
$kendo-taskboard-drag-placeholder-border: $kendo-component-border !default;
|
|
@@ -36,13 +36,13 @@ $kendo-timeline-track-arrow-height: 38px !default;
|
|
|
36
36
|
|
|
37
37
|
/// The background color of the disabled Timeline track arrow.
|
|
38
38
|
/// @group timeline
|
|
39
|
-
$kendo-timeline-track-arrow-disabled-bg: if($kendo-enable-color-system,
|
|
39
|
+
$kendo-timeline-track-arrow-disabled-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( base-subtle ) 65%, transparent), k-true-mix( $kendo-button-bg, $kendo-body-bg, 65% )) !default;
|
|
40
40
|
/// The text color of the disabled Timeline track arrow.
|
|
41
41
|
/// @group timeline
|
|
42
|
-
$kendo-timeline-track-arrow-disabled-text: if($kendo-enable-color-system,
|
|
42
|
+
$kendo-timeline-track-arrow-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 65%, transparent), k-true-mix( $kendo-button-text, $kendo-body-bg, 65% )) !default;
|
|
43
43
|
/// The border color of the disabled Timeline track arrow.
|
|
44
44
|
/// @group timeline
|
|
45
|
-
$kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system,
|
|
45
|
+
$kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( border ) 15%, transparent), k-true-mix( $kendo-button-border, $kendo-body-bg, 65% )) !default;
|
|
46
46
|
|
|
47
47
|
/// The size of the Timeline track.
|
|
48
48
|
/// @group timeline
|
|
@@ -82,7 +82,7 @@ $kendo-toolbar-input-width: 10em !default;
|
|
|
82
82
|
|
|
83
83
|
/// The box shadow of the focused Toolbar item.
|
|
84
84
|
/// @group toolbar
|
|
85
|
-
$kendo-toolbar-item-shadow: 0 0 0 .25rem if($kendo-enable-color-system,
|
|
85
|
+
$kendo-toolbar-item-shadow: 0 0 0 .25rem if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba( $kendo-color-primary, .25 )) !default;
|
|
86
86
|
|
|
87
87
|
/// Border width of the flat Toolbar.
|
|
88
88
|
/// @group toolbar
|
|
@@ -151,7 +151,7 @@ $kendo-treeview-item-selected-gradient: null !default;
|
|
|
151
151
|
|
|
152
152
|
/// The box shadow of focused TreeView items.
|
|
153
153
|
/// @group treeview
|
|
154
|
-
$kendo-treeview-item-focus-shadow: inset 0 0 0 2px if($kendo-enable-color-system,
|
|
154
|
+
$kendo-treeview-item-focus-shadow: inset 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 15%, transparent), rgba( $kendo-treeview-text, .15 )) !default;
|
|
155
155
|
|
|
156
156
|
/// The background color of the Load More button in the TreeView.
|
|
157
157
|
/// @group treeview
|