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

108 lines
2.1 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} {
.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;
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;
}
&-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;
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
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;
line-height: 1;
margin-top: 0;
border: 0;
height: auto;
border-radius: 0;
padding: 3px 1px;
transform: translate(-50%, -50%);
top: 5px;
left: 5px;
width: auto;
}
2015-09-01 21:15:31 +08:00
&-content {
padding: 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 {
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 {
border-left: 2px dotted @timeline-color;
display: block;
}
&&-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
}