diff --git modules/system/admin.css modules/system/admin.css
index 54df5af..94b866f 100644
--- modules/system/admin.css
+++ modules/system/admin.css
@@ -65,27 +65,26 @@ span.admin-missing {
 /**
  * Formatting for status report
  */
-table.system-status-report th {
-  border-bottom: 1px solid #ccc;
-}
-table.system-status-report th,
+table.system-status-report td.title,
 table.system-status-report tr.merge-up td {
   padding-left: 30px; /* LTR */
 }
-table.system-status-report th {
+table.system-status-report td.title {
   background-repeat: no-repeat;
   background-position: 5px 50%; /* LTR */
+}
+table.system-status-report td {
   padding-top: 6px;
   padding-bottom: 6px;
 }
-table.system-status-report tr.error th {
-  background-image: url(../../misc/watchdog-error.png);
+table.system-status-report tr.error td.title {
+  background-image: url(../../misc/message-16-error.png);
 }
-table.system-status-report tr.warning th {
-  background-image: url(../../misc/watchdog-warning.png);
+table.system-status-report tr.warning td.title {
+  background-image: url(../../misc/message-16-warning.png);
 }
-table.system-status-report tr.ok th {
-  background-image: url(../../misc/watchdog-ok.png);
+table.system-status-report tr.ok td.title {
+  background-image: none;
 }
 
 /**
diff --git modules/system/system.admin.inc modules/system/system.admin.inc
index 79735a8..9ac8e20 100644
--- modules/system/system.admin.inc
+++ modules/system/system.admin.inc
@@ -2581,11 +2581,11 @@ function theme_status_report($variables) {
 
       // Output table row(s)
       if (!empty($requirement['description'])) {
-        $output .= '<tr class="' . $class . ' merge-down"><td>' . $requirement['title'] . '</td><td>' . $requirement['value'] . '</td></tr>';
+        $output .= '<tr class="' . $class . ' merge-down"><td class="title">' . $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 . '"><td>' . $requirement['title'] . '</td><td>' . $requirement['value'] . '</td></tr>';
+        $output .= '<tr class="' . $class . '"><td class="title">' . $requirement['title'] . '</td><td>' . $requirement['value'] . '</td></tr>';
       }
     }
   }
