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} {
|
2017-09-22 18:33:29 +08:00
|
|
|
.reset-component;
|
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-10-11 12:01:27 +08:00
|
|
|
padding: 0 0 20px;
|
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;
|
2017-10-18 17:42:00 +08:00
|
|
|
left: 4px;
|
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
|
|
|
}
|
|
|
|
|
2018-01-09 17:42:31 +08:00
|
|
|
&-pending &-head {
|
|
|
|
font-size: @font-size-sm;
|
|
|
|
}
|
|
|
|
|
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;
|
2017-10-18 17:42:00 +08:00
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
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
|
|
|
|
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;
|
|
|
|
line-height: 1;
|
2017-09-27 22:32:49 +08:00
|
|
|
margin-top: 0;
|
2016-05-07 02:13:08 +08:00
|
|
|
border: 0;
|
|
|
|
height: auto;
|
|
|
|
border-radius: 0;
|
2018-02-27 20:44:28 +08:00
|
|
|
padding: 3px 1px;
|
2017-09-27 22:32:49 +08:00
|
|
|
transform: translate(-50%, -50%);
|
2018-07-12 11:35:50 +08:00
|
|
|
top: 5.5px;
|
2017-11-06 21:28:51 +08:00
|
|
|
left: 5px;
|
2017-09-27 22:32:49 +08:00
|
|
|
width: auto;
|
2016-05-07 02:13:08 +08:00
|
|
|
}
|
|
|
|
|
2015-09-01 21:15:31 +08:00
|
|
|
&-content {
|
2018-07-12 11:35:50 +08:00
|
|
|
margin: 0 0 0 18px;
|
2017-10-18 17:42:00 +08:00
|
|
|
position: relative;
|
|
|
|
top: -(@font-size-base * @line-height-base - @font-size-base) + 1px;
|
2015-09-02 12:12:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-last {
|
|
|
|
.@{timeline-prefix-cls}-item-tail {
|
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
|
|
|
|
2018-07-28 00:25:23 +08:00
|
|
|
&.alternate,
|
|
|
|
&.right {
|
|
|
|
.@{timeline-prefix-cls}-item {
|
|
|
|
|
|
|
|
&-tail,
|
|
|
|
&-head,
|
|
|
|
&-head-custom {
|
|
|
|
left: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-head {
|
|
|
|
margin-left: -4px;
|
|
|
|
&-custom {
|
|
|
|
margin-left: 1px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-left {
|
|
|
|
.@{timeline-prefix-cls}-item-content {
|
|
|
|
text-align: left;
|
|
|
|
left: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-right {
|
|
|
|
.@{timeline-prefix-cls}-item-content {
|
|
|
|
text-align: right;
|
|
|
|
right: 50%;
|
|
|
|
margin-right: 18px;
|
2018-07-30 23:05:57 +08:00
|
|
|
width: 50%;
|
|
|
|
left: -30px;
|
2018-07-28 00:25:23 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.right {
|
|
|
|
.@{timeline-prefix-cls}-item-right {
|
|
|
|
.@{timeline-prefix-cls}-item-tail,
|
|
|
|
.@{timeline-prefix-cls}-item-head,
|
|
|
|
.@{timeline-prefix-cls}-item-head-custom {
|
|
|
|
left: 100%;
|
|
|
|
}
|
|
|
|
.@{timeline-prefix-cls}-item-content {
|
|
|
|
right: 0;
|
2018-07-30 23:05:57 +08:00
|
|
|
width: 100%;
|
|
|
|
left: -30px;
|
2018-07-28 00:25:23 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-14 16:43:48 +08:00
|
|
|
&&-pending &-item-last &-item-tail {
|
2018-04-20 11:23:37 +08:00
|
|
|
border-left: 2px dotted @timeline-color;
|
2016-01-14 16:43:48 +08:00
|
|
|
display: block;
|
|
|
|
}
|
2018-04-20 11:23:37 +08:00
|
|
|
|
|
|
|
&&-reverse &-item-last &-item-tail {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&&-reverse &-item-pending {
|
|
|
|
.@{timeline-prefix-cls}-item-tail {
|
|
|
|
border-left: 2px dotted @timeline-color;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.@{timeline-prefix-cls}-item-content {
|
|
|
|
min-height: 48px;
|
|
|
|
}
|
|
|
|
}
|
2015-09-01 21:15:31 +08:00
|
|
|
}
|