Found some missing icons
Summary: Did a more exhaustive grep on setIcon and found 99.9% of the icons. Test Plan: I verified icon names on UIExamples, but unable to test some of the more complex flows visually. Mostly a read and replace. Reviewers: epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin, hach-que Differential Revision: https://secure.phabricator.com/D9088
This commit is contained in:
@@ -129,7 +129,7 @@ final class PhabricatorFileInfoController extends PhabricatorFileController {
|
||||
$view->addAction(
|
||||
id(new PhabricatorActionView())
|
||||
->setName(pht('View File'))
|
||||
->setIcon('preview')
|
||||
->setIcon('fa-file-o')
|
||||
->setHref($file->getViewURI()));
|
||||
} else {
|
||||
$view->addAction(
|
||||
@@ -138,14 +138,14 @@ final class PhabricatorFileInfoController extends PhabricatorFileController {
|
||||
->setRenderAsForm(true)
|
||||
->setDownload(true)
|
||||
->setName(pht('Download File'))
|
||||
->setIcon('download')
|
||||
->setIcon('fa-download')
|
||||
->setHref($file->getViewURI()));
|
||||
}
|
||||
|
||||
$view->addAction(
|
||||
id(new PhabricatorActionView())
|
||||
->setName(pht('Delete File'))
|
||||
->setIcon('delete')
|
||||
->setIcon('fa-times')
|
||||
->setHref($this->getApplicationURI("/delete/{$id}/"))
|
||||
->setWorkflow(true));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user