Hi jabraham,

you can store your custom CSS in for example 
"{yourAppRoot}/source/resource/{yourAppName}/css/foo.css".

After that you have to configure, that you want this file available
in your desired jobs. So if you want this file for "./generate.py 
source" and "./generate.py build" you would add this to your "config.json":

{
   ...

   "jobs" :
   {
     ...

     "build": {
       "add-css" : [
         { "uri" : "resource/${APPLICATION}/css/foo.css" }
       ]
     },

     "source": {
       "add-css" : [
         { "uri" : "resource/${APPLICATION}/css/foo.css" }
       ]
     }
   }
}

In Firebug for example you should see now within the <head>-element:

<link rel="stylesheet" type="text/css" 
href="resource/{yourAppName}/css/foo.css">

Regards
Richard

See also:

http://manual.qooxdoo.org/current/pages/tool/generator/generator_config_ref.html#add-css

http://manual.qooxdoo.org/current/pages/tool/generator/cheat_sheet.html#configuration-keys

------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to