Fixed Broken Change Log

I've seen that issue, too.

I've just tested in the Chrome developer tools that adding word-break: break-word; to the table cells fixes it.
 
This is a bigger pain than it might first appear. The above word-break solution kinda works but then it can seriously mess up other cells:

1535058701939.webp

So table-layout fixed might help:

1535058741001.webp

Until the responsive table stuff kicks in:

1535058794888.webp

So, yeah, it's a pain.
 
Have you tried adding word-break: break-word; only to the "old" and "new" cells (i.e. not to the whole table)? :)
 
I tried a few permutations.

With word-break: break-word; only on the old and new cells, rather than all cells, that works fine, and likely doesn't require table-layout: fixed; but there's still issues with responsive tables:

1535120861290.webp

Though at this point we might be looking at more of an issue with our responsive tables than anything else.
 
Yeah, this could be fixed by adding "word-break: normal" to the generated-content ::before elements.
 
Back
Top Bottom