From d3913c0dde8b6730e676e3bcee5334b3e0213013 Mon Sep 17 00:00:00 2001 From: Samuel Mannehed Date: Fri, 28 Oct 2022 16:12:29 +0200 Subject: [PATCH] Limit webaccess clipboard textarea min width The clipboard textarea could potentially shrink further than what was possible for the header text elements, which looked a bit broken. In that regard, a min width is introduced for the textarea. --- app/styles/base.css | 1 + 1 file changed, 1 insertion(+) diff --git a/app/styles/base.css b/app/styles/base.css index df2123b3..a6f219e1 100644 --- a/app/styles/base.css +++ b/app/styles/base.css @@ -572,6 +572,7 @@ html { } #noVNC_clipboard_text { width: 500px; + min-width: 150px; box-sizing: border-box; max-width: 100%;