You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by xa...@apache.org on 2008/01/03 16:59:49 UTC

svn commit: r608536 - /ant/ivy/site/style/shell.css

Author: xavier
Date: Thu Jan  3 07:59:48 2008
New Revision: 608536

URL: http://svn.apache.org/viewvc?rev=608536&view=rev
Log:
Limit the width of running text (IVY-666)

Modified:
    ant/ivy/site/style/shell.css

Modified: ant/ivy/site/style/shell.css
URL: http://svn.apache.org/viewvc/ant/ivy/site/style/shell.css?rev=608536&r1=608535&r2=608536&view=diff
==============================================================================
--- ant/ivy/site/style/shell.css (original)
+++ ant/ivy/site/style/shell.css Thu Jan  3 07:59:48 2008
@@ -17,5 +17,15 @@
  */
 
 /* 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;
+	overflow: auto;
+}
+.shell pre {
+	background-color: black; 
+	border: none; 
+	font-size: small; 
+	overflow: visible;
+}