@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix some policy CSS

Summary:
Ref T11853. My CSS change for the more enormous policy dialog was a little too broad, and affected the "You shall not pass!" dialog too.

Narrow the scope of the CSS rules.

Also add a missing "." that I caught.

Test Plan:
- Looked at policy exception dialogs.
- Looked at policy explanation dialogs.
- Looked at the end of that sentence.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11853

Differential Revision: https://secure.phabricator.com/D16841

+6 -6
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => 'cea72e09', 11 11 'conpherence.pkg.js' => '6249a1cf', 12 - 'core.pkg.css' => '231b1ee5', 12 + 'core.pkg.css' => 'a729d20e', 13 13 'core.pkg.js' => '1a77dddf', 14 14 'darkconsole.pkg.js' => 'e7393ebb', 15 15 'differential.pkg.css' => 'a4ba74b5', ··· 21 21 'maniphest.pkg.js' => '949a7498', 22 22 'rsrc/css/aphront/aphront-bars.css' => '231ac33c', 23 23 'rsrc/css/aphront/dark-console.css' => 'f54bf286', 24 - 'rsrc/css/aphront/dialog-view.css' => '1e6b8603', 24 + 'rsrc/css/aphront/dialog-view.css' => 'ea3745f5', 25 25 'rsrc/css/aphront/lightbox-attachment.css' => '7acac05d', 26 26 'rsrc/css/aphront/list-filter-view.css' => '5d6f0526', 27 27 'rsrc/css/aphront/multi-column.css' => '84cc6640', ··· 550 550 'almanac-css' => 'dbb9b3af', 551 551 'aphront-bars' => '231ac33c', 552 552 'aphront-dark-console-css' => 'f54bf286', 553 - 'aphront-dialog-view-css' => '1e6b8603', 553 + 'aphront-dialog-view-css' => 'ea3745f5', 554 554 'aphront-list-filter-view-css' => '5d6f0526', 555 555 'aphront-multi-column-view-css' => '84cc6640', 556 556 'aphront-panel-view-css' => '8427b78d',
+1 -1
src/applications/policy/controller/PhabricatorPolicyExplainController.php
··· 40 40 41 41 $dialog = id(new AphrontDialogView()) 42 42 ->setUser($viewer) 43 - ->setClass('aphront-access-dialog') 43 + ->setClass('aphront-access-dialog aphront-policy-explain-dialog') 44 44 ->setTitle(pht('Policy Details: %s', $object_name)) 45 45 ->addCancelButton($object_uri, pht('Done')); 46 46
+1 -1
src/applications/project/controller/PhabricatorProjectSubprojectWarningController.php
··· 35 35 36 36 $conversion_help = pht( 37 37 "Creating a project's first subproject **moves all ". 38 - "members** to become members of the subproject instead". 38 + "members** to become members of the subproject instead.". 39 39 "\n\n". 40 40 "See [[ %s | Projects User Guide ]] in the documentation for details. ". 41 41 "This process can not be undone.",
+1 -1
webroot/rsrc/css/aphront/dialog-view.css
··· 128 128 width: 50%; 129 129 } 130 130 131 - .aphront-access-dialog .aphront-dialog-body { 131 + .aphront-policy-explain-dialog .aphront-dialog-body { 132 132 padding: 0 12px; 133 133 } 134 134