@syncfusion/ej2-navigations 33.1.46 → 33.1.49

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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 33.1.46
3
+ * version : 33.1.49
4
4
  * Copyright Syncfusion Inc. 2001 - 2025. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syncfusion/ej2-navigations",
3
- "version": "33.1.46",
3
+ "version": "33.1.49",
4
4
  "description": "A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another",
5
5
  "author": "Syncfusion Inc.",
6
6
  "license": "SEE LICENSE IN license",
@@ -9,10 +9,10 @@
9
9
  "es2015": "./dist/es6/ej2-navigations.es5.js",
10
10
  "dependencies": {
11
11
  "@syncfusion/ej2-base": "~33.1.45",
12
- "@syncfusion/ej2-buttons": "~33.1.44",
12
+ "@syncfusion/ej2-buttons": "~33.1.49",
13
13
  "@syncfusion/ej2-data": "~33.1.45",
14
- "@syncfusion/ej2-inputs": "~33.1.44",
15
- "@syncfusion/ej2-lists": "~33.1.44",
14
+ "@syncfusion/ej2-inputs": "~33.1.49",
15
+ "@syncfusion/ej2-lists": "~33.1.47",
16
16
  "@syncfusion/ej2-popups": "~33.1.44"
17
17
  },
18
18
  "devDependencies": {},
@@ -257,6 +257,11 @@ var Accordion = /** @class */ (function (_super) {
257
257
  if (!isNOU(this.keyModule)) {
258
258
  this.keyModule.destroy();
259
259
  }
260
+ var headerEles = [].slice.call(this.element.querySelectorAll('.' + CLS_HEADER));
261
+ for (var _i = 0, headerEles_1 = headerEles; _i < headerEles_1.length; _i++) {
262
+ var hdr = headerEles_1[_i];
263
+ EventHandler.clearEvents(hdr);
264
+ }
260
265
  };
261
266
  Accordion.prototype.wireEvents = function () {
262
267
  EventHandler.add(this.element, 'click', this.clickHandler, this);
@@ -1178,6 +1183,10 @@ var Accordion = /** @class */ (function (_super) {
1178
1183
  this.clearTemplate();
1179
1184
  }
1180
1185
  [].slice.call(this.element.querySelectorAll('.' + CLS_ITEM)).forEach(function (el) {
1186
+ var hdr = select('.' + CLS_HEADER, el);
1187
+ if (hdr) {
1188
+ EventHandler.clearEvents(hdr);
1189
+ }
1181
1190
  detach(el);
1182
1191
  });
1183
1192
  };
@@ -121,6 +121,7 @@ export declare class Breadcrumb extends Component<HTMLElement> implements INotif
121
121
  private _maxItems;
122
122
  private popupObj;
123
123
  private popupUl;
124
+ private resizeHandler;
124
125
  private delegateClickHanlder;
125
126
  private isPopupCreated;
126
127
  /**
@@ -620,7 +620,7 @@ var Breadcrumb = /** @class */ (function (_super) {
620
620
  detach(this.popupObj.element);
621
621
  }
622
622
  };
623
- Breadcrumb.prototype.resize = function () {
623
+ Breadcrumb.prototype.resize = function (e) {
624
624
  this._maxItems = this.maxItems;
625
625
  this.initPvtProps();
626
626
  this.reRenderItems();
@@ -711,7 +711,8 @@ var Breadcrumb = /** @class */ (function (_super) {
711
711
  this.delegateClickHanlder = this.documentClickHandler.bind(this);
712
712
  EventHandler.add(document, 'click', this.delegateClickHanlder, this);
713
713
  EventHandler.add(this.element, 'click', this.clickHandler, this);
714
- window.addEventListener('resize', this.resize.bind(this));
714
+ this.resizeHandler = this.resize.bind(this);
715
+ window.addEventListener('resize', this.resizeHandler);
715
716
  };
716
717
  Breadcrumb.prototype.popupWireEvents = function () {
717
718
  EventHandler.add(this.popupObj.element, 'click', this.clickHandler, this);
@@ -720,7 +721,8 @@ var Breadcrumb = /** @class */ (function (_super) {
720
721
  Breadcrumb.prototype.unWireEvents = function () {
721
722
  EventHandler.remove(document, 'click', this.delegateClickHanlder);
722
723
  EventHandler.remove(this.element, 'click', this.clickHandler);
723
- window.removeEventListener('resize', this.resize.bind(this));
724
+ window.removeEventListener('resize', this.resizeHandler);
725
+ this.resizeHandler = null;
724
726
  if (this.popupObj) {
725
727
  EventHandler.remove(this.popupObj.element, 'click', this.clickHandler);
726
728
  EventHandler.remove(this.popupObj.element, 'keydown', this.popupKeyDownHandler);
@@ -156,7 +156,12 @@ export declare abstract class MenuBase extends Component<HTMLUListElement> imple
156
156
  private targetElement;
157
157
  private delegateClickHandler;
158
158
  private delegateMoverHandler;
159
+ private delegateDomKeyHandler;
160
+ private delegateScrollHandler;
159
161
  private delegateMouseDownHandler;
162
+ private delegateTouchOutsideHandler;
163
+ private delegateParentScrollHandler;
164
+ private delegateContextMenuHandler;
160
165
  private navIdx;
161
166
  private animation;
162
167
  private isTapHold;
@@ -195,6 +200,8 @@ export declare abstract class MenuBase extends Component<HTMLUListElement> imple
195
200
  private skipNextArrowDown;
196
201
  private touchStartFn;
197
202
  private touchMoveFn;
203
+ private scrollParents;
204
+ private isCmenuOpened;
198
205
  /**
199
206
  * Triggers while rendering each menu item.
200
207
  *
@@ -159,6 +159,7 @@ var MenuBase = /** @class */ (function (_super) {
159
159
  _this.isAnimationNone = false;
160
160
  _this.isKBDAction = false;
161
161
  _this.skipNextArrowDown = false;
162
+ _this.isCmenuOpened = false;
162
163
  return _this;
163
164
  }
164
165
  /**
@@ -332,27 +333,32 @@ var MenuBase = /** @class */ (function (_super) {
332
333
  new Touch(target, { tapHold: this.touchHandler.bind(this) });
333
334
  }
334
335
  else {
335
- EventHandler.add(target, 'contextmenu', this.cmenuHandler, this);
336
+ this.delegateContextMenuHandler = this.cmenuHandler.bind(this);
337
+ EventHandler.add(target, 'contextmenu', this.delegateContextMenuHandler, this);
336
338
  }
337
339
  }
338
340
  }
339
341
  this.targetElement = target;
340
342
  if (!this.isMenu) {
341
343
  EventHandler.add(this.targetElement, 'scroll', this.scrollHandler, this);
342
- for (var _i = 0, _a = getScrollableParent(this.targetElement); _i < _a.length; _i++) {
344
+ this.scrollParents = getScrollableParent(this.targetElement).slice();
345
+ this.delegateParentScrollHandler = this.scrollHandler.bind(this);
346
+ for (var _i = 0, _a = this.scrollParents; _i < _a.length; _i++) {
343
347
  var parent_1 = _a[_i];
344
- EventHandler.add(parent_1, 'scroll', this.scrollHandler, this);
348
+ EventHandler.add(parent_1, 'scroll', this.delegateParentScrollHandler, this);
345
349
  }
346
350
  }
347
351
  }
348
352
  if (!Browser.isDevice) {
349
353
  this.delegateMoverHandler = this.moverHandler.bind(this);
350
354
  this.delegateMouseDownHandler = this.mouseDownHandler.bind(this);
355
+ this.delegateDomKeyHandler = this.domKeyHandler.bind(this);
351
356
  EventHandler.add(this.isMenu ? document : wrapper, 'mouseover', this.delegateMoverHandler, this);
352
357
  EventHandler.add(document, 'mousedown', this.delegateMouseDownHandler, this);
353
- EventHandler.add(document, 'keydown', this.domKeyHandler, this);
358
+ EventHandler.add(document, 'keydown', this.delegateDomKeyHandler, this);
354
359
  if (!this.isMenu && !this.target) {
355
- EventHandler.add(document, 'scroll', this.scrollHandler, this);
360
+ this.delegateScrollHandler = this.scrollHandler.bind(this);
361
+ EventHandler.add(document, 'scroll', this.delegateScrollHandler, this);
356
362
  }
357
363
  }
358
364
  this.delegateClickHandler = this.clickHandler.bind(this);
@@ -361,7 +367,8 @@ var MenuBase = /** @class */ (function (_super) {
361
367
  this.rippleFn = rippleEffect(wrapper, { selector: '.' + ITEM });
362
368
  if (!this.isMenu && this.enableScrolling) {
363
369
  this.enableTouchScroll(wrapper);
364
- document.addEventListener('touchstart', this.touchOutsideHandler.bind(this), { passive: true });
370
+ this.delegateTouchOutsideHandler = this.touchOutsideHandler.bind(this);
371
+ document.addEventListener('touchstart', this.delegateTouchOutsideHandler, { passive: true });
365
372
  }
366
373
  };
367
374
  MenuBase.prototype.wireKeyboardEvent = function (element) {
@@ -668,6 +675,7 @@ var MenuBase = /** @class */ (function (_super) {
668
675
  if (this.isCMenu) {
669
676
  if (this.canOpen(e.target)) {
670
677
  this.openMenu(null, null, this.pageY, this.pageX, e);
678
+ this.isCmenuOpened = true;
671
679
  }
672
680
  this.isCMenu = false;
673
681
  }
@@ -2072,33 +2080,59 @@ var MenuBase = /** @class */ (function (_super) {
2072
2080
  }
2073
2081
  }
2074
2082
  else {
2075
- EventHandler.remove(target, 'contextmenu', this.cmenuHandler);
2083
+ if (this.delegateContextMenuHandler) {
2084
+ EventHandler.remove(target, 'contextmenu', this.delegateContextMenuHandler);
2085
+ this.delegateContextMenuHandler = null;
2086
+ }
2076
2087
  }
2077
2088
  }
2078
2089
  }
2079
2090
  if (!this.isMenu) {
2080
2091
  EventHandler.remove(this.targetElement, 'scroll', this.scrollHandler);
2081
- for (var _i = 0, _a = getScrollableParent(this.targetElement); _i < _a.length; _i++) {
2082
- var parent_2 = _a[_i];
2083
- EventHandler.remove(parent_2, 'scroll', this.scrollHandler);
2092
+ if (this.scrollParents) {
2093
+ for (var _i = 0, _a = this.scrollParents; _i < _a.length; _i++) {
2094
+ var parent_2 = _a[_i];
2095
+ EventHandler.remove(parent_2, 'scroll', this.delegateParentScrollHandler);
2096
+ }
2097
+ this.delegateParentScrollHandler = null;
2098
+ this.scrollParents.length = 0;
2099
+ this.scrollParents = null;
2084
2100
  }
2085
2101
  }
2086
2102
  }
2087
2103
  if (!Browser.isDevice) {
2088
- EventHandler.remove(this.isMenu ? document : wrapper, 'mouseover', this.delegateMoverHandler);
2089
- EventHandler.remove(document, 'mousedown', this.delegateMouseDownHandler);
2090
- EventHandler.remove(document, 'keydown', this.domKeyHandler);
2104
+ if (this.delegateMoverHandler) {
2105
+ EventHandler.remove(this.isMenu ? document : wrapper, 'mouseover', this.delegateMoverHandler);
2106
+ this.delegateMoverHandler = null;
2107
+ }
2108
+ if (this.delegateMouseDownHandler) {
2109
+ EventHandler.remove(document, 'mousedown', this.delegateMouseDownHandler);
2110
+ this.delegateMouseDownHandler = null;
2111
+ }
2112
+ if (this.delegateDomKeyHandler) {
2113
+ EventHandler.remove(document, 'keydown', this.delegateDomKeyHandler);
2114
+ this.delegateDomKeyHandler = null;
2115
+ }
2091
2116
  if (!this.isMenu && !this.target) {
2092
- EventHandler.remove(document, 'scroll', this.scrollHandler);
2117
+ if (this.delegateScrollHandler) {
2118
+ EventHandler.remove(document, 'scroll', this.delegateScrollHandler);
2119
+ this.delegateScrollHandler = null;
2120
+ }
2093
2121
  }
2094
2122
  }
2095
- EventHandler.remove(document, 'click', this.delegateClickHandler);
2123
+ if (this.delegateClickHandler) {
2124
+ EventHandler.remove(document, 'click', this.delegateClickHandler);
2125
+ this.delegateClickHandler = null;
2126
+ }
2096
2127
  this.unWireKeyboardEvent(wrapper);
2097
2128
  this.rippleFn();
2098
2129
  if (!this.isMenu && this.enableScrolling) {
2099
2130
  wrapper.removeEventListener('touchstart', this.touchStartFn);
2100
2131
  wrapper.removeEventListener('touchmove', this.touchMoveFn);
2101
- document.removeEventListener('touchstart', this.touchOutsideHandler);
2132
+ if (this.delegateTouchOutsideHandler) {
2133
+ document.removeEventListener('touchstart', this.delegateTouchOutsideHandler);
2134
+ this.delegateTouchOutsideHandler = null;
2135
+ }
2102
2136
  }
2103
2137
  };
2104
2138
  MenuBase.prototype.unWireKeyboardEvent = function (element) {
@@ -2542,6 +2576,17 @@ var MenuBase = /** @class */ (function (_super) {
2542
2576
  var wrapper = this.getWrapper();
2543
2577
  if (wrapper) {
2544
2578
  this.unWireEvents();
2579
+ this.delegateClickHandler = null;
2580
+ this.delegateMoverHandler = null;
2581
+ this.delegateMouseDownHandler = null;
2582
+ this.delegateDomKeyHandler = null;
2583
+ this.delegateScrollHandler = null;
2584
+ this.delegateTouchOutsideHandler = null;
2585
+ this.delegateParentScrollHandler = null;
2586
+ if (this.delegateContextMenuHandler) {
2587
+ EventHandler.remove(this.targetElement, 'contextmenu', this.delegateContextMenuHandler);
2588
+ this.delegateContextMenuHandler = null;
2589
+ }
2545
2590
  if (!this.isMenu) {
2546
2591
  this.clonedElement.style.display = '';
2547
2592
  if (this.clonedElement.tagName === 'EJS-CONTEXTMENU') {
@@ -2585,7 +2630,31 @@ var MenuBase = /** @class */ (function (_super) {
2585
2630
  wrapper.parentNode.insertBefore(this.element, wrapper);
2586
2631
  this.clonedElement = null;
2587
2632
  }
2633
+ if (this.popupObj) {
2634
+ this.popupObj.destroy();
2635
+ this.popupObj = null;
2636
+ }
2637
+ this.currentTarget = null;
2638
+ this.targetElement = null;
2639
+ if (this.animation) {
2640
+ this.animation.destroy();
2641
+ this.animation = null;
2642
+ }
2643
+ if (!this.isMenu && !this.isCmenuOpened && this.element) {
2644
+ var elementInstance = getValue('ej2_instances', this.element);
2645
+ if (elementInstance && Array.isArray(elementInstance)) {
2646
+ elementInstance.length = 0;
2647
+ setValue('ej2_instances', elementInstance, this.element);
2648
+ }
2649
+ }
2588
2650
  detach(wrapper);
2651
+ if (this.uList && !document.body.contains(this.uList)) {
2652
+ var ulInstance = getValue('ej2_instances', this.uList);
2653
+ if (ulInstance && Array.isArray(ulInstance)) {
2654
+ ulInstance.length = 0;
2655
+ setValue('ej2_instances', ulInstance, this.uList);
2656
+ }
2657
+ }
2589
2658
  _super.prototype.destroy.call(this);
2590
2659
  if (this.template) {
2591
2660
  this.clearTemplate(['template']);
@@ -43,6 +43,7 @@ export declare class Sidebar extends Component<HTMLElement> implements INotifyPr
43
43
  private targetEle;
44
44
  private firstRender;
45
45
  private documentClickContext;
46
+ private resizeHandler;
46
47
  /**
47
48
  * Specifies the size of the Sidebar in dock state.
48
49
  * > For more details about dockSize refer to
@@ -58,6 +58,7 @@ var Sidebar = /** @class */ (function (_super) {
58
58
  function Sidebar(options, element) {
59
59
  var _this = _super.call(this, options, element) || this;
60
60
  _this.documentClickContext = _this.documentclickHandler.bind(_this);
61
+ _this.resizeHandler = _this.resize.bind(_this);
61
62
  return _this;
62
63
  }
63
64
  Sidebar.prototype.preRender = function () {
@@ -463,11 +464,12 @@ var Sidebar = /** @class */ (function (_super) {
463
464
  };
464
465
  Sidebar.prototype.wireEvents = function () {
465
466
  this.setEnableGestures();
466
- EventHandler.add(window, 'resize', this.resize, this);
467
+ EventHandler.add(window, 'resize', this.resizeHandler);
467
468
  };
468
469
  Sidebar.prototype.unWireEvents = function () {
469
- EventHandler.remove(window, 'resize', this.resize);
470
+ EventHandler.remove(window, 'resize', this.resizeHandler);
470
471
  EventHandler.remove(document, 'mousedown touchstart', this.documentclickHandler);
472
+ EventHandler.remove(this.element, 'transitionend', this.transitionEnd);
471
473
  if (this.mainContentEle) {
472
474
  this.mainContentEle.destroy();
473
475
  }
@@ -268,6 +268,7 @@ export declare class Stepper extends StepperBase implements INotifyPropertyChang
268
268
  private keyConfigs;
269
269
  private l10n;
270
270
  private isKeyNavFocus;
271
+ private windowEventHandlers;
271
272
  /**
272
273
  * * Constructor for creating the Stepper component.
273
274
  *
@@ -253,12 +253,20 @@ var Stepper = /** @class */ (function (_super) {
253
253
  }
254
254
  };
255
255
  Stepper.prototype.wireEvents = function () {
256
- EventHandler.add(window, 'resize', this.updateResize, this);
257
- EventHandler.add(window, 'click', this.updateStepFocus, this);
256
+ this.windowEventHandlers = {};
257
+ this.windowEventHandlers.resize = this.updateResize.bind(this);
258
+ this.windowEventHandlers.click = this.updateStepFocus.bind(this);
259
+ EventHandler.add(window, 'resize', this.windowEventHandlers.resize);
260
+ EventHandler.add(window, 'click', this.windowEventHandlers.click);
258
261
  };
259
262
  Stepper.prototype.unWireEvents = function () {
260
- EventHandler.remove(window, 'resize', this.updateResize);
261
- EventHandler.remove(window, 'click', this.updateStepFocus);
263
+ EventHandler.remove(window, 'resize', this.windowEventHandlers && this.windowEventHandlers.resize);
264
+ EventHandler.remove(window, 'click', this.windowEventHandlers && this.windowEventHandlers.click);
265
+ if (this.windowEventHandlers) {
266
+ this.windowEventHandlers.resize = null;
267
+ this.windowEventHandlers.click = null;
268
+ this.windowEventHandlers = null;
269
+ }
262
270
  };
263
271
  Stepper.prototype.updateResize = function () {
264
272
  if (this.stepperItemList && this.progressbar && this.element.classList.contains(HORIZSTEP)) {
@@ -4766,6 +4766,18 @@ var TreeView = /** @class */ (function (_super) {
4766
4766
  this.wireExpandOnEvent(false);
4767
4767
  EventHandler.remove(this.element, 'mouseover', this.onMouseOver);
4768
4768
  EventHandler.remove(this.element, 'mouseout', this.onMouseLeave);
4769
+ var liElements = selectAll('.' + LISTITEM, this.element);
4770
+ for (var i = 0; i < liElements.length; i++) {
4771
+ var li = liElements[parseInt(i.toString(), 10)];
4772
+ EventHandler.remove(li, 'focus', this.focusIn);
4773
+ EventHandler.remove(li, 'blur', this.focusOut);
4774
+ var frame = select('.' + CHECKBOXFRAME, li);
4775
+ if (frame) {
4776
+ EventHandler.remove(frame, 'mousedown', this.frameMouseHandler);
4777
+ EventHandler.remove(frame, 'mouseup', this.frameMouseHandler);
4778
+ EventHandler.remove(frame, 'mouseleave', this.frameMouseHandler);
4779
+ }
4780
+ }
4769
4781
  if (!this.disabled) {
4770
4782
  this.keyboardModule.destroy();
4771
4783
  }
@@ -175,7 +175,7 @@
175
175
  .e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:focus,
176
176
  .e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:active,
177
177
  .e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit.e-active {
178
- background: var(--color-sf-utility-appbar-border-color-alt2);
178
+ background: var(--color-sf-utility-appbar-hover-bg-color-alt1);
179
179
  }
180
180
  .e-appbar.e-light .e-menu-wrapper.e-inherit,
181
181
  .e-appbar.e-light .e-menu-container.e-inherit {
@@ -188,7 +188,7 @@
188
188
  .e-appbar.e-light .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-selected, .e-appbar.e-light .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-focused,
189
189
  .e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
190
190
  .e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
191
- background: var(--color-sf-utility-appbar-border-color-alt2);
191
+ background: var(--color-sf-utility-appbar-hover-bg-color-alt1);
192
192
  }
193
193
  .e-appbar.e-dark {
194
194
  background: var(--color-sf-utility-appbar-bg-color-alt2);
@@ -8820,7 +8820,7 @@ ejs-sidebar {
8820
8820
  .e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:focus,
8821
8821
  .e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:active,
8822
8822
  .e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit.e-active {
8823
- background: var(--color-sf-utility-appbar-border-color-alt2);
8823
+ background: var(--color-sf-utility-appbar-hover-bg-color-alt1);
8824
8824
  }
8825
8825
  .e-appbar.e-light .e-menu-wrapper.e-inherit,
8826
8826
  .e-appbar.e-light .e-menu-container.e-inherit {
@@ -8833,7 +8833,7 @@ ejs-sidebar {
8833
8833
  .e-appbar.e-light .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-selected, .e-appbar.e-light .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-focused,
8834
8834
  .e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
8835
8835
  .e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
8836
- background: var(--color-sf-utility-appbar-border-color-alt2);
8836
+ background: var(--color-sf-utility-appbar-hover-bg-color-alt1);
8837
8837
  }
8838
8838
  .e-appbar.e-dark {
8839
8839
  background: var(--color-sf-utility-appbar-bg-color-alt2);
package/styles/bds.css CHANGED
@@ -11535,7 +11535,7 @@ ejs-sidebar {
11535
11535
  .e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:focus,
11536
11536
  .e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit:active,
11537
11537
  .e-appbar.e-light .e-dropdown-btn.e-btn.e-inherit.e-active {
11538
- background: var(--color-sf-utility-appbar-border-color-alt2);
11538
+ background: var(--color-sf-utility-appbar-hover-bg-color-alt1);
11539
11539
  }
11540
11540
  .e-appbar.e-light .e-menu-wrapper.e-inherit,
11541
11541
  .e-appbar.e-light .e-menu-container.e-inherit {
@@ -11548,7 +11548,7 @@ ejs-sidebar {
11548
11548
  .e-appbar.e-light .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-selected, .e-appbar.e-light .e-menu-wrapper.e-inherit .e-menu .e-menu-item.e-focused,
11549
11549
  .e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-selected,
11550
11550
  .e-appbar.e-light .e-menu-container.e-inherit .e-menu .e-menu-item.e-focused {
11551
- background: var(--color-sf-utility-appbar-border-color-alt2);
11551
+ background: var(--color-sf-utility-appbar-hover-bg-color-alt1);
11552
11552
  }
11553
11553
  .e-appbar.e-dark {
11554
11554
  background: var(--color-sf-utility-appbar-bg-color-alt2);