N°2788 - Constraint table to fit as much as possible in its column

This commit is contained in:
Molkobain
2021-11-17 15:55:01 +01:00
parent b0904cabfd
commit db8462ccc9
3 changed files with 7 additions and 7 deletions

View File

@@ -196,9 +196,9 @@ $ibo-field--enable-bulk--checkbox--margin-left: 8px !default;
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;
/* N°2788 - Force table 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. */
* {
white-space: break-spaces;
word-break: break-all;
}
}