Andrew Grieve created CB-1557:
---------------------------------

             Summary: Sample App CSS breaks textboxes on iOS
                 Key: CB-1557
                 URL: https://issues.apache.org/jira/browse/CB-1557
             Project: Apache Cordova
          Issue Type: Bug
          Components: App Hello World
    Affects Versions: 2.1.0
            Reporter: Andrew Grieve
            Assignee: Andrew Grieve
            Priority: Minor
             Fix For: 2.2.0


The CSS has:

* {
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link 
selection, adjust last value opacity 0 to 1.0 */
    -webkit-touch-callout: none;                /* prevent callout to copy 
image, etc when tap to hold */
    -webkit-text-size-adjust: none;             /* prevent webkit from resizing 
text to fit */
    -webkit-user-select: none;                  /* prevent copy paste, to 
allow, change 'none' to 'text' */
}

All of these except -webkit-tap-highlight-color are inherited values though, 
and so we should set them only on the body. The effect of them being set on * 
is that text areas and input boxes cannot have a selection.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to