You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
@import "../mixins/index";
|
|
|
|
|
|
|
|
@timeline-prefix-cls: ~"@{css-prefix}timeline";
|
|
|
|
|
|
|
|
@timeline-color: #e9e9e9;
|
|
|
|
|
|
|
|
.@{timeline-prefix-cls} {
|
|
|
|
&-item {
|
|
|
|
position: relative;
|
|
|
|
padding-bottom: 12px;
|
|
|
|
|
|
|
|
&-tail {
|
|
|
|
position: absolute;
|
|
|
|
left: 5px;
|
|
|
|
top: 0;
|
|
|
|
height: 100%;
|
|
|
|
border-left: 2px solid @timeline-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-head {
|
|
|
|
position: absolute;
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
background-color: #fff;
|
|
|
|
border-radius: 6px;
|
|
|
|
&-blue {
|
|
|
|
border: 2px solid @primary-color;
|
|
|
|
}
|
|
|
|
&-red {
|
|
|
|
border: 2px solid @error-color;
|
|
|
|
}
|
|
|
|
&-green {
|
|
|
|
border: 2px solid @success-color;
|
|
|
|
}
|
|
|
|
&-end {
|
|
|
|
border: 2px solid @timeline-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-content {
|
|
|
|
padding: 0 0 10px 24px;
|
|
|
|
font-size: 12px;
|
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-last {
|
|
|
|
.@{timeline-prefix-cls}-item-tail {
|
|
|
|
border-left: 2px dotted @timeline-color;
|
|
|
|
}
|
|
|
|
.@{timeline-prefix-cls}-item-content {
|
|
|
|
min-height: 48px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|