Warning, /webapps/ocs-webserver/httpdocs/theme/flatui/less/modules/progress.less is written in an unsupported language. File is not indexed.
0001 //
0002 // Progress bar
0003 // --------------------------------------------------
0004
0005 .progress {
0006 background: mix(@base, white, 10%);
0007 border-radius: 32px;
0008 height: @progress-height;
0009 .box-shadow(none);
0010 .drop-ie-gradient();
0011
0012 // Alternate Colors
0013 // --------------------------------------------------
0014
0015 .bar {
0016 background: @firm;
0017 .box-shadow(~"none !important");
0018 .drop-ie-gradient();
0019 }
0020 .bar-success {
0021 background-color: @success;
0022 .drop-ie-gradient();
0023 }
0024 .bar-warning {
0025 background-color: @warning;
0026 .drop-ie-gradient();
0027 }
0028 .bar-danger {
0029 background-color: @danger;
0030 .drop-ie-gradient();
0031 }
0032 .bar-info {
0033 background-color: @info;
0034 .drop-ie-gradient();
0035 }
0036 }