From 33e6c0b94d9343e106f5d8c142d30376059dfe15 Mon Sep 17 00:00:00 2001 From: Kevin Ball Date: Wed, 9 Mar 2016 12:35:04 -0800 Subject: [PATCH] Fix th center widths --- scss/grid/_grid.scss | 3 ++- testing/src/pages/th-with-center.html | 13 +++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 testing/src/pages/th-with-center.html diff --git a/scss/grid/_grid.scss b/scss/grid/_grid.scss index 4c00eebe..f0a39be3 100755 --- a/scss/grid/_grid.scss +++ b/scss/grid/_grid.scss @@ -109,7 +109,8 @@ th.column { } @for $i from 1 through $grid-column-count { - td.large-#{$i} center { + td.large-#{$i} center, + th.large-#{$i} center { min-width: -zf-grid-calc-px($i, $grid-column-count, $global-width); } } diff --git a/testing/src/pages/th-with-center.html b/testing/src/pages/th-with-center.html new file mode 100644 index 00000000..8911dfd1 --- /dev/null +++ b/testing/src/pages/th-with-center.html @@ -0,0 +1,13 @@ + + + +
Test Left
+ + +
Test Middle
+ + +
Test Right
+ +
+
-- 2.47.2