Skip to content

Commit

Permalink
Merge pull request #140 from KrivonosPaul/remove-x-from-SearchInput-IE
Browse files Browse the repository at this point in the history
fix(SearchInput): fixed typo in pseudo-element for IE
  • Loading branch information
ooHmartY authored Sep 17, 2018
2 parents dd1a326 + 3ab7633 commit 8e2f1d7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/Input/Search.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const Input = styled.input.attrs({
&::placeholder {
color: ${props => (props.invert ? "#26262699" : colors.white.base)};
}
&::ms-clear {
&::-ms-clear {
display: none;
}
&::-webkit-search-cancel-button {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ exports[`SearchInput renders default input 1`] = `
color: rgba(255,255,255,1);
}
.c2::ms-clear {
.c2::-ms-clear {
display: none;
}
Expand Down Expand Up @@ -167,7 +167,7 @@ exports[`SearchInput renders inverted input 1`] = `
color: #26262699;
}
.c2::ms-clear {
.c2::-ms-clear {
display: none;
}
Expand Down Expand Up @@ -285,7 +285,7 @@ exports[`SearchInput renders slim & inverted input 1`] = `
color: #26262699;
}
.c2::ms-clear {
.c2::-ms-clear {
display: none;
}
Expand Down Expand Up @@ -403,7 +403,7 @@ exports[`SearchInput renders slim input 1`] = `
color: rgba(255,255,255,1);
}
.c2::ms-clear {
.c2::-ms-clear {
display: none;
}
Expand Down

0 comments on commit 8e2f1d7

Please sign in to comment.