/*
* Author: Will (war59312@gmail.com)
* Description: Makes text in the CODE box word-wrapped so it's easier to read. Also gets rid of horizontal scrolling on many styles.
*/

/* +++ changelog +++
July 10, 2009
- support for firefox 3.5
December 21, 2008
- original release
*/

@-moz-document domain(userstyles.org) {

/* WORD-WRAP CODE */
pre { white-space: pre-line !important; }

/* WORD-WRAP CODE FOR FIREFOX VERSION LESS THAN 3.5, UNCOMMENT TO USE
pre { white-space: -moz-pre-wrap !important; } */

/* SMALLER CODE BOX FOR EASIER READING */
#view-code { max-height: 40em !important; }

}