1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fix #8097: Re-fix markdown table rendering

This commit is contained in:
kkthxbye-code
2021-12-20 23:31:24 +01:00
parent 4a3bc8d365
commit 3a54ecb522
9 changed files with 25 additions and 8 deletions

View File

@@ -965,6 +965,19 @@ div.card-overlay {
max-width: unset;
}
/* Rendered Markdown */
.rendered-markdown table {
width: 100%;
}
.rendered-markdown th {
border-bottom: 2px solid #dddddd;
padding: 8px;
}
.rendered-markdown td {
border-top: 1px solid #dddddd;
padding: 8px;
}
// Preformatted text blocks
td pre {
margin-bottom: 0