sass - SCSS Partials for .css files without changing the filename -


i'm looking ways optimize wordpress instance. theme has 8-10 css files rendered in functions.php. consequently, not want change file names because mean have hack theme , want keep bare minimum.

i want use scss combine these css files 1 css file , include new file in theme instead. when try...

@import "style.css";  @import "reset.css"; @import "shortcodes-styles.css";  

it renders as

@import url(style.css); @import url(reset.css); @import url(shortcodes-styles.css); 

how can scss import css partials without changing file names? i'm using codekit if makes difference.

not possible. sass compiles sass files: https://github.com/nex3/sass/issues/556


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -