From c12e5b2b544aff6f662c7f61f82ce40d132e14df Mon Sep 17 00:00:00 2001 From: Samuel Mannehed Date: Fri, 1 May 2020 13:30:01 +0200 Subject: [PATCH] Hide the clipboard when not connected Fixes github issue #1367. --- app/styles/base.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/styles/base.css b/app/styles/base.css index d87fa4f9..ae9768d0 100644 --- a/app/styles/base.css +++ b/app/styles/base.css @@ -663,6 +663,9 @@ select:active { :root:not(.noVNC_connected) #noVNC_clipboard_button { display: none; } +:root:not(.noVNC_connected) #noVNC_clipboard { + display: none; +} #noVNC_clipboard { /* Full screen, minus padding and left and right margins */ max-width: calc(100vw - 2*15px - 75px - 25px);