// Lightning Design System 2.24.3
// Copyright (c) 2015-present, salesforce.com, inc. All rights reserved
// Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license

/**
 * @summary Handles styling for notification item interactions
 */
.slds-global-header__notification {
  border-bottom: 1px solid var(--slds-g-color-border-base-1, #{$color-border});
  padding: $spacing-xx-small;

  &:hover {
    background-color: var(--slds-g-color-neutral-base-95, #{$color-background-row-hover});
  }

  &:last-child {
    border-bottom: 0;
  }
}

.slds-global-header__notification_unread,
.slds-global-header__notification--unread {
  background-color: var(--slds-g-color-neutral-base-95, #{$color-background-row-selected});
}
