N°7611 - Remove table reset / unset CSS rules as overflow from HTML attribute has been fixed

This commit is contained in:
Molkobain
2024-07-18 09:32:09 +02:00
parent 7e79b27823
commit e73911c458
2 changed files with 1 additions and 17 deletions

View File

@@ -105,12 +105,6 @@ $ibo-figure--spacing-y: 2em !default;
.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;
}
/* For table to render like in CKEditor, works with bulma lib. overload see:
* - ../../vendors/_bulma-variables-overload.scss)
* - ../../_shame.scss
@@ -120,16 +114,6 @@ $ibo-figure--spacing-y: 2em !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) {

File diff suppressed because one or more lines are too long