Makes disabled buttons appear differently in KitchenSink (to deal in particular
with the fact that Safari doesn't render disabled buttons differently by
default).
Patch by: bobv
Review by: jgw


git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@1146 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/samples/kitchensink/src/com/google/gwt/sample/kitchensink/public/KitchenSink.css b/samples/kitchensink/src/com/google/gwt/sample/kitchensink/public/KitchenSink.css
index 47a27b9..d0d5ea5 100644
--- a/samples/kitchensink/src/com/google/gwt/sample/kitchensink/public/KitchenSink.css
+++ b/samples/kitchensink/src/com/google/gwt/sample/kitchensink/public/KitchenSink.css
@@ -32,6 +32,11 @@
 .gwt-Button {
 }
 
+.gwt-Button[disabled] {
+  background: lightGray;
+  color: darkGray;
+}
+
 .gwt-Canvas {
 }