I'm adding display: box; support to Compass' arsenal of CSS3 badassery, and I've run into a bug, might be a Sass-related bug.
Mixin looks like:
But if I pass something to it like:
div.foobar {
@include experimental-value(display,box);
}
It outputs:
div.foobar {
display: -moz- box;
display: -webkit- box;
display: box;
}
Note: the space after the vendor prefix causes it to break. When I surround the entire value with quotation marks, it outputs without the space, but it still fails since the value is now surrounded by quotation marks in the output. =/
Halp?
--
You received this message because you are subscribed to the Google Groups "Compass Development" group.
To post to this group, send email to
compas...@googlegroups.com.
To unsubscribe from this group, send email to
compass-devs...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/compass-devs?hl=en.