/**
 * @file
 * CSS to fix admin menu selected color - override green to default gray.
 */

/* Override green background on selected admin menu items */
.toolbar .toolbar-tray .menu-item--active-trail > .toolbar-box a,
.toolbar .toolbar-tray a.is-active,
.toolbar .toolbar-tray .menu-item--active-trail > .toolbar-box a:hover,
.toolbar .toolbar-tray a.is-active:hover {
  background-color: #f5f5f5 !important;
  color: #000 !important;
}

/* Override any green background on admin menu items */
.toolbar .toolbar-tray .menu-item a[style*="green"],
.toolbar .toolbar-tray .menu-item a[style*="background-color: green"],
.toolbar .toolbar-tray .menu-item a[style*="background: green"] {
  background-color: #f5f5f5 !important;
  color: #000 !important;
}

/* Fix for Material Admin theme or similar themes */
.toolbar .toolbar-tray .menu-item--active-trail > .toolbar-box,
.toolbar .toolbar-tray .menu-item.is-active > .toolbar-box {
  background-color: #f5f5f5 !important;
}

.toolbar .toolbar-tray .menu-item--active-trail > .toolbar-box a,
.toolbar .toolbar-tray .menu-item.is-active > .toolbar-box a {
  background-color: #f5f5f5 !important;
  color: #000 !important;
}

