@progress/kendo-theme-material 8.0.0-dev.8 → 8.0.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.
Files changed (38) hide show
  1. package/dist/all.css +224 -93
  2. package/dist/all.scss +356 -72
  3. package/dist/meta/sassdoc-data.json +35593 -28945
  4. package/dist/meta/sassdoc-raw-data.json +4815 -1293
  5. package/dist/meta/variables.json +64 -64
  6. package/lib/swatches/material-aqua-dark.json +1 -1
  7. package/lib/swatches/material-arctic.json +1 -1
  8. package/lib/swatches/material-burnt-teal.json +1 -1
  9. package/lib/swatches/material-dataviz-v4.json +1 -1
  10. package/lib/swatches/material-eggplant.json +1 -1
  11. package/lib/swatches/material-lime-dark.json +1 -1
  12. package/lib/swatches/material-lime.json +1 -1
  13. package/lib/swatches/material-main-dark.json +1 -1
  14. package/lib/swatches/material-main.json +1 -1
  15. package/lib/swatches/material-nova.json +1 -1
  16. package/lib/swatches/material-pacific-dark.json +1 -1
  17. package/lib/swatches/material-pacific.json +1 -1
  18. package/lib/swatches/material-sky-dark.json +1 -1
  19. package/lib/swatches/material-sky.json +1 -1
  20. package/lib/swatches/material-smoke.json +1 -1
  21. package/package.json +6 -6
  22. package/scss/button/_layout.scss +9 -0
  23. package/scss/button/_theme.scss +20 -2
  24. package/scss/button/_variables.scss +7 -7
  25. package/scss/calendar/_variables.scss +11 -0
  26. package/scss/checkbox/_variables.scss +1 -1
  27. package/scss/chip/_theme.scss +3 -3
  28. package/scss/chip/_variables.scss +1 -1
  29. package/scss/core/border-radii/index.import.scss +26 -0
  30. package/scss/core/color-system/_swatch-legacy.scss +1 -1
  31. package/scss/core/color-system/_swatch.scss +1 -1
  32. package/scss/drawer/_variables.scss +12 -2
  33. package/scss/scheduler/_variables.scss +1 -1
  34. package/scss/switch/_variables.scss +1 -1
  35. package/scss/timeline/_variables.scss +1 -1
  36. package/scss/toolbar/_theme.scss +27 -0
  37. package/scss/tooltip/_variables.scss +1 -1
  38. package/scss/typography/_variables.scss +159 -1
package/dist/all.scss CHANGED
@@ -3092,7 +3092,7 @@ $_default-colors: (
3092
3092
  light-emphasis: k-map-get( $kendo-palette-gray, 5 ),
3093
3093
  light-on-subtle: k-map-get( $kendo-palette-gray, 15 ),
3094
3094
  on-light: k-map-get( $kendo-palette-gray, black ),
3095
- light-on-surface: k-map-get( $kendo-palette-gray, 13 ),
3095
+ light-on-surface: k-map-get( $kendo-palette-gray, 4 ),
3096
3096
  // Dark
3097
3097
  dark-subtle: k-map-get( $kendo-palette-gray, 7 ),
3098
3098
  dark-subtle-hover: k-map-get( $kendo-palette-gray, 8 ),
@@ -3689,6 +3689,7 @@ $kendo-line-height: k-math-div( 20, 14 ) !default;
3689
3689
  /// @group typography
3690
3690
  $kendo-line-height-xs: 1 !default;
3691
3691
  /// The small line height across all components.
3692
+ /// @group typography
3692
3693
  $kendo-line-height-sm: 1.25 !default;
3693
3694
  /// The medium line height across all components.
3694
3695
  /// @group typography
@@ -4120,12 +4121,38 @@ $kendo-padding-lg-y: k-spacing(1.5) !default;
4120
4121
 
4121
4122
  // Radii
4122
4123
  // #region @import "./border-radii/index.import.scss"; -> scss/core/border-radii/index.import.scss
4124
+ /// The none border radius used across the Components.
4125
+ /// @group radii
4126
+ $kendo-border-radius-none: k-map-get($kendo-spacing, 0) !default;
4127
+ /// The extra small border radius used across the Components.
4128
+ /// @group radii
4129
+ $kendo-border-radius-xs: k-map-get($kendo-spacing, 1px) !default;
4130
+ /// The small border radius used across the Components.
4131
+ /// @group radii
4132
+ $kendo-border-radius-sm: k-map-get($kendo-spacing, 0.5) !default;
4133
+ /// The medium border radius used across the Components.
4134
+ /// @group radii
4135
+ $kendo-border-radius-md: k-map-get($kendo-spacing, 1) !default;
4136
+ /// The large border radius used across the Components.
4137
+ /// @group radii
4123
4138
  $kendo-border-radius-lg: k-map-get($kendo-spacing, 2) !default;
4139
+ /// The extra large border radius used across the Components.
4140
+ /// @group radii
4124
4141
  $kendo-border-radius-xl: k-map-get($kendo-spacing, 3) !default;
4142
+ /// The third largest border radius used across the Components.
4143
+ /// @group radii
4125
4144
  $kendo-border-radius-xxl: k-map-get($kendo-spacing, 4) !default;
4145
+ /// The second largest border radius used across the Components.
4146
+ /// @group radii
4126
4147
  $kendo-border-radius-xxxl: k-map-get($kendo-spacing, 5) !default;
4127
4148
 
4149
+ /// The global radii Map.
4150
+ /// @group radii
4128
4151
  $kendo-border-radii: (
4152
+ none: $kendo-border-radius-none,
4153
+ xs: $kendo-border-radius-xs,
4154
+ sm: $kendo-border-radius-sm,
4155
+ md: $kendo-border-radius-md,
4129
4156
  lg: $kendo-border-radius-lg,
4130
4157
  xl: $kendo-border-radius-xl,
4131
4158
  xxl: $kendo-border-radius-xxl,
@@ -4133,14 +4160,32 @@ $kendo-border-radii: (
4133
4160
  ) !default;
4134
4161
 
4135
4162
  // #region @import "@progress/kendo-theme-core/scss/border-radii/index.import.scss"; -> /home/runner/work/kendo-themes/kendo-themes/node_modules/@progress/kendo-theme-core/scss/border-radii/index.import.scss
4163
+ /// The none border radius used across the Components.
4164
+ /// @group radii
4136
4165
  $kendo-border-radius-none: k-map-get($kendo-spacing, 0) !default;
4166
+ /// The extra small border radius used across the Components.
4167
+ /// @group radii
4137
4168
  $kendo-border-radius-xs: k-map-get($kendo-spacing, 1px) !default;
4169
+ /// The small border radius used across the Components.
4170
+ /// @group radii
4138
4171
  $kendo-border-radius-sm: k-map-get($kendo-spacing, 0.5) !default;
4172
+ /// The medium border radius used across the Components.
4173
+ /// @group radii
4139
4174
  $kendo-border-radius-md: k-map-get($kendo-spacing, 1) !default;
4175
+ /// The large border radius used across the Components.
4176
+ /// @group radii
4140
4177
  $kendo-border-radius-lg: k-map-get($kendo-spacing, 1.5) !default;
4178
+ /// The extra large border radius used across the Components.
4179
+ /// @group radii
4141
4180
  $kendo-border-radius-xl: k-map-get($kendo-spacing, 2) !default;
4181
+ /// The third largest border radius used across the Components.
4182
+ /// @group radii
4142
4183
  $kendo-border-radius-xxl: k-map-get($kendo-spacing, 3) !default;
4184
+ /// The second largest border radius used across the Components.
4185
+ /// @group radii
4143
4186
  $kendo-border-radius-xxxl: k-map-get($kendo-spacing, 4) !default;
4187
+ /// The largest border radius used across the Components.
4188
+ /// @group radii
4144
4189
  $kendo-border-radius-full: 9999px !default;
4145
4190
 
4146
4191
 
@@ -4159,6 +4204,8 @@ $_default-border-radii: (
4159
4204
 
4160
4205
  $kendo-border-radii: $_default-border-radii !default;
4161
4206
 
4207
+ /// The global radii Map.
4208
+ /// @group radii
4162
4209
  $kendo-border-radii: k-map-merge($_default-border-radii, $kendo-border-radii);
4163
4210
 
4164
4211
 
@@ -7088,6 +7135,7 @@ $kendo-zindex-loading: 100 !default;
7088
7135
  @if ($kendo-enable-color-system) {
7089
7136
  $kendo-color-primary: k-color( primary );
7090
7137
  $kendo-color-primary-contrast: k-color( on-primary );
7138
+ $kendo-color-primary-darker: k-color( primary-active );
7091
7139
  $kendo-color-secondary: k-color( secondary );
7092
7140
  $kendo-color-secondary-contrast: k-color( on-secondary );
7093
7141
  $kendo-color-tertiary: k-color( tertiary );
@@ -7148,7 +7196,6 @@ $kendo-zindex-loading: 100 !default;
7148
7196
  "inverse": $kendo-color-inverse,
7149
7197
  );
7150
7198
 
7151
-
7152
7199
  }
7153
7200
 
7154
7201
  // #endregion
@@ -16189,48 +16236,124 @@ $_kendo-module-meta: (
16189
16236
 
16190
16237
 
16191
16238
  // Headings
16239
+
16240
+ /// The font size of the highest level heading.
16241
+ /// @group typography
16192
16242
  $kendo-h1-font-size: 96px !default;
16243
+ /// The font size of the second highest level heading.
16244
+ /// @group typography
16193
16245
  $kendo-h2-font-size: 60px !default;
16246
+ /// The font size of the third highest level heading.
16247
+ /// @group typography
16194
16248
  $kendo-h3-font-size: 48px !default;
16249
+ /// The font size of the fourth highest level heading.
16250
+ /// @group typography
16195
16251
  $kendo-h4-font-size: 34px !default;
16252
+ /// The font size of the fifth highest level heading.
16253
+ /// @group typography
16196
16254
  $kendo-h5-font-size: 24px !default;
16255
+ /// The font size of the sixth highest level heading.
16256
+ /// @group typography
16197
16257
  $kendo-h6-font-size: 20px !default;
16198
16258
 
16259
+ /// The font family of the highest level heading.
16260
+ /// @group typography
16199
16261
  $kendo-h1-font-family: var( --kendo-font-family, inherit ) !default;
16262
+ /// The font family of the second highest level heading.
16263
+ /// @group typography
16200
16264
  $kendo-h2-font-family: var( --kendo-font-family, inherit ) !default;
16265
+ /// The font family of the third highest level heading.
16266
+ /// @group typography
16201
16267
  $kendo-h3-font-family: var( --kendo-font-family, inherit ) !default;
16268
+ /// The font family of the fourth highest level heading.
16269
+ /// @group typography
16202
16270
  $kendo-h4-font-family: var( --kendo-font-family, inherit ) !default;
16271
+ /// The font family of the fifth highest level heading.
16272
+ /// @group typography
16203
16273
  $kendo-h5-font-family: var( --kendo-font-family, inherit ) !default;
16274
+ /// The font family of the sixth highest level heading.
16275
+ /// @group typography
16204
16276
  $kendo-h6-font-family: var( --kendo-font-family, inherit ) !default;
16205
16277
 
16278
+ /// The line height of the highest level heading.
16279
+ /// @group typography
16206
16280
  $kendo-h1-line-height: 112px !default;
16281
+ /// The line height of the second highest level heading.
16282
+ /// @group typography
16207
16283
  $kendo-h2-line-height: 72px !default;
16284
+ /// The line height of the third highest level heading.
16285
+ /// @group typography
16208
16286
  $kendo-h3-line-height: 56px !default;
16287
+ /// The line height of the fourth highest level heading.
16288
+ /// @group typography
16209
16289
  $kendo-h4-line-height: 36px !default;
16290
+ /// The line height of the fifth highest level heading.
16291
+ /// @group typography
16210
16292
  $kendo-h5-line-height: 24px !default;
16293
+ /// The line height of the sixth highest level heading.
16294
+ /// @group typography
16211
16295
  $kendo-h6-line-height: 24px !default;
16212
16296
 
16297
+ /// The font weight of the highest level heading.
16298
+ /// @group typography
16213
16299
  $kendo-h1-font-weight: var( --kendo-font-weight-light, normal ) !default;
16300
+ /// The font weight of the second highest level heading.
16301
+ /// @group typography
16214
16302
  $kendo-h2-font-weight: var( --kendo-font-weight-light, normal ) !default;
16303
+ /// The font weight of the third highest level heading.
16304
+ /// @group typography
16215
16305
  $kendo-h3-font-weight: var( --kendo-font-weight-normal, normal ) !default;
16306
+ /// The font weight of the fourth highest level heading.
16307
+ /// @group typography
16216
16308
  $kendo-h4-font-weight: var( --kendo-font-weight-normal, normal ) !default;
16309
+ /// The font weight of the fifth highest level heading.
16310
+ /// @group typography
16217
16311
  $kendo-h5-font-weight: var( --kendo-font-weight-normal, normal ) !default;
16312
+ /// The font weight of the sixth highest level heading.
16313
+ /// @group typography
16218
16314
  $kendo-h6-font-weight: var( --kendo-font-weight-medium, normal ) !default;
16219
16315
 
16316
+ /// The letter spacing of the highest level heading.
16317
+ /// @group typography
16220
16318
  $kendo-h1-letter-spacing: var( --kendo-letter-spacing-tighter, normal ) !default;
16319
+ /// The letter spacing of the second highest level heading.
16320
+ /// @group typography
16221
16321
  $kendo-h2-letter-spacing: var( --kendo-letter-spacing-tight, normal ) !default;
16322
+ /// The letter spacing of the third highest level heading.
16323
+ /// @group typography
16222
16324
  $kendo-h3-letter-spacing: var( --kendo-letter-spacing-normal, normal ) !default;
16325
+ /// The letter spacing of the fourth highest level heading.
16326
+ /// @group typography
16223
16327
  $kendo-h4-letter-spacing: var( --kendo-letter-spacing-wider, normal ) !default;
16328
+ /// The letter spacing of the fifth highest level heading.
16329
+ /// @group typography
16224
16330
  $kendo-h5-letter-spacing: var( --kendo-letter-spacing-normal, normal ) !default;
16331
+ /// The letter spacing of the sixth highest level heading.
16332
+ /// @group typography
16225
16333
  $kendo-h6-letter-spacing: var( --kendo-letter-spacing-wide, normal ) !default;
16226
16334
 
16335
+
16336
+ /// The margin of the highest level heading.
16337
+ /// @group typography
16227
16338
  $kendo-h1-margin: 0 0 12px !default;
16339
+ /// The margin of the second highest level heading.
16340
+ /// @group typography
16228
16341
  $kendo-h2-margin: 0 0 12px !default;
16342
+ /// The margin of the third highest level heading.
16343
+ /// @group typography
16229
16344
  $kendo-h3-margin: 0 0 12px !default;
16345
+ /// The margin of the fourth highest level heading.
16346
+ /// @group typography
16230
16347
  $kendo-h4-margin: 0 0 12px !default;
16348
+ /// The margin of the fifth highest level heading.
16349
+ /// @group typography
16231
16350
  $kendo-h5-margin: 0 0 12px !default;
16351
+ /// The margin of the sixth highest level heading.
16352
+ /// @group typography
16232
16353
  $kendo-h6-margin: 0 0 12px !default;
16233
16354
 
16355
+ /// The headings Map.
16356
+ /// @group typography
16234
16357
  $kendo-headings: (
16235
16358
  h1: (
16236
16359
  font-size: $kendo-h1-font-size,
@@ -16285,58 +16408,140 @@ $kendo-headings: (
16285
16408
 
16286
16409
 
16287
16410
  // Paragraph
16411
+
16412
+ /// The margin of the paragraph.
16413
+ /// @group typography
16288
16414
  $kendo-paragraph-margin: 0 0 12px !default;
16415
+ /// The font size of the paragraph.
16416
+ /// @group typography
16289
16417
  $kendo-paragraph-font-size: 1rem !default;
16418
+ /// The font family of the paragraph.
16419
+ /// @group typography
16290
16420
  $kendo-paragraph-font-family: var( --kendo-font-family, inherit ) !default;
16421
+ /// The line height of the paragraph.
16422
+ /// @group typography
16291
16423
  $kendo-paragraph-line-height: var( --kendo-line-height-lg, normal ) !default;
16424
+ /// The font weight of the paragraph.
16425
+ /// @group typography
16292
16426
  $kendo-paragraph-font-weight: var( --kendo-font-weight-normal, normal ) !default;
16427
+ /// The letter spacing of the paragraph.
16428
+ /// @group typography
16293
16429
  $kendo-paragraph-letter-spacing: .0313em !default;
16294
16430
 
16295
16431
 
16296
16432
  // Code
16433
+
16434
+ /// The font size of the code tag.
16435
+ /// @group typography
16297
16436
  $kendo-code-font-size: var( --kendo-font-size, inherit ) !default;
16437
+ /// The font family of the code tag.
16438
+ /// @group typography
16298
16439
  $kendo-code-font-family: var( --kendo-font-family-monospace, normal ) !default;
16440
+ /// The line height of the code tag.
16441
+ /// @group typography
16299
16442
  $kendo-code-line-height: var( --kendo-line-height, normal ) !default;
16443
+ /// The font weight of the code tag.
16444
+ /// @group typography
16300
16445
  $kendo-code-font-weight: var( --kendo-font-weight-normal, normal ) !default;
16446
+ /// The letter spacing of the code tag.
16447
+ /// @group typography
16301
16448
  $kendo-code-letter-spacing: null !default;
16302
16449
 
16450
+ /// The horizontal padding of the code tag.
16451
+ /// @group typography
16303
16452
  $kendo-code-padding-x: k-spacing(1) !default;
16453
+ /// The vertical padding of the code tag.
16454
+ /// @group typography
16304
16455
  $kendo-code-padding-y: k-spacing(0) !default;
16456
+ /// The horizontal padding of the preformatted text.
16457
+ /// @group typography
16305
16458
  $kendo-pre-padding-x: k-spacing(6) !default;
16459
+ /// The vertical padding of the preformatted text.
16460
+ /// @group typography
16306
16461
  $kendo-pre-padding-y: k-spacing(4) !default;
16462
+ /// The border width of the code tag.
16463
+ /// @group typography
16307
16464
  $kendo-code-border-width: 1px !default;
16308
16465
 
16466
+ /// The background color of the code tag.
16467
+ /// @group typography
16309
16468
  $kendo-code-bg: $kendo-base-bg !default;
16469
+ /// The text color of the code tag.
16470
+ /// @group typography
16310
16471
  $kendo-code-text: $kendo-component-text !default;
16472
+ /// The border color of the code tag.
16473
+ /// @group typography
16311
16474
  $kendo-code-border: $kendo-component-border !default;
16312
16475
 
16313
-
16314
16476
  // Display
16477
+
16478
+ /// The font size of the largest display text.
16479
+ /// @group typography
16315
16480
  $kendo-display1-font-size: calc( var( --kendo-font-size, .875rem ) * 9.5 ) !default;
16481
+ /// The font size of the second largest display text.
16482
+ /// @group typography
16316
16483
  $kendo-display2-font-size: calc( var( --kendo-font-size, .875rem ) * 8.75 ) !default;
16484
+ /// The font size of the third largest display text.
16485
+ /// @group typography
16317
16486
  $kendo-display3-font-size: calc( var( --kendo-font-size, .875rem ) * 8 ) !default;
16487
+ /// The font size of the fourth largest display text.
16488
+ /// @group typography
16318
16489
  $kendo-display4-font-size: calc( var( --kendo-font-size, .875rem ) * 7.25 ) !default;
16319
16490
 
16491
+ /// The font family of the largest display text.
16492
+ /// @group typography
16320
16493
  $kendo-display1-font-family: var( --kendo-font-family, inherit ) !default;
16494
+ /// The font family of the second largest display text.
16495
+ /// @group typography
16321
16496
  $kendo-display2-font-family: var( --kendo-font-family, inherit ) !default;
16497
+ /// The font family of the third largest display text.
16498
+ /// @group typography
16322
16499
  $kendo-display3-font-family: var( --kendo-font-family, inherit ) !default;
16500
+ /// The font family of the fourth largest display text.
16501
+ /// @group typography
16323
16502
  $kendo-display4-font-family: var( --kendo-font-family, inherit ) !default;
16324
16503
 
16504
+ /// The line height of the largest display text.
16505
+ /// @group typography
16325
16506
  $kendo-display1-line-height: 1.2 !default;
16507
+ /// The line height of the second largest display text.
16508
+ /// @group typography
16326
16509
  $kendo-display2-line-height: 1.2 !default;
16510
+ /// The line height of the third largest display text.
16511
+ /// @group typography
16327
16512
  $kendo-display3-line-height: 1.2 !default;
16513
+ /// The line height of the fourth largest display text.
16514
+ /// @group typography
16328
16515
  $kendo-display4-line-height: 1.2 !default;
16329
16516
 
16517
+ /// The font weight of the largest display text.
16518
+ /// @group typography
16330
16519
  $kendo-display1-font-weight: var( --kendo-font-weight-light, normal ) !default;
16520
+ /// The font weight of the second largest display text.
16521
+ /// @group typography
16331
16522
  $kendo-display2-font-weight: var( --kendo-font-weight-light, normal ) !default;
16523
+ /// The font weight of the third largest display text.
16524
+ /// @group typography
16332
16525
  $kendo-display3-font-weight: var( --kendo-font-weight-light, normal ) !default;
16526
+ /// The font weight of the fourth largest display text.
16527
+ /// @group typography
16333
16528
  $kendo-display4-font-weight: var( --kendo-font-weight-light, normal ) !default;
16334
16529
 
16530
+ /// The letter spacing of the largest display text.
16531
+ /// @group typography
16335
16532
  $kendo-display1-letter-spacing: var( --kendo-letter-spacing-tighter, normal ) !default;
16533
+ /// The letter spacing of the second largest display text.
16534
+ /// @group typography
16336
16535
  $kendo-display2-letter-spacing: var( --kendo-letter-spacing-tighter, normal ) !default;
16536
+ /// The letter spacing of the third largest display text.
16537
+ /// @group typography
16337
16538
  $kendo-display3-letter-spacing: var( --kendo-letter-spacing-tighter, normal ) !default;
16539
+ /// The letter spacing of the fourth largest display text.
16540
+ /// @group typography
16338
16541
  $kendo-display4-letter-spacing: var( --kendo-letter-spacing-tighter, normal ) !default;
16339
16542
 
16543
+ /// The displays Map.
16544
+ /// @group typography
16340
16545
  $kendo-display: (
16341
16546
  1: (
16342
16547
  font-size: $kendo-display1-font-size,
@@ -17591,7 +17796,7 @@ $kendo-checkbox-bg: null !default;
17591
17796
  $kendo-checkbox-text: null !default;
17592
17797
  /// The border color of the CheckBox.
17593
17798
  /// @group checkbox
17594
- $kendo-checkbox-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 54%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .54 )) !default;
17799
+ $kendo-checkbox-border: if($kendo-enable-color-system, color-mix(in srgb, k-color( on-app-surface ) 44%, transparent), rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .54 )) !default;
17595
17800
 
17596
17801
  /// The background color of the hovered CheckBox.
17597
17802
  /// @group checkbox
@@ -20577,7 +20782,7 @@ $kendo-badge-sizes: (
20577
20782
  // Outline badges
20578
20783
  .k-badge-outline {
20579
20784
  border-color: currentColor;
20580
- background-color: $kendo-component-bg;
20785
+ background-color: transparent;
20581
20786
  }
20582
20787
 
20583
20788
  @each $name, $color in $kendo-theme-colors {
@@ -20779,13 +20984,13 @@ $kendo-button-shadow: $box-shadow-depth-2 !default;
20779
20984
 
20780
20985
  /// The base background of the hovered Button.
20781
20986
  /// @group button
20782
- $kendo-button-hover-bg: null !default;
20987
+ $kendo-button-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), null) !default;
20783
20988
  /// The base text color of the hovered Button.
20784
20989
  /// @group button
20785
20990
  $kendo-button-hover-text: null !default;
20786
20991
  /// The base border color of the hovered Button.
20787
20992
  /// @group button
20788
- $kendo-button-hover-border: null !default;
20993
+ $kendo-button-hover-border: if($kendo-enable-color-system, k-color( base-hover ), null) !default;
20789
20994
  /// The base background gradient of the hovered Button.
20790
20995
  /// @group button
20791
20996
  $kendo-button-hover-gradient: null !default;
@@ -20795,13 +21000,13 @@ $kendo-button-hover-shadow: null !default;
20795
21000
 
20796
21001
  /// The base background color of the active Button.
20797
21002
  /// @group button
20798
- $kendo-button-active-bg: null !default;
21003
+ $kendo-button-active-bg: if($kendo-enable-color-system, k-color( base-active ), null) !default;
20799
21004
  /// The base text color of the active Button.
20800
21005
  /// @group button
20801
21006
  $kendo-button-active-text: null !default;
20802
21007
  /// The base border color of the active Button.
20803
21008
  /// @group button
20804
- $kendo-button-active-border: null !default;
21009
+ $kendo-button-active-border: if($kendo-enable-color-system, k-color( base-active ), null) !default;
20805
21010
  /// The base background gradient of the active Button.
20806
21011
  /// @group button
20807
21012
  $kendo-button-active-gradient: null !default;
@@ -20827,19 +21032,19 @@ $kendo-button-selected-shadow: null !default;
20827
21032
 
20828
21033
  /// The base background of the focused Button.
20829
21034
  /// @group button
20830
- $kendo-button-focus-bg: null !default;
21035
+ $kendo-button-focus-bg: if($kendo-enable-color-system, k-color( base-hover ), null) !default;
20831
21036
  /// The base text color of the focused Button.
20832
21037
  /// @group button
20833
21038
  $kendo-button-focus-text: null !default;
20834
21039
  /// The base border color of the focused Button.
20835
21040
  /// @group button
20836
- $kendo-button-focus-border: null !default;
21041
+ $kendo-button-focus-border: if($kendo-enable-color-system, k-color( base-hover ), null) !default;
20837
21042
  /// The base background gradient of focused Button.
20838
21043
  /// @group button
20839
21044
  $kendo-button-focus-gradient: null !default;
20840
21045
  /// The base shadow of the focused Button.
20841
21046
  /// @group button
20842
- $kendo-button-focus-shadow: null !default;
21047
+ $kendo-button-focus-shadow: $box-shadow-depth-3 !default;
20843
21048
 
20844
21049
  /// The base background color of the disabled Button.
20845
21050
  /// @group button
@@ -21057,7 +21262,7 @@ $kendo-chip-solid-selected-text: null !default;
21057
21262
  $kendo-chip-outline-bg: $kendo-component-bg !default;
21058
21263
  /// The base text color of the outline Chip.
21059
21264
  /// @group chip
21060
- $kendo-chip-outline-text: $kendo-chip-solid-text !default;
21265
+ $kendo-chip-outline-text: if($kendo-enable-color-system, k-color( base-on-surface ), $kendo-chip-solid-text) !default;
21061
21266
  /// The base border color of the outline Chip.
21062
21267
  /// @group chip
21063
21268
  $kendo-chip-outline-border: $kendo-chip-outline-text !default;
@@ -21329,7 +21534,7 @@ $kendo-chip-list-sizes: (
21329
21534
  @if ($name == "base") {
21330
21535
  @include fill(
21331
21536
  $kendo-chip-outline-text,
21332
- $kendo-chip-outline-bg,
21537
+ transparent,
21333
21538
  $kendo-chip-outline-border
21334
21539
  );
21335
21540
 
@@ -21354,8 +21559,8 @@ $kendo-chip-list-sizes: (
21354
21559
  }
21355
21560
  } @else if ($name == "warning") {
21356
21561
  @include fill(
21357
- if($kendo-enable-color-system, $kendo-chip-outline-text, if( $kendo-is-dark-theme, k-color-tint($color, 25%), $kendo-chip-outline-text)),
21358
- if($kendo-enable-color-system, k-color( app-surface ), if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
21562
+ if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, k-color-tint($color, 25%), $kendo-chip-outline-text)),
21563
+ if($kendo-enable-color-system, transparent, if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
21359
21564
  if($kendo-enable-color-system, $color, if( $kendo-is-dark-theme, k-color-tint($color, 25%), $color))
21360
21565
  );
21361
21566
 
@@ -21381,7 +21586,7 @@ $kendo-chip-list-sizes: (
21381
21586
  } @else {
21382
21587
  @include fill(
21383
21588
  if($kendo-enable-color-system, k-color( #{$name}-on-surface ), k-try-shade( $color, 25% )),
21384
- if($kendo-enable-color-system, k-color( app-surface ), if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
21589
+ if($kendo-enable-color-system, transparent, if( $kendo-is-dark-theme, $kendo-color-black, $kendo-color-white )),
21385
21590
  if($kendo-enable-color-system, k-color( #{$name}-on-surface ), k-try-shade( $color, 25% ))
21386
21591
  );
21387
21592
 
@@ -21450,7 +21655,7 @@ $kendo-chip-list-sizes: (
21450
21655
  }
21451
21656
  } @else if ($name == "warning") {
21452
21657
  @include fill(
21453
- $color: if($kendo-enable-color-system, $kendo-chip-outline-text, if( $kendo-is-dark-theme, k-try-shade( $color, 50% ), $kendo-chip-outline-text))
21658
+ $color: if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, k-try-shade( $color, 50% ), k-color( on-app-surface )))
21454
21659
  );
21455
21660
 
21456
21661
  &:focus,
@@ -21463,14 +21668,14 @@ $kendo-chip-list-sizes: (
21463
21668
  &.k-hover {
21464
21669
  @include fill(
21465
21670
  $bg: if($kendo-enable-color-system, k-color( #{$name}-subtle-hover ), k-try-tint( $color, 80% )),
21466
- $color: if($kendo-enable-color-system, $kendo-chip-outline-text, if( $kendo-is-dark-theme, k-try-shade( $color, 50% ), $kendo-chip-outline-text))
21671
+ $color: if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, k-try-shade( $color, 50% ), k-color( on-app-surface )))
21467
21672
  );
21468
21673
  }
21469
21674
 
21470
21675
  &.k-selected {
21471
21676
  @include fill(
21472
21677
  $bg: if($kendo-enable-color-system, k-color( #{$name}-subtle-active ), k-try-tint( $color, 65% )),
21473
- $color: if($kendo-enable-color-system, $kendo-chip-outline-text, if( $kendo-is-dark-theme, k-try-shade( $color, 50% ), $kendo-chip-outline-text))
21678
+ $color: if($kendo-enable-color-system, k-color( on-app-surface ), if( $kendo-is-dark-theme, k-try-shade( $color, 50% ), k-color( on-app-surface )))
21474
21679
  );
21475
21680
  }
21476
21681
  } @else {
@@ -23130,6 +23335,15 @@ $_kendo-module-meta: (
23130
23335
  }
23131
23336
  }
23132
23337
 
23338
+ // Solid button
23339
+ .k-button-solid {
23340
+ &::before {
23341
+ @if($kendo-enable-color-system) {
23342
+ display: none;
23343
+ }
23344
+ }
23345
+ }
23346
+
23133
23347
  // Outline button
23134
23348
  .k-button-outline {
23135
23349
  background-color: transparent !important; // stylelint-disable-line declaration-no-important
@@ -23349,9 +23563,9 @@ $_kendo-module-meta: (
23349
23563
  &.k-hover {
23350
23564
  @if $name == "base" {
23351
23565
  @include fill(
23352
- if($kendo-enable-color-system, $kendo-base-bg, k-contrast-legacy( $color )),
23353
- $color,
23354
- $color
23566
+ if($kendo-enable-color-system, k-color( base ), k-contrast-legacy( $color )),
23567
+ if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color )),
23568
+ if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color ))
23355
23569
  );
23356
23570
  } @else {
23357
23571
  @include fill(
@@ -23379,9 +23593,9 @@ $_kendo-module-meta: (
23379
23593
  &.k-active {
23380
23594
  @if $name == "base" {
23381
23595
  @include fill(
23382
- if($kendo-enable-color-system, $kendo-base-bg, k-contrast-legacy( $color )),
23383
- $color,
23384
- $color
23596
+ if($kendo-enable-color-system, k-color( base ), k-contrast-legacy( $color )),
23597
+ if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color )),
23598
+ if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color ))
23385
23599
  );
23386
23600
  } @else {
23387
23601
  @include fill(
@@ -23396,9 +23610,9 @@ $_kendo-module-meta: (
23396
23610
  &.k-selected {
23397
23611
  @if $name == "base" {
23398
23612
  @include fill(
23399
- if($kendo-enable-color-system, $kendo-base-bg, k-contrast-legacy( $color )),
23400
- $color,
23401
- $color
23613
+ if($kendo-enable-color-system, k-color( base ), k-contrast-legacy( $color )),
23614
+ if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color )),
23615
+ if($kendo-enable-color-system, k-color( on-base ), k-contrast-legacy( $color ))
23402
23616
  );
23403
23617
  } @else {
23404
23618
  @include fill(
@@ -23421,7 +23635,11 @@ $_kendo-module-meta: (
23421
23635
  // Flat button
23422
23636
  @each $name, $color in k-map-merge( $kendo-button-theme-colors, ( "base": inherit ) ) {
23423
23637
  .k-button-flat-#{$name} {
23424
- color: $color;
23638
+ @if $name == "base" {
23639
+ color: inherit;
23640
+ } @else {
23641
+ color: if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color);
23642
+ }
23425
23643
 
23426
23644
  // Disabled state
23427
23645
  &:disabled,
@@ -23490,7 +23708,7 @@ $_kendo-module-meta: (
23490
23708
  // Clear button
23491
23709
  @each $name, $color in k-map-merge( $kendo-button-theme-colors, ( "base": $kendo-base-text ) ) {
23492
23710
  .k-button-clear-#{$name} {
23493
- color: $color;
23711
+ color: if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color);
23494
23712
 
23495
23713
  &:focus,
23496
23714
  &.k-focus,
@@ -23532,6 +23750,9 @@ $_kendo-module-meta: (
23532
23750
  @each $name, $color in $kendo-button-theme-colors {
23533
23751
  .k-button-solid-#{$name} {
23534
23752
  @include box-shadow( $kendo-button-shadow );
23753
+
23754
+ // These 3 lines can be deleted once we
23755
+ // stop supporting the old color system.
23535
23756
  color: if( $name == "base", $kendo-button-text, if($kendo-enable-color-system, k-color( on-#{$name} ), k-contrast-color( $color )) );
23536
23757
  background-color: if( $name == "base", $kendo-button-bg, if($kendo-enable-color-system, k-color( $name ), $color) );
23537
23758
  border-color: if( $name == "base", $kendo-button-bg, if($kendo-enable-color-system, k-color( $name ), $color) );
@@ -23545,6 +23766,8 @@ $_kendo-module-meta: (
23545
23766
  // Focus state
23546
23767
  &:focus,
23547
23768
  &.k-focus {
23769
+ background-color: if($kendo-enable-color-system, k-color( #{$name}-hover ), null);
23770
+ border-color: if($kendo-enable-color-system, k-color( #{$name}-hover ), null);
23548
23771
  @include box-shadow( $kendo-button-focus-shadow );
23549
23772
  }
23550
23773
 
@@ -23571,7 +23794,14 @@ $_kendo-module-meta: (
23571
23794
  // Outline button
23572
23795
  @each $name, $color in $kendo-button-theme-colors {
23573
23796
  .k-button-outline-#{$name} {
23574
- color: if( $name == "base", $kendo-button-text, if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color) );
23797
+
23798
+ // The "base" case can be deleted once we
23799
+ // stop supporting the old color system.
23800
+ @if $name == "base" {
23801
+ color: if($kendo-enable-color-system, k-color( base-on-surface ), $kendo-button-text)
23802
+ } @else {
23803
+ color: if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color)
23804
+ }
23575
23805
 
23576
23806
  &:hover,
23577
23807
  &.k-hover,
@@ -23580,7 +23810,13 @@ $_kendo-module-meta: (
23580
23810
  &:active,
23581
23811
  &.k-active,
23582
23812
  &.k-selected {
23583
- color: if( $name == "base", $kendo-button-text, if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color) );
23813
+ // The "base" case can be deleted once we
23814
+ // stop supporting the old color system.
23815
+ @if $name == "base" {
23816
+ color: if($kendo-enable-color-system, k-color( base-on-surface ), $kendo-button-text)
23817
+ } @else {
23818
+ color: if($kendo-enable-color-system, k-color( #{$name}-on-surface ), $color)
23819
+ }
23584
23820
  }
23585
23821
 
23586
23822
  // Disabled state
@@ -25010,6 +25246,33 @@ $kendo-toolbar-sizes: (
25010
25246
  background-color: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-button-bg ));
25011
25247
  border-color: if($kendo-enable-color-system, k-color( base-subtle ), k-try-shade( $kendo-button-bg ));
25012
25248
 
25249
+ // Hover state
25250
+ &:hover,
25251
+ &.k-hover {
25252
+ background-color: if($kendo-enable-color-system, k-color( base-subtle-hover ), null);
25253
+ border-color: if($kendo-enable-color-system, k-color( base-subtle-hover ), null);
25254
+ }
25255
+
25256
+ // Focus state
25257
+ &:focus,
25258
+ &.k-focus {
25259
+ background-color: if($kendo-enable-color-system, k-color( base-subtle-hover ), null);
25260
+ border-color: if($kendo-enable-color-system, k-color( base-subtle-hover ), null);
25261
+ }
25262
+
25263
+ // Active state
25264
+ &:active,
25265
+ &.k-active {
25266
+ background-color: if($kendo-enable-color-system, k-color( base-subtle-active ), null);
25267
+ border-color: if($kendo-enable-color-system, k-color( base-subtle-active ), null);
25268
+ }
25269
+
25270
+ // Selected state
25271
+ &.k-selected {
25272
+ background-color: if($kendo-enable-color-system, k-color( base-subtle-active ), null);
25273
+ border-color: if($kendo-enable-color-system, k-color( base-subtle-active ), null);
25274
+ }
25275
+
25013
25276
  &.k-input-button,
25014
25277
  &.k-input-spinner .k-spinner-increase,
25015
25278
  &.k-input-spinner .k-spinner-decrease {
@@ -25730,7 +25993,7 @@ $kendo-tooltip-line-height: k-math-div( 20, 14 ) !default;
25730
25993
 
25731
25994
  /// The font size of the Tooltip title.
25732
25995
  /// @group tooltip
25733
- $kendo-tooltip-title-font-size: calc( #{$kendo-tooltip-font-size} * 1.25 ) !default;
25996
+ $kendo-tooltip-title-font-size: calc( var( --kendo-font-size-sm, .75rem ) * 1.25 ) !default;
25734
25997
  /// The line height of the Tooltip title.
25735
25998
  /// @group tooltip
25736
25999
  $kendo-tooltip-title-line-height: 1 !default;
@@ -31170,8 +31433,15 @@ $_kendo-module-meta: (
31170
31433
  /// The width of the border around the Calendar.
31171
31434
  /// @group calendar
31172
31435
  $kendo-calendar-border-width: 1px !default;
31436
+
31437
+ /// The font family of the Calendar.
31438
+ /// @group calendar
31173
31439
  $kendo-calendar-font-family: var( --kendo-font-family, inherit ) !default;
31440
+ /// The font size of the Calendar.
31441
+ /// @group calendar
31174
31442
  $kendo-calendar-font-size: var( --kendo-font-size, inherit ) !default;
31443
+ /// The line height of the Calendar.
31444
+ /// @group calendar
31175
31445
  $kendo-calendar-line-height: k-math-div( 20, 14 ) !default;
31176
31446
 
31177
31447
  /// The size of the cells in the Calendar.
@@ -31252,7 +31522,11 @@ $kendo-calendar-header-cell-width: $kendo-calendar-cell-size !default;
31252
31522
  /// The height of the header cells in the Calendar.
31253
31523
  /// @group calendar
31254
31524
  $kendo-calendar-header-cell-height: $kendo-calendar-cell-size !default;
31525
+ /// The font size of the header cells in the Calendar.
31526
+ /// @group calendar
31255
31527
  $kendo-calendar-header-cell-font-size: var( --kendo-font-size-sm, inherit )!default;
31528
+ /// The line height of the header cells in the Calendar.
31529
+ /// @group calendar
31256
31530
  $kendo-calendar-header-cell-line-height: 2 !default;
31257
31531
 
31258
31532
  /// The background color of the header cells in the Calendar.
@@ -31964,9 +32238,6 @@ $kendo-calendar-sizes: (
31964
32238
  // }
31965
32239
  }
31966
32240
 
31967
-
31968
-
31969
-
31970
32241
  // Multiview calendar
31971
32242
  .k-calendar-range {
31972
32243
  width: auto;
@@ -31983,25 +32254,34 @@ $kendo-calendar-sizes: (
31983
32254
  outline: 0;
31984
32255
  }
31985
32256
  }
32257
+ }
31986
32258
 
31987
- .k-range-start .k-calendar-cell-inner,
31988
- .k-range-start .k-link {
31989
- border-color: inherit;
31990
- border-radius: $kendo-calendar-range-cell-border-radius 0 0 $kendo-calendar-range-cell-border-radius;
31991
- }
31992
- .k-range-end .k-calendar-cell-inner,
31993
- .k-range-end .k-link {
32259
+ // Range Selection
32260
+ .k-range-start {
32261
+ border-radius: $kendo-calendar-range-cell-border-radius 0 0 $kendo-calendar-range-cell-border-radius;
32262
+
32263
+ .k-calendar-cell-inner,
32264
+ .k-link {
31994
32265
  border-color: inherit;
31995
- border-radius: 0 $kendo-calendar-range-cell-border-radius $kendo-calendar-range-cell-border-radius 0;
32266
+ border-radius: inherit;
31996
32267
  }
31997
- .k-range-mid {
32268
+ }
32269
+ .k-range-end {
32270
+ border-radius: 0 $kendo-calendar-range-cell-border-radius $kendo-calendar-range-cell-border-radius 0;
32271
+
32272
+ .k-calendar-cell-inner,
32273
+ .k-link {
31998
32274
  border-color: inherit;
31999
- border-radius: 0;
32275
+ border-radius: inherit;
32000
32276
  }
32001
32277
  }
32002
-
32003
-
32004
-
32278
+ .k-range-mid {
32279
+ border-color: inherit;
32280
+ border-radius: 0;
32281
+ }
32282
+ .k-range-start.k-range-end {
32283
+ border-radius: $kendo-calendar-range-cell-border-radius;
32284
+ }
32005
32285
 
32006
32286
  // RTL
32007
32287
  .k-rtl .k-calendar,
@@ -32014,21 +32294,14 @@ $kendo-calendar-sizes: (
32014
32294
  @include hide-scrollbar("left");
32015
32295
  }
32016
32296
 
32017
- }
32018
-
32019
- .k-rtl .k-calendar-range,
32020
- [dir="rtl"] .k-calendar-range,
32021
- .k-calendar-range.k-rtl,
32022
- .k-calendar-range[dir="rtl"] {
32023
-
32024
- .k-range-start .k-calendar-cell-inner,
32025
- .k-range-start .k-link {
32297
+ // Range Selection RTL
32298
+ .k-range-start {
32026
32299
  border-radius: 0 $kendo-calendar-range-cell-border-radius $kendo-calendar-range-cell-border-radius 0;
32027
32300
  }
32028
- .k-range-end .k-calendar-cell-inner,
32029
- .k-range-end .k-link {
32301
+ .k-range-end {
32030
32302
  border-radius: $kendo-calendar-range-cell-border-radius 0 0 $kendo-calendar-range-cell-border-radius;
32031
32303
  }
32304
+
32032
32305
  }
32033
32306
 
32034
32307
  }
@@ -32238,11 +32511,6 @@ $kendo-calendar-sizes: (
32238
32511
  background-color: $kendo-calendar-range-bg;
32239
32512
  }
32240
32513
 
32241
- .k-range-start.k-range-end {
32242
- background-image: none;
32243
- background-color: transparent;
32244
- }
32245
-
32246
32514
  .k-range-start,
32247
32515
  .k-range-end {
32248
32516
  .k-calendar-cell-inner {
@@ -37015,7 +37283,7 @@ $kendo-switch-off-thumb-hover-gradient: null !default;
37015
37283
 
37016
37284
  /// The background of the track when the Switch is checked.
37017
37285
  /// @group switch
37018
- $kendo-switch-on-track-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 54%, transparent), rgba( $kendo-color-primary, .54 )) !default;
37286
+ $kendo-switch-on-track-bg: if($kendo-enable-color-system, color-mix(in srgb, k-color( primary ) 44%, transparent), rgba( $kendo-color-primary, .54 )) !default;
37019
37287
  /// The text color of the track when the Switch is checked.
37020
37288
  /// @group switch
37021
37289
  $kendo-switch-on-track-text: null !default;
@@ -40457,13 +40725,23 @@ $kendo-drawer-border: $kendo-component-border !default;
40457
40725
  /// The border width of the Drawer.
40458
40726
  /// @group drawer
40459
40727
  $kendo-drawer-border-width: 1px !default;
40728
+
40729
+ /// The font family of the Drawer.
40730
+ /// @group drawer
40460
40731
  $kendo-drawer-font-family: var( --kendo-font-family, inherit ) !default;
40732
+ /// The font size of the Drawer.
40733
+ /// @group drawer
40461
40734
  $kendo-drawer-font-size: var( --kendo-font-size, inherit ) !default;
40735
+ /// The line height of the Drawer.
40736
+ /// @group drawer
40462
40737
  $kendo-drawer-line-height: var( --kendo-line-height, normal ) !default;
40463
- $kendo-drawer-content-padding-x: $kendo-padding-md-x !default;
40738
+
40739
+ /// The horizontal padding of the Drawer content.
40740
+ /// @group drawer
40741
+ $kendo-drawer-content-padding-x: null !default;
40464
40742
  /// The vertical padding of the Drawer content.
40465
40743
  /// @group drawer
40466
- $kendo-drawer-content-padding-y: $kendo-padding-md-y !default;
40744
+ $kendo-drawer-content-padding-y: null !default;
40467
40745
 
40468
40746
  /// The width of the Drawer scrollbar.
40469
40747
  /// @group drawer
@@ -40610,6 +40888,8 @@ $kendo-drawer-selected-hover-text: $kendo-color-secondary !default;
40610
40888
  .k-drawer-content {
40611
40889
  flex: 1 1 auto;
40612
40890
  overflow: auto;
40891
+ padding-block: $kendo-drawer-content-padding-y;
40892
+ padding-inline: $kendo-drawer-content-padding-x;
40613
40893
  }
40614
40894
 
40615
40895
 
@@ -51068,6 +51348,7 @@ $kendo-listview-item-focus-shadow: null !default;
51068
51348
  font-family: $kendo-listview-font-family;
51069
51349
  font-size: $kendo-listview-font-size;
51070
51350
  line-height: $kendo-listview-line-height;
51351
+ display: flex;
51071
51352
  flex-flow: column nowrap;
51072
51353
  position: relative;
51073
51354
  -webkit-touch-callout: none;
@@ -58972,7 +59253,7 @@ $kendo-scheduler-tooltip-title-margin-y: k-spacing(2) !default;
58972
59253
  $kendo-scheduler-tooltip-month-font-size: var( --kendo-font-size-sm, inherit ) !default;
58973
59254
  /// The font size of the day inside the Scheduler Tooltip.
58974
59255
  /// @group scheduler
58975
- $kendo-scheduler-tooltip-day-font-size: calc( #{$kendo-scheduler-tooltip-month-font-size} * 2 ) !default;
59256
+ $kendo-scheduler-tooltip-day-font-size: calc( var( --kendo-font-size-sm, .75rem ) * 2 ) !default;
58976
59257
 
58977
59258
  /// The max height of the events inside the Scheduler Tooltip.
58978
59259
  /// @group scheduler
@@ -61687,7 +61968,7 @@ $kendo-timeline-track-start-calc: calc(#{$kendo-timeline-track-arrow-width} - 2
61687
61968
  $kendo-timeline-track-end-calc: calc(#{$kendo-timeline-track-arrow-width} - 2 * #{$kendo-timeline-track-border-width}) !default;
61688
61969
  /// The background color of the Timeline track.
61689
61970
  /// @group timeline
61690
- $kendo-timeline-track-bg: #e0e0e0 !default;
61971
+ $kendo-timeline-track-bg: if($kendo-enable-color-system, k-color( base-subtle ), #e0e0e0) !default;
61691
61972
  /// The border color of the Timeline track.
61692
61973
  /// @group timeline
61693
61974
  $kendo-timeline-track-border-color: $kendo-timeline-track-bg !default;
@@ -64113,7 +64394,10 @@ $kendo-treemap-line-height: var( --kendo-line-height, normal ) !default;
64113
64394
  }
64114
64395
 
64115
64396
 
64116
-
64397
+ // Sankey labels
64398
+ .k-sankey text {
64399
+ pointer-events: none;
64400
+ }
64117
64401
 
64118
64402
  // Treemap
64119
64403
  .k-treemap {