From ca135256b51488aeb8d319b98db764cd39cd21ca Mon Sep 17 00:00:00 2001 From: Chad Little Date: Tue, 15 Jan 2013 14:58:56 -0800 Subject: [PATCH] Remove panels in Audit. Summary: Checked Audit and removed panel backgrounds. Test Plan: Chrome Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4452 --- .../audit/controller/PhabricatorAuditListController.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/applications/audit/controller/PhabricatorAuditListController.php b/src/applications/audit/controller/PhabricatorAuditListController.php index bb0e740574..5019a95225 100644 --- a/src/applications/audit/controller/PhabricatorAuditListController.php +++ b/src/applications/audit/controller/PhabricatorAuditListController.php @@ -383,6 +383,7 @@ final class PhabricatorAuditListController extends PhabricatorAuditController { $panel = new AphrontPanelView(); $panel->setHeader($header); $panel->appendChild($view); + $panel->setNoBackground(); if ($use_pager) { $panel->appendChild($pager); @@ -476,6 +477,7 @@ final class PhabricatorAuditListController extends PhabricatorAuditController { $panel = new AphrontPanelView(); $panel->setHeader($header); $panel->appendChild($view); + $panel->setNoBackground(); if ($use_pager) { $panel->appendChild($pager);