summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Mannehed <samuel@cendio.se>2022-10-28 16:12:29 +0200
committerSamuel Mannehed <samuel@cendio.se>2022-10-28 16:12:29 +0200
commitd3913c0dde8b6730e676e3bcee5334b3e0213013 (patch)
treefe01083e03a28de1167a67301de942423d4de3af
parent82253c1f1aee69bc7302de68a855e51588a4f58b (diff)
downloadnovnc-d3913c0dde8b6730e676e3bcee5334b3e0213013.tar.gz
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.
-rw-r--r--app/styles/base.css1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/styles/base.css b/app/styles/base.css
index df2123b..a6f219e 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%;