FEATURE: site setting to allow html tables (which may come from imports)

(allow_html_tables , disabled by default)
This commit is contained in:
Sam
2015-07-20 16:56:32 +10:00
parent c552f846ae
commit e93665b9f7
7 changed files with 122 additions and 5 deletions

View File

@@ -243,4 +243,20 @@ blockquote > *:last-child {
}
table.md-table {
thead {
border-bottom: 2px solid lighten($primary, 80%);
th {
text-align: left;
padding-bottom: 2px;
}
}
td,th {
padding: 3px 3px 3px 10px;
}
tr {
border-bottom: 1px solid lighten($primary, 80%);
}
}