1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-22 14:52:41 +01:00

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
This commit is contained in:
Chad Little 2013-01-15 15:05:15 -08:00
parent ca135256b5
commit 4c231486d7

View file

@ -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;
}