diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2012-10-09 18:05:04 +0200 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2012-10-09 18:05:04 +0200 |
commit | c0ee7065e3ab7993cce6f80d57bc17ace4ee2973 (patch) | |
tree | c45907ae2bc6f8af36e44b20799de4a0499c14aa /hyperkitty/static | |
parent | 1cc470db0151443fda2ba06e450d6a6cc82a2d90 (diff) | |
download | hyperkitty-c0ee7065e3ab7993cce6f80d57bc17ace4ee2973.tar.gz hyperkitty-c0ee7065e3ab7993cce6f80d57bc17ace4ee2973.tar.xz hyperkitty-c0ee7065e3ab7993cce6f80d57bc17ace4ee2973.zip |
Add overflow on message contents
Diffstat (limited to 'hyperkitty/static')
-rw-r--r-- | hyperkitty/static/css/thread.css | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/hyperkitty/static/css/thread.css b/hyperkitty/static/css/thread.css index e600074..e86bba6 100644 --- a/hyperkitty/static/css/thread.css +++ b/hyperkitty/static/css/thread.css @@ -220,6 +220,14 @@ header .thread-newer { font-size: 90%; } +.first_email_body, .email_body { + white-space: pre; + display: inline-block; +} +.first_email_body { + width: 100%; + overflow: auto; +} .email_body{ -webkit-border-radius: 5px 5px 5px 5px; -moz-border-radius: 5px 5px 5px 5px; @@ -230,16 +238,9 @@ header .thread-newer { padding: 5px; min-height: 40px; background-color: rgb(255, 255, 255); - white-space: pre; - display: inline-block; width: 95%; } -.first_email_body { - white-space: pre; - display: inline-block; -} - .email_body a { float: right; |