tfp
Version:
A Web UI framework for TaskBuilder
49 lines (46 loc) • 1.01 kB
CSS
.tfp-progress {
position: relative;
line-height: 1;
}
.tfp-progress-bar {
padding-right: 50px;
display: inline-block;
vertical-align: middle;
width: 100%;
margin-right: -55px;
box-sizing: border-box;
}
.tfp-progress-bar__outer{
border-radius: 100px;
height: 6px;
background-color: #ebeef5;
overflow: hidden;
position: relative;
vertical-align: middle;
}
.tfp-progress .tfp-progress-bar__inner {
position: absolute;
left: 0;
top: 0;
height: 100%;
background-color: #409eff;
text-align: right;
border-radius: 100px;
line-height: 1;
white-space: nowrap;
transition: width .6s ease;
}
.tfp-progress-bar__inner:after {
display: inline-block;
content: "";
height: 100%;
vertical-align: middle;
}
.tfp-progress__text {
font-size: 14px;
color: #606266;
display: inline-block;
vertical-align: middle;
margin-left: 10px;
line-height: 1;
}