Skip to content

Instantly share code, notes, and snippets.

@2ndkauboy
Created October 28, 2014 23:29
Show Gist options
  • Save 2ndkauboy/9b9521fb674a9b637ee3 to your computer and use it in GitHub Desktop.
Save 2ndkauboy/9b9521fb674a9b637ee3 to your computer and use it in GitHub Desktop.
Reset the HTML form buttons font-family from "Helvetica Neue Desk Interface", forced by OS X Yosemite, back to it's original font-family.
input[type="submit"], input[type="reset"], input[type="button"], button {
font-family: inherit;
-webkit-font-smoothing: inherit;
}
@linusthe3rd
Copy link

This problem seems to also occur in textarea elements as well.

@2ndkauboy
Copy link
Author

@strife25 On which part of the textarea? The font-family for the textarea's content?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment