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

public.components.flat-ui.less.modules.progress-bars.less Maven / Gradle / Ivy

There is a newer version: 0.2.5
Show newest version
//
// Progress bars
// --------------------------------------------------

// Outer container
.progress {
  background: mix(@brand-primary, white, 10%);
  border-radius: 32px;
  height: @progress-height;
  .box-shadow(none);
}

// Bar of progress
.progress-bar {
  background: @brand-secondary;
  line-height: @progress-height;
  .box-shadow(none);
}

// Variations
// -------------------------

.progress-bar-success {
  background-color: @brand-success;
}
.progress-bar-warning {
  background-color: @brand-warning;
}
.progress-bar-danger {
  background-color: @brand-danger;
}
.progress-bar-info {
  background-color: @brand-info;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy