ant-design/components/timeline/style/index.less

89 lines
1.7 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
@import "../../style/mixins/index";
2015-09-01 21:15:31 +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;
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
}
&-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;
background-color: @component-background;
2015-11-05 21:25:43 +08:00
border-radius: 100px;
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 {
border-color: @primary-color;
color: @primary-color;
2015-09-01 21:15:31 +08:00
}
&-red {
border-color: @error-color;
color: @error-color;
2015-09-01 21:15:31 +08:00
}
&-green {
border-color: @success-color;
color: @success-color;
2015-09-01 21:15:31 +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;
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;
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
}
}
&&-pending &-item-last &-item-tail {
display: block;
}
2015-09-01 21:15:31 +08:00
}