Hi Jose Carlos,

On Tuesday March 8 2011 15:25:47 Jose Carlos Norte wrote:
>  I'm currently including aristo.js by myself, after qx.js. aristo.js is
>  a file with all the js files of aristo concatenated. I have modified the
>  theme, and now looks like:
> 
>  qx.Theme.define("aristo.Aristo",
>  {
>      title : "Aristo Theme",
>      meta :
>      {
>          color : aristo.theme.Color,
>          decoration : aristo.theme.Decoration,
>          font : aristo.theme.Font,
>          icon : qx.theme.icon.Oxygen,
>          appearance : aristo.theme.Appearance
>      },
>      aliases : {
>          decoration : "aristo/decoration"
>      }
>  });
You have to include the "aliases" map in the decoration theme to make it work.

--snip--
qx.Theme.define("aristo.theme.Decoration",
{
  aliases : {
    decoration : "aristor/decoration"
  },
--snip--

>  The problem is that the decorations are still not working. All the
>  images that are set at the appearance, works fine. The colors are
>  correct, the fonts are correct, the icons are correct. however, the
>  decoration is completly ignored. If I go to the "network" tab of
>  firefox, there are no 404 errors regarding the decoration images, so it
>  is not a problem of paths.
The fix above will fix this.

Regards,
  Alex

------------------------------------------------------------------------------
What You Don't Know About Data Connectivity CAN Hurt You
This paper provides an overview of data connectivity, details
its effect on application quality, and explores various alternative
solutions. http://p.sf.net/sfu/progress-d2d
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to