Merge remote-tracking branch 'origin/support/3.0' into develop

# Conflicts:
#	css/backoffice/utils/helpers/_misc.scss
This commit is contained in:
Molkobain
2023-02-23 11:05:03 +01:00
4 changed files with 33 additions and 16 deletions

View File

@@ -82,6 +82,16 @@ $ibo-is-code--padding: 1.25rem 1.5rem !default;
border-spacing: 2px;
}
/*
* N°5317 - Handle overlapping tables when table cells have fixed widths
* Force table cell NOT to have a fixed width and to wrap when necessary
*/
td {
width: unset !important;
word-break: break-word !important;
white-space: unset !important;
}
/* Preserve original text color in code blocks, except for the Highlight.js blocks which have their own colors */
& > code,
code:not(.hljs) {