Fix table width style

Tables generated by the markdown renderer don't honour the max-width property without applying word-break styling to the td elements
This commit is contained in:
Rory Maher 2021-05-06 13:23:38 +01:00
parent a083ceaf44
commit b010d2663d

View File

@ -122,6 +122,9 @@ body.mce-fullscreen, body.markdown-fullscreen {
max-width: 100%;
height: auto !important;
}
td {
word-break: break-word;
}
// diffs
ins,