From de38ed3de38168906f215631d67fc33e3eaafa75 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Wed, 21 Mar 2012 19:19:04 -0700 Subject: [PATCH] Going back to the old 0-0-0-0-0 method of hiding the text area... as doing otherwise causes issues with focus and "Enter" on Android. --- src/main/webapp/styles/client.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/styles/client.css b/src/main/webapp/styles/client.css index 84cee76..067d73d 100644 --- a/src/main/webapp/styles/client.css +++ b/src/main/webapp/styles/client.css @@ -218,8 +218,10 @@ textarea#eventTarget { position: fixed; /* Hide offscreen */ - left: 100%; - top: 100%; + left: 0; + top: 0; + width: 0; + height: 0; opacity: 0; overflow: hidden; -- 1.7.10.4