Skip to content

Commit

Permalink
fix gitlab issue
Browse files Browse the repository at this point in the history
  • Loading branch information
silentcloud committed Nov 3, 2016
1 parent f9da3de commit ef5f14d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/search-bar/style/index.less
Expand Up @@ -46,7 +46,7 @@
background: none;
text-align: left;
color: @color-text-placeholder;
font-size: @font-size-caption-sm;
font-size: @input-font-size;
line-height: 1.5;
}
&::-webkit-search-cancel-button {
Expand Down
2 changes: 1 addition & 1 deletion components/steps/index.web.tsx
Expand Up @@ -58,7 +58,7 @@ export default class Steps extends React.Component<StepsProps, any> {
}
}
} else {
className = index <= current ? null : 'ellipsis-item';
className = index <= current ? '' : 'ellipsis-item';
if (index <= current) {
iconName = 'check-circle-o';
} else if (item.props.status === 'error') {
Expand Down
2 changes: 1 addition & 1 deletion components/steps/style/index.less
Expand Up @@ -293,7 +293,7 @@
position: absolute;
left: 22px;
height: 100%;
width: 3px;
width: 4px;
padding: 0;
background-color: @border-color-base;
> i {
Expand Down

0 comments on commit ef5f14d

Please sign in to comment.