47 lines
990 B
CSS
47 lines
990 B
CSS
/**
|
|
* 2019 ModuleFactory.co
|
|
*
|
|
* @author ModuleFactory.co <info@modulefactory.co>
|
|
* @copyright 2019 ModuleFactory.co
|
|
* @license ModuleFactory.co Commercial License
|
|
*/
|
|
|
|
.fsau_progress {
|
|
margin-bottom: 0 !important;
|
|
margin-top: 3px !important;
|
|
}
|
|
|
|
.fsau_progress *::before, .bootstrap *::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.fsau_progress .progress-bar {
|
|
background-color: #00aff0;
|
|
box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15) inset;
|
|
color: #fff;
|
|
float: left;
|
|
font-size: 11px;
|
|
height: 100%;
|
|
line-height: 17px;
|
|
text-align: center;
|
|
transition: width 0.6s ease 0s;
|
|
width: 0;
|
|
}
|
|
|
|
.fsau_progress.progress {
|
|
background-color: #f5f5f5;
|
|
border-radius: 3px;
|
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
|
|
height: 17px;
|
|
margin-bottom: 17px;
|
|
overflow: hidden;
|
|
width: 400px;
|
|
}
|
|
|
|
.fsau_progress .progress-bar-success {
|
|
background-color: #72c279;
|
|
}
|
|
|
|
.sweet-alert fieldset {
|
|
background: transparent !important;
|
|
} |