From a015e331110081aa8d087913d48f4b1569ccffb8 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. --- kasmweb/app/styles/base.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kasmweb/app/styles/base.css b/kasmweb/app/styles/base.css index 55a5d90..d49289f 100644 --- a/kasmweb/app/styles/base.css +++ b/kasmweb/app/styles/base.css @@ -679,6 +679,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);