Skip to content

Instantly share code, notes, and snippets.

@davidpett
Last active December 16, 2015 20:59
Show Gist options
  • Save davidpett/5496434 to your computer and use it in GitHub Desktop.
Save davidpett/5496434 to your computer and use it in GitHub Desktop.
hide hover states on touch devices. leverages modernizr's html classes and SCSS magical &
@mixin over {
html.no-touch & {
&:hover,
&:focus {
@content;
}
}
html.touch & {
&:active {
@content;
}
-webkit-tap-highlight-color: rgba(#000, 0);
}
}
@import 'over';
a {
color: red;
@include over {
color: pink;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment