Implement borders using CSS rather than brs, style the way Waseem wants.

(imported from commit f4e23721a6eb0ffdd2d6e859b28417f0fdfbfe87)
This commit is contained in:
Luke Faraone 2012-09-18 17:19:29 -04:00
parent 57ede6bd29
commit 5b32048ade
2 changed files with 7 additions and 1 deletions

View File

@ -631,7 +631,7 @@ function add_to_tables(zephyr, parent, table) {
} else {
zephyr.include_recipient = true;
// add a space to the table
table.append($('<tr />').append($('<td />')).append($('<td />')).append($('<td />').html('<br/>').addClass('bookend')));
table.append($('<tr />').append($('<td />')).append($('<td />')).append($('<td />').addClass('bookend')));
}
if (parent !== undefined && !zephyr.include_recipient && zephyr.sender === parent.sender) {

View File

@ -141,6 +141,12 @@ td.messagebox {
margin-bottom: 20px;
background-color: white;
border: 1px solid gray;
border-bottom: 0px solid gray;
}
td.bookend {
border-top: 1px solid gray;
padding-top: 5px;
}
td.collapsed_child {