sass/susy/language/susy/_rows.scss in susy-2.1.2 vs sass/susy/language/susy/_rows.scss in susy-2.1.3

- old
+ new

@@ -1,9 +1,8 @@ // Row Start & End // =============== - // Break // ----- // Apply to any element that should force a line break. @mixin break { @include output((clear: both)); @@ -22,23 +21,27 @@ // ---- // - [$context]: <layout shorthand> @mixin full( $context: $susy ) { + $inspect : $context; + @include susy-inspect(full, $inspect); @include span(full of parse-grid($context) break); } // First // ----- // - [$context]: <settings> @mixin first( $context: $susy ) { - $context: parse-grid($context); - $flow: susy-get(flow, $context); + $inspect : $context; + $context : parse-grid($context); + $flow : susy-get(flow, $context); + @include susy-inspect(first, $inspect); @if not is-split($context) { @include float-first($flow); } } @@ -53,10 +56,14 @@ // ---- // - [$context]: <settings> @mixin last( $context: $susy ) { - $context: parse-grid($context); + $inspect : $context; + $context : parse-grid($context); + + @include susy-inspect(last, $inspect); + $output: ( flow: susy-get(flow, $context), margin: if(is-split($context), null, 0), );