Author: maartenc Date: Sun Jun 27 06:29:06 2010 New Revision: 958334 URL: http://svn.apache.org/viewvc?rev=958334&view=rev Log: DOCUMENTATION: Limit the width of running text in documentation (IVY-1030)
Modified: ant/ivy/core/trunk/CHANGES.txt ant/ivy/core/trunk/doc/style/print-style.css ant/ivy/core/trunk/doc/style/shell.css ant/ivy/core/trunk/doc/style/style.css Modified: ant/ivy/core/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/CHANGES.txt?rev=958334&r1=958333&r2=958334&view=diff ============================================================================== --- ant/ivy/core/trunk/CHANGES.txt (original) +++ ant/ivy/core/trunk/CHANGES.txt Sun Jun 27 06:29:06 2010 @@ -108,6 +108,7 @@ for detailed view of each issue, please trunk ===================================== +- DOCUMENTATION: Limit the width of running text in documentation (IVY-1030) - DOCUMENTATION: Refer to the maven wiki instead of listing some maven2 mirrors ourselfs (IVY-491) - DOCUMENTATION: Fixed several grammatical and typographic errors in documentation (IVY-1172) (thanks to J. Lewis Muir) - DOCUMENTATION: ivy-doc.xsl does not show configurations (IVY-1151) (thanks to Jasper Blues) Modified: ant/ivy/core/trunk/doc/style/print-style.css URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/doc/style/print-style.css?rev=958334&r1=958333&r2=958334&view=diff ============================================================================== --- ant/ivy/core/trunk/doc/style/print-style.css (original) +++ ant/ivy/core/trunk/doc/style/print-style.css Sun Jun 27 06:29:06 2010 @@ -24,7 +24,6 @@ @import "shell.css"; #body { - display: table; padding: 0; } #body { Modified: ant/ivy/core/trunk/doc/style/shell.css URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/doc/style/shell.css?rev=958334&r1=958333&r2=958334&view=diff ============================================================================== --- ant/ivy/core/trunk/doc/style/shell.css (original) +++ ant/ivy/core/trunk/doc/style/shell.css Sun Jun 27 06:29:06 2010 @@ -17,5 +17,22 @@ */ /* the class shell is used when a copy of the content of a shell or DOS window is made */ -.shell {background-color: black; color: white; border: medium gray solid;} -.shell pre {background-color: black; border: none; font-size: small;} + +.shell { + background-color: black; + color: white; + border: medium gray solid; +} +.shell pre { + background-color: black; + border: none; + font-size: small; + white-space: pre; /* CSS2 */ + white-space: -moz-pre-wrap; /* Mozilla */ + white-space: -hp-pre-wrap; /* HP printers */ + white-space: -o-pre-wrap; /* Opera 7 */ + white-space: -pre-wrap; /* Opera 4-6 */ + white-space: pre-wrap; /* CSS 2.1 */ + white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */ + word-wrap: break-word; /* IE */ +} Modified: ant/ivy/core/trunk/doc/style/style.css URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/doc/style/style.css?rev=958334&r1=958333&r2=958334&view=diff ============================================================================== --- ant/ivy/core/trunk/doc/style/style.css (original) +++ ant/ivy/core/trunk/doc/style/style.css Sun Jun 27 06:29:06 2010 @@ -152,7 +152,7 @@ pre { } #sidebar-left, #sidebar-right { - width: 200px; + width: 300px; /* padding in px not ex because IE messes up 100% width tables otherwise */ padding: 15px 5px 75px 10px; vertical-align: top; @@ -160,6 +160,9 @@ pre { #sidebar-left li, #sidebar-right li { font-size: 1em; } +#content { + table-layout:fixed; +} .block h2 { margin: 5px 0px 0px 0px; padding: 1px 5px 1px 30px;