diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 42469e228956f1dec1adc37b5092c706e3d13395..51d7464313027f45ba2e7a59a46bc722509f664c 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,5 @@ Zen 6.x-1.x-dev + #346706: Content clipped after page one when printing in Firefox. #311529: Remove core's page-ARG0 body class, leaving zen's page-PATH. #334956 by hansrossel: Remove no-longer-needed fix for "Flash of Unstyled Content in IE". #328221 by kmonty and JohnAlbin: Split up ie.css to remove CSS hacks diff --git a/zen/layout-fixed.css b/zen/layout-fixed.css index ea0f61ae5fc8ce1643654eb23b85119bb6852e77..ff768f2604cc55a43c6707a040f2f3e861066c76 100644 --- a/zen/layout-fixed.css +++ b/zen/layout-fixed.css @@ -295,4 +295,7 @@ /* 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 */ + } diff --git a/zen/layout-liquid.css b/zen/layout-liquid.css index 81ea70621b1242dba1471556fee24caefcd58290..111d02b7f933b2230dc77fb5e72db61c3f634f6f 100644 --- a/zen/layout-liquid.css +++ b/zen/layout-liquid.css @@ -283,4 +283,7 @@ /* 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 */ + } diff --git a/zen/print.css b/zen/print.css index eac31015a380d1985012f84f3b240fa770ca7a12..61274f9bb1b78c229c00a3380a50c95c89db75a5 100644 --- a/zen/print.css +++ b/zen/print.css @@ -51,3 +51,9 @@ visibility: hidden; display: none; } + +/* Otherwise, Firefox clips the content after the first page. */ + #page + { + overflow-y: visible; + }