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

This commit is contained in:
Michael Jumper
2017-12-19 09:42:33 -08:00
parent 4b93347617
commit b61f12d69d

View File

@@ -1443,6 +1443,8 @@ Guacamole.Keyboard.InputSink = function InputSink() {
field.style.position = 'fixed'; field.style.position = 'fixed';
field.style.outline = 'none'; field.style.outline = 'none';
field.style.border = 'none'; field.style.border = 'none';
field.style.margin = '0';
field.style.padding = '0';
field.style.height = '0'; field.style.height = '0';
field.style.width = '0'; field.style.width = '0';
field.style.left = '0'; field.style.left = '0';