From: Michael Jumper Date: Thu, 22 Mar 2012 01:58:12 +0000 (-0700) Subject: Do not restrict width of hidden text area (can cause bumping of the screen as the... X-Git-Url: http://git.alex.org.uk 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). --- 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;