app/assets/stylesheets/anecdote/_helpers.css.scss in anecdote-0.2.4 vs app/assets/stylesheets/anecdote/_helpers.css.scss in anecdote-0.2.5

- old
+ new

@@ -148,14 +148,14 @@ @for $i from 1 through length($list) { $e: nth($list, $i); @if type-of($e) == list { - $result: $result#{join-array-with-string-dj3nar($e, $glue, true)}; + $result: unquote("#{$result}#{join-array-with-string-dj3nar($e, $glue, true)}"); } @else { - $result: if($i != length($list) or $is-nested, $result#{$e}#{$glue}, $result#{$e}); + $result: if($i != length($list) or $is-nested, unquote("#{$result}#{$e}#{$glue}"), unquote("#{$result}#{$e}")); } } @return $result; }