Re: Right aligning items of a MenuBar.

2011-01-15 Thread Y2i
If you put these selectors into a ui:style/ tag of *.ui.xml file they will not work because the rules will be obfuscated. The selectors need to go to your application's CSS file: http://code.google.com/webtoolkit/doc/latest/DevGuideUiCss.html#widgets Create a CSS file (mystyles.css), put it

Re: Right aligning items of a MenuBar.

2011-01-15 Thread Thomas Broyer
On Saturday, January 15, 2011 3:33:35 PM UTC+1, Y2i wrote: If you put these selectors into a ui:style/ tag of *.ui.xml file they will not work because the rules will be obfuscated. ...unless you use an @external rule to tell GWT not to obfuscate them:

Re: Right aligning items of a MenuBar.

2011-01-14 Thread pieceovcake
i have the same issue, not able to alight right. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to

Right aligning items of a MenuBar.

2009-03-05 Thread verl
How do you right align items on a MenuBar using CSS? I tried .gwt-MenuBar { float: right; } and the MenuBar itself is right aligned, but not the options on the menubar. I also Tried .gwt-MenuBar .gwt-MenuItem { float: right; } to no effect.