@progress/kendo-theme-material 9.1.0-dev.0 → 9.1.0-dev.2

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 (39) hide show
  1. package/dist/all.css +1 -1
  2. package/dist/all.scss +208 -127
  3. package/dist/material-aqua-dark.css +1 -1
  4. package/dist/material-arctic.css +1 -1
  5. package/dist/material-burnt-teal.css +1 -1
  6. package/dist/material-dataviz-v4.css +1 -1
  7. package/dist/material-eggplant.css +1 -1
  8. package/dist/material-lime-dark.css +1 -1
  9. package/dist/material-lime.css +1 -1
  10. package/dist/material-main-dark.css +1 -1
  11. package/dist/material-main.css +1 -1
  12. package/dist/material-nova.css +1 -1
  13. package/dist/material-pacific-dark.css +1 -1
  14. package/dist/material-pacific.css +1 -1
  15. package/dist/material-sky-dark.css +1 -1
  16. package/dist/material-sky.css +1 -1
  17. package/dist/material-smoke.css +1 -1
  18. package/dist/meta/sassdoc-data.json +27398 -25184
  19. package/dist/meta/sassdoc-raw-data.json +1350 -325
  20. package/dist/meta/variables.json +46 -26
  21. package/lib/swatches/material-aqua-dark.json +1 -1
  22. package/lib/swatches/material-arctic.json +1 -1
  23. package/lib/swatches/material-burnt-teal.json +1 -1
  24. package/lib/swatches/material-dataviz-v4.json +1 -1
  25. package/lib/swatches/material-eggplant.json +1 -1
  26. package/lib/swatches/material-lime-dark.json +1 -1
  27. package/lib/swatches/material-lime.json +1 -1
  28. package/lib/swatches/material-main-dark.json +1 -1
  29. package/lib/swatches/material-main.json +1 -1
  30. package/lib/swatches/material-nova.json +1 -1
  31. package/lib/swatches/material-pacific-dark.json +1 -1
  32. package/lib/swatches/material-pacific.json +1 -1
  33. package/lib/swatches/material-sky-dark.json +1 -1
  34. package/lib/swatches/material-sky.json +1 -1
  35. package/lib/swatches/material-smoke.json +1 -1
  36. package/package.json +6 -6
  37. package/scss/loader/_variables.scss +0 -4
  38. package/scss/menu/_variables.scss +138 -42
  39. package/scss/tabstrip/_variables.scss +3 -0
package/dist/all.scss CHANGED
@@ -23169,10 +23169,6 @@ $kendo-loader-md-spinner-4-height: $kendo-loader-md-spinner-4-width !default;
23169
23169
  /// @group loader
23170
23170
  $kendo-loader-lg-spinner-4-height: $kendo-loader-lg-spinner-4-width !default;
23171
23171
 
23172
- /// The color of the Loader based on the secondary theme color.
23173
- /// @group loader
23174
- $kendo-loader-secondary-bg: #000000 !default;
23175
-
23176
23172
  /// The border width of the container panel.
23177
23173
  /// @group loader
23178
23174
  $kendo-loader-container-panel-border-width: 1px !default;
@@ -23836,11 +23832,7 @@ $kendo-zindex-loading: 100 !default;
23836
23832
 
23837
23833
  @each $name, $color in $kendo-theme-colors {
23838
23834
  .k-loader-#{$name} {
23839
- @if $name == "secondary" {
23840
- color: $kendo-loader-secondary-bg;
23841
- } @else {
23842
- color: $color;
23843
- }
23835
+ color: $color;
23844
23836
  }
23845
23837
  }
23846
23838
 
@@ -23849,13 +23841,6 @@ $kendo-zindex-loading: 100 !default;
23849
23841
  border-color: $kendo-loader-container-panel-border-color;
23850
23842
  }
23851
23843
 
23852
- .k-loader-container-inner {
23853
- .k-text-secondary,
23854
- .\!k-text-secondary { // stylelint-disable-line
23855
- color: $kendo-loader-secondary-bg !important; // stylelint-disable-line declaration-no-important
23856
- }
23857
- }
23858
-
23859
23844
  }
23860
23845
 
23861
23846
 
@@ -25273,174 +25258,270 @@ $_kendo-module-meta: (
25273
25258
  // Component
25274
25259
  // #region @import "./_variables.scss"; -> scss/menu/_variables.scss
25275
25260
  // Menu
25276
- $kendo-menu-padding-x: k-spacing(0) !default;
25277
- $kendo-menu-padding-y: k-spacing(0) !default;
25261
+
25262
+ /// The width of the border around the Menu.
25263
+ /// @group menu
25278
25264
  $kendo-menu-border-width: 0px !default;
25265
+ /// The font family of the Menu.
25266
+ /// @group menu
25279
25267
  $kendo-menu-font-family: var( --kendo-font-family, inherit ) !default;
25268
+ /// The font size of the Menu.
25269
+ /// @group menu
25280
25270
  $kendo-menu-font-size: var( --kendo-font-size, inherit ) !default;
25271
+ /// The line height of the Menu used along with $kendo-font-size.
25272
+ /// @group menu
25281
25273
  $kendo-menu-line-height: var( --kendo-line-height, normal ) !default;
25282
25274
 
25275
+ /// The background color of the Menu.
25276
+ /// @group menu
25283
25277
  $kendo-menu-bg: transparent !default;
25278
+ /// The text color of the Menu.
25279
+ /// @group menu
25284
25280
  $kendo-menu-text: $kendo-component-text !default;
25281
+ /// The border color of the Menu.
25282
+ /// @group menu
25285
25283
  $kendo-menu-border: null !default;
25284
+ /// The background gradient of the Menu.
25285
+ /// @group menu
25286
25286
  $kendo-menu-gradient: null !default;
25287
25287
 
25288
+ // Menu item
25289
+
25290
+ /// The horizontal padding of the Menu item.
25291
+ /// @group menu
25288
25292
  $kendo-menu-item-padding-x: k-spacing(4) !default;
25293
+ /// The vertical padding of the Menu item.
25294
+ /// @group menu
25289
25295
  $kendo-menu-item-padding-y: k-spacing(1) !default;
25296
+ /// The spacing between the Menu items.
25297
+ /// @group menu
25290
25298
  $kendo-menu-item-spacing: k-spacing(0.5) !default;
25299
+ /// The spacing between the Menu item text and icons.
25300
+ /// @group menu
25291
25301
  $kendo-menu-item-icon-spacing: $kendo-icon-spacing !default;
25292
25302
 
25303
+ /// The font weight of the selected Menu item.
25304
+ /// @group menu
25305
+ $kendo-menu-item-selected-font-weight: var( --kendo-font-weight-bold, normal ) !default;
25306
+
25307
+ /// The background color of the Menu item.
25308
+ /// @group menu
25293
25309
  $kendo-menu-item-bg: rgba( $kendo-menu-text, 0 ) !default;
25310
+ /// The text color of the Menu item.
25311
+ /// @group menu
25294
25312
  $kendo-menu-item-text: null !default;
25313
+ /// The border color of the Menu item.
25314
+ /// @group menu
25295
25315
  $kendo-menu-item-border: null !default;
25316
+ /// The background gradient of the Menu item.
25317
+ /// @group menu
25296
25318
  $kendo-menu-item-gradient: null !default;
25297
25319
 
25320
+ /// The background color of hovered Menu item.
25321
+ /// @group menu
25298
25322
  $kendo-menu-item-hover-bg: if($kendo-enable-color-system, k-color( base-hover ), rgba( $kendo-menu-text, $kendo-flat-button-hover-opacity * k-color-alpha( $kendo-menu-text ) )) !default;
25323
+ /// The text color of hovered Menu item.
25324
+ /// @group menu
25299
25325
  $kendo-menu-item-hover-text: null !default;
25326
+ /// The border color of hovered Menu item.
25327
+ /// @group menu
25300
25328
  $kendo-menu-item-hover-border: null !default;
25329
+ /// The background gradient of hovered Menu item.
25330
+ /// @group menu
25301
25331
  $kendo-menu-item-hover-gradient: null !default;
25302
25332
 
25303
- $kendo-menu-item-expanded-bg: if($kendo-enable-color-system, k-color( base-active ), rgba( $kendo-menu-text, $kendo-flat-button-active-opacity * k-color-alpha( $kendo-menu-text ) )) !default;
25304
- $kendo-menu-item-expanded-text: null !default;
25305
- $kendo-menu-item-expanded-border: null !default;
25306
- $kendo-menu-item-expanded-gradient: null !default;
25333
+ /// The background color of active Menu item.
25334
+ /// @group menu
25335
+ $kendo-menu-item-active-bg: if($kendo-enable-color-system, k-color( base-active ), rgba( $kendo-menu-text, $kendo-flat-button-active-opacity * k-color-alpha( $kendo-menu-text ) )) !default;
25336
+ /// The text color of active Menu item.
25337
+ /// @group menu
25338
+ $kendo-menu-item-active-text: null !default;
25339
+ /// The border color of active Menu item.
25340
+ /// @group menu
25341
+ $kendo-menu-item-active-border: null !default;
25342
+ /// The background gradient of active Menu item.
25343
+ /// @group menu
25344
+ $kendo-menu-item-active-gradient: null !default;
25307
25345
 
25346
+ /// The base shadow of focused Menu item.
25347
+ /// @group menu
25308
25348
  $kendo-menu-item-focus-shadow: null !default;
25309
25349
 
25310
- $kendo-menu-separator-spacing: k-spacing(1) !default;
25350
+ /// The background color of selected Menu item.
25351
+ /// @group menu
25352
+ $kendo-menu-item-selected-bg: null !default;
25353
+ /// The text color of selected Menu item.
25354
+ /// @group menu
25355
+ $kendo-menu-item-selected-text: null !default;
25356
+ /// The border color of selected Menu item.
25357
+ /// @group menu
25358
+ $kendo-menu-item-selected-border: null !default;
25359
+ /// The background gradient of selected Menu item.
25360
+ /// @group menu
25361
+ $kendo-menu-item-selected-gradient: null !default;
25311
25362
 
25363
+ /// The background color of the Menu scroll buttons.
25364
+ /// @group menu
25312
25365
  $kendo-menu-scroll-button-bg: $kendo-component-bg !default;
25366
+ /// The text color of the Menu scroll buttons.
25367
+ /// @group menu
25313
25368
  $kendo-menu-scroll-button-text: $kendo-subtle-text !default;
25369
+ /// The border color of the Menu scroll buttons.
25370
+ /// @group menu
25314
25371
  $kendo-menu-scroll-button-border: transparent !default;
25372
+ /// The background gradient of the Menu scroll buttons.
25373
+ /// @group menu
25315
25374
  $kendo-menu-scroll-button-gradient: null !default;
25316
25375
 
25376
+ /// The background color of hovered Menu scroll buttons.
25377
+ /// @group menu
25317
25378
  $kendo-menu-scroll-button-hover-bg: null !default;
25379
+ /// The text color of hovered Menu scroll buttons.
25380
+ /// @group menu
25318
25381
  $kendo-menu-scroll-button-hover-text: $kendo-menu-text !default;
25382
+ /// The border color of hovered Menu scroll buttons.
25383
+ /// @group menu
25319
25384
  $kendo-menu-scroll-button-hover-border: null !default;
25385
+ /// The background gradient of hovered Menu scroll buttons.
25386
+ /// @group menu
25320
25387
  $kendo-menu-scroll-button-hover-gradient: null !default;
25321
25388
 
25322
25389
 
25390
+
25391
+ // Menu Separator
25392
+
25393
+ /// The inline margin of the horizontal Menu separator.
25394
+ /// @group menu
25395
+ $kendo-menu-separator-margin-inline: k-spacing(1);
25396
+ /// The block margin of the horizontal Menu separator.
25397
+ /// @group menu
25398
+ $kendo-menu-separator-margin-block: k-spacing(1);
25399
+ /// The border color of Menu separator.
25400
+ /// @group menu
25401
+ $kendo-menu-separator-border: if($kendo-enable-color-system, k-color(border), $kendo-component-border) !default;
25402
+
25403
+
25323
25404
  // Menu popup
25324
25405
 
25325
- /// Horizontal padding of the menu popup.
25406
+ /// The horizontal padding of the Menu popup.
25326
25407
  /// @group menu
25327
25408
  $kendo-menu-popup-padding-x: null !default;
25328
25409
 
25329
- /// Vertical padding of the menu popup.
25410
+ /// The vertical padding of the Menu popup.
25330
25411
  /// @group menu
25331
25412
  $kendo-menu-popup-padding-y: null !default;
25332
25413
 
25333
- /// Width of the border around the menu popup.
25414
+ /// The width of the border around the Menu popup.
25334
25415
  /// @group menu
25335
25416
  $kendo-menu-popup-border-width: $kendo-popup-border-width !default;
25336
25417
 
25337
- /// Font sizes of the menu popup.
25418
+ /// The font sizes of the Menu popup.
25338
25419
  /// @group menu
25339
- $kendo-menu-popup-font-size: var( --kendo-font-size-lg, inherit ) !default;
25340
- $kendo-menu-popup-sm-font-size: var( --kendo-font-size-lg, inherit ) !default;
25341
- $kendo-menu-popup-md-font-size: var( --kendo-font-size-lg, inherit ) !default;
25420
+ $kendo-menu-popup-font-size: var( --kendo-font-size, inherit ) !default;
25421
+ $kendo-menu-popup-sm-font-size: var( --kendo-font-size, inherit ) !default;
25422
+ $kendo-menu-popup-md-font-size: var( --kendo-font-size, inherit ) !default;
25342
25423
  $kendo-menu-popup-lg-font-size: var( --kendo-font-size-lg, inherit ) !default;
25343
25424
 
25344
- /// Line heights used along with $kendo-font-size.
25425
+ /// The line heights used along with $kendo-font-size.
25345
25426
  /// @group menu
25346
25427
  $kendo-menu-popup-line-height: 1.25 !default;
25347
25428
  $kendo-menu-popup-sm-line-height: 1.25 !default;
25348
25429
  $kendo-menu-popup-md-line-height: 1.25 !default;
25349
25430
  $kendo-menu-popup-lg-line-height: 1.25 !default;
25350
25431
 
25351
- /// The background of the menu popup.
25432
+ /// The background color of the Menu popup.
25352
25433
  /// @group menu
25353
25434
  $kendo-menu-popup-bg: $kendo-popup-bg !default;
25354
- /// The text color of the menu popup.
25435
+ /// The text color of the Menu popup.
25355
25436
  /// @group menu
25356
25437
  $kendo-menu-popup-text: $kendo-popup-text !default;
25357
- /// The border color of the menu popup.
25438
+ /// The border color of the Menu popup.
25358
25439
  /// @group menu
25359
25440
  $kendo-menu-popup-border: $kendo-popup-border !default;
25360
- /// The background gradient of the menu popup.
25441
+ /// The background gradient of the Menu popup.
25361
25442
  /// @group menu
25362
25443
  $kendo-menu-popup-gradient: null !default;
25363
25444
 
25364
25445
 
25365
25446
  // Menu popup item
25366
25447
 
25367
- /// Horizontal padding of the menu item in popup.
25448
+ /// The horizontal padding of the Menu item in popup.
25368
25449
  /// @group menu
25369
25450
  $kendo-menu-popup-item-padding-x: k-spacing(4) !default;
25370
25451
  $kendo-menu-popup-sm-item-padding-x: k-spacing(4) !default;
25371
25452
  $kendo-menu-popup-md-item-padding-x: k-spacing(4) !default;
25372
25453
  $kendo-menu-popup-lg-item-padding-x: k-spacing(4) !default;
25373
25454
 
25374
- /// Vertical padding of the menu item in popup.
25455
+ /// The vertical padding of the Menu item in popup.
25375
25456
  /// @group menu
25376
25457
  $kendo-menu-popup-item-padding-y: k-spacing(2) !default;
25377
25458
  $kendo-menu-popup-sm-item-padding-y: k-spacing(1.5) !default;
25378
25459
  $kendo-menu-popup-md-item-padding-y: k-spacing(2) !default;
25379
25460
  $kendo-menu-popup-lg-item-padding-y: k-spacing(2.5) !default;
25380
25461
 
25381
- /// The end padding of the menu item in popup.
25462
+ /// The end padding of the Menu item in popup.
25382
25463
  /// @group menu
25383
25464
  $kendo-menu-popup-item-padding-end: calc( #{$kendo-menu-popup-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
25384
25465
  $kendo-menu-popup-sm-item-padding-end: calc( #{$kendo-menu-popup-sm-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
25385
25466
  $kendo-menu-popup-md-item-padding-end: calc( #{$kendo-menu-popup-md-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
25386
25467
  $kendo-menu-popup-lg-item-padding-end: calc( #{$kendo-menu-popup-lg-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
25387
25468
 
25388
- /// The start margin of the menu item expand icon.
25469
+ /// The start margin of the Menu item expand icon.
25389
25470
  /// @group menu
25390
25471
  $kendo-menu-popup-sm-item-icon-margin-start: $kendo-menu-popup-sm-item-padding-x !default;
25391
25472
  $kendo-menu-popup-md-item-icon-margin-start: $kendo-menu-popup-md-item-padding-x !default;
25392
25473
  $kendo-menu-popup-lg-item-icon-margin-start: $kendo-menu-popup-lg-item-padding-x !default;
25393
25474
 
25394
- /// The end margin of the menu item expand icon.
25475
+ /// The end margin of the Menu item expand icon.
25395
25476
  /// @group menu
25396
25477
  $kendo-menu-popup-sm-item-icon-margin-end: calc( -1 * (#{$kendo-menu-popup-sm-item-padding-end} - #{k-math-div( $kendo-menu-popup-sm-item-padding-x, 2 )}) ) !default;
25397
25478
  $kendo-menu-popup-md-item-icon-margin-end: calc( -1 * (#{$kendo-menu-popup-md-item-padding-end} - #{k-math-div( $kendo-menu-popup-md-item-padding-x, 2 )}) ) !default;
25398
25479
  $kendo-menu-popup-lg-item-icon-margin-end: calc( -1 * (#{$kendo-menu-popup-lg-item-padding-end} - #{k-math-div( $kendo-menu-popup-lg-item-padding-x, 2 )}) ) !default;
25399
25480
 
25400
- /// The spacing between the menu items in popup.
25481
+ /// The spacing between the Menu items in popup.
25401
25482
  /// @group menu
25402
25483
  $kendo-menu-popup-item-spacing: k-spacing(0) !default;
25403
25484
 
25404
- /// The background of the menu item in popup.
25485
+ /// The background color of the Menu item in popup.
25405
25486
  /// @group menu
25406
25487
  $kendo-menu-popup-item-bg: null !default;
25407
- /// The text color of the menu item in popup.
25488
+ /// The text color of the Menu item in popup.
25408
25489
  /// @group menu
25409
25490
  $kendo-menu-popup-item-text: null !default;
25410
- /// The border color of the menu item in popup.
25491
+ /// The border color of the Menu item in popup.
25411
25492
  /// @group menu
25412
25493
  $kendo-menu-popup-item-border: null !default;
25413
- /// The background gradient of the menu item in popup.
25494
+ /// The background gradient of the Menu item in popup.
25414
25495
  /// @group menu
25415
25496
  $kendo-menu-popup-item-gradient: null !default;
25416
25497
 
25417
- /// The background of hovered menu item in popup.
25498
+ /// The background color of hovered Menu item in popup.
25418
25499
  /// @group menu
25419
25500
  $kendo-menu-popup-item-hover-bg: $kendo-list-item-hover-bg !default;
25420
- /// The text color of hovered menu item in popup.
25501
+ /// The text color of hovered Menu item in popup.
25421
25502
  /// @group menu
25422
25503
  $kendo-menu-popup-item-hover-text: $kendo-list-item-hover-text !default;
25423
- /// The border color of hovered menu item in popup.
25504
+ /// The border color of hovered Menu item in popup.
25424
25505
  /// @group menu
25425
25506
  $kendo-menu-popup-item-hover-border: null !default;
25426
- /// The background gradient of hovered menu item in popup.
25507
+ /// The background gradient of hovered Menu item in popup.
25427
25508
  /// @group menu
25428
25509
  $kendo-menu-popup-item-hover-gradient: null !default;
25429
25510
 
25430
- /// The background of expanded menu item in popup.
25511
+ /// The background color of active Menu item in popup.
25431
25512
  /// @group menu
25432
- $kendo-menu-popup-item-expanded-bg: $kendo-list-item-selected-bg !default;
25433
- /// The text color of expanded menu item in popup.
25513
+ $kendo-menu-popup-item-active-bg: $kendo-list-item-selected-bg !default;
25514
+ /// The text color of active Menu item in popup.
25434
25515
  /// @group menu
25435
- $kendo-menu-popup-item-expanded-text: $kendo-list-item-selected-text !default;
25436
- /// The border color of expanded menu item in popup.
25516
+ $kendo-menu-popup-item-active-text: $kendo-list-item-selected-text !default;
25517
+ /// The border color of active Menu item in popup.
25437
25518
  /// @group menu
25438
- $kendo-menu-popup-item-expanded-border: null !default;
25439
- /// The background gradient of expanded menu item in popup.
25519
+ $kendo-menu-popup-item-active-border: null !default;
25520
+ /// The background gradient of active Menu item in popup.
25440
25521
  /// @group menu
25441
- $kendo-menu-popup-item-expanded-gradient: null !default;
25522
+ $kendo-menu-popup-item-active-gradient: null !default;
25442
25523
 
25443
- /// The base shadow of focused menu item in popup.
25524
+ /// The base shadow of focused Menu item in popup.
25444
25525
  /// @group menu
25445
25526
  $kendo-menu-popup-item-focus-shadow: null !default;
25446
25527
 
@@ -25474,7 +25555,6 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25474
25555
  }
25475
25556
  .k-menu { @extend .k-menu-bar !optional; }
25476
25557
 
25477
-
25478
25558
  // Menu item
25479
25559
  .k-menu-item {
25480
25560
  border-width: 0;
@@ -25484,6 +25564,10 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25484
25564
  flex: none;
25485
25565
  position: relative;
25486
25566
  user-select: none;
25567
+
25568
+ &.k-selected {
25569
+ font-weight: $kendo-menu-item-selected-font-weight;
25570
+ }
25487
25571
  }
25488
25572
  .k-menu-item-content {
25489
25573
  display: block;
@@ -25543,8 +25627,8 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25543
25627
  }
25544
25628
 
25545
25629
  > .k-separator {
25546
- margin-block: 0;
25547
- margin-inline: $kendo-menu-separator-spacing;
25630
+ margin-block: $kendo-menu-separator-margin-block;
25631
+ margin-inline: $kendo-menu-separator-margin-inline;
25548
25632
  width: 0;
25549
25633
  height: auto;
25550
25634
  border-width: 0 0 0 1px;
@@ -25556,6 +25640,7 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25556
25640
  // Orientation -- vertical
25557
25641
  .k-menu-vertical {
25558
25642
  flex-direction: column;
25643
+ width: 100%;
25559
25644
 
25560
25645
  > .k-menu-item + .k-menu-item {
25561
25646
  margin-top: $kendo-menu-item-spacing;
@@ -25573,12 +25658,11 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25573
25658
  }
25574
25659
 
25575
25660
  > .k-separator {
25576
- margin-block: $kendo-menu-separator-spacing;
25661
+ margin-block: $kendo-menu-separator-margin-block;
25577
25662
  margin-inline: 0;
25578
25663
  height: 0;
25579
25664
  border-width: 1px 0 0;
25580
25665
  border-style: solid;
25581
- border-color: $kendo-component-border;
25582
25666
  display: block;
25583
25667
  }
25584
25668
  }
@@ -25599,6 +25683,10 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25599
25683
  *::after {
25600
25684
  box-sizing: border-box;
25601
25685
  }
25686
+
25687
+ .k-menu-item {
25688
+ font-weight: initial;
25689
+ }
25602
25690
  }
25603
25691
 
25604
25692
 
@@ -25616,12 +25704,11 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25616
25704
  }
25617
25705
 
25618
25706
  .k-separator {
25619
- margin-block: $kendo-menu-separator-spacing;
25707
+ margin-block: $kendo-menu-separator-margin-inline;
25620
25708
  margin-inline: 0;
25621
25709
  height: 0;
25622
25710
  border-width: 1px 0 0;
25623
25711
  border-style: solid;
25624
- border-color: $kendo-component-border;
25625
25712
  display: block;
25626
25713
  }
25627
25714
  }
@@ -25738,50 +25825,20 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25738
25825
  margin: 0;
25739
25826
  padding: 0;
25740
25827
  border: 0;
25741
- position: relative;
25828
+ display: flex;
25829
+ align-items: center;
25742
25830
 
25743
25831
  .k-menu {
25744
25832
  overflow: hidden;
25745
25833
  flex-wrap: nowrap;
25746
25834
  }
25835
+ }
25747
25836
 
25748
- .k-menu-scroll-button {
25749
- @include border-radius( 0 );
25750
- padding: 0;
25751
- border-width: 0;
25752
- border-color: inherit;
25753
- color: inherit;
25754
- background: inherit;
25755
- position: absolute;
25837
+ .k-menu-scroll-wrapper-vertical {
25838
+ flex-direction: column;
25756
25839
 
25757
- &.k-scroll-left {
25758
- top: 0;
25759
- inset-inline-start: 0;
25760
- height: 100%;
25761
- width: 16px;
25762
- border-right-width: 1px;
25763
- }
25764
- &.k-scroll-right {
25765
- top: 0;
25766
- inset-inline-end: 0;
25767
- height: 100%;
25768
- width: 16px;
25769
- border-left-width: 1px;
25770
- }
25771
- &.k-scroll-up {
25772
- top: 0;
25773
- inset-inline-start: 0;
25774
- width: 100%;
25775
- height: 16px;
25776
- border-bottom-width: 1px;
25777
- }
25778
- &.k-scroll-down {
25779
- bottom: 0;
25780
- inset-inline-start: 0;
25781
- width: 100%;
25782
- height: 16px;
25783
- border-top-width: 1px;
25784
- }
25840
+ > .k-menu-scroll-button {
25841
+ width: 100%;
25785
25842
  }
25786
25843
  }
25787
25844
 
@@ -25860,10 +25917,10 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25860
25917
  &:active,
25861
25918
  &.k-active {
25862
25919
  @include fill(
25863
- $kendo-menu-item-expanded-text,
25864
- $kendo-menu-item-expanded-bg,
25865
- $kendo-menu-item-expanded-border,
25866
- $kendo-menu-item-expanded-gradient
25920
+ $kendo-menu-item-active-text,
25921
+ $kendo-menu-item-active-bg,
25922
+ $kendo-menu-item-active-border,
25923
+ $kendo-menu-item-active-gradient
25867
25924
  );
25868
25925
  }
25869
25926
 
@@ -25871,6 +25928,21 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25871
25928
  &.k-focus {
25872
25929
  @include focus-indicator( $kendo-menu-item-focus-shadow, true );
25873
25930
  }
25931
+
25932
+ &.k-selected {
25933
+ @include fill(
25934
+ $kendo-menu-item-selected-text,
25935
+ $kendo-menu-item-selected-bg,
25936
+ $kendo-menu-item-selected-border,
25937
+ $kendo-menu-item-selected-gradient
25938
+ );
25939
+ }
25940
+ }
25941
+
25942
+ > .k-separator {
25943
+ @include fill(
25944
+ $border: $kendo-menu-separator-border
25945
+ );
25874
25946
  }
25875
25947
  }
25876
25948
 
@@ -25905,10 +25977,10 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25905
25977
  &.k-active,
25906
25978
  &.k-selected {
25907
25979
  @include fill(
25908
- $kendo-menu-popup-item-expanded-text,
25909
- $kendo-menu-popup-item-expanded-bg,
25910
- $kendo-menu-popup-item-expanded-border,
25911
- $kendo-menu-popup-item-expanded-gradient
25980
+ $kendo-menu-popup-item-active-text,
25981
+ $kendo-menu-popup-item-active-bg,
25982
+ $kendo-menu-popup-item-active-border,
25983
+ $kendo-menu-popup-item-active-gradient
25912
25984
  );
25913
25985
  }
25914
25986
  }
@@ -25919,6 +25991,12 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25919
25991
  @include focus-indicator( $kendo-menu-popup-item-focus-shadow, true );
25920
25992
  }
25921
25993
  }
25994
+
25995
+ > .k-separator {
25996
+ @include fill(
25997
+ $border: $kendo-menu-separator-border
25998
+ );
25999
+ }
25922
26000
  }
25923
26001
 
25924
26002
 
@@ -26547,8 +26625,8 @@ $kendo-toolbar-sizes: (
26547
26625
 
26548
26626
  // Selected
26549
26627
  &.k-selected {
26550
- color: $kendo-menu-popup-item-expanded-text;
26551
- background: $kendo-menu-popup-item-expanded-bg;
26628
+ color: $kendo-menu-popup-item-active-text;
26629
+ background: $kendo-menu-popup-item-active-bg;
26552
26630
  }
26553
26631
 
26554
26632
  // Disabled state
@@ -46008,6 +46086,9 @@ $kendo-tabstrip-item-selected-border: null !default;
46008
46086
  /// The gradient of the selected TabStrip items.
46009
46087
  /// @group tabstrip
46010
46088
  $kendo-tabstrip-item-selected-gradient: null !default;
46089
+ /// The font weight of the selected TabStrip items.
46090
+ /// @group tabstrip
46091
+ $kendo-tabstrip-item-selected-font-weight: null !default;
46011
46092
 
46012
46093
  /// The shadow of the focused TabStrip items.
46013
46094
  /// @group tabstrip
@@ -46142,6 +46223,20 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
46142
46223
  align-items: stretch;
46143
46224
  justify-items: stretch;
46144
46225
  outline: 0;
46226
+
46227
+ // Active state
46228
+ &:active,
46229
+ &.k-active,
46230
+ &.k-selected {
46231
+ font-weight: $kendo-tabstrip-item-selected-font-weight;
46232
+ }
46233
+ }
46234
+
46235
+ .k-item-actions {
46236
+ margin: 0;
46237
+ padding: 0;
46238
+ display: flex;
46239
+ flex-direction: row;
46145
46240
  }
46146
46241
 
46147
46242
  .k-tab-on-top {
@@ -46159,6 +46254,7 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
46159
46254
  flex-direction: row;
46160
46255
  align-content: center;
46161
46256
  align-items: center;
46257
+ gap: $kendo-icon-spacing;
46162
46258
  }
46163
46259
 
46164
46260
 
@@ -46231,21 +46327,6 @@ $kendo-tabstrip-content-focus-border: $kendo-component-text !default;
46231
46327
  white-space: nowrap;
46232
46328
  overflow: hidden;
46233
46329
  }
46234
-
46235
- > .k-button {
46236
- padding-block: k-spacing(1);
46237
- padding-inline: k-spacing(1);
46238
- width: auto;
46239
- height: auto;
46240
- flex: none;
46241
- align-self: stretch;
46242
- aspect-ratio: auto;
46243
-
46244
- .k-button-icon {
46245
- min-width: auto;
46246
- min-height: auto;
46247
- }
46248
- }
46249
46330
  }
46250
46331
  }
46251
46332