]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commit
Issue #7498 Remove !global flag from $grid-column-count 7538/head
authorAaron Arney <ocularrhythm@users.noreply.github.com>
Mon, 14 Dec 2015 22:26:52 +0000 (17:26 -0500)
committerAaron Arney <ocularrhythm@users.noreply.github.com>
Mon, 14 Dec 2015 22:26:52 +0000 (17:26 -0500)
commit3c912f20d7c3c6ac010e1d62dc1886695321dd01
tree463758c4dd5ca9b9d86aad9e15fcad72b3ebcba7
parent32fb5b13fb41fa96c3c864c8f1a3dc6f5f58ff3e
Issue #7498 Remove !global flag from $grid-column-count

Creating a custom row size using the grid-row mixin was not properly generating the correct CSS. Removing the !global flag from the $grid-column-count in the grid-context mixin seems to correct this.

Tested using following scss. The first list generates a row 17 columns wide, while the second list generates the default 12
ul.one
  @include grid-row(17)
  li
    @include grid-column(1)

ul.two
  li
    @include grid-column(1)
scss/grid/_row.scss