diff options
author | Matthew Hodgson <matthew@matrix.org> | 2014-09-13 11:38:45 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2014-09-13 11:38:45 +0100 |
commit | 49b5dd56b53f0bb6a7ce678eb4b0ecd158df1eb3 (patch) | |
tree | 2488c584bb4aaa47d5b4f5f7f4bb76d259f8ffb7 /webclient | |
parent | always scroll to bottom when entering a room (diff) | |
download | synapse-49b5dd56b53f0bb6a7ce678eb4b0ecd158df1eb3.tar.xz |
unbreak wordwrapping by breaking multiline paste for now
Diffstat (limited to 'webclient')
-rwxr-xr-x | webclient/app.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/webclient/app.css b/webclient/app.css index a277bd2a59..064f626f0b 100755 --- a/webclient/app.css +++ b/webclient/app.css @@ -529,7 +529,8 @@ a:active { color: #000; } .bubble .message { /* Break lines when encountering CR+LF */ - white-space: pre; + /* FIXME: this breaks wordwrapping. We need to s#CRLF#<br/>#g instead */ +/* white-space: pre; */ } .bubble .messagePending { opacity: 0.3 |