Skip to content

Instantly share code, notes, and snippets.

@davidpett
Created April 10, 2014 15:30
Show Gist options
  • Save davidpett/10394220 to your computer and use it in GitHub Desktop.
Save davidpett/10394220 to your computer and use it in GitHub Desktop.
@mixin over($mobile-touch-class:false) {
html.no-touch & {
&:hover,
&:focus {
@content;
}
}
html.touch & {
@if $mobile-touch-class {
&.#{$mobile-touch-class} {
@content;
}
}
@else {
&:active {
@content;
}
}
-webkit-tap-highlight-color: rgba(#000, 0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment