From a8708653b2e194bb6d7f890fd6d68d434c6e5db2 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Wed, 21 Mar 2012 18:58:12 -0700 Subject: [PATCH] Do not restrict width of hidden text area (can cause bumping of the screen as the screen scrolls to follow the cursor as it wraps to a new line in the zero-width area). Hide off bottom right (instead of upper left). --- src/main/webapp/styles/client.css | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/main/webapp/styles/client.css b/src/main/webapp/styles/client.css index 4466e37..84cee76 100644 --- a/src/main/webapp/styles/client.css +++ b/src/main/webapp/styles/client.css @@ -217,11 +217,9 @@ div#viewportClone { textarea#eventTarget { position: fixed; - /* Zero... zero... zero... zero... zero... */ - right: 0; - bottom: 0; - width: 0; - height: 0; + /* Hide offscreen */ + left: 100%; + top: 100%; opacity: 0; overflow: hidden; -- 1.7.10.4