You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by GitBox <gi...@apache.org> on 2021/02/03 23:45:11 UTC

[GitHub] [cordova-plugin-inappbrowser] ivanlondono commented on issue #762: Unable to Paste into input field

ivanlondono commented on issue #762:
URL: https://github.com/apache/cordova-plugin-inappbrowser/issues/762#issuecomment-772905609


   Disable select touch and hold and highlight colors, in css file
   also you can set that in a specific form field
   
   ```
   html {
       -webkit-user-select: none;
       -webkit-touch-callout: none;
       -webkit-tap-highlight-color:rgba(0,0,0,0);
   }
   ```
   and if you still want it to work for input then just add 
   ```
   input {
       -webkit-user-select: auto !important;
       -webkit-touch-callout: default !important;
   }
   ```


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org