Warning, /iDDS/monitor/data/scss/bootstrap/_progress.scss is written in an unsupported language. File is not indexed.
0001 // Disable animation if transitions are disabled
0002 @if $enable-transitions {
0003 @keyframes progress-bar-stripes {
0004 0% { background-position-x: $progress-height; }
0005 }
0006 }
0007
0008 .progress {
0009 display: flex;
0010 height: $progress-height;
0011 overflow: hidden; // force rounded corners by cropping it
0012 @include font-size($progress-font-size);
0013 background-color: $progress-bg;
0014 @include border-radius($progress-border-radius);
0015 @include box-shadow($progress-box-shadow);
0016 }
0017
0018 .progress-bar {
0019 display: flex;
0020 flex-direction: column;
0021 justify-content: center;
0022 overflow: hidden;
0023 color: $progress-bar-color;
0024 text-align: center;
0025 white-space: nowrap;
0026 background-color: $progress-bar-bg;
0027 @include transition($progress-bar-transition);
0028 }
0029
0030 .progress-bar-striped {
0031 @include gradient-striped();
0032 background-size: $progress-height $progress-height;
0033 }
0034
0035 @if $enable-transitions {
0036 .progress-bar-animated {
0037 animation: $progress-bar-animation-timing progress-bar-stripes;
0038
0039 @if $enable-reduced-motion {
0040 @media (prefers-reduced-motion: reduce) {
0041 animation: none;
0042 }
0043 }
0044 }
0045 }