@import "mixins/mixins";
@import "mixins/utils";
@import "common/var";

@include b(progress) {
  position: relative;
  line-height: 1;

  @include e(text) {
    font-size:14px;
    color: $--color-text-regular;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    line-height: 1;

    i {
      vertical-align: middle;
      display: block;
    }
  }

  @include m((circle,dashboard)) {
    display: inline-block;

    .el-progress__text {
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      text-align: center;
      margin: 0;
      transform: translate(0, -50%);

      i {
        vertical-align: middle;
        display: inline-block;
      }
    }
  }


  @include m(without-text) {
    .el-progress__text {
      display: none;
    }

    .el-progress-bar {
      padding-right: 0;
      margin-right: 0;
      display: block;
    }

    .el-progress-other {
      padding-right: 0;
      margin-right: 0;
      display: block;
    }
  }

  @include m(text-inside) {
    .el-progress-bar {
      padding-right: 0;
      margin-right: 0;
    }
    .el-progress-other {
      padding-right: 0;
      margin-right: 0;
    }
  }

  @include when(success) {
    .el-progress-bar__inner {
      background-color: $--color-success;
    }

    .el-progress__text {
      color: $--color-success;
    }
  }

  @include when(warning) {
    .el-progress-bar__inner {
      background-color: $--color-warning;
    }

    .el-progress__text {
      color: $--color-warning;
    }
  }

  @include when(exception) {
    .el-progress-bar__inner {
      background-color: $--color-danger;
    }

    .el-progress__text {
      color: $--color-danger;
    }
  }
}

@include b(progress-bar) {
  padding-right: 50px;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  margin-right: -55px;
  box-sizing: border-box;

  @include e(outer) {
    height: 6px;
    border-radius: 100px;
    background-color: $--border-color-lighter;
    overflow: hidden;
    position: relative;
    vertical-align: middle;
  }
  @include e(inner) {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: $--color-primary;
    text-align: right; 
    border-radius: 100px;
    line-height: 1; 
    white-space: nowrap;
    transition: width 0.6s ease;

    @include utils-vertical-center;
  }

  @include e(innerText) {
    display: inline-block;
    vertical-align: middle;
    color: $--color-white;
    font-size: 12px;
    margin: 0 5px;
  }
}

@keyframes progress {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 32px 0;
  }
}

.el-content__text {
  font-size: 12px;
}
.el-progress--circle {
  font-size: 36px;
}
.el-progress--otherbasics {
  margin-bottom: 15px;
  width: 350px;
}

.el-progress--othertext {
  margin-bottom: 15px;
  width: 350px;
}
.el-progress-other {
  .el-progress-bar__outer {
    border-radius: 0px;
  }
  .el-progress-bar__inner {
    border-radius: 0px;
  }
  .el-progress-bar__innerText-othertext {
    .el-progress-bar__innerText-other-text {
      font-size: 10px;
      background: #fff;
      color: #429EFB;
      width: 30px;
      border-radius: 4px;
      padding: 5px;
      z-index: 2000;
      color: #606266;
      line-height: 1.2;
      text-align: center;
      box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
      word-break: break-all;
    }
    .el-progress-bar__innerText-other-popper__arrow {
      &::after {
        border-left: solid transparent 7px;
        border-right: solid transparent 7px;
        border-top: solid #FFF 7px;
        content: " ";
        height: 0;
        margin-left: 13px;
        position: absolute;
        width: 0;
      }
    }
  }
}