markdown: Fix the broken rendering of tables.

It was a regression introduced in the commit
`0d08acaa1b5713be464dfca4836e5b238f45621c`.
This commit is contained in:
Harshit Bansal 2017-07-09 06:36:58 +00:00 committed by Tim Abbott
parent 127d1f995d
commit f7f4d1ca58
1 changed files with 3 additions and 3 deletions

View File

@ -1414,18 +1414,18 @@ div.message_content thead {
background-color: hsl(0, 0%, 93%);
}
div.message_content div {
div.message_content tr {
display: table-row;
vertical-align: inherit;
}
div.message_content div {
div.message_content tr th {
border: 1px solid hsl(0, 0%, 80%);
padding: 4px;
text-align: left;
}
div.message_content div {
div.message_content tr td {
border: 1px solid hsl(0, 0%, 80%);
padding: 4px;
}