From f0fea1fccd503f33b2776fdb45f25c1bbe2fe3d5 Mon Sep 17 00:00:00 2001 From: Samuel Mannehed Date: Fri, 28 Oct 2022 16:04:45 +0200 Subject: [PATCH] Fix max-width of clipboard textarea It should not be able to "eat" its parent-panel's padding. By setting box-sizing: border-box we can prevent this. --- app/styles/base.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/styles/base.css b/app/styles/base.css index b015b4d7..79ada87f 100644 --- a/app/styles/base.css +++ b/app/styles/base.css @@ -572,6 +572,8 @@ html { } #noVNC_clipboard_text { width: 500px; + + box-sizing: border-box; max-width: 100%; }