N°1616 - Fix large HTML table overflowing in HTML fields or logs

This commit is contained in:
Molkobain
2021-08-18 20:04:38 +02:00
parent 43412b78e3
commit 0c5ebc3a84
3 changed files with 21 additions and 2 deletions

View File

@@ -154,6 +154,11 @@ body.ibo-has-fullscreen-descendant {
.ibo-is-html-content {
@extend .content;
/* Force user-generated tables to fit within the container as they often have an hard-coded width */
table {
width: unset !important;
max-width: max-content;
}
code {
color: initial;
}