From a10a7886a998cd0dd6b466410e9768fec0f04365 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. --- guacamole/src/main/webapp/styles/client.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/guacamole/src/main/webapp/styles/client.css b/guacamole/src/main/webapp/styles/client.css index 84cee7668..067d73d68 100644 --- a/guacamole/src/main/webapp/styles/client.css +++ b/guacamole/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;