From: Jay Sitter Date: Fri, 26 May 2017 18:03:17 +0000 (-0400) Subject: Don't collapse columns with large-offset (fix #307) X-Git-Tag: v2.4.0^2~13^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F777%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-emails.git Don't collapse columns with large-offset (fix #307) --- diff --git a/scss/grid/_grid.scss b/scss/grid/_grid.scss index ea81daa2..29b2e73a 100755 --- a/scss/grid/_grid.scss +++ b/scss/grid/_grid.scss @@ -116,12 +116,14 @@ th.column { } //Collapsed logic - .collapse { - > tbody > tr > td.large-#{$i}, - > tbody > tr > th.large-#{$i} { - padding-right: 0; - padding-left: 0; - width: -zf-grid-calc-px($i, $grid-column-count, $global-width) + $global-gutter; + .collapse > tbody > tr { + > td.large-#{$i}, + > th.large-#{$i} { + &:not([class*=large-offset]) { + padding-right: 0; + padding-left: 0; + width: -zf-grid-calc-px($i, $grid-column-count, $global-width) + $global-gutter; + } } //Gotta give it that extra love for the first and last columns.