You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by vn...@apache.org on 2018/01/16 18:42:03 UTC

[17/23] guacamole-client git commit: GUACAMOLE-352: Remove margin and padding from input sink.

GUACAMOLE-352: Remove margin and padding from input sink.

Project: http://git-wip-us.apache.org/repos/asf/guacamole-client/repo
Commit: http://git-wip-us.apache.org/repos/asf/guacamole-client/commit/b61f12d6
Tree: http://git-wip-us.apache.org/repos/asf/guacamole-client/tree/b61f12d6
Diff: http://git-wip-us.apache.org/repos/asf/guacamole-client/diff/b61f12d6

Branch: refs/heads/master
Commit: b61f12d69d03f57dcdc6195f62b097c6a30dad3e
Parents: 4b93347
Author: Michael Jumper <mj...@apache.org>
Authored: Tue Dec 19 09:42:33 2017 -0800
Committer: Michael Jumper <mj...@apache.org>
Committed: Tue Jan 16 10:20:43 2018 -0800

----------------------------------------------------------------------
 guacamole-common-js/src/main/webapp/modules/Keyboard.js | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/guacamole-client/blob/b61f12d6/guacamole-common-js/src/main/webapp/modules/Keyboard.js
----------------------------------------------------------------------
diff --git a/guacamole-common-js/src/main/webapp/modules/Keyboard.js b/guacamole-common-js/src/main/webapp/modules/Keyboard.js
index 5495867..6902610 100644
--- a/guacamole-common-js/src/main/webapp/modules/Keyboard.js
+++ b/guacamole-common-js/src/main/webapp/modules/Keyboard.js
@@ -1443,6 +1443,8 @@ Guacamole.Keyboard.InputSink = function InputSink() {
     field.style.position   = 'fixed';
     field.style.outline    = 'none';
     field.style.border     = 'none';
+    field.style.margin     = '0';
+    field.style.padding    = '0';
     field.style.height     = '0';
     field.style.width      = '0';
     field.style.left       = '0';