/* Disable text selection so touch-drag scrolls. Apply to everything. */ html, body, body *, body *::before, body *::after, input, textarea, [contenteditable="true"] { user-select: none !important; -webkit-user-select: none !important; -moz-user-select: none !important; -ms-user-select: none !important; } /* Allow selection in inputs so users can edit if needed */ input:focus, textarea:focus, [contenteditable="true"]:focus { user-select: text !important; -webkit-user-select: text !important; }