iview/src/styles/components/timeline.less
梁灏 6700f596c9 publish 0.9.8-rc-2
publish 0.9.8-rc-2
2016-11-16 16:04:08 +08:00

87 lines
No EOL
2 KiB
Text

@timeline-prefix-cls: ~"@{css-prefix}timeline";
@timeline-color: @border-color-split;
.@{timeline-prefix-cls} {
list-style: none;
margin: 0;
padding: 0;
&-item {
margin: 0 !important;
padding: 0 0 12px 0;
list-style: none;
position: relative;
&-tail {
height: 100%;
border-left: 1px solid @timeline-color;
position: absolute;
left: 6px;
top: 0;
}
&-pending &-tail {
display: none;
}
&-head {
width: 13px;
height: 13px;
background-color: #fff;
border-radius: 50%;
border: 1px solid transparent;
position: absolute;
&-blue {
border-color: @primary-color;
color: @primary-color;
}
&-red {
border-color: @error-color;
color: @error-color;
}
&-green {
border-color: @success-color;
color: @success-color;
}
}
&-head-custom {
width: 40px;
height: auto;
margin-top: 6px;
padding: 3px 0;
text-align: center;
line-height: 1;
border: 0;
border-radius: 0;
font-size: @font-size-base;
position: absolute;
left: -13px;
.transform(translateY(-50%));
}
&-content {
padding: 1px 1px 10px 24px;
font-size: @font-size-small;
position: relative;
top: -3px;
}
&:last-child {
.@{timeline-prefix-cls}-item-tail {
display: none;
}
}
}
&&-pending &-item:nth-last-of-type(2) {
.@{timeline-prefix-cls}-item-tail {
border-left: 1px dotted @timeline-color;
}
.@{timeline-prefix-cls}-item-content {
min-height: 48px;
}
}
}