From 5c4558ace570c183d756f5cfa4f244cfd0b0a2db Mon Sep 17 00:00:00 2001 From: BotMaster3000 Date: Mon, 7 Jun 2021 20:15:10 +0200 Subject: [PATCH] Set the Max-Width of the Chat-Window to 80% Too long single-line messages can cause the ChatUser-Panel to disappear. Allowing the windows of the Chat to be only 80% of width will cause a automatic linebreak in such a case. --- cli/onionshare_cli/resources/static/css/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/onionshare_cli/resources/static/css/style.css b/cli/onionshare_cli/resources/static/css/style.css index 57b23fdb..4805a3f2 100644 --- a/cli/onionshare_cli/resources/static/css/style.css +++ b/cli/onionshare_cli/resources/static/css/style.css @@ -202,6 +202,7 @@ ul.breadcrumbs li a:link, ul.breadcrumbs li a:visited { } .chat-wrapper { + max-width: 80%; display: flex; flex-direction: column; flex: 1;