Hi,

Not sure if this is already possible. I checked the docs but could not
see it mentioned anywhere.

I was reading up on how to organize my .sass files (http://
wiseheartdesign.com/articles/2010/01/22/structuring-a-sass-project),
after giving this a try I noticed that the CSS selectors are not
merged.

Eg:

_layout.sass
   #header
      width: 960px
      text-align: left
      margin: 0 auto
      overflow: hidden

_header.sass
   #header
      background: transparent url(/images/header.png) no-repeat

screen.sass
        @import layout
        @import header

becomes:

   #header
        ….
   #header
        ….

What would have been great is if the CSS output would have also been
merged into one:

#header
      width: 960px
      text-align: left
      margin: 0 auto
      overflow: hidden
      background: transparent url(/images/header.png) no-repeat

Any ideas if this is possible?

Thanks in advance,
Nick

-- 
You received this message because you are subscribed to the Google Groups 
"Haml" group.
To post to this group, send email to h...@googlegroups.com.
To unsubscribe from this group, send email to haml+unsubscr...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/haml?hl=en.

Reply via email to