w-ui
Version:
A Vue.js 2.0 UI Toolkit for mobile
166 lines (148 loc) • 2.96 kB
text/less
.wui-step {
font-size: 13px;
&-content {
display: flex;
}
&-item {
flex: 1;
position: relative;
&:not(:first-child):before {
content: '';
height: 2px;
position: absolute;
top: -1px;
background-color: #CCC;
}
> em {
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
background-color: #CCC;
}
&-top, &-bottom {
position: absolute;
left: 0;
text-align: center;
white-space: nowrap;
text-overflow: ellipsis;
width: 100%;
padding: 0 4px;
}
&-top-text > span {
color: #989898;
}
&-bottom {
color: #333;
}
}
}
.wui-step-theme-bottom {
.wui-step {
&-content {
padding: 10px 0 42px 0;
}
&-item {
&:not(:first-child):before {
width: 70%;
left: -35%;
}
> em {
width: 20px;
height: 20px;
margin-left: -10px;
margin-top: -10px;
text-align: center;
line-height: 20px;
font-size: 12px;
> i {
color: #FFF;
}
}
&-top {
bottom: 18px;
}
&-bottom {
top: 18px;
}
&-current {
&:before {
background-color: #20a0ff;
}
> em {
background-color: #20a0ff;
&.wui-step-checkmark:after {
content: '';
position: absolute;
top: 4px;
left: 8px;
border: 1px solid #FFF;
border-top: 0;
border-left: 0;
transform: rotate(45deg);
width: 5px;
height: 10px;
}
}
.wui-step-item-bottom {
color: #20a0ff;
}
}
}
}
}
.wui-step-theme-top {
.wui-step {
&-content {
padding: 42px 0;
}
&-item {
&:not(:first-child):before {
width: 80%;
left: -40%;
}
> em {
width: 10px;
height: 10px;
margin-left: -5px;
margin-top: -5px;
}
&-top {
bottom: 15px;
}
&-bottom {
top: 15px;
}
&-current {
.wui-step-item-top {
&-text {
display: inline-block;
background-color: #20a0ff;
padding: 5px 11px 3px;
border-radius: 100px;
position: relative;
z-index: 1;
> span {
color: #FFF;
}
}
}
> em {
background-color: #20a0ff;
&:after {
content: '';
width: 0;
height: 0;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 6px solid #20a0ff;
position: absolute;
top: -10px;
left: 50%;
margin-left: -6px;
}
}
}
}
}
}