Word-wrap output correctly in the notebook; prevents excessive scrolling.

Firefox seems to not honor it correctly, but Webkit browsers (Chrome,
rekonq, Safari) do.
This commit is contained in:
Fernando Perez 2011-10-31 21:39:17 -07:00
parent 425de1bd73
commit a852c75dd7

View File

@ -351,3 +351,8 @@ div.text_cell_render {
.shortcut_descr {
}
/* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
*/
pre, code, kbd, samp { white-space: pre-wrap; }