Created
June 15, 2011 08:59
-
-
Save feedhenry-gists/1026739 to your computer and use it in GitHub Desktop.
HTML and iScroll Tabbed UI Template Disable Browser Features
This file contains hidden or 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
* { | |
/* prevent callout to copy image, etc when tap to hold */ | |
-webkit-touch-callout: none; | |
/* make transparent link selection, adjust last value opacity 0 to 1.0 */ | |
-webkit-tap-highlight-color: rgba(0,0,0,0); | |
/* prevent copy paste, to allow, change 'none' to 'text' */ | |
-webkit-user-select: none; | |
/*turn off auto font size adjusting (otherwise fonts will get bigger in landscape mode)*/ | |
-webkit-text-size-adjust: none; | |
-ms-text-size-adjust: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment