Re: How to style TextButton?

2013-05-05 Thread Kartik Suba
Hi, You can try buttonName.setStyleName("customButtonStyle"); and add .customButtonStyle { background: none !important; border-color: blue !important;} -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group

Re: How to style TextButton?

2013-05-02 Thread Jens
TextButton uses the appearance pattern. You have to provide an instance of ButtonCellBase.DefaultAppearance with your custom ClientBundle/CssResource. Very similar to what you would do if you want to style CellTable. -- J. Am Donnerstag, 2. Mai 2013 20:31:11 UTC+2 schrieb membersound: > > Hi, >

How to style TextButton?

2013-05-02 Thread membersound
Hi, how can I style a TextButton? I applied the following to my global css file, but it does not change anything: .gwt-TextButton { background: none !important; border-color: none !important; } -- You received this message because you are subscribed to the Google Groups "Google Web To