summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorBotMaster3000 <jdgebauer@gmx.de>2021-06-07 22:29:40 +0200
committerBotMaster3000 <jdgebauer@gmx.de>2021-06-07 22:29:40 +0200
commita509bbae5b0188d57b5a1d4765aebfd4a1cae2a7 (patch)
tree5283eba65fc31b9553d7e688a4f9eabbf67c904b /cli
parent5c4558ace570c183d756f5cfa4f244cfd0b0a2db (diff)
downloadonionshare-a509bbae5b0188d57b5a1d4765aebfd4a1cae2a7.tar.gz
onionshare-a509bbae5b0188d57b5a1d4765aebfd4a1cae2a7.zip
Set the word-break to break-word for the message-class, and removed the max-width again
As said by SaptakS, I applied the word-break to the message-Class. Since this breaks the line for long words without Spaces, as well as longer sentences, this is the better solution. Since the max-width now is redundant, it got removed again, as to not cause any future confusion.
Diffstat (limited to 'cli')
-rw-r--r--cli/onionshare_cli/resources/static/css/style.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/onionshare_cli/resources/static/css/style.css b/cli/onionshare_cli/resources/static/css/style.css
index 4805a3f2..7cec9738 100644
--- a/cli/onionshare_cli/resources/static/css/style.css
+++ b/cli/onionshare_cli/resources/static/css/style.css
@@ -202,7 +202,6 @@ ul.breadcrumbs li a:link, ul.breadcrumbs li a:visited {
}
.chat-wrapper {
- max-width: 80%;
display: flex;
flex-direction: column;
flex: 1;
@@ -230,6 +229,7 @@ ul.breadcrumbs li a:link, ul.breadcrumbs li a:visited {
display: block;
}
.chat-wrapper .message {
+ word-break: break-word;
font-weight: normal;
display: block;
margin-bottom: 0.3em;