Hi All,

I'm not sure if this is intentional, but the definition of the window-statusbar-text appearance seems to have been missing an explicit font since at least version 0.1.5.  The result is that in some browsers the (default) statusbar font is different to the font used elsewhere in your Qx app.

Here's a tiny patch for qx.theme.appearance.DefaultAppearanceTheme.js that could fix the problem in 0.6.2.

  "window-statusbar-text" : {
    setup : function() {
      this.font = new qx.renderer.font.Font(11, '"Segoe UI", Corbel, Calibri, Tahoma, "Lucida Sans Unicode", sans-serif');
    },

    initial : function(vTheme) {
      return {
        paddingTop : 1,
        paddingRight : 4,
        paddingBottom : 1,
        paddingLeft : 4,
        cursor : qx.constant.Core.DEFAULT,
        font : this.font
      }
    }
  },


Simon


On Yahoo!7
Music: Create your own personalised radio station.
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to