greenlaw110 / greenscript

A tool help web developers manage javascript/css rendering, including minimize and dependence management
42 stars 24 forks source link

always concatenate css files #26

Closed nyuwec closed 13 years ago

nyuwec commented 13 years ago

I was unable to disable greenscript css concatenation from application.conf. I have set greenscript.minimize=false, but it can't help. The generated style tag loads public/gs/somerandomstring.css. No warn or error in the log. Using play 1.2.3, Java 1.6 on OSX, Greenscript 1.2.6k

greenlaw110 commented 13 years ago

yes, greenscript now always concatenate css files. That's a feature not a bug.

On Wed, Nov 16, 2011 at 9:33 AM, nyuwec < reply@reply.github.com

wrote:

I was unable to disable greenscript css concatenation from application.conf. I have set greenscript.minimize=false, but it can't help. The generated style tag loads public/gs/somerandomstring.css. No warn or error in the log. Using play 1.2.3, Java 1.6 on OSX, Greenscript 1.2.6k


Reply to this email directly or view it on GitHub: https://github.com/greenlaw110/greenscript/issues/26

nyuwec commented 13 years ago

It's a bit strange, because concatenation makes hard to tweak css styles. I can't see the appropriate css file in firebug. Do you know any workaround?

greenlaw110 commented 13 years ago

At the moment no. This changes has been introduced to cater for LESS compile.

However in firebug you could either point to the specific element in the browser and modify the element css directly, if you are satisfied you can copy back the changes from firebug to your css source file.

You can also modify the source file directly. Whatever as long as your css source code saved in dev mode, greenscript will reload it and you can observe the changes immediately

On Wed, Nov 16, 2011 at 10:13 AM, nyuwec < reply@reply.github.com

wrote:

It's a bit strange, because concatenation makes hard to tweak css styles. I can't see the appropriate css file in firebug. Do you know any workaround?


Reply to this email directly or view it on GitHub: https://github.com/greenlaw110/greenscript/issues/26#issuecomment-2753052

nyuwec commented 13 years ago

Thanks for the info. I close this issue.