Index: wp-admin/users.php
===================================================================
--- wp-admin/users.php	(revision 6995)
+++ wp-admin/users.php	(working copy)
@@ -401,7 +401,7 @@
 ?>
 <form action="#add-new-user" method="post" name="adduser" id="adduser" class="add:user-list:">
 <?php wp_nonce_field('add-user') ?>
-<table class="niceblue">
+<table class="form-table">
 	<tr class="form-field form-required">
 		<th scope="row"><?php _e('Username (required)') ?><input name="action" type="hidden" id="action" value="adduser" /></th>
 		<td ><input name="user_login" type="text" id="user_login" value="<?php echo $new_user_login; ?>" /></td>
Index: wp-admin/options-privacy.php
===================================================================
--- wp-admin/options-privacy.php	(revision 6995)
+++ wp-admin/options-privacy.php	(working copy)
@@ -11,7 +11,7 @@
 <h2><?php _e('Privacy Settings') ?></h2>
 <form method="post" action="options.php">
 <?php wp_nonce_field('update-options') ?>
-<table class="niceblue">
+<table class="form-table">
 <tr valign="top">
 <th scope="row"><?php _e('Blog Visibility') ?> </th>
 <td>
Index: wp-admin/wp-admin.css
===================================================================
--- wp-admin/wp-admin.css	(revision 6995)
+++ wp-admin/wp-admin.css	(working copy)
@@ -916,26 +916,26 @@
 
 /* Tables used on comment.php and option/setting pages */
 
-.niceblue {
+.form-table {
 	border-collapse: collapse;
 	margin-top: 1em;
 	width: 100%;
 }
 
-.niceblue td {
+.form-table td {
 	margin-bottom: 9px;
 	padding: 10px;
 	border-bottom: 8px solid #fff;
 	line-height: 20px;
 }
 
-.niceblue th {
+.form-table th {
 	text-align: left;
 	padding: 10px;
 	border-bottom: 8px solid #fff;
 }
 
-.niceblue tr {
+.form-table tr {
 	background: #eaf3fa;
 }
 
Index: wp-admin/update.php
===================================================================
--- wp-admin/update.php	(revision 6995)
+++ wp-admin/update.php	(working copy)
@@ -31,7 +31,7 @@
 <div class="wrap">
 <h2><?php _e('FTP Connection Information') ?></h2>
 <p><?php _e('To perform the requested update, FTP connection information is required.') ?></p>
-<table class="niceblue">
+<table class="form-table">
 <tr valign="top">
 <th scope="row"><?php _e('Hostname:') ?></th>
 <td><input name="hostname" type="text" id="hostname" value="<?php echo attribute_escape($hostname) ?>" size="40" /></td>
Index: wp-admin/comment.php
===================================================================
--- wp-admin/comment.php	(revision 6995)
+++ wp-admin/comment.php	(working copy)
@@ -93,7 +93,7 @@
 <input type='hidden' name='noredir' value='1' />
 </form>
 
-<table class="niceblue" cellpadding="5">
+<table class="form-table" cellpadding="5">
 <tr class="alt">
 <th scope="row"><?php _e('Author'); ?></th>
 <td><?php echo $comment->comment_author; ?></td>
Index: wp-admin/options-general.php
===================================================================
--- wp-admin/options-general.php	(revision 6995)
+++ wp-admin/options-general.php	(working copy)
@@ -11,7 +11,7 @@
 <h2><?php _e('General Settings') ?></h2>
 <form method="post" action="options.php">
 <?php wp_nonce_field('update-options') ?>
-<table class="niceblue">
+<table class="form-table">
 <tr valign="top">
 <th scope="row"><?php _e('Blog Title') ?></th>
 <td><input name="blogname" type="text" id="blogname" value="<?php form_option('blogname'); ?>" size="40" /></td>
Index: wp-admin/import/dotclear.php
===================================================================
--- wp-admin/import/dotclear.php	(revision 6995)
+++ wp-admin/import/dotclear.php	(working copy)
@@ -640,7 +640,7 @@
 
 	function db_form()
 	{
-		echo '<table class="niceblue">';
+		echo '<table class="form-table">';
 		printf('<tr><th><label for="dbuser">%s</label></th><td><input type="text" name="dbuser" id="dbuser" /></td></tr>', __('DotClear Database User:'));
 		printf('<tr><th><label for="dbpass">%s</label></th><td><input type="password" name="dbpass" id="dbpass" /></td></tr>', __('DotClear Database Password:'));
 		printf('<tr><th><label for="dbname">%s</label></th><td><input type="text" name="dbname" id="dbname" /></td></tr>', __('DotClear Database Name:'));
Index: wp-admin/import/textpattern.php
===================================================================
--- wp-admin/import/textpattern.php	(revision 6995)
+++ wp-admin/import/textpattern.php	(working copy)
@@ -575,7 +575,7 @@
 
 	function db_form()
 	{
-		echo '<table class="niceblue">';
+		echo '<table class="form-table">';
 		printf('<tr><th scope="row"><label for="dbuser">%s</label></th><td><input type="text" name="dbuser" id="dbuser" /></td></tr>', __('Textpattern Database User:'));
 		printf('<tr><th scope="row"><label for="dbpass">%s</label></th><td><input type="password" name="dbpass" id="dbpass" /></td></tr>', __('Textpattern Database Password:'));
 		printf('<tr><th scope="row"><label for="dbname">%s</label></th><td><input type="text" id="dbname" name="dbname" /></td></tr>', __('Textpattern Database Name:'));
Index: wp-admin/import/greymatter.php
===================================================================
--- wp-admin/import/greymatter.php	(revision 6995)
+++ wp-admin/import/greymatter.php	(working copy)
@@ -36,7 +36,7 @@
 <input type="hidden" name="step" value="1" />
 <?php wp_nonce_field('import-greymatter'); ?>
 <h3><?php _e('Second step: GreyMatter details:') ?></h3>
-<table class="niceblue">
+<table class="form-table">
 <tr>
 <td><?php _e('Path to GM files:') ?></td>
 <td><input type="text" style="width:300px" name="gmpath" value="/home/my/site/cgi-bin/greymatter/" /></td>
Index: wp-admin/options-misc.php
===================================================================
--- wp-admin/options-misc.php	(revision 6995)
+++ wp-admin/options-misc.php	(working copy)
@@ -13,7 +13,7 @@
 <form method="post" action="options.php">
 <?php wp_nonce_field('update-options') ?>
 <h3><?php _e('Uploading'); ?></h3>
-<table class="niceblue">
+<table class="form-table">
 <tr valign="top">
 <th scope="row"><?php _e('Store uploads in this folder'); ?></th>
 <td><input name="upload_path" type="text" id="upload_path" class="code" value="<?php echo attribute_escape(str_replace(ABSPATH, '', get_option('upload_path'))); ?>" size="40" />
@@ -37,7 +37,7 @@
 </th>
 </tr>
 </table>
-<table class="niceblue">
+<table class="form-table">
 <tr>
 	<th colspan="2"><input name="use_linksupdate" type="checkbox" id="use_linksupdate" value="1" <?php checked('1', get_option('use_linksupdate')); ?> />
 <label for="use_linksupdate"><?php _e('Track Links&#8217; Update Times') ?></label>
Index: wp-admin/edit-link-category-form.php
===================================================================
--- wp-admin/edit-link-category-form.php	(revision 6995)
+++ wp-admin/edit-link-category-form.php	(working copy)
@@ -23,7 +23,7 @@
 <input type="hidden" name="action" value="<?php echo $action ?>" />
 <input type="hidden" name="cat_ID" value="<?php echo $category->term_id ?>" />
 <?php wp_nonce_field($nonce_action); ?>
-	<table class="niceblue">
+	<table class="form-table">
 		<tr class="form-field form-required">
 			<th scope="row" valign="top"><label for="name"><?php _e('Category name') ?></label></th>
 			<td><input name="name" id="name" type="text" value="<?php echo $category->name; ?>" size="40" /></td>
Index: wp-admin/edit-tag-form.php
===================================================================
--- wp-admin/edit-tag-form.php	(revision 6995)
+++ wp-admin/edit-tag-form.php	(working copy)
@@ -23,7 +23,7 @@
 <input type="hidden" name="action" value="<?php echo $action ?>" />
 <input type="hidden" name="tag_ID" value="<?php echo $tag->term_id ?>" />
 <?php wp_nonce_field($nonce_action); ?>
-	<table class="niceblue">
+	<table class="form-table">
 		<tr class="form-field form-required">
 			<th scope="row" valign="top"><label for="name"><?php _e('Tag name') ?></label></th>
 			<td><input name="name" id="name" type="text" value="<?php echo attribute_escape($tag->name); ?>" size="40" /></td>
Index: wp-admin/options-discussion.php
===================================================================
--- wp-admin/options-discussion.php	(revision 6995)
+++ wp-admin/options-discussion.php	(working copy)
@@ -11,7 +11,7 @@
 <h2><?php _e('Discussion Settings') ?></h2>
 <form method="post" action="options.php">
 <?php wp_nonce_field('update-options') ?>
-<table class="niceblue">
+<table class="form-table">
 <tr valign="top">
 <th scope="row"><?php _e('Default article settings') ?></th>
 <td>
Index: wp-admin/options.php
===================================================================
--- wp-admin/options.php	(revision 6995)
+++ wp-admin/options.php	(working copy)
@@ -48,7 +48,7 @@
   <form name="form" action="options.php" method="post" id="all-options">
   <?php wp_nonce_field('update-options') ?>
   <input type="hidden" name="action" value="update" />
-  <table class="niceblue">
+  <table class="form-table">
 <?php
 $options = $wpdb->get_results("SELECT * FROM $wpdb->options ORDER BY option_name");
 
Index: wp-admin/edit-category-form.php
===================================================================
--- wp-admin/edit-category-form.php	(revision 6995)
+++ wp-admin/edit-category-form.php	(working copy)
@@ -23,7 +23,7 @@
 <input type="hidden" name="action" value="<?php echo $action ?>" />
 <input type="hidden" name="cat_ID" value="<?php echo $category->term_id ?>" />
 <?php wp_nonce_field($nonce_action); ?>
-	<table class="niceblue">
+	<table class="form-table">
 		<tr class="form-field form-required">
 			<th scope="row" valign="top"><label for="cat_name"><?php _e('Category Name') ?></label></th>
 			<td><input name="cat_name" id="cat_name" type="text" value="<?php echo attribute_escape($category->name); ?>" size="40" /></td>
Index: wp-admin/options-reading.php
===================================================================
--- wp-admin/options-reading.php	(revision 6995)
+++ wp-admin/options-reading.php	(working copy)
@@ -11,7 +11,7 @@
 <h2><?php _e('Reading Settings') ?></h2>
 <form name="form1" method="post" action="options.php">
 <?php wp_nonce_field('update-options') ?>
-<table class="niceblue">
+<table class="form-table">
 <?php if ( get_pages() ): ?>
 <tr valign="top">
 <th scope="row"><?php _e('Front page displays')?></th>
Index: wp-admin/css/install.css
===================================================================
--- wp-admin/css/install.css	(revision 6995)
+++ wp-admin/css/install.css	(working copy)
@@ -65,19 +65,19 @@
 	color: #d54e21;
 }
 
-.niceblue {
+.form-table {
 	border-collapse: collapse;
 	margin-top: 1em;
 	width: 100%;
 }
 
-.niceblue td {
+.form-table td {
 	margin-bottom: 9px;
 	padding: 10px;
 	border-bottom: 8px solid #fff;
 }
 
-.niceblue th {
+.form-table th {
 	font-size: 12px;
 	text-align: left;
 	padding: 12px 10px 10px 10px;
@@ -86,16 +86,16 @@
 	vertical-align: top;
 }
 
-.niceblue tr {
+.form-table tr {
 	background: #eaf3fa;
 }
 
-.niceblue code {
+.form-table code {
 	line-height: 18px;
 	font-size: 18px;
 }
 
-.niceblue p {
+.form-table p {
 	margin: 4px 0 0 0;
 	font-size: 11px;
 }
Index: wp-admin/setup-config.php
===================================================================
--- wp-admin/setup-config.php	(revision 6995)
+++ wp-admin/setup-config.php	(working copy)
@@ -66,7 +66,7 @@
 	?>
 <form method="post" action="setup-config.php?step=2">
 	<p>Below you should enter your database connection details. If you're not sure about these, contact your host. </p>
-	<table class="niceblue">
+	<table class="form-table">
 		<tr>
 			<th scope="row">Database Name</th>
 			<td><input name="dbname" type="text" size="25" value="wordpress" /></td>
Index: wp-admin/install.php
===================================================================
--- wp-admin/install.php	(revision 6995)
+++ wp-admin/install.php	(working copy)
@@ -45,7 +45,7 @@
 <p><?php _e("Please provide the following information.  Don't worry, you can always change these settings later."); ?></p>
 
 <form id="setup" method="post" action="install.php?step=2">
-	<table class="niceblue">
+	<table class="form-table">
 		<tr>
 			<th scope="row"><?php _e('Blog Title'); ?></th>
 			<td><input name="weblog_title" type="text" id="weblog_title" size="25" /></td>
@@ -91,7 +91,7 @@
 
 <p><?php printf(__('WordPress has been installed. Were you expecting more steps? Sorry to disappoint.'), ''); ?></p>
 
-<table class="niceblue">
+<table class="form-table">
 	<tr>
 		<th><?php _e('Username'); ?></th>
 		<td><code>admin</code></td>
Index: wp-admin/options-permalink.php
===================================================================
--- wp-admin/options-permalink.php	(revision 6995)
+++ wp-admin/options-permalink.php	(working copy)
@@ -127,7 +127,7 @@
 	);
 ?>
 <h3><?php _e('Common settings'); ?></h3>
-<table class="niceblue">
+<table class="form-table">
 	<tr>
 		<th><label><input name="selection" type="radio" value="" class="tog" <?php checked('', $permalink_structure); ?> /> <?php _e('Default'); ?></label></th>
 		<td><code><?php echo get_option('home'); ?>/?p=123</code></td>
@@ -163,7 +163,7 @@
 	<p><?php _e('If you like, you may enter custom bases for your category and tag <abbr title="Universal Resource Locator">URL</abbr>s here. For example, using <code>/topics/</code> as your category base would make your category links like <code>http://example.org/index.php/topics/uncategorized/</code>. If you leave these blank the defaults will be used.') ?></p>
 <?php endif; ?>
 
-<table class="niceblue">
+<table class="form-table">
 	<tr>
 		<th><?php _e('Category base'); ?></th>
 		<td><input name="category_base" id="category_base" type="text" class="code"  value="<?php echo attribute_escape($category_base); ?>" size="30" /></td>
Index: wp-admin/options-writing.php
===================================================================
--- wp-admin/options-writing.php	(revision 6995)
+++ wp-admin/options-writing.php	(working copy)
@@ -12,7 +12,7 @@
 <form method="post" action="options.php">
 <?php wp_nonce_field('update-options') ?>
 
-<table class="niceblue">
+<table class="form-table">
 <tr valign="top">
 <th scope="row"> <?php _e('Size of the post box') ?></th>
 <td><input name="default_post_edit_rows" type="text" id="default_post_edit_rows" value="<?php form_option('default_post_edit_rows'); ?>" size="2" style="width: 1.5em; " />
@@ -60,7 +60,7 @@
 <h3><?php _e('Image sizes') ?></h3>
 <p><?php _e('The sizes listed below determine the maximum dimensions to use when inserting an image into the body of a post.'); ?></p>
 
-<table class="niceblue">
+<table class="form-table">
 <tr valign="top">
 <th scope="row"><?php _e('Thumbnail size') ?></th>
 <td>
@@ -84,7 +84,7 @@
 <h3><?php _e('Post via e-mail') ?></h3>
 <p><?php printf(__('To post to WordPress by e-mail you must set up a secret e-mail account with POP3 access. Any mail received at this address will be posted, so it&#8217;s a good idea to keep this address very secret. Here are three random strings you could use: <code>%s</code>, <code>%s</code>, <code>%s</code>.'), wp_generate_password(), wp_generate_password(), wp_generate_password()) ?></p>
 
-<table class="niceblue">
+<table class="form-table">
 <tr valign="top">
 <th scope="row"><?php _e('Mail Server') ?></th>
 <td><input name="mailserver_url" type="text" id="mailserver_url" value="<?php form_option('mailserver_url'); ?>" size="40" />

