Created
April 5, 2015 23:14
-
-
Save craigmdennis/275deb829529874e86a0 to your computer and use it in GitHub Desktop.
Add hover events just for devices without touch capabilities
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// .no-touch should be applied to the `html` or `body` elements with Modernizr or other script. | |
@mixin hover { | |
.no-touch & { | |
&:hover { | |
@content; | |
} | |
} | |
} | |
.panel { | |
background-color: red; | |
@include hover { | |
background-color: blue; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment