2016-04-27 20:44:36 +08:00
|
|
|
@import "../../style/themes/default";
|
|
|
|
@import "../../style/mixins/index";
|
2015-09-01 21:15:31 +08:00
|
|
|
|
2016-09-14 16:18:33 +08:00
|
|
|
@timeline-prefix-cls: ~"@{ant-prefix}-timeline";
|
2016-03-04 17:06:39 +08:00
|
|
|
@timeline-color: @border-color-split;
|
2015-09-01 21:15:31 +08:00
|
|
|
|
|
|
|
.@{timeline-prefix-cls} {
|
2016-04-18 16:17:16 +08:00
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
|
2015-09-01 21:15:31 +08:00
|
|
|
&-item {
|
|
|
|
position: relative;
|
2017-02-06 12:04:35 +08:00
|
|
|
padding: 0 0 12px;
|
2016-04-18 16:17:16 +08:00
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
2017-09-21 18:12:53 +08:00
|
|
|
font-size: @font-size-base;
|
2015-09-01 21:15:31 +08:00
|
|
|
|
|
|
|
&-tail {
|
|
|
|
position: absolute;
|
|
|
|
left: 5px;
|
2017-09-21 18:12:53 +08:00
|
|
|
top: 0.75em;
|
2015-09-01 21:15:31 +08:00
|
|
|
height: 100%;
|
2015-09-01 21:39:29 +08:00
|
|
|
border-left: 2px solid @timeline-color;
|
2015-09-01 21:15:31 +08:00
|
|
|
}
|
|
|
|
|
2016-01-14 16:43:48 +08:00
|
|
|
&-pending &-tail {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2015-09-01 21:15:31 +08:00
|
|
|
&-head {
|
2015-09-01 21:39:29 +08:00
|
|
|
position: absolute;
|
2015-09-01 21:15:31 +08:00
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
2016-11-29 11:56:10 +08:00
|
|
|
background-color: @component-background;
|
2015-11-05 21:25:43 +08:00
|
|
|
border-radius: 100px;
|
2016-05-07 02:13:08 +08:00
|
|
|
border: 2px solid transparent;
|
2017-09-21 18:12:53 +08:00
|
|
|
margin-top: -6px;
|
|
|
|
top: 0.75em;
|
|
|
|
|
2015-09-01 21:15:31 +08:00
|
|
|
&-blue {
|
2016-05-07 02:13:08 +08:00
|
|
|
border-color: @primary-color;
|
|
|
|
color: @primary-color;
|
2015-09-01 21:15:31 +08:00
|
|
|
}
|
|
|
|
&-red {
|
2016-05-07 02:13:08 +08:00
|
|
|
border-color: @error-color;
|
|
|
|
color: @error-color;
|
2015-09-01 21:15:31 +08:00
|
|
|
}
|
|
|
|
&-green {
|
2016-05-07 02:13:08 +08:00
|
|
|
border-color: @success-color;
|
|
|
|
color: @success-color;
|
2015-09-01 21:15:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-07 02:13:08 +08:00
|
|
|
&-head-custom {
|
|
|
|
position: absolute;
|
|
|
|
text-align: center;
|
|
|
|
width: 40px;
|
|
|
|
left: -14px;
|
|
|
|
line-height: 1;
|
|
|
|
margin-top: 6px;
|
|
|
|
border: 0;
|
|
|
|
height: auto;
|
|
|
|
border-radius: 0;
|
|
|
|
padding: 3px 0;
|
2016-11-08 20:57:07 +08:00
|
|
|
font-size: @font-size-base;
|
2016-05-07 02:13:08 +08:00
|
|
|
transform: translateY(-50%);
|
|
|
|
}
|
|
|
|
|
2015-09-01 21:15:31 +08:00
|
|
|
&-content {
|
2015-09-07 11:31:37 +08:00
|
|
|
padding: 0 0 10px 24px;
|
2015-09-02 12:12:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-last {
|
|
|
|
.@{timeline-prefix-cls}-item-tail {
|
|
|
|
border-left: 2px dotted @timeline-color;
|
2016-01-14 16:43:48 +08:00
|
|
|
display: none;
|
2015-09-02 12:12:11 +08:00
|
|
|
}
|
|
|
|
.@{timeline-prefix-cls}-item-content {
|
2015-09-07 11:31:37 +08:00
|
|
|
min-height: 48px;
|
2015-09-02 12:12:11 +08:00
|
|
|
}
|
2015-09-01 21:15:31 +08:00
|
|
|
}
|
|
|
|
}
|
2016-01-14 16:43:48 +08:00
|
|
|
|
|
|
|
&&-pending &-item-last &-item-tail {
|
|
|
|
display: block;
|
|
|
|
}
|
2015-09-01 21:15:31 +08:00
|
|
|
}
|