How to import / include in the closing stylesheet?

Reading this page http://code.google.com/p/closure-stylesheets/ , I cannot find any documentation explaining how to include or import other .gss files. Is it possible?

+7
source share
2 answers

I have never used .gss and have not tested the following, but just looking at the documentation on the page seems to imply that including a few of them would be the following:

 java -jar closure-stylesheets.jar --pretty-print first.gss java -jar closure-stylesheets.jar --pretty-print second.gss 

Although it seems to be easier to use the minimization technique shown on the page:

 java -jar closure-stylesheets.jar first.gss second.gss third.gss 

Try either of these two methods on your site, or see if your question solves your question.

+2
source

This is a bug in the current implementation, see the thread discussing this

Download link here

Hope this helps

+1
source

All Articles