mirror of
https://github.com/zulip/zulip.git
synced 2026-07-12 21:04:41 +08:00
Implement borders using CSS rather than brs, style the way Waseem wants.
(imported from commit f4e23721a6eb0ffdd2d6e859b28417f0fdfbfe87)
This commit is contained in:
parent
57ede6bd29
commit
5b32048ade
@ -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) {
|
||||
|
||||
@ -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 {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user