Fix table rendering in markdown (fixes #363)

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2018-11-09 16:47:41 +01:00
parent 7d64784dc4
commit 6a7ceee75f

View File

@@ -1518,6 +1518,19 @@ input.input-inline {
li input[type="checkbox"].checkbox:not(:checked) + label::before { li input[type="checkbox"].checkbox:not(:checked) + label::before {
background-color: $color-main-background; background-color: $color-main-background;
} }
table {
margin-bottom: 10px;
border-collapse: collapse;
thead {
background-color: var(--color-background-dark, $color-lightgrey);
}
td, th {
border: 1px solid var(--color-background-darker, $color-darkgrey);
padding: 3px;
}
}
} }
.section-wrapper { .section-wrapper {