Yes, that does fix the problem. I was not aware that "=" is used only
when evaluating and that explains why if I had "%" or "-" in the css
value it was giving me operation errors. I removed all the "=" and
quotes and now it works just as expected:
body
:background #E7E7E2 url(/images/body.jpg) no-repeat center top
:color #444
:font normal 62.5% Tahoma, sans-serif
:padding-top 64px
Thank you!
Kiril
On Jun 29, 10:41 pm, "Sean Cribbs" <[EMAIL PROTECTED]> wrote:
> Incidentally, you don't need to use the = in Sass unless you're trying
> to evaluate a constant that you defined earlier in the file. If you
> remove those, does it work?
>
> Sean Cribbs
>
> On 6/29/07, KupoKoMaPa <[EMAIL PROTECTED]> wrote:
>
>
>
> > body
> > :background = "#E7E7E2 url(/images/body.jpg) no-repeat center top"
> > :color = "#444"
> > :font = "normal 62.5% Tahoma, sans-serif"
> > :padding-top = 64px
>
> > Renders to:
>
> > body {
> > background: #e7e72;
> > color: #4f4f4f;
> > font: normal 62.5% Tahoma, sans-serif;
> > padding-top: 64px; }
>
> > notice that the :background is wrong and also :color is suppsed to be
> > #444444 rather than the #4f4f4f
>
> > I am using the stable plugin with Rails.
>
> > Regards
> > Kiril
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---