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

VAADIN.themes.mateu.views.loader.scss Maven / Gradle / Ivy

There is a newer version: 1.1.60
Show newest version
@mixin loader {

.v-ui .v-loading-indicator {
  position: fixed; /* Occupy whole screen even if scrolled */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Eat mouse events when visible, doesn't prevent scrolling */
  pointer-events: auto;
  /* Animated with delay to prevent flashing */
  animation: fadein 0.3s ease-out 0.2s normal 1 both;
  z-index: 2147483647;
  height: 100%;
  width: 100% !important;
}


.v-ui .v-loading-indicator[style*="none"] {
  height: 0px;
}


.v-ui .v-loading-indicator[style*="none"] .spinner {
  display: none;
}

.spinner,
.spinner:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.spinner {

  top: 40%;
  -ms-transform: translateY(-40%);
  transform: translateY(-40%);

  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy