Skip to content

Instantly share code, notes, and snippets.

@ncole458
Last active January 4, 2016 05:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ncole458/49bb6b0309572dc429ea to your computer and use it in GitHub Desktop.
Save ncole458/49bb6b0309572dc429ea to your computer and use it in GitHub Desktop.
Native UI tweaks for Cordova/PhoneGap apps
/*********************************************************************************
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