Toadstool-Stipe / stipe

Stipe is the core set of Sass Mixins to support the Toadstool Styleguide Framework
40 stars 9 forks source link

grid/lib/_the_grid.scss #2

Closed blackfalcon closed 11 years ago

blackfalcon commented 12 years ago

Current logic dictates $grid_padding_lr: $grid_padding_l + $grid_padding_r; this is basically taking the separate values of $grid_padding_l and $grid_padding_r; and combining into a single value.

Further down we are stating @if $grid_padding_lr > 0 then do something.

This is failing because then you get something like the following in the CSS

padding-left: 0.52083%;
padding-right: 0%;

Need to update logic so that each CSS rule is evaluated for a value and then applied.

blackfalcon commented 11 years ago

Not going to redo this as this support is going to be removed. Screw IE7 anyway.