I've got a compass project up and running with scss files in a src directory which are being compiled into a sttylesheets directory as css. This is all fine and I'm able to use the sass @import command no problem.

However, I'd like to bring a bit of organisation to my sass partials and place them into relevant folders within the src directory. However, when I try to do this the @import command fails.

Is there a way of doing this?

UPDATE: I found in the compass docs that I can add add_import_path to my configuration file, but I can't get this to work either. I've tried a full path to the directory and a path relative to the project but nothing is happening.

Someone please help, it can't be this hard!

link|improve this question

feedback

4 Answers

If you placed partials, for example, in src/partials directory — just use @import "partials/name" in sass/scss files to import them.

link|improve this answer
That's what I was trying and it doesn't work. – musoNic80 Feb 6 '11 at 15:24
@musoNic80: strange, because it works good for me. Maybe you did some mistake in spelling names or something? – Victor Deryagin Feb 6 '11 at 15:34
No, I checked and double checked! – musoNic80 Feb 7 '11 at 8:30
feedback

I found that in a webby static project where I was using compass / sass I had to explcitly set the base sass path to be used in order for it to pick up sass imports (everything worked except for imports).

So I ended up doing something like this in the compass config block: config.sass_dir = File.join('content', 'css')

I imagine this is because I'm using something other than the default sass paths, so when I @import it was looking within it's default path instead of the actual path.

Hope that helps.

link|improve this answer
feedback
up vote 0 down vote accepted

So it turned out I was going about things the wrong way. I was trying to be efficient and organise my folder structure before doing anything with compass. I realised that I needed to set compass to watch the project first and then create a folder structure. That way the folder structure gets replicated in my stylesheets or CSS folder instead of just being in the source folder. Now everything is working as it should!

link|improve this answer
What do you do to "set compass to watch the project"? I'm trying to figure out a good way to structure my app/assets/stylesheets directory as well. Do you know of a good sample app anywhere? I'm on Rails 3.2. – robertwbradford Jan 30 at 20:52
It's all in the compass docs. On the command line type compass watch /path/to/project – musoNic80 Jan 31 at 8:53
feedback

I had the same problem. Actually I was migrated from rails + sprockets project to standalone one.

I don't know why, but Compass doesn't work with sprockets-style filenames, like screen.css.scss. I renamed all my files just to screen.scss and all partials worked as expected.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.