Do not restrict width of hidden text area (can cause bumping of the screen as the...
authorMichael Jumper <zhangmaike@users.sourceforge.net>
Thu, 22 Mar 2012 01:58:12 +0000 (18:58 -0700)
committerMichael Jumper <zhangmaike@users.sourceforge.net>
Thu, 22 Mar 2012 01:58:12 +0000 (18:58 -0700)
src/main/webapp/styles/client.css

index 4466e37..84cee76 100644 (file)
@@ -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;