Thursday, January 15, 2015

/* noflip */ GSS in GWT 2.7.0 doesn't seem to work

Hi group,

I have the following very simple css inside some .gss file

.closeButtonContainer {
    /* @noflip */
    float: right;
    margin: 4px;
}

.footer {
    padding: 0 10px;
    /* @noflip */
    text-align: right;
}

The no flip seems to be ignored because if i use an rtl locale, i get

.closeButtonContainer {
    float: left;
    margin: 4px;
}

.footer {
    padding: 0 10px;
    text-align: left;
}

Is there any other way to specify no flipping for specific properties?

some more info:
I use GWT 2.7.0 with SDM
i have <set-configuration-property name="CssResource.enableGss" value="true" /> in my module
i use only .gss files for styling

Thanks for any help

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment