N°2788 - Constraint table with <pre> to fit as much as possible in its column

This commit is contained in:
Molkobain
2021-11-16 18:20:31 +01:00
parent 2a913cd484
commit d0f9868a19
3 changed files with 10 additions and 4 deletions

View File

@@ -195,6 +195,12 @@ $ibo-field--enable-bulk--checkbox--margin-left: 8px !default;
table {
table-layout: fixed;
width: 100%;
/* N°2788 - Force table containing <pre> to wrap as much as they can in the object details, otherwise it overflows on the other columns. We do this terrible hack only here as this is due to how the columns / fieldsets works. We might have the opportunity to improve it one day. */
pre {
white-space: unset;
word-break: break-all;
}
}
}
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long