Is there anyway to import a regular css file with sass's @import command? While I'm not using all of the SCSS syntax from sass, I do still enjoy it's combining/compressing features, and would like to be able to use it without renaming all of my files to *.scss

link|improve this question

feedback

5 Answers

up vote 4 down vote accepted

Looks like this is unimplemented, as of the time of this writing:

https://github.com/nex3/sass/issues/193

link|improve this answer
feedback

You must prepend an underscore to the css file to be included, and switch its extension to scss (ex: _yourfile.scss). Then you just have to call it this way:

@import "yourfile"

And it will include the contents of the file, instead of using the CSS standard @import directive.

link|improve this answer
feedback

Simple.

@import "path/to/file.css";

link|improve this answer
3  
I've tried this, but it wont pull the contents of the file into that one when compressing it, it will just keep the @import line. – GSto Aug 19 '11 at 15:01
try without suffix – Rito Jan 10 at 17:05
@Rito Same thing – Stephen J. Fuhry Feb 4 at 21:05
feedback

I was under the impression that @import is part of regular CSS?

See: http://www.w3.org/TR/CSS2/cascade.html#at-import

link|improve this answer
yes it is, but scss has it's own version of the @import command which can be used to combine several files together when using its compression tool. using the regular import in css will not inject the code from those files into the final compressed result, which is what i am hoping to accomplish. – GSto Aug 18 '11 at 17:38
I see, I misunderstood the question. I don't know how to do what you're asking without modifying sass or writing your own extension script; not too sure its possible otherwise. – jli Aug 18 '11 at 17:49
feedback

If I am correct css is compatible with scss so you can change the extension of a css to scss and it should continue to work. Once you change the extension you can import it and it will be included in the file.

If you don't do that sass will use the css @import which is something you don't want.

link|improve this answer
unfortunately sometimes the imported css files are out of your control, as in a library which packages some static assets. – Eric Drechsel Nov 26 '11 at 0:09
feedback

Your Answer

 
or
required, but never shown

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