From b61f12d69d03f57dcdc6195f62b097c6a30dad3e Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Tue, 19 Dec 2017 09:42:33 -0800 Subject: [PATCH] GUACAMOLE-352: Remove margin and padding from input sink. --- guacamole-common-js/src/main/webapp/modules/Keyboard.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/guacamole-common-js/src/main/webapp/modules/Keyboard.js b/guacamole-common-js/src/main/webapp/modules/Keyboard.js index 549586787..690261086 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';