Index: themes/bartik/css/style.css =================================================================== RCS file: /cvs/drupal/drupal/themes/bartik/css/style.css,v retrieving revision 1.13 diff -u -r1.13 style.css --- themes/bartik/css/style.css 10 Sep 2010 17:56:20 -0000 1.13 +++ themes/bartik/css/style.css 14 Sep 2010 09:46:28 -0000 @@ -155,6 +155,11 @@ border: 1px solid #fff; text-align: left; /* LTR */ } +table.system-status-report td, +table.system-status-report th { + border-left: 0; + border-right: 0; +} #footer-wrapper tr td, #footer-wrapper tr th { border-color: #555; Index: modules/system/admin.css =================================================================== RCS file: /cvs/drupal/drupal/modules/system/admin.css,v retrieving revision 1.22 diff -u -r1.22 admin.css --- modules/system/admin.css 28 Apr 2010 20:08:39 -0000 1.22 +++ modules/system/admin.css 14 Sep 2010 09:46:24 -0000 @@ -65,27 +65,24 @@ /** * Formatting for status report */ -table.system-status-report th { - border-bottom: 1px solid #ccc; +table.system-status-report td { + padding: 6px; } -table.system-status-report th, -table.system-status-report tr.merge-up td { - padding-left: 30px; /* LTR */ -} -table.system-status-report th { - background-repeat: no-repeat; +table.system-status-report td.status-title { background-position: 5px 50%; /* LTR */ - padding-top: 6px; - padding-bottom: 6px; + background-repeat: no-repeat; +} +table.system-status-report td.status-title { + padding-left: 30px; /* LTR */ } -table.system-status-report tr.error th { - background-image: url(../../misc/watchdog-error.png); +table.system-status-report tr.merge-up td { + padding: 0 6px 8px 30px; /* LTR */ } -table.system-status-report tr.warning th { - background-image: url(../../misc/watchdog-warning.png); +table.system-status-report tr.error td.status-title { + background-image: url(../../misc/message-16-error.png); } -table.system-status-report tr.ok th { - background-image: url(../../misc/watchdog-ok.png); +table.system-status-report tr.warning td.status-title { + background-image: url(../../misc/message-16-warning.png); } /** Index: modules/system/system.admin.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/system/system.admin.inc,v retrieving revision 1.303 diff -u -r1.303 system.admin.inc --- modules/system/system.admin.inc 11 Sep 2010 03:00:26 -0000 1.303 +++ modules/system/system.admin.inc 14 Sep 2010 09:46:27 -0000 @@ -2581,11 +2581,11 @@ // Output table row(s) if (!empty($requirement['description'])) { - $output .= '' . $requirement['title'] . '' . $requirement['value'] . ''; - $output .= '' . $requirement['description'] . ''; + $output .= '' . $requirement['title'] . '' . $requirement['value'] . ''; + $output .= '' . $requirement['description'] . ''; } else { - $output .= '' . $requirement['title'] . '' . $requirement['value'] . ''; + $output .= '' . $requirement['title'] . '' . $requirement['value'] . ''; } } }