On 28 juin, 03:53, Dan <[email protected]> wrote:
> Is it possible to localize the css in a CssResource so that during the
> translation phase of product development, css tweaks can be made to
> adjust for language specific spacing and formatting issues?
Yes, you can have distinct MyStyle_en.css MyStyle_fr.css, etc. and
have them picked from a single @Source("MyStyle.css").
> if not, what's the current best practice to work around these issues?
If the changes are "localised" though, I'd rather use @if blocks:
@if locale en {
...
}
@elif locale fr {
...
}
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.