@import '../common/var';

@include b(quarter-table) {
  font-size: 14px;
  margin: -1px;
  border-collapse: collapse;

  td {
    text-align: center;
    padding: 4px 0px;
    cursor: pointer;
    position: relative;
    
    & div {
      height: 52px;
      padding: 8px 0;
      box-sizing: border-box;
    }
    &.today {
      .cell {
        border: 1px solid;
        color: $--color-primary;
        font-weight: $--font-weight-strengthen;
      }
      &.start-date .cell,
      &.end-date .cell {
        color: $--color-white;
      }
      &.disabled{
        span{
          color: $--disabled-color-base;
        }
      }
    }

    &.disabled > div {
      background-color: $--background-color-base;
      cursor: not-allowed;
      color: $--color-text-disabled;

      .cell:hover {
        color: $--color-text-disabled;
      }
    }

    .cell {
      height: 36px;
      display: block;
      line-height: 36px;
      color: $--datepicker-font-color;
      padding: 5px auto;
      margin: 0 10px;
      border-radius: 23px;
      &:hover {
        color: $--datepicker-hover-font-color;
      }
    }
    &.in-range div {
      background-color: $--datepicker-inrange-background-color;
      &:hover {
        background-color: $--datepicker-inrange-hover-background-color;
      }
    }
    &.in-range:first-child div {
      border-top-left-radius: 30px;
      border-bottom-left-radius: 30px;
    }
  
    &.in-range:last-child div {
      border-top-right-radius: 30px;
      border-bottom-right-radius: 30px;
    }
    &.start-date div,
    &.end-date div {
      color: $--color-white;
    }

    &.start-date .cell,
    &.end-date .cell {
      color: $--color-white;
      background-color: $--datepicker-active-color;
    }

    &.start-date div {
      border-top-left-radius: 30px;
      border-bottom-left-radius: 30px;
    }

    &.end-date div {
      border-top-right-radius: 30px;
      border-bottom-right-radius: 30px;
    }
    &.current:not(.disabled) .cell {
      color: $--color-white;
      background-color: $--datepicker-active-color;
    }
  }
}