@import "../common/var";

@include b(year-table) {
  font-size: 12px;
  margin: -1px;
  border-collapse: collapse;

  .xb-icon {
    color: $--color-black-45;
  }

  td {
    text-align: center;
    padding: 20px 3px;
    cursor: pointer;

    &.today {
      .cell {
        font-weight: $--font-weight-base;
        border:1px solid transparent;
        @include date-today-border-color;
        @include theme-font-color;
        border-radius: $--border-radius-base - 2px;
      }
    }

    &.disabled .cell {
      background-color: $--color-text-disabled;
      cursor: not-allowed;
      color: $--input-placeholder-color;

      &:hover {
        color: $--input-placeholder-color;
      }
    }

    .cell {
      width: 48px;
      height: 32px;
      display: block;
      line-height: 32px;
      color: $--color-black-65;
      margin: 0 auto;

      &:hover {
        border-radius: $--border-radius-2;
        @include date-available-hover-bg-color;
        @include date-available-hover-font-color;
      }
    }

    &.current:not(.disabled) .cell {
      border-radius: $--border-radius-2;
      color: $--color-white;
      @include theme-bg-color;
    }
  }
}
