Author: fschumacher
Date: Sat Oct 10 11:25:51 2015
New Revision: 1707862
URL: http://svn.apache.org/viewvc?rev=1707862&view=rev
Log:
Layout the section-index in three columns when the page is printed.
Modified:
jmeter/trunk/xdocs/css/new-style.css
Modified: jmeter/trunk/xdocs/css/new-style.css
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/css/new-style.css?rev=1707862&r1=1707861&r2=1707862&view=diff
==============================================================================
--- jmeter/trunk/xdocs/css/new-style.css (original)
+++ jmeter/trunk/xdocs/css/new-style.css Sat Oct 10 11:25:51 2015
@@ -521,4 +521,14 @@ table {
.menu, figure > a > img, .screenshot > a > img, .section-index > li {
box-shadow: none;
}
+
+ .section-index {
+ -webkit-column-count: 3; /* Chrome, Safari, Opera */
+ -moz-column-count: 3; /* Firefox */
+ column-count: 3;
+ }
+
+ .section-index > li {
+ border: none;
+ }
}
|