7

Reading this page http://code.google.com/p/closure-stylesheets/, I can't seem to find any documentation explaining how to include or import another .gss files. Is this possible?

Charles
  • 50,943
  • 13
  • 104
  • 142
Tower
  • 98,741
  • 129
  • 357
  • 507
  • I they supported it they would most likely just use the `@import` syntax that is already defined in css. Just try `@import` and see if it gets included. – Gerben Nov 23 '11 at 12:37

2 Answers2

2

I've never used .gss nor have I tested the following, but just looking at the documentation on the page seems to imply to me that including multiple ones would just be:

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

Though it also appears to be simpler to use the minification technique noted on the page:

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

Try either or both those techniques on your site and see if it solves your question.

ScottS
  • 71,703
  • 13
  • 126
  • 146
1

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

Here's the download link

Hope this helps

Leon
  • 4,532
  • 1
  • 19
  • 24