[FIX] website_blog: display properly (very) long words in comments

This commit is contained in:
Richard Mathot 2014-05-28 17:23:28 +02:00
parent 6ed774de61
commit bf135ad057
4 changed files with 9 additions and 2 deletions

View File

@ -150,3 +150,7 @@ div#blog_angle_down a:hover {
mark + .popover {
cursor: pointer;
}
.discussion_scroll_post {
overflow-x: auto;
}

View File

@ -134,3 +134,6 @@ div#blog_angle_down
mark + .popover
cursor: pointer
.discussion_scroll_post
overflow-x: auto

View File

@ -9,7 +9,7 @@
<button class="btn btn-danger btn-xs js_publish_btn">Not Published</button>
<button class="btn btn-success btn-xs js_publish_btn">Published</button>
</div>
<div class="media-body">
<div class="media-body discussion_scroll_post">
<div t-esc='res.body'/>
<small class="text-muted">
by

View File

@ -236,7 +236,7 @@
"fields": ["name"]
}'/>
<span class="text-muted">on <span t-field="message.date"/></span>
<div t-field="message.body"/>
<div t-field="message.body" class="discussion_scroll_post"/>
</div>
</li>
</ul>