Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(search): adjust icon and hover styles on Close16 button for Chrome's new autofill color #4891

Merged
merged 10 commits into from
Dec 18, 2019
Original file line number Diff line number Diff line change
Expand Up @@ -2285,6 +2285,7 @@ exports[`DataTable should render 1`] = `
</label>
<input
aria-hidden={true}
autoComplete="off"
className="bx--search-input"
id="custom-id"
onChange={[Function]}
Expand Down Expand Up @@ -3262,6 +3263,7 @@ exports[`DataTable sticky header should render 1`] = `
</label>
<input
aria-hidden={true}
autoComplete="off"
className="bx--search-input"
id="custom-id"
onChange={[Function]}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ exports[`DataTable.TableToolbarSearch should render 1`] = `
</label>
<input
aria-hidden={true}
autoComplete="off"
className="bx--search-input"
id="custom-id"
onChange={[Function]}
Expand Down
1 change: 1 addition & 0 deletions packages/react/src/components/Search/Search.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ export default class Search extends Component {
</label>
<input
role="searchbox"
autoComplete="off"
{...other}
type={type}
className={`${prefix}--search-input`}
Expand Down