mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:59:38 +08:00
d78c0f2707
* adjust table fixed column z-index (#14036) fix #13930 * 📝 Add instruction for one column without width left in fixed table * Add full PR template link in template (#14061) * add full tmpl link * adjust * simplify it * add cn link * Fix Affix flickering when scrolling * update * fix: top border disappeared under some ie9 * fix calendar month range display (#14049) * Fix tslint warning * Correct typescript usage (#14074) * 🐛 Fix steps style under IE9 close #14001 * 🐛 tweak style for not affecting vertical steps * 📝 enhance upload documentation * Input.Group with TimePicker disappear icon: https://codepen.io/mraiguo/pen/QzvvvE?editors=0010 * 🐛 Fix disabled button style in DatePicker panel https://user-images.githubusercontent.com/507615/50693143-17505400-1071-11e9-9114-b150bef8f7f6.png * 📝 site: fix BackTop been covered by footer close #14093 * Update PULL_REQUEST_TEMPLATE.md * Update pr_cn.md * 🐛 Fix nested Timeline last item missing line (#14110) close #14108 * init Spin should also support delay trigger (#14105) fix #14100 * Update table docs * bugfix * Format * update snapshot * test: fix spin test
159 lines
3.1 KiB
Plaintext
159 lines
3.1 KiB
Plaintext
@import '../../style/themes/default';
|
|
@import '../../style/mixins/index';
|
|
|
|
@timeline-prefix-cls: ~'@{ant-prefix}-timeline';
|
|
@timeline-color: @border-color-split;
|
|
|
|
.@{timeline-prefix-cls} {
|
|
.reset-component;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
&-item {
|
|
position: relative;
|
|
padding: 0 0 20px;
|
|
list-style: none;
|
|
margin: 0;
|
|
font-size: @font-size-base;
|
|
|
|
&-tail {
|
|
position: absolute;
|
|
left: 4px;
|
|
top: 0.75em;
|
|
height: 100%;
|
|
border-left: 2px solid @timeline-color;
|
|
}
|
|
|
|
&-pending &-head {
|
|
font-size: @font-size-sm;
|
|
}
|
|
|
|
&-pending &-tail {
|
|
display: none;
|
|
}
|
|
|
|
&-head {
|
|
position: absolute;
|
|
width: 10px;
|
|
height: 10px;
|
|
background-color: @component-background;
|
|
border-radius: 100px;
|
|
border: 2px solid transparent;
|
|
|
|
&-blue {
|
|
border-color: @primary-color;
|
|
color: @primary-color;
|
|
}
|
|
&-red {
|
|
border-color: @error-color;
|
|
color: @error-color;
|
|
}
|
|
&-green {
|
|
border-color: @success-color;
|
|
color: @success-color;
|
|
}
|
|
}
|
|
|
|
&-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: 5.5px;
|
|
left: 5px;
|
|
width: auto;
|
|
}
|
|
|
|
&-content {
|
|
margin: 0 0 0 18px;
|
|
position: relative;
|
|
top: -(@font-size-base * @line-height-base - @font-size-base) + 1px;
|
|
}
|
|
|
|
&-last {
|
|
> .@{timeline-prefix-cls}-item-tail {
|
|
display: none;
|
|
}
|
|
> .@{timeline-prefix-cls}-item-content {
|
|
min-height: 48px;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.@{timeline-prefix-cls}-alternate,
|
|
&.@{timeline-prefix-cls}-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;
|
|
width: 50%;
|
|
left: -30px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&.@{timeline-prefix-cls}-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;
|
|
width: 100%;
|
|
left: -30px;
|
|
}
|
|
}
|
|
}
|
|
|
|
&&-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;
|
|
}
|
|
}
|
|
}
|