From 6936aef5406f32a7f53b61a6957da06bedd7490d Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Mon, 5 Aug 2019 13:45:11 -0700 Subject: [PATCH] GUACAMOLE-630: Allow connection parameters within Guacamole menu to use full available width. --- .../src/main/webapp/app/client/styles/guac-menu.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/guacamole/src/main/webapp/app/client/styles/guac-menu.css b/guacamole/src/main/webapp/app/client/styles/guac-menu.css index 9e0fb7ca7..3a9d8fff8 100644 --- a/guacamole/src/main/webapp/app/client/styles/guac-menu.css +++ b/guacamole/src/main/webapp/app/client/styles/guac-menu.css @@ -199,3 +199,16 @@ font-weight: bold; } + +#guac-menu #connection-settings .form .fields { + width: 100%; +} + +#guac-menu #connection-settings .form .fields .field-header { + width: 0; + white-space: nowrap; +} + +#guac-menu #connection-settings .form .fields .form-field { + width: 100%; +}