.nut-theme-dark {
  .nut-timeselect {
    background-color: $dark-background2;
    &__title {
      background-color: $dark-background2;
      color: $dark-color;
    }
    &__content {
      &__pannel {
        background-color: $dark-background3;
        color: $dark-color;
      }
      &__detail {
        background-color: $dark-background2;
      }
    }
  }
}

.nut-timeselect {
  display: flex;
  flex-direction: column;
  height: 100%;

  &__title {
    height: $timeselect-title-height;
    line-height: $timeselect-title-line-height;
    margin-bottom: 10px;
    font-size: $timeselect-title-font-size;
    color: $timeselect-title-color;
    text-align: center;
  }

  &__content {
    display: flex;
    flex: 1;
  }

  &__content-left {
    width: 140px;
    min-width: 140px;
    height: 100%;
    overflow: auto;
    background-color: #f6f7f9;
  }

  .nut-timepannel-active {
    background-color: #fff;
    color: #333;
    font-weight: 700;
  }
}
