Re: GWT Standard theme == relatively much bigger IE buttons. Fix?

2009-09-14 Thread alex.d
I've solved this issue by adding this to myApp.css: .gwt-Button { font-size: 12px; } On 13 Sep., 05:25, John Gunther johncurtisgunt...@yahoo.com wrote: Thanks, when I added the following doctype at the top of the host page: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN

GWT Standard theme == relatively much bigger IE buttons. Fix?

2009-09-12 Thread John Gunther
I've noticed that in IE buttons are noticeably larger using the standard GWT CSS theme than these buttons are in other browsers. This makes consistent cross-browser sizing difficult for me. Just eyeballing I'd say the IE buttons are around 50% wider and taller than in the other browsers. For

Re: GWT Standard theme == relatively much bigger IE buttons. Fix?

2009-09-12 Thread Ian Bambury
Two things - GWT themes are only there (mostly) to style GWT widgets AFAICT, they are not a complete cross-browser solution to all css differences. Maybe one day. Buttons are browser and OS dependent and whatever you do, you'll never get a Safari button to look like an IE button. So... I'd

Re: GWT Standard theme == relatively much bigger IE buttons. Fix?

2009-09-12 Thread John Gunther
Thanks, when I added the following doctype at the top of the host page: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN http://www.w3.org/ TR/html4/strict.dtd The IE button sizes dropped down a notch. (Previously, I had not included any doctype at all...that gave me the gargantuan IE buttons)