Re: TextShadow won't apply

2011-09-08 Thread Evan Ruff
ANNND as usual, I'm an idiot. I was adding a semi-colon to the end of the statement. myLabel.getElement().getStyle().setProperty( textShadow, #000 5px 5px 5px ); works like a charm. myLabel.getElement().getStyle().setProperty( textShadow, #000 5px 5px 5px *;* ); Doesn't apply.

TextShadow won't apply

2011-09-07 Thread Evan Ruff
I think I might be going crazy. I have a Label element. I'm trying to apply a simple text shadow using: myLabel.getElement().getStyle().setProperty( textShadow, #000 5px 5px 5px ); and it does not show up. I've also tried: DOM.setStyleAttribute( myLabel.getElement(), textShadow, #FFF 5px 5px

Re: TextShadow won't apply

2011-09-07 Thread Gal Dolber
that should work, why don't you use myLabel.getElement().getStyle().setProperty(textShadow, ...) ? On Wed, Sep 7, 2011 at 10:54 PM, Evan Ruff evan.r...@gmail.com wrote: I think I might be going crazy. I have a Label element. I'm trying to apply a simple text shadow using:

Re: TextShadow won't apply

2011-09-07 Thread Gal Dolber
never mind... On Thu, Sep 8, 2011 at 1:55 AM, Gal Dolber gal.dol...@gmail.com wrote: that should work, why don't you use myLabel.getElement().getStyle().setProperty(textShadow, ...) ? On Wed, Sep 7, 2011 at 10:54 PM, Evan Ruff evan.r...@gmail.com wrote: I think I might be going crazy. I