diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2017-11-13 19:07:38 +0100 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2017-11-17 15:10:50 +0100 |
commit | 5d85af79b63a2925032a137008e9a6944091ae05 (patch) | |
tree | de8662cf4dffedd0563f512d5b5e99780ba28cfd /apps/comments | |
parent | e23921c7b1db72595dfb89c344c6e2c7081012b0 (diff) | |
download | nextcloud-server-5d85af79b63a2925032a137008e9a6944091ae05.tar.gz nextcloud-server-5d85af79b63a2925032a137008e9a6944091ae05.zip |
Force breaks on extremely long words
If not broken extremely long words overflow their container.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'apps/comments')
-rw-r--r-- | apps/comments/css/comments.css | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/comments/css/comments.css b/apps/comments/css/comments.css index 09771b4e954..1ed418df2fc 100644 --- a/apps/comments/css/comments.css +++ b/apps/comments/css/comments.css @@ -60,6 +60,8 @@ #commentsTabView .comment { position: relative; margin-bottom: 30px; + word-wrap: break-word; + overflow-wrap: break-word; } #commentsTabView .comment .avatar, |