﻿* {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    /* Our Javascript
    workaround for the soft keyboard not closing causes
    the touch highlight to appear. This removes the
    highlight. */
}

html {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

input, textarea, .content {
    -webkit-touch-callout: default;
    -webkit-user-select: text;
    user-select: text;
}