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:
parent
bed728f23e
commit
cc084822da
3 changed files with 3 additions and 1 deletions
|
@ -226,7 +226,7 @@ final class PhrictionEditController
|
|||
->setValue($submit_button));
|
||||
|
||||
$panel = id(new AphrontPanelView())
|
||||
->setWidth(AphrontPanelView::WIDTH_WIDE)
|
||||
->setNoBackground()
|
||||
->setHeader($panel_header)
|
||||
->appendChild($form);
|
||||
|
||||
|
|
|
@ -133,6 +133,7 @@ final class PhrictionHistoryController
|
|||
|
||||
$panel = new AphrontPanelView();
|
||||
$panel->setHeader('Document History');
|
||||
$panel->setNoBackground();
|
||||
$panel->appendChild($table);
|
||||
$panel->appendChild($pager);
|
||||
|
||||
|
|
|
@ -84,6 +84,7 @@ final class PhrictionListController
|
|||
$view_header = $views[$this->view];
|
||||
|
||||
$panel = new AphrontPanelView();
|
||||
$panel->setNoBackground();
|
||||
$panel->appendChild($document_table);
|
||||
$panel->appendChild($pager);
|
||||
|
||||
|
|
Loading…
Reference in a new issue