mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-22 21:40:55 +01:00
Fix some typos, restore outline styles.
This commit is contained in:
parent
de2a9c634c
commit
f0934e655f
4 changed files with 19 additions and 20 deletions
|
@ -190,7 +190,7 @@ celerity_register_resource_map(array(
|
||||||
),
|
),
|
||||||
'phabricator-core-css' =>
|
'phabricator-core-css' =>
|
||||||
array(
|
array(
|
||||||
'uri' => '/res/80cbabe4/rsrc/css/core/core.css',
|
'uri' => '/res/6eebb99b/rsrc/css/core/core.css',
|
||||||
'type' => 'css',
|
'type' => 'css',
|
||||||
'requires' =>
|
'requires' =>
|
||||||
array(
|
array(
|
||||||
|
@ -398,7 +398,7 @@ celerity_register_resource_map(array(
|
||||||
), array (
|
), array (
|
||||||
'packages' =>
|
'packages' =>
|
||||||
array (
|
array (
|
||||||
'89ccb170' =>
|
'e8e774f6' =>
|
||||||
array (
|
array (
|
||||||
'name' => 'core.pkg.css',
|
'name' => 'core.pkg.css',
|
||||||
'symbols' =>
|
'symbols' =>
|
||||||
|
@ -417,7 +417,7 @@ celerity_register_resource_map(array(
|
||||||
11 => 'phabricator-remarkup-css',
|
11 => 'phabricator-remarkup-css',
|
||||||
12 => 'syntax-highlighting-css',
|
12 => 'syntax-highlighting-css',
|
||||||
),
|
),
|
||||||
'uri' => '/res/pkg/89ccb170/core.pkg.css',
|
'uri' => '/res/pkg/e8e774f6/core.pkg.css',
|
||||||
'type' => 'css',
|
'type' => 'css',
|
||||||
),
|
),
|
||||||
'4b8af7b5' =>
|
'4b8af7b5' =>
|
||||||
|
@ -454,19 +454,19 @@ celerity_register_resource_map(array(
|
||||||
),
|
),
|
||||||
'reverse' =>
|
'reverse' =>
|
||||||
array (
|
array (
|
||||||
'phabricator-core-css' => '89ccb170',
|
'phabricator-core-css' => 'e8e774f6',
|
||||||
'phabricator-core-buttons-css' => '89ccb170',
|
'phabricator-core-buttons-css' => 'e8e774f6',
|
||||||
'phabricator-standard-page-view' => '89ccb170',
|
'phabricator-standard-page-view' => 'e8e774f6',
|
||||||
'aphront-dialog-view-css' => '89ccb170',
|
'aphront-dialog-view-css' => 'e8e774f6',
|
||||||
'aphront-form-view-css' => '89ccb170',
|
'aphront-form-view-css' => 'e8e774f6',
|
||||||
'aphront-panel-view-css' => '89ccb170',
|
'aphront-panel-view-css' => 'e8e774f6',
|
||||||
'aphront-side-nav-view-css' => '89ccb170',
|
'aphront-side-nav-view-css' => 'e8e774f6',
|
||||||
'aphront-table-view-css' => '89ccb170',
|
'aphront-table-view-css' => 'e8e774f6',
|
||||||
'aphront-tokenizer-control-css' => '89ccb170',
|
'aphront-tokenizer-control-css' => 'e8e774f6',
|
||||||
'aphront-typeahead-control-css' => '89ccb170',
|
'aphront-typeahead-control-css' => 'e8e774f6',
|
||||||
'phabricator-directory-css' => '89ccb170',
|
'phabricator-directory-css' => 'e8e774f6',
|
||||||
'phabricator-remarkup-css' => '89ccb170',
|
'phabricator-remarkup-css' => 'e8e774f6',
|
||||||
'syntax-highlighting-css' => '89ccb170',
|
'syntax-highlighting-css' => 'e8e774f6',
|
||||||
'differential-core-view-css' => '4b8af7b5',
|
'differential-core-view-css' => '4b8af7b5',
|
||||||
'differential-changeset-view-css' => '4b8af7b5',
|
'differential-changeset-view-css' => '4b8af7b5',
|
||||||
'differential-revision-detail-css' => '4b8af7b5',
|
'differential-revision-detail-css' => '4b8af7b5',
|
||||||
|
|
|
@ -357,14 +357,14 @@ class DifferentialRevisionEditor {
|
||||||
$mail = array();
|
$mail = array();
|
||||||
|
|
||||||
$changesets = null;
|
$changesets = null;
|
||||||
$feedback = null;
|
$comment = null;
|
||||||
if ($diff) {
|
if ($diff) {
|
||||||
$changesets = $diff->loadChangesets();
|
$changesets = $diff->loadChangesets();
|
||||||
// TODO: This should probably be in DifferentialFeedbackEditor?
|
// TODO: This should probably be in DifferentialFeedbackEditor?
|
||||||
if (!$is_new) {
|
if (!$is_new) {
|
||||||
$comment = $this->createComment();
|
$comment = $this->createComment();
|
||||||
}
|
}
|
||||||
if ($feedback) {
|
if ($comment) {
|
||||||
$mail[] = id(new DifferentialNewDiffMail(
|
$mail[] = id(new DifferentialNewDiffMail(
|
||||||
$revision,
|
$revision,
|
||||||
$this->getActorPHID(),
|
$this->getActorPHID(),
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
class AphrontFormTokenizerControl extends AphrontFormControl {
|
class AphrontFormTokenizerControl extends AphrontFormControl {
|
||||||
|
|
||||||
private $datasource;
|
private $datasource;
|
||||||
private $disableBehvaior;
|
private $disableBehavior;
|
||||||
|
|
||||||
public function setDatasource($datasource) {
|
public function setDatasource($datasource) {
|
||||||
$this->datasource = $datasource;
|
$this->datasource = $datasource;
|
||||||
|
|
|
@ -13,7 +13,6 @@ pre, form, fieldset,
|
||||||
p, blockquote, th, td, button {
|
p, blockquote, th, td, button {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
outline: 0;
|
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue