@import '../style/var';

.van-button {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  height: @button-default-height;
  margin: 0;
  padding: 0;
  font-size: @button-default-font-size;
  line-height: @button-default-line-height;
  text-align: center;
  border-radius: @button-border-radius;
  cursor: pointer;
  transition: opacity @animation-duration-fast;
  -webkit-appearance: none;

  &::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: @white;
    border: inherit;
    border-color:  @white;
    border-radius: inherit; /* inherit parent's border radius */
    transform: translate(-50%, -50%);
    opacity: 0;
    content: ' ';
  }

  &:active::before {
    opacity: 0.2;
  }

  &--loading,
  &--disabled {
    &::before {
      display: none;
    }
  }

  &--default {
    color: @gray-8;
    background-color: @button-default-background-color;
    border: @button-border-width solid @border-color;

    &::before {
      background-color: @black;
      border-color:  @border-color;
    }
    &:active::before {
      opacity: 0.08;
    }
  }

  &--primary {
    color: @button-primary-color;
    background-color: @button-primary-background-color;
    border: @button-border-width solid @button-primary-border-color;
  }

  &--info {
    color: @button-info-color;
    background-color: @button-info-background-color;
    border: @button-border-width solid @button-info-border-color;
  }

  &--danger {
    color: @button-danger-color;
    background-color: @button-danger-background-color;
    border: @button-border-width solid @button-danger-border-color;
  }

  &--warning {
    color: @button-warning-color;
    background-color: @button-warning-background-color;
    border: @button-border-width solid @button-warning-border-color;
  }

  &--info_secondary{
    background-color: @button-plain-background-color;
    color: @button-info-background-color;
    border: 1px solid @button-info-background-color;
    &:active:not(.van-button--disabled){
      // background-color:fade( @button-info-background-color ,20%) ;
    }
  }

  &--warning_secondary{
    background-color: @button-plain-background-color;
    color: @button-warning-background-color;
    border: 1px solid @button-warning-background-color;
    &:active:not(.van-button--disabled){
      // background-color:fade( @button-warning-background-color ,20%) ;
    }
  }
  &--danger_secondary{
    background-color: @button-plain-background-color;
    color: @button-danger-background-color;
    border: 1px solid @button-danger-background-color;
    &:active:not(.van-button--disabled){
      // background-color:fade( @button-danger-background-color ,20%) ;
    }
  }


  &--plain {
    background-color: @button-plain-background-color;

    &.van-button--primary {
      color: @button-primary-background-color;
    }

    &.van-button--info {
      color: @button-info-background-color;
    }

    &.van-button--danger {
      color: @button-danger-background-color;
    }

    &.van-button--warning {
      color: @button-warning-background-color;
    }
  }

  &--large {
    width: 343px;
    height: @button-large-height;
  }
  &--middle {
    width: 164px;
    font-size: @button-default-font-size;
  }

  &--normal {
    padding: 0 49px;
    font-size: @button-normal-font-size;
    height: 36px;
  }

  &--small {
    height: @button-small-height;
    padding: 0 24px;
    font-size: @button-small-font-size;
  }

  &__loading {
    color: inherit;
    font-size: inherit;
  }

  &--mini {
    height: @button-mini-height;
    padding: 0 21px;
    font-size: @button-mini-font-size;

    & + .van-button--mini {
      margin-left: @padding-base;
    }
  }

  &--block {
    display: block;
    // width: 100%;
    width: calc(100% - 32px);
    margin-left: 16px !important;
  }

  &--disabled {
    cursor: not-allowed;
    opacity: @button-disabled-opacity;
  }

  &--loading {
    cursor: default;
  }

  &--round {
    border-radius: @button-round-border-radius;
  }

  &--square {
    border-radius: 4px;
  }

  // align-items are ignored when flex container is a button in legacy safari
  // see: https://bugs.webkit.org/show_bug.cgi?id=169700
  &__content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;

    // fix icon vertical align
    // see: https://github.com/youzan/vant/issues/7617
    &::before {
      content: ' ';
    }
  }

  &__icon {
    font-size: 1.2em;
    line-height: inherit;
  }

  &__icon + &__text,
  &__loading + &__text,
  &__text + &__icon,
  &__text + &__loading {
    margin-left: @padding-base;
  }

  &--hairline {
    border-width: 0;

    &::after {
      border-color: inherit;
      border-radius: calc(var(--button-border-radius) * 2);
    }

    &.van-button--round::after {
      border-radius: @button-round-border-radius;
    }

    &.van-button--square::after {
      border-radius: 0;
    }
  }
}
