From: caycek Date: Thu, 23 Apr 2015 17:13:26 +0000 (-0400) Subject: in reference to issue #6445 I wanted to address the .show-for-print class that is... X-Git-Tag: v5.5.2~21^2~1^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F6495%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git in reference to issue #6445 I wanted to address the .show-for-print class that is mentioned in the documentation located http://foundation.zurb.com/docs/components/typography.html#print-styles that any element with this class should ONLY show when printing. --- diff --git a/scss/foundation/components/_visibility.scss b/scss/foundation/components/_visibility.scss index 57da077b2..f4bfebc57 100644 --- a/scss/foundation/components/_visibility.scss +++ b/scss/foundation/components/_visibility.scss @@ -484,5 +484,9 @@ $visibility-breakpoint-queries: td.show-for-print { display: table-cell !important; } th.show-for-print { display: table-cell !important; } } + + @media not print{ + .show-for-print { display: none !important; } + } } }