From 79b98ee9ef5048bdf775ad8b3f23500fb9dab27b Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Mon, 21 Apr 2014 10:57:12 -0700 Subject: [PATCH] GUAC-324: Copy settings and clipboard from login screen. --- guacamole/src/main/webapp/client.xhtml | 51 +++++++++++++++++++-- guacamole/src/main/webapp/styles/client.css | 27 +++++++++++ 2 files changed, 74 insertions(+), 4 deletions(-) diff --git a/guacamole/src/main/webapp/client.xhtml b/guacamole/src/main/webapp/client.xhtml index 6d5cb5dbe..eb15bb085 100644 --- a/guacamole/src/main/webapp/client.xhtml +++ b/guacamole/src/main/webapp/client.xhtml @@ -56,12 +56,55 @@ diff --git a/guacamole/src/main/webapp/styles/client.css b/guacamole/src/main/webapp/styles/client.css index 3918d0a0d..6efbab9f2 100644 --- a/guacamole/src/main/webapp/styles/client.css +++ b/guacamole/src/main/webapp/styles/client.css @@ -576,3 +576,30 @@ p.hint { -webkit-animation-timing-function: linear; -webkit-animation-duration: 0.05s; } + +div#settings, +div#clipboardDiv { + margin: 1em; + padding: 0; +} + +#clipboardDiv textarea { + width: 100%; + border: 1px solid #AAA; + -moz-border-radius: 0.25em; + -webkit-border-radius: 0.25em; + -khtml-border-radius: 0.25em; + border-radius: 0.25em; + white-space: pre; +} + +#settings dt { + border-bottom: 1px dotted #AAA; + padding-bottom: 0.25em; +} + +#settings dd { + margin: 1.5em; + margin-left: 2.5em; + font-size: 0.75em; +} \ No newline at end of file