Last active
January 4, 2016 05:17
-
-
Save ncole458/49bb6b0309572dc429ea to your computer and use it in GitHub Desktop.
Native UI tweaks for Cordova/PhoneGap apps
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
/********************************************************************************* | |
Author: Nicholas Cole | |
Author URI: http://oceanbluecreative.com.au | |
License: MIT | |
Usage: Sass Partial for native UI tweaks in Cordova/PhoneGap apps | |
Gist: https://gist.github.com/ncole458/49bb6b0309572dc429ea | |
**********************************************************************************/ | |
// Disable text selection | |
* { | |
-webkit-user-select: none; | |
-khtml-user-select: none; | |
-moz-user-select: none; | |
-ms-user-select: none; | |
user-select: none; | |
} | |
input { | |
-webkit-user-select: auto !important; | |
-khtml-user-select: auto !important; | |
-moz-user-select: auto !important; | |
-ms-user-select: auto !important; | |
user-select: auto !important; | |
} | |
// Disable Anchor pop-up | |
* { | |
-webkit-touch-callout: none; | |
-moz-touch-callout: none; | |
-ms-touch-callout: none; | |
touch-callout: none; | |
} | |
// Disable DOM element drag | |
* { | |
-webkit-user-drag: none; | |
-moz-user-drag: none; | |
-ms-user-drag: none; | |
user-drag: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment