From dc012e4226a5a561473499d5a28575313d709053 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Mon, 25 Mar 2019 17:00:56 -0700 Subject: [PATCH] GUACAMOLE-723: Hide scrollbar and thumbnails when client panel is hidden. --- .../webapp/app/client/styles/other-connections.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/guacamole/src/main/webapp/app/client/styles/other-connections.css b/guacamole/src/main/webapp/app/client/styles/other-connections.css index 0570c23e0..41069ded4 100644 --- a/guacamole/src/main/webapp/app/client/styles/other-connections.css +++ b/guacamole/src/main/webapp/app/client/styles/other-connections.css @@ -100,6 +100,18 @@ } +#other-connections .client-panel.hidden .client-panel-connection-list { + /* Hide scrollbar when panel is hidden (will be visible through panel + * show/hide button otherwise) */ + overflow-x: hidden; +} + +#other-connections .client-panel.hidden .client-panel-connection { + /* Hide thumbnails when panel is hidden (will be visible through panel + * show/hide button otherwise) */ + visibility: hidden; +} + #other-connections .client-panel-connection .name { position: absolute;