Skip to content

Instantly share code, notes, and snippets.

@mantaskaveckas
Created May 27, 2015 11:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mantaskaveckas/fc7f79025fce92fe422d to your computer and use it in GitHub Desktop.
Save mantaskaveckas/fc7f79025fce92fe422d to your computer and use it in GitHub Desktop.
Simple Sass @mixin to remove default appearance for Twitter Bootstrap elements
/*
* Simple Sass @mixin to remove default
* appearance for Twitter Bootstrap elements
*/
@mixin remove-appearance {
&, &:hover, &:focus {
-webkit-appearance: none;
text-decoration: none;
outline: 0;
border: 0;
}
background: none;
padding: 0;
margin: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment