Skip to content

Commit

Permalink
🐛 tweak style for not affecting vertical steps
Browse files Browse the repository at this point in the history
  • Loading branch information
afc163 committed Jan 4, 2019
1 parent 9a38059 commit 7d70d20
Showing 1 changed file with 44 additions and 4 deletions.
48 changes: 44 additions & 4 deletions components/steps/style/compatibility.less
Original file line number Diff line number Diff line change
@@ -1,7 +1,47 @@
.@{steps-prefix-cls}-flex-not-supported {
.@{steps-prefix-cls}-item {
background: @steps-background;
padding-left: 10px;
margin-left: -10px;
&.@{steps-prefix-cls}-horizontal.@{steps-prefix-cls}-label-horizontal {
.@{steps-prefix-cls}-item {
background: @steps-background;
padding-left: 16px;
margin-left: -16px;
}

&.@{steps-prefix-cls}-small .@{steps-prefix-cls}-item {
padding-left: 12px;
margin-left: -12px;
}
}

&.@{steps-prefix-cls}-dot {
.@{steps-prefix-cls}-item {
&:last-child {
overflow: hidden;

.@{steps-prefix-cls}-icon-dot:after {
width: 200px;
right: -200px;
}
}

.@{steps-prefix-cls}-icon-dot:before,
.@{steps-prefix-cls}-icon-dot:after {
content: '';
position: absolute;
background: @steps-background;
width: 10px;
height: 8px;
top: 0;
left: -10px;
}

.@{steps-prefix-cls}-icon-dot:after {
left: auto;
right: -10px;
}
}

.@{steps-prefix-cls}-item-wait .@{steps-prefix-cls}-item-icon > .@{steps-prefix-cls}-icon .@{steps-prefix-cls}-icon-dot {
background: #ccc;
}
}
}

0 comments on commit 7d70d20

Please sign in to comment.