You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by hu...@apache.org on 2013/02/27 02:07:02 UTC

svn commit: r1450565 - /httpd/httpd/trunk/docs/manual/style/css/prettify.css

Author: humbedooh
Date: Wed Feb 27 01:07:01 2013
New Revision: 1450565

URL: http://svn.apache.org/r1450565
Log:
better handling of overflow

Modified:
    httpd/httpd/trunk/docs/manual/style/css/prettify.css

Modified: httpd/httpd/trunk/docs/manual/style/css/prettify.css
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/style/css/prettify.css?rev=1450565&r1=1450564&r2=1450565&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/style/css/prettify.css (original)
+++ httpd/httpd/trunk/docs/manual/style/css/prettify.css Wed Feb 27 01:07:01 2013
@@ -32,7 +32,7 @@
 }
 
 /* Put a border around prettyprinted code snippets. */
-pre.prettyprint { padding: 2px; border: 1px solid #888; tab-size: 4; overflow: scroll; }
+pre.prettyprint { padding: 2px; border: 1px solid #888; tab-size: 4; overflow: auto; overflow-y: hidden; }
 
 /* Specify class=linenums on a pre to get line numbering */
 ol.linenums { margin-top: 0; margin-bottom: 0 } /* IE indents via margin-left */