Revisions: set the table layout to fixed and word-wrap to break-word so long lines don't cause issues.
Props azaozz. Fixes #24901 for trunk. git-svn-id: https://develop.svn.wordpress.org/trunk@24929 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
71fe031bc3
commit
301258c30b
|
@ -3681,8 +3681,10 @@ body.folded .revisions .loading-indicator {
|
||||||
}
|
}
|
||||||
|
|
||||||
table.diff {
|
table.diff {
|
||||||
|
table-layout: fixed;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.diff col.content {
|
table.diff col.content {
|
||||||
|
|
Loading…
Reference in New Issue