Zen 6.x-1.x-dev
+ #346706 by jsaints: Content clipped after page one when printing in Firefox
#311529: Remove core's page-ARG0 body class, leaving zen's page-PATH
* Simplified body class generation code
#334956 by hansrossel: Remove no-longer-needed fix for "Flash of Unstyled Content in IE"
/* If a div.clear-block doesn't have any content after it, Firefox and Safari
will mistakenly place several pixels worth of space between the bottom of
the div and the bottom of the viewport. This fixes it. */
- #page { overflow-y: hidden; } /* CSS3 property */
+ #page
+ {
+ overflow-y: hidden; /* CSS3 property */
+ }
/* If a div.clear-block doesn't have any content after it, Firefox and Safari
will mistakenly place several pixels worth of space between the bottom of
the div and the bottom of the viewport. This fixes it. */
- #page { overflow-y: hidden; } /* CSS3 property */
+ #page
+ {
+ overflow-y: hidden; /* CSS3 property */
+ }
visibility: hidden;
display: none;
}
+
+/* Otherwise, Firefox clips the content after the first page. */
+ #page
+ {
+ overflow-y: visible;
+ }