@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.

Clean up some dialog spacing

Summary: Makes dialogs a little wider, form dialogs a lot wider (space controls). Also cleans up Passphrase dialogs. Fixes T12833. I think forms probably need to move to tables for better layout flexibility like veritical alignment.

Test Plan: Passphrase create, edit, etc. Other dialogs.

Reviewers: epriestley

Subscribers: Korvin

Maniphest Tasks: T12833

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

+11 -9
+5 -5
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => 'e68cf1fa', 11 11 'conpherence.pkg.js' => 'b5b51108', 12 - 'core.pkg.css' => '5a682e14', 12 + 'core.pkg.css' => '0e4a68ad', 13 13 'core.pkg.js' => '5d80e0db', 14 14 'darkconsole.pkg.js' => '1f9a31bc', 15 15 'differential.pkg.css' => '45951e9e', ··· 26 26 'rsrc/audio/basic/ting.mp3' => '17660001', 27 27 'rsrc/css/aphront/aphront-bars.css' => '231ac33c', 28 28 'rsrc/css/aphront/dark-console.css' => 'f7b071f1', 29 - 'rsrc/css/aphront/dialog-view.css' => '685c7e2d', 29 + 'rsrc/css/aphront/dialog-view.css' => '6bfc244b', 30 30 'rsrc/css/aphront/list-filter-view.css' => '5d6f0526', 31 31 'rsrc/css/aphront/multi-column.css' => '84cc6640', 32 32 'rsrc/css/aphront/notification.css' => '3f6c89c9', ··· 155 155 'rsrc/css/phui/phui-document.css' => 'c32e8dec', 156 156 'rsrc/css/phui/phui-feed-story.css' => '44a9c8e9', 157 157 'rsrc/css/phui/phui-fontkit.css' => '1320ed01', 158 - 'rsrc/css/phui/phui-form-view.css' => '6175808d', 158 + 'rsrc/css/phui/phui-form-view.css' => 'ae9f8d16', 159 159 'rsrc/css/phui/phui-form.css' => '7aaa04e3', 160 160 'rsrc/css/phui/phui-head-thing.css' => 'fd311e5f', 161 161 'rsrc/css/phui/phui-header-view.css' => 'e7de7ee2', ··· 539 539 'almanac-css' => 'dbb9b3af', 540 540 'aphront-bars' => '231ac33c', 541 541 'aphront-dark-console-css' => 'f7b071f1', 542 - 'aphront-dialog-view-css' => '685c7e2d', 542 + 'aphront-dialog-view-css' => '6bfc244b', 543 543 'aphront-list-filter-view-css' => '5d6f0526', 544 544 'aphront-multi-column-view-css' => '84cc6640', 545 545 'aphront-panel-view-css' => '8427b78d', ··· 843 843 'phui-font-icon-base-css' => '870a7360', 844 844 'phui-fontkit-css' => '1320ed01', 845 845 'phui-form-css' => '7aaa04e3', 846 - 'phui-form-view-css' => '6175808d', 846 + 'phui-form-view-css' => 'ae9f8d16', 847 847 'phui-head-thing-view-css' => 'fd311e5f', 848 848 'phui-header-view-css' => 'e7de7ee2', 849 849 'phui-hovercard' => '1bd28176',
+3 -2
src/applications/passphrase/view/PassphraseCredentialControl.php
··· 113 113 'a', 114 114 array( 115 115 'href' => '#', 116 - 'class' => 'button button-grey', 116 + 'class' => 'button button-grey mll', 117 117 'sigil' => 'passphrase-credential-add', 118 118 'mustcapture' => true, 119 + 'style' => 'height: 20px;', // move aphront-form to tables 119 120 ), 120 - pht('Add Credential')); 121 + pht('Add New Credential')); 121 122 } else { 122 123 $button = null; 123 124 }
+2 -2
webroot/rsrc/css/aphront/dialog-view.css
··· 3 3 */ 4 4 5 5 .aphront-dialog-view { 6 - width: 560px; 6 + width: 580px; 7 7 margin: 32px auto 16px; 8 8 border: 1px solid {$lightblueborder}; 9 9 border-radius: 3px; ··· 32 32 } 33 33 34 34 .aphront-dialog-view-width-form { 35 - width: 640px; 35 + width: 820px; 36 36 } 37 37 38 38 .aphront-dialog-view-width-full {
+1
webroot/rsrc/css/phui/phui-form-view.css
··· 196 196 197 197 .aphront-form-control-markup .aphront-form-input { 198 198 font-size: {$normalfontsize}; 199 + padding: 3px 0; 199 200 } 200 201 201 202 .aphront-form-control-static .aphront-form-input {