/* Restore multi-word / paragraph selection on touch devices in admin,
   user, and public post/edit forms. */
@media (hover: none) and (pointer: coarse), (max-width: 991px) {
	textarea,
	textarea.form-control,
	input.form-control,
	.form-control,
	[contenteditable="true"],
	.cke_editable,
	.cke_editable_inline {
		-webkit-user-select: text !important;
		user-select: text !important;
		-webkit-touch-callout: default !important;
		touch-action: auto !important;
	}

	.cke_inner,
	.cke_contents,
	.cke_wysiwyg_frame,
	.cke_wysiwyg_div {
		-webkit-touch-callout: default !important;
		-webkit-user-select: text !important;
		user-select: text !important;
		touch-action: auto !important;
	}
}
