Index: wp-admin/css/colors-classic.css
===================================================================
--- wp-admin/css/colors-classic.css	(revision 22106)
+++ wp-admin/css/colors-classic.css	(working copy)
@@ -147,6 +147,8 @@
 .widefat {
 	border-color: #D1E5EE;
 	background-color: #fff;
+	border-collapse: collapse;
+    padding:0px 0px 0px 0px;
 }
 
 div.dashboard-widget-error {
@@ -673,6 +675,8 @@
 .widefat th {
 	border-top-color: #fff;
 	border-bottom-color: #D0DFE9;
+	padding:0;
+    border-spacing:0px 0px;
 }
 
 .widefat th {
@@ -1022,8 +1026,15 @@
 
 #post-status-info {
 	border-color: #d0dfe9 #d1e5ee #d1e5ee;
+    border-collapse: collapse;
+    padding:0px 0px 0px 0px;
 }
 
+#post-status-info td {
+    padding:0;
+    border-spacing:0px 0px;
+}
+
 /* TinyMCE */
 
 .wp-admin .wp-editor-wrap .wp-switch-editor {
Index: wp-admin/css/colors-fresh.css
===================================================================
--- wp-admin/css/colors-fresh.css	(revision 22106)
+++ wp-admin/css/colors-fresh.css	(working copy)
@@ -136,6 +136,8 @@
 .widefat {
 	border-color: #dfdfdf;
 	background-color: #f9f9f9;
+	border-collapse: collapse;
+    padding:0px 0px 0px 0px;
 }
 textarea.widefat {
 	background-color: #fff;
@@ -664,6 +666,8 @@
 .widefat th {
 	border-top-color: #fff;
 	border-bottom-color: #dfdfdf;
+	padding:0;
+    border-spacing:0px 0px;
 }
 
 .widefat th {
@@ -1058,8 +1062,15 @@
 #post-status-info {
 	border-color: #dfdfdf #ccc #ccc;
 	background-color: #eaeaea;
+	border-collapse: collapse;
+    padding:0px 0px 0px 0px;
 }
 
+#post-status-info td {
+    padding:0;
+    border-spacing:0px 0px;
+}
+
 .editwidget .widget-inside {
 	border-color: #dfdfdf;
 }
Index: wp-admin/edit-form-advanced.php
===================================================================
--- wp-admin/edit-form-advanced.php	(revision 22106)
+++ wp-admin/edit-form-advanced.php	(working copy)
@@ -347,7 +347,7 @@
 
 <?php wp_editor($post->post_content, 'content', array('dfw' => true, 'tabfocus_elements' => 'sample-permalink,post-preview', 'editor_height' => 360) ); ?>
 
-<table id="post-status-info" cellspacing="0"><tbody><tr>
+<table id="post-status-info"><tbody><tr>
 	<td id="wp-word-count"><?php printf( __( 'Word count: %s' ), '<span class="word-count">0</span>' ); ?></td>
 	<td class="autosave-info">
 	<span class="autosave-message">&nbsp;</span>
Index: wp-admin/import.php
===================================================================
--- wp-admin/import.php	(revision 22106)
+++ wp-admin/import.php	(working copy)
@@ -81,7 +81,7 @@
 } else {
 	uasort($importers, create_function('$a, $b', 'return strcmp($a[0], $b[0]);'));
 ?>
-<table class="widefat importers" cellspacing="0">
+<table class="widefat importers">
 
 <?php
 	$style = '';
Index: wp-admin/includes/ajax-actions.php
===================================================================
--- wp-admin/includes/ajax-actions.php	(revision 22106)
+++ wp-admin/includes/ajax-actions.php	(working copy)
@@ -1450,7 +1450,7 @@
 		wp_die( $posttype->labels->not_found );
 	}
 
-	$html = '<table class="widefat" cellspacing="0"><thead><tr><th class="found-radio"><br /></th><th>'.__('Title').'</th><th>'.__('Date').'</th><th>'.__('Status').'</th></tr></thead><tbody>';
+	$html = '<table class="widefat"><thead><tr><th class="found-radio"><br /></th><th>'.__('Title').'</th><th>'.__('Date').'</th><th>'.__('Status').'</th></tr></thead><tbody>';
 	foreach ( $posts as $post ) {
 
 		switch ( $post->post_status ) {
Index: wp-admin/includes/class-wp-comments-list-table.php
===================================================================
--- wp-admin/includes/class-wp-comments-list-table.php	(revision 22106)
+++ wp-admin/includes/class-wp-comments-list-table.php	(working copy)
@@ -278,7 +278,7 @@
 		$this->display_tablenav( 'top' );
 
 ?>
-<table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0">
+<table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>">
 	<thead>
 	<tr>
 		<?php $this->print_column_headers(); ?>
@@ -551,7 +551,7 @@
 
 		wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' );
 ?>
-<table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0" style="display:none;">
+<table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" style="display:none;">
 	<tbody id="the-comment-list"<?php if ( $singular ) echo " class='list:$singular'"; ?>>
 		<?php if ( ! $output_empty ) $this->display_rows_or_placeholder(); ?>
 	</tbody>
Index: wp-admin/includes/class-wp-list-table.php
===================================================================
--- wp-admin/includes/class-wp-list-table.php	(revision 22106)
+++ wp-admin/includes/class-wp-list-table.php	(working copy)
@@ -719,7 +719,7 @@
 		$this->display_tablenav( 'top' );
 
 ?>
-<table class="wp-list-table <?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0">
+<table class="wp-list-table <?php echo implode( ' ', $this->get_table_classes() ); ?>">
 	<thead>
 	<tr>
 		<?php $this->print_column_headers(); ?>
Index: wp-admin/includes/media.php
===================================================================
--- wp-admin/includes/media.php	(revision 22106)
+++ wp-admin/includes/media.php	(working copy)
@@ -1666,7 +1666,7 @@
 <form enctype="multipart/form-data" method="post" action="<?php echo esc_attr($form_action_url); ?>" class="<?php echo $form_class; ?>" id="gallery-form">
 <?php wp_nonce_field('media-form'); ?>
 <?php //media_upload_form( $errors ); ?>
-<table class="widefat" cellspacing="0">
+<table class="widefat">
 <thead><tr>
 <th><?php _e('Media'); ?></th>
 <th class="order-head"><?php _e('Order'); ?></th>
Index: wp-admin/includes/meta-boxes.php
===================================================================
--- wp-admin/includes/meta-boxes.php	(revision 22106)
+++ wp-admin/includes/meta-boxes.php	(working copy)
@@ -857,7 +857,7 @@
  */
 function link_xfn_meta_box($link) {
 ?>
-<table class="links-table" cellspacing="0">
+<table class="links-table">
 	<tr>
 		<th scope="row"><label for="link_rel"><?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('rel:') ?></label></th>
 		<td><input type="text" name="link_rel" id="link_rel" value="<?php echo ( isset( $link->link_rel ) ? esc_attr($link->link_rel) : ''); ?>" /></td>
Index: wp-admin/update-core.php
===================================================================
--- wp-admin/update-core.php	(revision 22106)
+++ wp-admin/update-core.php	(working copy)
@@ -191,7 +191,7 @@
 <form method="post" action="<?php echo $form_action; ?>" name="upgrade-plugins" class="upgrade">
 <?php wp_nonce_field('upgrade-core'); ?>
 <p><input id="upgrade-plugins" class="button" type="submit" value="<?php esc_attr_e('Update Plugins'); ?>" name="upgrade" /></p>
-<table class="widefat" cellspacing="0" id="update-plugins-table">
+<table class="widefat" id="update-plugins-table">
 	<thead>
 	<tr>
 		<th scope="col" class="manage-column check-column"><input type="checkbox" id="plugins-select-all" /></th>
@@ -269,7 +269,7 @@
 <form method="post" action="<?php echo $form_action; ?>" name="upgrade-themes" class="upgrade">
 <?php wp_nonce_field('upgrade-core'); ?>
 <p><input id="upgrade-themes" class="button" type="submit" value="<?php esc_attr_e('Update Themes'); ?>" name="upgrade" /></p>
-<table class="widefat" cellspacing="0" id="update-themes-table">
+<table class="widefat" id="update-themes-table">
 	<thead>
 	<tr>
 		<th scope="col" class="manage-column check-column"><input type="checkbox" id="themes-select-all" /></th>
Index: wp-includes/post-template.php
===================================================================
--- wp-includes/post-template.php	(revision 22106)
+++ wp-includes/post-template.php	(working copy)
@@ -1417,7 +1417,7 @@
 
 <br class="clear" />
 
-<table class="widefat post-revisions" cellspacing="0" id="post-revisions">
+<table class="widefat post-revisions" id="post-revisions">
 	<col />
 	<col />
 	<col style="width: 33%" />
