Last active
August 29, 2015 14:27
-
-
Save dscamahorn/f83ebf3889aaf6f9dbe2 to your computer and use it in GitHub Desktop.
Responsive :hover and :active for the mobile web - http://alxgbsn.co.uk/2011/10/17/enable-css-active-pseudo-styles-in-mobile-safari/
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
button { | |
background-color: #fff; | |
border:solid 1px #333; | |
color: #000; | |
.no-touch &:hover, .touch &:active { | |
background-color: #333; | |
color: #fff; | |
} | |
} |
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
document.addEventListener("touchstart", function() {},false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment