I guess IE 9 does not support linear gradient. But a work around with an svg
should be possible. Maybe Qooxdoo core team could use this behaviour as a fall 
back for IE9. But may be there are performance reasons why they did not 
implemented it in this case. 

Regards Sak


Von meinem iPhone gesendet

Am 03.02.2012 um 19:55 schrieb Alexey Kodubets <[email protected]>:

> I have copy-pasted example from demobrowser delivered with qooxdo 1.6:
> 
> ---
>      var tabView = new qx.ui.tabview.TabView();
>      tabView.setWidth(500);
> 
>      ////////////////// TEST PAGE 1 ////////////////////
>      var page1 = new qx.ui.tabview.Page("Layout");
>      page1.setLayout(new qx.ui.layout.VBox());
>      page1.add(new qx.ui.basic.Label("Layout-Settings"));
>      tabView.add(page1);
> 
>      ////////////////// TEST PAGE 2 ////////////////////
>      var page2 = new qx.ui.tabview.Page("Notes");
>      page2.setLayout(new qx.ui.layout.VBox());
>      page2.add(new qx.ui.basic.Label("Notes..."));
>      tabView.add(page2);
> 
>      // Add button to document at fixed coordinates
>      this.getRoot().add(tabView, {left: 100, top: 50});
> ---
> 
> I would like to have inactive tabview buttons with white color. So, I have
> added the changes into color.js:
> 
> qx.Theme.define("testtabview.theme.Color",
> {
>  extend : qx.theme.modern.Color,
> 
>  colors :
>  {
>    "tabview-inactive-start" : "#FFFFFF",
> 
>    "tabview-inactive-end" : "#FFFFFF"
>  }
> });
> 
> In firework it works fine, in IE9 it doesn't work. The picture below clearly
> show the issue. Any ideas will be appreciated. 
> 
> http://qooxdoo.678.n2.nabble.com/file/n7251805/firefox_10_vs_IE_9.jpg 
> 
> 
> 
> --
> View this message in context: 
> http://qooxdoo.678.n2.nabble.com/Theme-changes-for-tabview-doesn-t-work-in-IE-tp7251805p7251805.html
> Sent from the qooxdoo mailing list archive at Nabble.com.
> 
> ------------------------------------------------------------------------------
> Try before you buy = See our experts in action!
> The most comprehensive online learning library for Microsoft developers
> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
> Metro Style Apps, more. Free future releases when you subscribe now!
> http://p.sf.net/sfu/learndevnow-dev2
> _______________________________________________
> qooxdoo-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

------------------------------------------------------------------------------
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to