From 9561479bd659e256d9c4a4b83ca347e0ba97ca09 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). --- src/main/webapp/styles/client.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main/webapp/styles/client.css b/src/main/webapp/styles/client.css index 6147dee..4466e37 100644 --- a/src/main/webapp/styles/client.css +++ b/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 -- 1.7.10.4