mirror of https://github.com/zulip/zulip.git
markdown: Fix the broken rendering of tables.
It was a regression introduced in the commit `0d08acaa1b5713be464dfca4836e5b238f45621c`.
This commit is contained in:
parent
127d1f995d
commit
f7f4d1ca58
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue