Hi List,

 

I made a custom text Shadow css mixin. _styleTextShadow function is running
but no effort. Is their a filter or a white list for allowed style sheets?
Here is my code:

 

/* ************************************************************************

 

 

   Authors:

     * Mustafa Sak (SAKsystems)

 

*/

qx.Mixin.define("asa.ui.decoration.MTextShadow",

{

  properties : {

    /** top left corner radius */

    textShadow :

    {

      nullable : true,

      check : "String",

      apply : "_applyTextShadow"

    }

  },

 

 

  members :

  {

   

    _styleTextShadow : function(styles)

    {

      console.log(this.getTextShadow()); // <- functions is firering

      styles["text-shadow"] = this.getTextShadow();

    },

 

    // property apply

    _applyTextShadow : function()

    {

      if (qx.core.Environment.get("qx.debug"))

      {

        if (this._isInitialized()) {

          throw new Error("This decorator is already in-use. Modification is
not possible anymore!");

        }

      }

    }

  }

});

 

 


 


SAKsystems

Inh. Mustafa Sak

Varrelmannstr. 16

30453 Hannover

Tel.   +49 511 / 165 969 40

Fax   +49 511 / 165 969 49

Mobil +49 163 / 312 6144

http://www.saksys.de

 <mailto:[email protected]> [email protected]

STEUER-Nr. 2613817458

 

<<attachment: Mustafa Sak ([email protected]).vcf>>

------------------------------------------------------------------------------
uberSVN's rich system and user administration capabilities and model 
configuration take the hassle out of deploying and managing Subversion and 
the tools developers use with it. Learn more about uberSVN and get a free 
download at:  http://p.sf.net/sfu/wandisco-dev2dev
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to