@import "../common/var";
@include b(time-panel) {
  margin: 5px 0;
  border: solid 1px $--datepicker-border-color;
  background-color: $--color-white;
  box-shadow: $--box-shadow-light;
  border-radius: 2px;
  position: absolute;
  width: 150px;
  left: 0;
  z-index: $--index-top;
  user-select: none;
  @include e(content) {
    font-size: 0;
    position: relative;
    overflow: hidden;
    &::after,
    &::before {
      content: "";
      top: 50%;
      position: absolute;
      margin-top: -15px;
      height: 32px;
      z-index: -1;
      left: 0;
      right: 0;
      box-sizing: border-box;
      padding-top: 6px;
      text-align: left;
      border-top: 1px solid $--border-color-light;
      border-bottom: 1px solid $--border-color-light;
    }
    &::after {
      left: 50%;
      margin-left: 12%;
      margin-right: 12%;
    }
    &::before {
      padding-left: 50%;
      margin-right: 12%;
      margin-left: 12%;
    }
    &.has-seconds {
      &::after {
        left: calc(100% / 3 * 2);
      }
      &::before {
        padding-left: calc(100% / 3);
      }
    }
  }
  @include e(footer) {
    border-top: 1px solid $--datepicker-inner-border-color;
    padding: 0 12px;
    height: 28px;
    line-height: 14px;
    text-align: right;
    box-sizing: border-box;
    button {
      margin-left: 12px !important;
      border: none !important;
    }
    .el-time-padding {
      margin-left: 28px !important;
    }
  }
  @include e(btn) {
    border: none;
    line-height: 19px;
    padding: 0 5px;
    margin: 0 5px;
    cursor: pointer;
    background-color: transparent;
    outline: none;
    font-size: 12px;
    color: $--color-text-primary;
    &.confirm {
      font-weight: 400;
      color: #4A90E2;
    }
  }
}
