All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.resources.bower_components.angular-progress-button-styles.sass._shrink-vertical.scss Maven / Gradle / Ivy

There is a newer version: 1.2.2.1-jre17
Show newest version
.progress-button {
  &-style-shrink {
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
  }

  &-style-shrink.progress-button-dir-vertical {
    .content {
      -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
      transition: opacity 0.3s, transform 0.3s;

      &:before, &:after {
        top: 100%;
        right: auto;
        left: 50%;
        -webkit-transition: opacity 0.3s;
        transition: opacity 0.3s;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
      }
    }

    &.state-loading {
      -webkit-transform: scaleX(0.1);
      transform: scaleX(0.1);
      .content {
        opacity: 0;
      }
    }

    &.state-error, &.state-success {
      .content {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy