Reputation: 7694
I'm curious, is there a way to style buttons in my GWT application to make them look the same way they do in GMail?
Are these "buttons" at all? What's the easiest way to get the same?
Upvotes: 3
Views: 701
Reputation: 13519
The current version are divs styles with CSS3 properties like gradient
and border-radius
. Prior to this version GMail had a button also created by divs but not using CSS3 styles. The button was much more complex (several nested divs). That latter button is available for GWT in the library cobogw:
See demo and cobogw on google code.
Upvotes: 2