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

theme-base.components.misc._progressbar.scss Maven / Gradle / Ivy

There is a newer version: 15.0.0
Show newest version
body {
  .ui-progressbar {
    border: $progressBarBorder;
    height: $progressBarHeight;
    background: $progressBarBg;
    border-radius: $borderRadius;

    .ui-progressbar-value {
      border: 0 none;
      margin: 0;
      background: $progressBarValueBg;
      border-radius: $borderRadius;
    }

    .ui-progressbar-label {
      margin-top: 0;
      color: $primaryTextColor;
      line-height: $progressBarHeight;
    }

    &.ui-progressbar-success {
      .ui-progressbar-value {
        background: $successButtonBg;
      }
    }

    &.ui-progressbar-info {
      .ui-progressbar-value {
        background: $infoButtonBg;
      }
    }

    &.ui-progressbar-warning {
      .ui-progressbar-value {
        background: $warningButtonBg;
      }
    }

    &.ui-progressbar-danger {
      .ui-progressbar-value {
        background: $dangerButtonBg;
      }
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy