Merge pull request #1649 from sahilamoli/FirefoxFixForLineBreaks
Issue #1648 - Long lines without any spaces don't wrap on Firefoxpull/1655/head
commit
09edfb0d5e
|
@ -78,6 +78,7 @@ ul.list-indent8 { list-style-type: none; }
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
word-wrap: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
#outerdocbody {
|
#outerdocbody {
|
||||||
|
@ -93,6 +94,7 @@ body.grayedout { background-color: #eee !important }
|
||||||
|
|
||||||
body.doesWrap {
|
body.doesWrap {
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
|
word-wrap: break-word; /* fix for issue #1648 - firefox not wrapping long lines (without spaces) correctly */
|
||||||
}
|
}
|
||||||
|
|
||||||
#innerdocbody {
|
#innerdocbody {
|
||||||
|
|
Loading…
Reference in New Issue