As far as I can tell from the spec, rgba only accepts decimals between 0 and 1 inclusive.
http://www.w3.org/TR/css3-color/#rgba-color <http://www.w3.org/TR/css3-color/#rgba-color>So that's the reason. We could choose to deviate from the spec, but that always comes with a certain cost of possible forward incompatibility and user learning/training. chris On Thu, Apr 8, 2010 at 6:47 AM, Mislav Marohnić <[email protected]>wrote: > In Sass 3.0.0.beta1, this doesn't work: > > rgba(black, 47%) > > It complains that the alpha channel should be between 0 and 1. This works: > > rgba(black, .47) > > Is it a bug? I'd expect that both works. > > BTW, I switched my stuff to Sass 3 just for the amazing color manipulation > functions. Amazing functionality! > > -- > You received this message because you are subscribed to the Google Groups > "Haml" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected] <haml%[email protected]>. > For more options, visit this group at > http://groups.google.com/group/haml?hl=en. > -- You received this message because you are subscribed to the Google Groups "Haml" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/haml?hl=en.
