I have sass mixins for CSS3 support. Background's mixin code is here:
@mixin moobg($gradients, $static: null, $prefixes: webkit moz ms o) {
@if $static {
$static: #{$static};
}
@each $prefix in $prefixes {
$out: null;
@each $gradient in $gradients {
$gradientPrefixed: unquote('-' + $prefix + '-' + $gradient);
$out: append($out, $gradientPrefixed, comma);
}
$out: join($out, $static, comma);
background: $out;
}
$out: null;
@each $gradient in $gradients {
$out: append($out, $gradient, comma);
}
$out: join($out, $static, comma);
background: $out;
}
I would like to add feature for different static/gradients order in output CSS.
Some ideas how to make it?
I want to keep it easy to use as much as possible (look link above for syntax). Don't want to add a lot of options.