Skip to content

Commit

Permalink
Remove Select's dotted outline in Firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
moroshko committed Feb 6, 2020
1 parent 452054b commit f6c55a3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/components/Select.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,11 @@ function Select(props) {
},
":hover": {
...(!isDisabled && theme[`selectInput.${colorStr}:hover`])
},
// See: https://stackoverflow.com/a/19451423/247243
":-moz-focusring": {
color: "transparent",
textShadow: "0 0 0 #000"
}
}}
id={selectId}
Expand Down

0 comments on commit f6c55a3

Please sign in to comment.