@import url(../../var.less);

@year-table-prefix: ~"@{prefix}year-table";

.@{year-table-prefix}{ 
  font-size: 14px;
  margin: -1px;
  border-collapse: collapse;

  .w-icon {
    color: @datepicker-icon-color;
  }

  td {
    text-align: center;
    padding: 20px 3px;
    cursor: pointer;

    &.today {
      .cell {
        border: 1px solid @primary-color;
        border-radius: @border-radius-base;
      }
    }

    &.disabled .cell {
      background-color: @background-color-base;
      cursor: not-allowed;
      color: @placeholder-text-color;

      &:hover {
        color: @placeholder-text-color;
      }
    }

    .cell {
      width: 48px;
      height: 32px;
      display: block;
      line-height: 32px;
      margin: 0 auto;

      &:hover {
        background-color: @datepicker-background-fill;
      }
    }

    &.current:not(.disabled) .cell {
      background-color: @datepicker-active-color;
      color: @color-white;
    }
  }
}