From: Brian Neal Date: Fri, 19 May 2017 00:56:22 +0000 (-0500) Subject: Show all th for $show-header-for-stacked X-Git-Tag: v6.4.0-rc1~40^2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F10051%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Show all th for $show-header-for-stacked Issue #8512. Show all th tags for table.stack when $show-header-for-stacked is true. --- diff --git a/scss/components/_table.scss b/scss/components/_table.scss index 92e3ac652..fc967df3d 100644 --- a/scss/components/_table.scss +++ b/scss/components/_table.scss @@ -275,12 +275,8 @@ $table-stack-breakpoint: medium !default; @mixin table-stack($header: $show-header-for-stacked) { @if $header { thead { - th:first-child { - display: block; - } - th { - display: none; + display: block; } } }