Put the Mail sample into quirks mode to resolve an issue with StackPanel where it does not size itself correctly in IE in standards mode.  We will need to address the StackPanel issue later.  This patch is TBR.

Patch by: jlabanca



git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@2412 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/samples/mail/src/com/google/gwt/sample/mail/public/Mail.css b/samples/mail/src/com/google/gwt/sample/mail/public/Mail.css
index d0ba5e9..8128615 100644
--- a/samples/mail/src/com/google/gwt/sample/mail/public/Mail.css
+++ b/samples/mail/src/com/google/gwt/sample/mail/public/Mail.css
@@ -32,8 +32,8 @@
 }
 
 .gwt-DialogBox .content {
-	border: 1px solid #666;
-	border-top: 0;
+  border: 1px solid #666;
+  border-top: 0;
 }
 
 .gwt-DialogBox td {
@@ -50,6 +50,7 @@
 }
 
 .gwt-MenuItem {
+  font-size: 80%;
   margin: 1px;
   cursor: default;
 }
@@ -66,6 +67,7 @@
 }
 
 .gwt-Tree .gwt-TreeItem {
+  font-size: 80%;
   cursor: default;
 }
 
@@ -78,7 +80,7 @@
 }
 
 .gwt-StackPanel {
-	width: 15em;
+  width: 15em;
   border-bottom: 1px solid #666;
 }
 .gwt-StackPanel .lcaption {
@@ -177,6 +179,7 @@
 }
 
 .mail-TopPanel table {
+  font-size: 80%;
 }
 
 .mail-TopPanel .gwt-Image {
@@ -185,10 +188,12 @@
 }
 
 .mail-TopPanelLinks {
+  font-size: 80%;
 }
 
 .mail-AboutText {
   width: 24em;
+  font-size: 80%;
   padding: 10px;
   text-align: left;
 }
@@ -198,15 +203,18 @@
 }
 
 .mail-Contacts table {
+  font-size: 80%;
 }
 
 .mail-Tasks table {
+  font-size: 80%;
 }
 
 .mail-List {
   border-left: 1px solid #666;
   border-right: 1px solid #666;
   border-bottom: 1px solid #666;
+  font-size: 80%;
   cursor: pointer;
   cursor: hand;
 }
@@ -237,6 +245,7 @@
 }
 
 .mail-ListNavBar table {
+  font-size: 80%;
 }
 
 .mail-ListNavBar td {
@@ -260,6 +269,7 @@
 }
 
 .mail-ToolButton {
+  font-size: 80%;
   width: 10em;
 }
 
@@ -280,6 +290,7 @@
 
 .mail-DetailInner {
   background-color: white;
+  font-size: 80%;
 }
 
 .mail-DetailSubject {
@@ -288,10 +299,12 @@
 }
 
 .mail-DetailSender {
+  font-size: 80%;
   padding: 2px 10px;
 }
 
 .mail-DetailRecipient {
+  font-size: 80%;
   padding: 2px 10px;
 }
 
@@ -308,10 +321,12 @@
 }
 
 .mail-ContactPopupName {
+  font-size: 80%;
   font-weight: bold;
 }
 
 .mail-ContactPopupEmail {
+  font-size: 80%;
   font-style: italic;
 }
 
diff --git a/samples/mail/src/com/google/gwt/sample/mail/public/Mail.html b/samples/mail/src/com/google/gwt/sample/mail/public/Mail.html
index c17df75..2fd2947 100644
--- a/samples/mail/src/com/google/gwt/sample/mail/public/Mail.html
+++ b/samples/mail/src/com/google/gwt/sample/mail/public/Mail.html
@@ -1,6 +1,3 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
-"http://www.w3.org/TR/html4/loose.dtd">
-
 <!--                                                                        -->
 <!-- Copyright 2008 Google Inc.                                             -->
 <!-- Licensed under the Apache License, Version 2.0 (the "License"); you    -->