1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-09 16:32:39 +01:00

Remove panel background in Phriction

Summary: For consistency, remove panel backgrounds on forms.

Test Plan: Reload pages

Reviewers: btrahan, epriestley

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D4863
This commit is contained in:
Chad Little 2013-02-08 08:00:17 -08:00
parent bed728f23e
commit cc084822da
3 changed files with 3 additions and 1 deletions

View file

@ -226,7 +226,7 @@ final class PhrictionEditController
->setValue($submit_button));
$panel = id(new AphrontPanelView())
->setWidth(AphrontPanelView::WIDTH_WIDE)
->setNoBackground()
->setHeader($panel_header)
->appendChild($form);

View file

@ -133,6 +133,7 @@ final class PhrictionHistoryController
$panel = new AphrontPanelView();
$panel->setHeader('Document History');
$panel->setNoBackground();
$panel->appendChild($table);
$panel->appendChild($pager);

View file

@ -84,6 +84,7 @@ final class PhrictionListController
$view_header = $views[$this->view];
$panel = new AphrontPanelView();
$panel->setNoBackground();
$panel->appendChild($document_table);
$panel->appendChild($pager);