From 8ec255d545e4c9960f653281408a0132afaa1b48 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Wed, 16 Dec 2015 17:06:16 -0800 Subject: [PATCH] GUAC-1440: Fix rendering of textarea elements within the admin UI. --- guacamole/src/main/webapp/app/index/styles/input.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/guacamole/src/main/webapp/app/index/styles/input.css b/guacamole/src/main/webapp/app/index/styles/input.css index d5e5820f8..a912cd8c3 100644 --- a/guacamole/src/main/webapp/app/index/styles/input.css +++ b/guacamole/src/main/webapp/app/index/styles/input.css @@ -42,6 +42,7 @@ textarea { max-width: none; width: 30em; height: 10em; - white-space: nowrap; + white-space: pre; + word-wrap: normal; overflow: auto; }