Hi

I'm migrating some nice HTML-fragment to GWT. Thanks to UiBinder this
is really easy and I get a nice result in few hours.

I notice the uiBinder seems to rewrite the CSS rules according to
browser support (I may be wrong) : my CSS uses CSS3 box-shadow :

        box-shadow: 2px 2px 5px #000;
        -moz-box-shadow: 2px 2px 5px #000;
        -webkit-box-shadow: 2px 2px 5px #000;

This works fine on my Chrome browser, but when I use the uibinder
version I dont' have shadows anymore. The CSS rule filter should not
remove any -webkit* rule when targeting a webkit based browser,
sould'it ? Also the box-shadow is supported by recent webkit browsers
(it is on chrome 4, but this is in the dev channel)

2nd question : If my CSS uses background-image: url(...), can I
include those images in my ClientBundle and still make references to
them in my CSS fragement ?

Cheers,
Nicolas

-- 
http://groups.google.com/group/Google-Web-Toolkit-Contributors

Reply via email to