From 21b46e7bdfbf587f4ec352d2d11380fc6c51f6c2 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Wed, 21 Mar 2012 18:25:04 -0700 Subject: [PATCH] Locate event target off screen, in case platform doesn't support opacity of text areas (Android 4, for example). --- guacamole/src/main/webapp/styles/client.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/guacamole/src/main/webapp/styles/client.css b/guacamole/src/main/webapp/styles/client.css index 6147dee46..4466e3710 100644 --- a/guacamole/src/main/webapp/styles/client.css +++ b/guacamole/src/main/webapp/styles/client.css @@ -212,9 +212,17 @@ div#viewportClone { visibility: hidden; } +/* Keyboard event target */ + textarea#eventTarget { position: fixed; + + /* Zero... zero... zero... zero... zero... */ + right: 0; + bottom: 0; width: 0; height: 0; opacity: 0; + + overflow: hidden; } \ No newline at end of file