From 80f1bd450c50c889b690454b623d2eba4f0e6807 Mon Sep 17 00:00:00 2001 From: Jack Lukic Date: Sat, 12 Sep 2015 14:34:27 -0400 Subject: [PATCH] Fix formatting with (x) column table segment --- RELEASE-NOTES.md | 9 +++++++++ src/definitions/elements/segment.less | 3 ++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index da493e3b1..3e2184e21 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,5 +1,14 @@ ## RELEASE NOTES +### Version 2.1.4 - Sep 12, 2015 + +**Critical Bugfixes** +- **Build** - Fixed issue where using a packaged theme without a `site.variables` would cause build to fail + +**Bugfixes** +- **Table** - Fixed issue where `(x) column segment table` was inheriting accidentally inheriting some grid styles + + ### Version 2.1.3 - Sep 03, 2015 **Bugfixes** diff --git a/src/definitions/elements/segment.less b/src/definitions/elements/segment.less index 6cf1f9c82..0e3f9da6e 100755 --- a/src/definitions/elements/segment.less +++ b/src/definitions/elements/segment.less @@ -86,7 +86,8 @@ /* Grid */ .ui.page.grid.segment, -.ui.grid .ui.segment.column { +.ui.grid > .row > .ui.segment.column, +.ui.grid > .ui.segment.column { padding-top: @pageGridMargin; padding-bottom: @pageGridMargin; }