// 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

/**
 * @selector .slds-disabled-text
 * @restrict .slds-datepicker td
 * @deprecated
 */
@include deprecate('4.0.0', 'Use new .slds-day_adjacent-month class instead for days that are in adjacent months') {

  .slds-disabled-text {
    color: var(--slds-g-color-neutral-base-80, #{$color-text-button-default-disabled});
  }

  .slds-datepicker {

    td {

      &:hover:not(.slds-disabled-text) > .slds-day,
      &:focus:not(.slds-disabled-text) > .slds-day,
      &.slds-is-today > .slds-day {
        cursor: pointer;
      }
    }
  }
}
