From 433bb6e294c8778e1567fbbe4b5c73f533cbe6cb Mon Sep 17 00:00:00 2001 From: Dan Jordan Date: Wed, 11 Dec 2013 08:56:47 +0000 Subject: [PATCH] Add user-select value for input and textarea as user-select: none; breaks ability to type into inputs --- css/styles.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/css/styles.css b/css/styles.css index 15f3960..d33322a 100644 --- a/css/styles.css +++ b/css/styles.css @@ -2,6 +2,10 @@ -webkit-user-select: none; } +input, textarea { + -webkit-user-select: text; +} + body { padding: 0px; margin: 0px; @@ -94,4 +98,4 @@ a { .robot > p { clear: both; -} \ No newline at end of file +}