ant-design/components/steps/style/progress-dot.less

79 lines
1.8 KiB
Plaintext
Raw Normal View History

.@{steps-prefix-cls}-dot {
.@{steps-prefix-cls}-item {
2017-10-31 14:04:07 +08:00
&-title {
line-height: @line-height-base;
}
&-tail {
2017-10-19 14:52:11 +08:00
top: 2px;
width: 100%;
margin: 0 0 0 @steps-desciption-max-width / 2;
padding: 0;
&::after {
2018-12-07 20:02:01 +08:00
width: ~'calc(100% - 20px)';
height: 3px;
2017-10-19 14:52:11 +08:00
margin-left: 12px;
}
}
2017-10-19 14:52:11 +08:00
&:first-child .@{steps-prefix-cls}-icon-dot {
left: 2px;
}
&-icon {
width: @steps-dot-size;
height: @steps-dot-size;
margin-left: 67px;
padding-right: 0;
line-height: @steps-dot-size;
2017-09-07 11:00:36 +08:00
background: transparent;
border: 0;
.@{steps-prefix-cls}-icon-dot {
position: relative;
float: left;
width: 100%;
height: 100%;
2017-09-07 11:00:36 +08:00
border-radius: 100px;
2018-12-07 20:02:01 +08:00
transition: all 0.3s;
2017-09-07 11:00:36 +08:00
/* expand hover area */
&::after {
2017-09-07 11:00:36 +08:00
position: absolute;
top: -12px;
left: -26px;
width: 60px;
height: 32px;
background: fade(@black, 0.1%);
content: '';
2017-09-07 11:00:36 +08:00
}
}
}
2018-07-24 10:57:45 +08:00
&-content {
width: @steps-desciption-max-width;
}
2017-09-07 11:00:36 +08:00
&-process .@{steps-prefix-cls}-item-icon {
width: @steps-current-dot-size;
height: @steps-current-dot-size;
line-height: @steps-current-dot-size;
.@{steps-prefix-cls}-icon-dot {
2017-09-07 11:00:36 +08:00
top: -1px;
}
}
}
}
2017-10-31 15:14:23 +08:00
.@{steps-prefix-cls}-vertical.@{steps-prefix-cls}-dot {
.@{steps-prefix-cls}-item-icon {
margin-top: 8px;
margin-left: 0;
2017-10-31 15:14:23 +08:00
}
.@{steps-prefix-cls}-item-tail {
top: 2px;
left: -9px;
margin: 0;
2017-10-31 15:14:23 +08:00
padding: 22px 0 4px;
}
.@{steps-prefix-cls}-item:first-child .@{steps-prefix-cls}-icon-dot {
left: 0;
}
.@{steps-prefix-cls}-item-process .@{steps-prefix-cls}-icon-dot {
left: -2px;
}
}