From: Michael Jumper Date: Thu, 22 Mar 2012 02:19:04 +0000 (-0700) Subject: Going back to the old 0-0-0-0-0 method of hiding the text area... as doing otherwise... X-Git-Url: http://git.alex.org.uk 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. --- 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;