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

Removed moz border on focus from EuiSelect #3178

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/components/form/select/_select.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,8 @@
color: $euiTextColor;
background: transparent;
}
&:-moz-focusring {
color: transparent;
text-shadow: 0 0 0 #000;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You will need to use SASS vars for colors as you see above in the IE fix.

You should also turn linting on in your editor and not skip the pre-commit hooks which would have alerted you to the errors here.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sure @cchaos

}
}