Thank you for your reply.  I do not use generate.py as I'm using TypeScript
and qooxdoo at https://github.com/jbaron/cats.  I created this function:

    export function initFocusDecorator() {
        /*
         * Copyright (c) 2005-2015 Vincent Vandenschrick. All rights
reserved.
         *
         *  This file is part of the Jspresso framework.
         *
         *  Jspresso is free software: you can redistribute it and/or modify
         *  it under the terms of the GNU Lesser General Public License as
published by
         *  the Free Software Foundation, either version 3 of the License,
or
         *  (at your option) any later version.
         *
         *  Jspresso is distributed in the hope that it will be useful,
         *  but WITHOUT ANY WARRANTY; without even the implied warranty of
         *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
         *  GNU Lesser General Public License for more details.
         *
         *  You should have received a copy of the GNU Lesser General Public
License
         *  along with Jspresso.  If not, see
<http://www.gnu.org/licenses/>.
         */
        qx.Mixin.define("JspressoMTransition", {

            properties: {
                transition: {
                    nullable: true,
                    check: "String"
                }
            },

            members: {
                _styleTransition: function (styles) {
                    var transition = this.getTransition();
                    if (transition === null) {
                        return;
                    }
                    styles["transition"] = transition;
                }
            }
        });

        qx.Class.patch(qx.ui.decoration.Decorator, JspressoMTransition);
    }

and called it at the start of the application like this:

            ui.initFocusDecorator();

but nothing has changed from the default modern theme.





--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/Theming-tp7587082p7587125.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to