Index: themes/seven/style.css
===================================================================
RCS file: /cvs/drupal/drupal/themes/seven/style.css,v
retrieving revision 1.55
diff -u -r1.55 style.css
--- themes/seven/style.css	1 May 2010 07:57:37 -0000	1.55
+++ themes/seven/style.css	4 May 2010 00:10:33 -0000
@@ -476,7 +476,6 @@
   margin: 0 0 10px;
   border: 1px solid #bebfb9;
 }
-table.system-status-report th,
 table td,
 table th {
   vertical-align: middle;
@@ -484,33 +483,6 @@
   border: 0;
   color: #000;
 }
-table.system-status-report th {
-  padding-left: 30px;
-}
-table.system-status-report tr.ok > * {
-  background-color: #dfd;
-}
-table.system-status-report tr.ok.even > * {
-  background-color: #d3f3d3;
-}
-table.system-status-report tr.info > * {
-  background-color: #bdf;
-}
-table.system-status-report tr.info.even > * {
-  background-color: #b1d1f1;
-}
-table.system-status-report tr.warning > * {
-  background-color: #ffd;
-}
-table.system-status-report tr.warning.even > * {
-  background-color: #f2f2d2;
-}
-table.system-status-report tr.error > * {
-  background-color: #fdd;
-}
-table.system-status-report tr.error.even > * {
-  background-color: #ecc;
-}
 tr.even,
 tr.odd {
   border-width: 0 1px 0 1px;
@@ -537,7 +509,6 @@
   border-color: #bebfb9;
   padding: 3px 10px;
 }
-
 table th.active {
   background: #bdbeb9;
 }
@@ -561,7 +532,21 @@
   background: #ffc;
   border-color: #eeb;
 }
-
+table.system-status-report tr {
+ border-bottom: 1px solid #bebfb9;
+}
+table.system-status-report tr.ok td {
+  background-color: #dfd;
+}
+table.system-status-report tr.info td {
+  background-color: #bdf;
+}
+table.system-status-report tr.warning td {
+  background-color: #ffd;
+}
+table.system-status-report tr.error td {
+  background-color: #fdd;
+}
 /**
  * Fieldsets.
  *
Index: modules/system/system.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.admin.inc,v
retrieving revision 1.275
diff -u -r1.275 system.admin.inc
--- modules/system/system.admin.inc	30 Apr 2010 01:33:17 -0000	1.275
+++ modules/system/system.admin.inc	4 May 2010 00:10:33 -0000
@@ -2470,11 +2470,11 @@
 
       // Output table row(s)
       if (!empty($requirement['description'])) {
-        $output .= '<tr class="' . $class . ' merge-down"><th>' . $requirement['title'] . '</th><td>' . $requirement['value'] . '</td></tr>';
+        $output .= '<tr class="' . $class . ' merge-down"><td>' . $requirement['title'] . '</td><td>' . $requirement['value'] . '</td></tr>';
         $output .= '<tr class="' . $class . ' merge-up"><td colspan="2">' . $requirement['description'] . '</td></tr>';
       }
       else {
-        $output .= '<tr class="' . $class . '"><th>' . $requirement['title'] . '</th><td>' . $requirement['value'] . '</td></tr>';
+        $output .= '<tr class="' . $class . '"><td>' . $requirement['title'] . '</td><td>' . $requirement['value'] . '</td></tr>';
       }
     }
   }
