From 4c231486d74d97ee0ddfe44c3a9c8637a2aafe49 Mon Sep 17 00:00:00 2001 From: Chad Little Date: Tue, 15 Jan 2013 15:05:15 -0800 Subject: [PATCH] More Diffusion panel updates. Summary: In Commit Details, remove the panel backgrounds. Test Plan: Chrome Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4454 --- .../diffusion/controller/DiffusionCommitController.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/applications/diffusion/controller/DiffusionCommitController.php b/src/applications/diffusion/controller/DiffusionCommitController.php index d186ac6f16..854d9a04c4 100644 --- a/src/applications/diffusion/controller/DiffusionCommitController.php +++ b/src/applications/diffusion/controller/DiffusionCommitController.php @@ -195,6 +195,7 @@ final class DiffusionCommitController extends DiffusionController { } $change_panel->appendChild($change_table); + $change_panel->setNoBackground(); $content[] = $change_panel; @@ -498,6 +499,7 @@ final class DiffusionCommitController extends DiffusionController { $panel->setHeader('Audits'); $panel->setCaption('Audits you are responsible for are highlighted.'); $panel->appendChild($view); + $panel->setNoBackground(); return $panel; } @@ -795,6 +797,7 @@ final class DiffusionCommitController extends DiffusionController { $panel->setHeader('Merged Changes'); $panel->setCaption($caption); $panel->appendChild($history_table); + $panel->setNoBackground(); return $panel; }