@progress/kendo-theme-default 7.2.1-dev.7 → 7.2.1

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.
Files changed (47) hide show
  1. package/dist/all.css +8 -1
  2. package/dist/all.scss +80 -81
  3. package/dist/meta/sassdoc-data.json +58 -58
  4. package/dist/meta/sassdoc-raw-data.json +29 -29
  5. package/lib/swatches/default-blue.json +1 -1
  6. package/lib/swatches/default-dataviz-v4.json +1 -1
  7. package/lib/swatches/default-green.json +1 -1
  8. package/lib/swatches/default-main-dark.json +1 -1
  9. package/lib/swatches/default-main.json +1 -1
  10. package/lib/swatches/default-nordic.json +1 -1
  11. package/lib/swatches/default-ocean-blue-a11y.json +1 -1
  12. package/lib/swatches/default-ocean-blue.json +1 -1
  13. package/lib/swatches/default-orange.json +1 -1
  14. package/lib/swatches/default-purple.json +1 -1
  15. package/lib/swatches/default-turquoise.json +1 -1
  16. package/lib/swatches/default-urban.json +1 -1
  17. package/package.json +4 -4
  18. package/scss/bottom-navigation/_theme.scss +3 -3
  19. package/scss/button/_theme.scss +5 -5
  20. package/scss/button/_variables.scss +1 -1
  21. package/scss/calendar/_theme.scss +1 -1
  22. package/scss/checkbox/_variables.scss +1 -1
  23. package/scss/chip/_theme.scss +3 -3
  24. package/scss/chip/_variables.scss +2 -2
  25. package/scss/dataviz/_variables.scss +11 -11
  26. package/scss/dock-manager/_variables.scss +1 -1
  27. package/scss/fab/_theme.scss +6 -6
  28. package/scss/gantt/_variables.scss +1 -1
  29. package/scss/grid/_variables.scss +5 -5
  30. package/scss/input/_variables.scss +5 -5
  31. package/scss/listview/_variables.scss +1 -1
  32. package/scss/map/_variables.scss +1 -1
  33. package/scss/mediaplayer/_theme.scss +1 -1
  34. package/scss/mediaplayer/_variables.scss +1 -1
  35. package/scss/pivotgrid/_variables.scss +1 -1
  36. package/scss/progressbar/_theme.scss +1 -1
  37. package/scss/scheduler/_theme.scss +2 -2
  38. package/scss/signature/_variables.scss +1 -1
  39. package/scss/skeleton/_variables.scss +1 -1
  40. package/scss/slider/_variables.scss +1 -1
  41. package/scss/spreadsheet/_variables.scss +4 -4
  42. package/scss/stepper/_variables.scss +3 -3
  43. package/scss/switch/_theme.scss +2 -2
  44. package/scss/switch/_variables.scss +2 -2
  45. package/scss/table/_layout.scss +5 -1
  46. package/scss/table/_variables.scss +3 -3
  47. package/scss/timeline/_variables.scss +2 -2
@@ -28,7 +28,7 @@
28
28
  @if $kendo-enable-focus-contrast {
29
29
  @include box-shadow( inset 0 0 0 2px currentColor );
30
30
  } @else {
31
- outline: $kendo-fab-outline-style $kendo-fab-outline-width if($kendo-enable-color-system, rgba( k-color( $name, true ), .3 ), rgba( $color, .3 ));
31
+ outline: $kendo-fab-outline-style $kendo-fab-outline-width if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 30%, transparent), rgba( $color, .3 ));
32
32
  }
33
33
  }
34
34
  }
@@ -49,8 +49,8 @@
49
49
  .k-disabled.k-fab-solid-#{$name},
50
50
  .k-fab-solid-#{$name}:disabled {
51
51
  @include box-shadow($kendo-fab-disabled-shadow);
52
- background-color: if($kendo-enable-color-system, rgba( k-color( $name, true ), .6 ), k-try-tint( $color, 5 ));
53
- color: if($kendo-enable-color-system, rgba( k-color( on-#{$name}, true ), .6 ), k-try-tint( k-contrast-legacy( $color ), 5 ));
52
+ background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( $name ) 60%, transparent), k-try-tint( $color, 5 ));
53
+ color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-#{$name} ) 60%, transparent), k-try-tint( k-contrast-legacy( $color ), 5 ));
54
54
  opacity: 1;
55
55
  }
56
56
  }
@@ -89,7 +89,7 @@
89
89
  .k-fab-item.k-focus .k-fab-item-text,
90
90
  .k-fab-item.k-focus .k-fab-item-icon {
91
91
  @if $kendo-enable-focus-contrast {
92
- @include box-shadow( inset 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )) );
92
+ @include box-shadow( inset 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )) );
93
93
  } @else {
94
94
  outline: $kendo-fab-item-outline-style $kendo-fab-item-outline-width $kendo-fab-item-outline-color;
95
95
  }
@@ -111,8 +111,8 @@
111
111
  .k-fab-item-text,
112
112
  .k-fab-item-icon {
113
113
  @include box-shadow($kendo-fab-item-disabled-shadow);
114
- background-color: if($kendo-enable-color-system, rgba( k-color( base, true ), .6 ), k-try-tint( $kendo-fab-item-bg, 5 ));
115
- color: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .6 ), k-try-tint( $kendo-fab-item-text, 5 ));
114
+ background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( base ) 60%, transparent), k-try-tint( $kendo-fab-item-bg, 5 ));
115
+ color: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 60%, transparent), k-try-tint( $kendo-fab-item-text, 5 ));
116
116
  }
117
117
  }
118
118
 
@@ -16,7 +16,7 @@ $kendo-gantt-treelist-bg: null !default;
16
16
  $kendo-gantt-treelist-text: null !default;
17
17
  $kendo-gantt-treelist-border: null !default;
18
18
 
19
- $kendo-gantt-nonwork-bg: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .03 ), rgba( k-contrast-legacy( $kendo-gantt-bg ), .025 )) !default;
19
+ $kendo-gantt-nonwork-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 3%, transparent), rgba( k-contrast-legacy( $kendo-gantt-bg ), .025 )) !default;
20
20
  $kendo-gantt-nonwork-text: null !default;
21
21
  $kendo-gantt-nonwork-border: null !default;
22
22
 
@@ -222,7 +222,7 @@ $kendo-grid-grouping-row-bg: $kendo-base-bg !default;
222
222
  $kendo-grid-grouping-row-text: $kendo-grid-text !default;
223
223
 
224
224
  $kendo-grid-sorted-icon-spacing: calc( #{$kendo-padding-md-x} - 1px ) !default;
225
- $kendo-grid-sorted-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .03 ), rgba( k-contrast-legacy( $kendo-grid-bg ), .02 )) !default;
225
+ $kendo-grid-sorted-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 3%, transparent), rgba( k-contrast-legacy( $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-font-size-sm !default;
228
228
  $kendo-grid-sorting-index-height: $kendo-icon-size !default;
@@ -251,12 +251,12 @@ $kendo-grid-sticky-header-border: $kendo-grid-sticky-border !default;
251
251
  $kendo-grid-sticky-footer-bg: $kendo-grid-header-bg !default;
252
252
  $kendo-grid-sticky-footer-hover-bg: $kendo-grid-hover-bg !default;
253
253
 
254
- $kendo-grid-sticky-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), k-color-mix($kendo-selected-bg, #ffffff, 25%)) !default;
255
- $kendo-grid-sticky-selected-alt-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .24 ), k-color-shade($kendo-grid-sticky-selected-bg, .4)) !default;
254
+ $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, #ffffff, 25%)) !default;
255
+ $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;
256
256
 
257
257
  // Must be a solid color
258
258
  $kendo-grid-sticky-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), k-color-darken($kendo-grid-bg, 8%)) !default;
259
- $kendo-grid-sticky-selected-hover-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .24 ), k-color-shade($kendo-grid-sticky-selected-bg, .7)) !default;
259
+ $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;
260
260
 
261
261
  $kendo-grid-column-menu-width: 230px !default;
262
262
  $kendo-grid-column-menu-max-width: 320px !default;
@@ -307,7 +307,7 @@ $kendo-grid-group-footer-second-cell-border: 1px !default;
307
307
 
308
308
  /// Background color of the grid row resize indicator
309
309
  /// @group grid
310
- $kendo-grid-row-resizer-hover-bg: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .2 ), rgba( k-contrast-color( $kendo-grid-bg ), .12 )) !default;
310
+ $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;
311
311
  /// Active background color of the grid row resize indicator
312
312
  /// @group grid
313
313
  $kendo-grid-row-resizer-active-bg: $kendo-color-primary !default;
@@ -134,7 +134,7 @@ $kendo-input-focus-text: null !default;
134
134
  $kendo-input-focus-border: $kendo-input-hover-border !default;
135
135
  /// The shadow of the focused Input components.
136
136
  /// @group input
137
- $kendo-input-focus-shadow: 0 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .08 ), rgba( $kendo-input-focus-border, .08 )) !default;
137
+ $kendo-input-focus-shadow: 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 8%, transparent), rgba( $kendo-input-focus-border, .08 )) !default;
138
138
 
139
139
  /// The background color of the selected Input components.
140
140
  /// @group input
@@ -167,7 +167,7 @@ $kendo-input-outline-bg: null !default;
167
167
  $kendo-input-outline-text: $kendo-input-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, rgba( k-color( on-base, true ), .5 ), rgba( $kendo-button-text, .5)) !default;
170
+ $kendo-input-outline-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 50%, transparent), rgba( $kendo-button-text, .5)) !default;
171
171
 
172
172
  /// The background color of the outline hovered Input components.
173
173
  /// @group input
@@ -177,7 +177,7 @@ $kendo-input-outline-hover-bg: null !default;
177
177
  $kendo-input-outline-hover-text: null !default;
178
178
  /// The border color of the outline hovered Input components.
179
179
  /// @group input
180
- $kendo-input-outline-hover-border: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .8 ), rgba( $kendo-button-text, .8)) !default;
180
+ $kendo-input-outline-hover-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 80%, transparent), rgba( $kendo-button-text, .8)) !default;
181
181
 
182
182
  /// The background color of the outline focused Input components.
183
183
  /// @group input
@@ -365,7 +365,7 @@ $kendo-picker-outline-bg: null !default;
365
365
  $kendo-picker-outline-text: $kendo-button-text !default;
366
366
  /// The border color of the outline Picker components.
367
367
  /// @group picker
368
- $kendo-picker-outline-border: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .5 ), rgba( $kendo-picker-outline-text, .5)) !default;
368
+ $kendo-picker-outline-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 50%, transparent), rgba( $kendo-picker-outline-text, .5)) !default;
369
369
 
370
370
  /// The background color of the outline hovered Picker components.
371
371
  /// @group picker
@@ -412,7 +412,7 @@ $kendo-picker-flat-border: $kendo-button-border !default;
412
412
 
413
413
  /// The background color of the flat hovered Picker components.
414
414
  /// @group picker
415
- $kendo-picker-flat-hover-bg: if($kendo-enable-color-system, rgba( k-color( on-base, true ), .04 ), rgba( $kendo-button-text, .04 )) !default;
415
+ $kendo-picker-flat-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 4%, transparent), rgba( $kendo-button-text, .04 )) !default;
416
416
  /// The text color of the flat hovered Picker components.
417
417
  /// @group picker
418
418
  $kendo-picker-flat-hover-text: null !default;
@@ -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, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25)) !default;
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;
@@ -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, rgba( k-color( app-surface, true ), .8 ), rgba( $kendo-map-bg, .8 )) !default;
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;
@@ -14,7 +14,7 @@
14
14
  .k-mediaplayer-titlebar {
15
15
  color: $kendo-media-player-titlebar-text;
16
16
  background-image: linear-gradient( $kendo-media-player-titlebar-gradient );
17
- text-shadow: 0 0 2px if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .5 ), rgba( $kendo-media-player-text, .5 ));
17
+ text-shadow: 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 50%, transparent), rgba( $kendo-media-player-text, .5 ));
18
18
  }
19
19
 
20
20
  }
@@ -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, ( rgba( k-color( on-app-surface, true ), .7 ), rgba( k-color( on-app-surface, true ), 0 ) ), ( rgba( $kendo-media-player-text, .7 ), rgba( $kendo-media-player-text, 0 ) )) !default;
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;
@@ -36,7 +36,7 @@ $kendo-pivotgrid-hover-bg: if($kendo-enable-color-system, k-color( base-hover ),
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, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25)) !default;
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
 
@@ -29,7 +29,7 @@
29
29
 
30
30
  .k-progressbar-indeterminate {
31
31
  @include fill( $kendo-progressbar-indeterminate-text, $kendo-progressbar-indeterminate-bg, $kendo-progressbar-indeterminate-border );
32
- @include striped-gradient( if($kendo-enable-color-system, rgba( k-color( base-emphasis, true ), .55 ), k-color-shade($kendo-progressbar-indeterminate-bg)) );
32
+ @include striped-gradient( if($kendo-enable-color-system, color-mix(in srgb, k-color( base-emphasis ) 55%, transparent), k-color-shade($kendo-progressbar-indeterminate-bg)) );
33
33
  background-size: $kendo-progressbar-height $kendo-progressbar-height;
34
34
  animation: kendo-progressbar-indeterminate-animation $kendo-progressbar-animation-timing;
35
35
  }
@@ -67,7 +67,7 @@
67
67
 
68
68
  .k-scheduler-layout td.k-selected,
69
69
  .k-scheduler-layout .k-scheduler-cell.k-selected {
70
- background-color: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25));
70
+ background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25));
71
71
  }
72
72
 
73
73
  .k-scheduler-layout-flex {
@@ -184,7 +184,7 @@
184
184
 
185
185
  // Selected
186
186
  .k-scheduler-content tr.k-selected {
187
- background-color: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25));
187
+ background-color: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25));
188
188
  }
189
189
  .k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
190
190
  .k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
@@ -18,7 +18,7 @@ $kendo-signature-lg-padding-y: $kendo-signature-lg-padding-x !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, rgba( k-color( info, true ), .24 ), rgba( $kendo-color-info, .24 )) !default;
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;
@@ -15,6 +15,6 @@ $kendo-skeleton-rect-border-radius: 0 !default;
15
15
  /// @group skeleton
16
16
  $kendo-skeleton-circle-border-radius: 9999px !default;
17
17
 
18
- $kendo-skeleton-item-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .2 ), rgba( $kendo-color-inverse, .2 )) !default;
18
+ $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;
19
19
 
20
20
  $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 2px if($kendo-enable-color-system, rgba( k-color( primary, true ), .3 ), rgba( $kendo-color-primary , .3 )) !default;
96
+ $kendo-slider-draghandle-focus-shadow: 0 0 0 2px if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 30%, transparent), rgba( $kendo-color-primary , .3 )) !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, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25)) !default;
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, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25)) !default;
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, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25)) !default;
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;
@@ -256,7 +256,7 @@ $kendo-spreadsheet-drawing-outline-style: solid !default;
256
256
  $kendo-spreadsheet-drawing-outline-width: 2px !default;
257
257
  /// The background color of the Spreadsheet drawing anchor.
258
258
  /// @group spreadsheet
259
- $kendo-spreadsheet-drawing-anchor-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25)) !default;
259
+ $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;
260
260
 
261
261
  /// The vertical spacing of the Spreadsheet DropZone.
262
262
  /// @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, rgba( k-color( on-app-surface, true ), .6 ), $kendo-disabled-text) !default;
106
+ $kendo-stepper-indicator-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 60%, 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, rgba( k-color( primary, true ), .6 ), k-color-mix( $kendo-stepper-indicator-done-bg, $kendo-component-bg, 60%)) !default;
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-legacy( $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: if($kendo-enable-color-system, k-color( on-base ), k-try-shade( $kendo-stepper-text, 2 )) !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, rgba( k-color( on-app-surface, true ), .6 ), $kendo-disabled-text) !default;
185
+ $kendo-stepper-label-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 60%, transparent), $kendo-disabled-text) !default;
186
186
 
187
187
  /// The text color of the optional Stepper label.
188
188
  /// @group stepper
@@ -58,7 +58,7 @@
58
58
  $kendo-switch-off-track-focus-gradient
59
59
  );
60
60
  @if $kendo-enable-focus-contrast {
61
- @include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )) );
61
+ @include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )) );
62
62
  } @else {
63
63
  outline: $kendo-switch-off-track-focus-ring;
64
64
  }
@@ -138,7 +138,7 @@
138
138
  $kendo-switch-on-track-focus-gradient
139
139
  );
140
140
  @if $kendo-enable-focus-contrast {
141
- @include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface, true ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )) );
141
+ @include box-shadow( 0 0 0 2px if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black )) );
142
142
  } @else {
143
143
  outline: $kendo-switch-on-track-focus-ring;
144
144
  }
@@ -68,7 +68,7 @@ $kendo-switch-off-track-focus-border: null !default;
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: 2px solid if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .08 ), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ) , .08 )) !default;
71
+ $kendo-switch-off-track-focus-ring: 2px solid if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 8%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ) , .08 )) !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: 2px solid if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba( $kendo-switch-on-track-border, .25 )) !default;
153
+ $kendo-switch-on-track-focus-ring: 2px 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
@@ -113,12 +113,15 @@
113
113
  list-style: none;
114
114
  outline: none;
115
115
 
116
+ .k-table-row {
117
+ position: relative;
118
+ }
119
+
116
120
  .k-table-row,
117
121
  .k-table-group-row {
118
122
  width: 100%;
119
123
  box-sizing: border-box;
120
124
  display: table-row;
121
- position: relative;
122
125
  }
123
126
  .k-table-row.k-first {
124
127
  border-top: 1px solid currentColor;
@@ -130,6 +133,7 @@
130
133
  }
131
134
 
132
135
  .k-table-group-row {
136
+ position: sticky;
133
137
 
134
138
  &::before {
135
139
  content: "\200b";
@@ -110,7 +110,7 @@ $kendo-table-group-row-border: $kendo-table-header-border !default;
110
110
 
111
111
  /// Background color of alternating rows in table.
112
112
  /// @group table
113
- $kendo-table-alt-row-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .05 ), rgba( k-contrast-legacy( $kendo-table-bg ), .04 )) !default;
113
+ $kendo-table-alt-row-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 5%, transparent), rgba( k-contrast-legacy( $kendo-table-bg ), .04 )) !default;
114
114
  /// Text color of alternating rows in table.
115
115
  /// @group table
116
116
  $kendo-table-alt-row-text: null !default;
@@ -121,7 +121,7 @@ $kendo-table-alt-row-border: null !default;
121
121
 
122
122
  /// Background color of hovered rows in table.
123
123
  /// @group table
124
- $kendo-table-hover-bg: if($kendo-enable-color-system, rgba( k-color( on-app-surface, true ), .11 ), k-color-darken($kendo-table-bg, 7%)) !default;
124
+ $kendo-table-hover-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 11%, transparent), k-color-darken($kendo-table-bg, 7%)) !default;
125
125
  /// Text color of hovered rows in table.
126
126
  /// @group table
127
127
  $kendo-table-hover-text: null !default;
@@ -146,7 +146,7 @@ $kendo-table-focus-shadow: $kendo-list-item-focus-shadow !default;
146
146
 
147
147
  /// Background color of selected rows in table.
148
148
  /// @group table
149
- $kendo-table-selected-bg: if($kendo-enable-color-system, rgba( k-color( primary, true ), .25 ), rgba($kendo-selected-bg, .25)) !default;
149
+ $kendo-table-selected-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 25%, transparent), rgba($kendo-selected-bg, .25)) !default;
150
150
  /// Text color of selected rows in table.
151
151
  /// @group table
152
152
  $kendo-table-selected-text: null !default;
@@ -36,10 +36,10 @@ $kendo-timeline-track-arrow-height: 30px !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, rgba( k-color( base-subtle, true ), .6 ), k-true-mix($kendo-button-bg, $kendo-body-bg, 65%)) !default;
39
+ $kendo-timeline-track-arrow-disabled-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( base-subtle ) 60%, 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, rgba( k-color( on-base, true ), .6 ), k-true-mix($kendo-button-text, $kendo-body-bg, 65%)) !default;
42
+ $kendo-timeline-track-arrow-disabled-text: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-base ) 60%, 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
45
  $kendo-timeline-track-arrow-disabled-border: if($kendo-enable-color-system, k-color( border ), k-true-mix(#000000, $kendo-body-bg, 4.8%)) !default;