You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.3 KiB
69 lines
1.3 KiB
.steps-vertical() {
|
|
display: block;
|
|
.@{steps-prefix-cls}-item {
|
|
display: block;
|
|
overflow: visible;
|
|
&-icon {
|
|
float: left;
|
|
&-inner {
|
|
margin-right: 16px;
|
|
}
|
|
}
|
|
&-content {
|
|
min-height: 48px;
|
|
overflow: hidden;
|
|
display: block;
|
|
}
|
|
&-title {
|
|
line-height: @steps-icon-size;
|
|
}
|
|
&-description {
|
|
padding-bottom: 12px;
|
|
}
|
|
}
|
|
|
|
> .@{steps-prefix-cls}-item > .@{steps-prefix-cls}-item-tail {
|
|
position: absolute;
|
|
left: 13px;
|
|
top: 0;
|
|
height: 100%;
|
|
width: 1px;
|
|
padding: 30px 0 4px;
|
|
&:after {
|
|
height: 100%;
|
|
width: 1px;
|
|
}
|
|
}
|
|
|
|
> .@{steps-prefix-cls}-item:not(:last-child) > .@{steps-prefix-cls}-item-tail {
|
|
display: block;
|
|
}
|
|
|
|
> .@{steps-prefix-cls}-item > .@{steps-prefix-cls}-item-content > .@{steps-prefix-cls}-item-title {
|
|
&:after {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&.@{steps-prefix-cls}-small {
|
|
.@{steps-prefix-cls}-item-tail {
|
|
position: absolute;
|
|
left: 9px;
|
|
top: 0;
|
|
padding: 22px 0 4px;
|
|
}
|
|
.@{steps-prefix-cls}-item-title {
|
|
line-height: @steps-small-icon-size;
|
|
}
|
|
}
|
|
}
|
|
|
|
.@{steps-prefix-cls}-vertical {
|
|
.steps-vertical;
|
|
}
|
|
|
|
@media (max-width: @screen-xs) {
|
|
.@{steps-prefix-cls}-horizontal.@{steps-prefix-cls}-label-horizontal {
|
|
.steps-vertical;
|
|
}
|
|
}
|
|
|