@progress/kendo-theme-material 9.1.0-dev.1 → 9.1.0-dev.3

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 (37) hide show
  1. package/dist/all.css +1 -1
  2. package/dist/all.scss +189 -96
  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 +27960 -25746
  19. package/dist/meta/sassdoc-raw-data.json +1168 -143
  20. package/dist/meta/variables.json +42 -22
  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/menu/_variables.scss +138 -42
package/dist/all.scss CHANGED
@@ -25258,174 +25258,270 @@ $_kendo-module-meta: (
25258
25258
  // Component
25259
25259
  // #region @import "./_variables.scss"; -> scss/menu/_variables.scss
25260
25260
  // Menu
25261
- $kendo-menu-padding-x: k-spacing(0) !default;
25262
- $kendo-menu-padding-y: k-spacing(0) !default;
25261
+
25262
+ /// The width of the border around the Menu.
25263
+ /// @group menu
25263
25264
  $kendo-menu-border-width: 0px !default;
25265
+ /// The font family of the Menu.
25266
+ /// @group menu
25264
25267
  $kendo-menu-font-family: var( --kendo-font-family, inherit ) !default;
25268
+ /// The font size of the Menu.
25269
+ /// @group menu
25265
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
25266
25273
  $kendo-menu-line-height: var( --kendo-line-height, normal ) !default;
25267
25274
 
25275
+ /// The background color of the Menu.
25276
+ /// @group menu
25268
25277
  $kendo-menu-bg: transparent !default;
25278
+ /// The text color of the Menu.
25279
+ /// @group menu
25269
25280
  $kendo-menu-text: $kendo-component-text !default;
25281
+ /// The border color of the Menu.
25282
+ /// @group menu
25270
25283
  $kendo-menu-border: null !default;
25284
+ /// The background gradient of the Menu.
25285
+ /// @group menu
25271
25286
  $kendo-menu-gradient: null !default;
25272
25287
 
25288
+ // Menu item
25289
+
25290
+ /// The horizontal padding of the Menu item.
25291
+ /// @group menu
25273
25292
  $kendo-menu-item-padding-x: k-spacing(4) !default;
25293
+ /// The vertical padding of the Menu item.
25294
+ /// @group menu
25274
25295
  $kendo-menu-item-padding-y: k-spacing(1) !default;
25296
+ /// The spacing between the Menu items.
25297
+ /// @group menu
25275
25298
  $kendo-menu-item-spacing: k-spacing(0.5) !default;
25299
+ /// The spacing between the Menu item text and icons.
25300
+ /// @group menu
25276
25301
  $kendo-menu-item-icon-spacing: $kendo-icon-spacing !default;
25277
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
25278
25309
  $kendo-menu-item-bg: rgba( $kendo-menu-text, 0 ) !default;
25310
+ /// The text color of the Menu item.
25311
+ /// @group menu
25279
25312
  $kendo-menu-item-text: null !default;
25313
+ /// The border color of the Menu item.
25314
+ /// @group menu
25280
25315
  $kendo-menu-item-border: null !default;
25316
+ /// The background gradient of the Menu item.
25317
+ /// @group menu
25281
25318
  $kendo-menu-item-gradient: null !default;
25282
25319
 
25320
+ /// The background color of hovered Menu item.
25321
+ /// @group menu
25283
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
25284
25325
  $kendo-menu-item-hover-text: null !default;
25326
+ /// The border color of hovered Menu item.
25327
+ /// @group menu
25285
25328
  $kendo-menu-item-hover-border: null !default;
25329
+ /// The background gradient of hovered Menu item.
25330
+ /// @group menu
25286
25331
  $kendo-menu-item-hover-gradient: null !default;
25287
25332
 
25288
- $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;
25289
- $kendo-menu-item-expanded-text: null !default;
25290
- $kendo-menu-item-expanded-border: null !default;
25291
- $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;
25292
25345
 
25346
+ /// The base shadow of focused Menu item.
25347
+ /// @group menu
25293
25348
  $kendo-menu-item-focus-shadow: null !default;
25294
25349
 
25295
- $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;
25296
25362
 
25363
+ /// The background color of the Menu scroll buttons.
25364
+ /// @group menu
25297
25365
  $kendo-menu-scroll-button-bg: $kendo-component-bg !default;
25366
+ /// The text color of the Menu scroll buttons.
25367
+ /// @group menu
25298
25368
  $kendo-menu-scroll-button-text: $kendo-subtle-text !default;
25369
+ /// The border color of the Menu scroll buttons.
25370
+ /// @group menu
25299
25371
  $kendo-menu-scroll-button-border: transparent !default;
25372
+ /// The background gradient of the Menu scroll buttons.
25373
+ /// @group menu
25300
25374
  $kendo-menu-scroll-button-gradient: null !default;
25301
25375
 
25376
+ /// The background color of hovered Menu scroll buttons.
25377
+ /// @group menu
25302
25378
  $kendo-menu-scroll-button-hover-bg: null !default;
25379
+ /// The text color of hovered Menu scroll buttons.
25380
+ /// @group menu
25303
25381
  $kendo-menu-scroll-button-hover-text: $kendo-menu-text !default;
25382
+ /// The border color of hovered Menu scroll buttons.
25383
+ /// @group menu
25304
25384
  $kendo-menu-scroll-button-hover-border: null !default;
25385
+ /// The background gradient of hovered Menu scroll buttons.
25386
+ /// @group menu
25305
25387
  $kendo-menu-scroll-button-hover-gradient: null !default;
25306
25388
 
25307
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
+
25308
25404
  // Menu popup
25309
25405
 
25310
- /// Horizontal padding of the menu popup.
25406
+ /// The horizontal padding of the Menu popup.
25311
25407
  /// @group menu
25312
25408
  $kendo-menu-popup-padding-x: null !default;
25313
25409
 
25314
- /// Vertical padding of the menu popup.
25410
+ /// The vertical padding of the Menu popup.
25315
25411
  /// @group menu
25316
25412
  $kendo-menu-popup-padding-y: null !default;
25317
25413
 
25318
- /// Width of the border around the menu popup.
25414
+ /// The width of the border around the Menu popup.
25319
25415
  /// @group menu
25320
25416
  $kendo-menu-popup-border-width: $kendo-popup-border-width !default;
25321
25417
 
25322
- /// Font sizes of the menu popup.
25418
+ /// The font sizes of the Menu popup.
25323
25419
  /// @group menu
25324
- $kendo-menu-popup-font-size: var( --kendo-font-size-lg, inherit ) !default;
25325
- $kendo-menu-popup-sm-font-size: var( --kendo-font-size-lg, inherit ) !default;
25326
- $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;
25327
25423
  $kendo-menu-popup-lg-font-size: var( --kendo-font-size-lg, inherit ) !default;
25328
25424
 
25329
- /// Line heights used along with $kendo-font-size.
25425
+ /// The line heights used along with $kendo-font-size.
25330
25426
  /// @group menu
25331
25427
  $kendo-menu-popup-line-height: 1.25 !default;
25332
25428
  $kendo-menu-popup-sm-line-height: 1.25 !default;
25333
25429
  $kendo-menu-popup-md-line-height: 1.25 !default;
25334
25430
  $kendo-menu-popup-lg-line-height: 1.25 !default;
25335
25431
 
25336
- /// The background of the menu popup.
25432
+ /// The background color of the Menu popup.
25337
25433
  /// @group menu
25338
25434
  $kendo-menu-popup-bg: $kendo-popup-bg !default;
25339
- /// The text color of the menu popup.
25435
+ /// The text color of the Menu popup.
25340
25436
  /// @group menu
25341
25437
  $kendo-menu-popup-text: $kendo-popup-text !default;
25342
- /// The border color of the menu popup.
25438
+ /// The border color of the Menu popup.
25343
25439
  /// @group menu
25344
25440
  $kendo-menu-popup-border: $kendo-popup-border !default;
25345
- /// The background gradient of the menu popup.
25441
+ /// The background gradient of the Menu popup.
25346
25442
  /// @group menu
25347
25443
  $kendo-menu-popup-gradient: null !default;
25348
25444
 
25349
25445
 
25350
25446
  // Menu popup item
25351
25447
 
25352
- /// Horizontal padding of the menu item in popup.
25448
+ /// The horizontal padding of the Menu item in popup.
25353
25449
  /// @group menu
25354
25450
  $kendo-menu-popup-item-padding-x: k-spacing(4) !default;
25355
25451
  $kendo-menu-popup-sm-item-padding-x: k-spacing(4) !default;
25356
25452
  $kendo-menu-popup-md-item-padding-x: k-spacing(4) !default;
25357
25453
  $kendo-menu-popup-lg-item-padding-x: k-spacing(4) !default;
25358
25454
 
25359
- /// Vertical padding of the menu item in popup.
25455
+ /// The vertical padding of the Menu item in popup.
25360
25456
  /// @group menu
25361
25457
  $kendo-menu-popup-item-padding-y: k-spacing(2) !default;
25362
25458
  $kendo-menu-popup-sm-item-padding-y: k-spacing(1.5) !default;
25363
25459
  $kendo-menu-popup-md-item-padding-y: k-spacing(2) !default;
25364
25460
  $kendo-menu-popup-lg-item-padding-y: k-spacing(2.5) !default;
25365
25461
 
25366
- /// The end padding of the menu item in popup.
25462
+ /// The end padding of the Menu item in popup.
25367
25463
  /// @group menu
25368
25464
  $kendo-menu-popup-item-padding-end: calc( #{$kendo-menu-popup-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
25369
25465
  $kendo-menu-popup-sm-item-padding-end: calc( #{$kendo-menu-popup-sm-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
25370
25466
  $kendo-menu-popup-md-item-padding-end: calc( #{$kendo-menu-popup-md-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
25371
25467
  $kendo-menu-popup-lg-item-padding-end: calc( #{$kendo-menu-popup-lg-item-padding-x} * 2 + #{$kendo-icon-size} ) !default;
25372
25468
 
25373
- /// The start margin of the menu item expand icon.
25469
+ /// The start margin of the Menu item expand icon.
25374
25470
  /// @group menu
25375
25471
  $kendo-menu-popup-sm-item-icon-margin-start: $kendo-menu-popup-sm-item-padding-x !default;
25376
25472
  $kendo-menu-popup-md-item-icon-margin-start: $kendo-menu-popup-md-item-padding-x !default;
25377
25473
  $kendo-menu-popup-lg-item-icon-margin-start: $kendo-menu-popup-lg-item-padding-x !default;
25378
25474
 
25379
- /// The end margin of the menu item expand icon.
25475
+ /// The end margin of the Menu item expand icon.
25380
25476
  /// @group menu
25381
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;
25382
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;
25383
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;
25384
25480
 
25385
- /// The spacing between the menu items in popup.
25481
+ /// The spacing between the Menu items in popup.
25386
25482
  /// @group menu
25387
25483
  $kendo-menu-popup-item-spacing: k-spacing(0) !default;
25388
25484
 
25389
- /// The background of the menu item in popup.
25485
+ /// The background color of the Menu item in popup.
25390
25486
  /// @group menu
25391
25487
  $kendo-menu-popup-item-bg: null !default;
25392
- /// The text color of the menu item in popup.
25488
+ /// The text color of the Menu item in popup.
25393
25489
  /// @group menu
25394
25490
  $kendo-menu-popup-item-text: null !default;
25395
- /// The border color of the menu item in popup.
25491
+ /// The border color of the Menu item in popup.
25396
25492
  /// @group menu
25397
25493
  $kendo-menu-popup-item-border: null !default;
25398
- /// The background gradient of the menu item in popup.
25494
+ /// The background gradient of the Menu item in popup.
25399
25495
  /// @group menu
25400
25496
  $kendo-menu-popup-item-gradient: null !default;
25401
25497
 
25402
- /// The background of hovered menu item in popup.
25498
+ /// The background color of hovered Menu item in popup.
25403
25499
  /// @group menu
25404
25500
  $kendo-menu-popup-item-hover-bg: $kendo-list-item-hover-bg !default;
25405
- /// The text color of hovered menu item in popup.
25501
+ /// The text color of hovered Menu item in popup.
25406
25502
  /// @group menu
25407
25503
  $kendo-menu-popup-item-hover-text: $kendo-list-item-hover-text !default;
25408
- /// The border color of hovered menu item in popup.
25504
+ /// The border color of hovered Menu item in popup.
25409
25505
  /// @group menu
25410
25506
  $kendo-menu-popup-item-hover-border: null !default;
25411
- /// The background gradient of hovered menu item in popup.
25507
+ /// The background gradient of hovered Menu item in popup.
25412
25508
  /// @group menu
25413
25509
  $kendo-menu-popup-item-hover-gradient: null !default;
25414
25510
 
25415
- /// The background of expanded menu item in popup.
25511
+ /// The background color of active Menu item in popup.
25416
25512
  /// @group menu
25417
- $kendo-menu-popup-item-expanded-bg: $kendo-list-item-selected-bg !default;
25418
- /// 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.
25419
25515
  /// @group menu
25420
- $kendo-menu-popup-item-expanded-text: $kendo-list-item-selected-text !default;
25421
- /// 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.
25422
25518
  /// @group menu
25423
- $kendo-menu-popup-item-expanded-border: null !default;
25424
- /// 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.
25425
25521
  /// @group menu
25426
- $kendo-menu-popup-item-expanded-gradient: null !default;
25522
+ $kendo-menu-popup-item-active-gradient: null !default;
25427
25523
 
25428
- /// The base shadow of focused menu item in popup.
25524
+ /// The base shadow of focused Menu item in popup.
25429
25525
  /// @group menu
25430
25526
  $kendo-menu-popup-item-focus-shadow: null !default;
25431
25527
 
@@ -25459,7 +25555,6 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25459
25555
  }
25460
25556
  .k-menu { @extend .k-menu-bar !optional; }
25461
25557
 
25462
-
25463
25558
  // Menu item
25464
25559
  .k-menu-item {
25465
25560
  border-width: 0;
@@ -25469,6 +25564,10 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25469
25564
  flex: none;
25470
25565
  position: relative;
25471
25566
  user-select: none;
25567
+
25568
+ &.k-selected {
25569
+ font-weight: $kendo-menu-item-selected-font-weight;
25570
+ }
25472
25571
  }
25473
25572
  .k-menu-item-content {
25474
25573
  display: block;
@@ -25528,8 +25627,8 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25528
25627
  }
25529
25628
 
25530
25629
  > .k-separator {
25531
- margin-block: 0;
25532
- margin-inline: $kendo-menu-separator-spacing;
25630
+ margin-block: $kendo-menu-separator-margin-block;
25631
+ margin-inline: $kendo-menu-separator-margin-inline;
25533
25632
  width: 0;
25534
25633
  height: auto;
25535
25634
  border-width: 0 0 0 1px;
@@ -25541,6 +25640,7 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25541
25640
  // Orientation -- vertical
25542
25641
  .k-menu-vertical {
25543
25642
  flex-direction: column;
25643
+ width: 100%;
25544
25644
 
25545
25645
  > .k-menu-item + .k-menu-item {
25546
25646
  margin-top: $kendo-menu-item-spacing;
@@ -25558,12 +25658,11 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25558
25658
  }
25559
25659
 
25560
25660
  > .k-separator {
25561
- margin-block: $kendo-menu-separator-spacing;
25661
+ margin-block: $kendo-menu-separator-margin-block;
25562
25662
  margin-inline: 0;
25563
25663
  height: 0;
25564
25664
  border-width: 1px 0 0;
25565
25665
  border-style: solid;
25566
- border-color: $kendo-component-border;
25567
25666
  display: block;
25568
25667
  }
25569
25668
  }
@@ -25584,6 +25683,10 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25584
25683
  *::after {
25585
25684
  box-sizing: border-box;
25586
25685
  }
25686
+
25687
+ .k-menu-item {
25688
+ font-weight: initial;
25689
+ }
25587
25690
  }
25588
25691
 
25589
25692
 
@@ -25601,12 +25704,11 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25601
25704
  }
25602
25705
 
25603
25706
  .k-separator {
25604
- margin-block: $kendo-menu-separator-spacing;
25707
+ margin-block: $kendo-menu-separator-margin-inline;
25605
25708
  margin-inline: 0;
25606
25709
  height: 0;
25607
25710
  border-width: 1px 0 0;
25608
25711
  border-style: solid;
25609
- border-color: $kendo-component-border;
25610
25712
  display: block;
25611
25713
  }
25612
25714
  }
@@ -25723,50 +25825,20 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25723
25825
  margin: 0;
25724
25826
  padding: 0;
25725
25827
  border: 0;
25726
- position: relative;
25828
+ display: flex;
25829
+ align-items: center;
25727
25830
 
25728
25831
  .k-menu {
25729
25832
  overflow: hidden;
25730
25833
  flex-wrap: nowrap;
25731
25834
  }
25835
+ }
25732
25836
 
25733
- .k-menu-scroll-button {
25734
- @include border-radius( 0 );
25735
- padding: 0;
25736
- border-width: 0;
25737
- border-color: inherit;
25738
- color: inherit;
25739
- background: inherit;
25740
- position: absolute;
25837
+ .k-menu-scroll-wrapper-vertical {
25838
+ flex-direction: column;
25741
25839
 
25742
- &.k-scroll-left {
25743
- top: 0;
25744
- inset-inline-start: 0;
25745
- height: 100%;
25746
- width: 16px;
25747
- border-right-width: 1px;
25748
- }
25749
- &.k-scroll-right {
25750
- top: 0;
25751
- inset-inline-end: 0;
25752
- height: 100%;
25753
- width: 16px;
25754
- border-left-width: 1px;
25755
- }
25756
- &.k-scroll-up {
25757
- top: 0;
25758
- inset-inline-start: 0;
25759
- width: 100%;
25760
- height: 16px;
25761
- border-bottom-width: 1px;
25762
- }
25763
- &.k-scroll-down {
25764
- bottom: 0;
25765
- inset-inline-start: 0;
25766
- width: 100%;
25767
- height: 16px;
25768
- border-top-width: 1px;
25769
- }
25840
+ > .k-menu-scroll-button {
25841
+ width: 100%;
25770
25842
  }
25771
25843
  }
25772
25844
 
@@ -25845,10 +25917,10 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25845
25917
  &:active,
25846
25918
  &.k-active {
25847
25919
  @include fill(
25848
- $kendo-menu-item-expanded-text,
25849
- $kendo-menu-item-expanded-bg,
25850
- $kendo-menu-item-expanded-border,
25851
- $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
25852
25924
  );
25853
25925
  }
25854
25926
 
@@ -25856,6 +25928,21 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25856
25928
  &.k-focus {
25857
25929
  @include focus-indicator( $kendo-menu-item-focus-shadow, true );
25858
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
+ );
25859
25946
  }
25860
25947
  }
25861
25948
 
@@ -25890,10 +25977,10 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25890
25977
  &.k-active,
25891
25978
  &.k-selected {
25892
25979
  @include fill(
25893
- $kendo-menu-popup-item-expanded-text,
25894
- $kendo-menu-popup-item-expanded-bg,
25895
- $kendo-menu-popup-item-expanded-border,
25896
- $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
25897
25984
  );
25898
25985
  }
25899
25986
  }
@@ -25904,6 +25991,12 @@ $kendo-menu-popup-item-focus-shadow: null !default;
25904
25991
  @include focus-indicator( $kendo-menu-popup-item-focus-shadow, true );
25905
25992
  }
25906
25993
  }
25994
+
25995
+ > .k-separator {
25996
+ @include fill(
25997
+ $border: $kendo-menu-separator-border
25998
+ );
25999
+ }
25907
26000
  }
25908
26001
 
25909
26002
 
@@ -26532,8 +26625,8 @@ $kendo-toolbar-sizes: (
26532
26625
 
26533
26626
  // Selected
26534
26627
  &.k-selected {
26535
- color: $kendo-menu-popup-item-expanded-text;
26536
- background: $kendo-menu-popup-item-expanded-bg;
26628
+ color: $kendo-menu-popup-item-active-text;
26629
+ background: $kendo-menu-popup-item-active-bg;
26537
26630
  }
26538
26631
 
26539
26632
  // Disabled state