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

Remove unused CSS file aphront/panel-view.css

Summary:
* `aphront-panel-flush`
** Added in https://we.phorge.it/rP3f11c8a602f0a7567f8a51bc3b1a2dddbd46eec2, usage removed in https://we.phorge.it/rPc05306d746d7e06e3f2a5eb712af89a616abfdc6 by deleting `src/applications/differential/view/DifferentialAddCommentView.php`
* `aphront-panel-preview`
** Added in https://we.phorge.it/rP3f11c8a602f0a7567f8a51bc3b1a2dddbd46eec2, usage removed in https://we.phorge.it/rP6bfb101aff20a1f1f0435178e2de044a945676ba and in https://we.phorge.it/rPc05306d746d7e06e3f2a5eb712af89a616abfdc6 by deleting `src/applications/differential/view/DifferentialAddCommentView.php`
* `aphront-panel-preview-loading-text`
** Added in https://we.phorge.it/rP3f11c8a602f0a7567f8a51bc3b1a2dddbd46eec2, usage removed in https://we.phorge.it/rP6bfb101aff20a1f1f0435178e2de044a945676ba and in https://we.phorge.it/rPc05306d746d7e06e3f2a5eb712af89a616abfdc6 by deleting `src/applications/differential/view/DifferentialAddCommentView.php`

Test Plan: Grep the code for each CSS selector (`grep --exclude="*.css" -R 'some-search-string' .`), also do partial searches, get no results.

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D26007

+1 -24
+1 -4
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => '79a197f6', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => '26b22d95', 12 + 'core.pkg.css' => '11699bb1', 13 13 'core.pkg.js' => '086da722', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => 'db7c5008', ··· 30 30 'rsrc/css/aphront/list-filter-view.css' => 'feb64255', 31 31 'rsrc/css/aphront/multi-column.css' => 'fbc00ba3', 32 32 'rsrc/css/aphront/notification.css' => '30240bd2', 33 - 'rsrc/css/aphront/panel-view.css' => '46923d46', 34 33 'rsrc/css/aphront/table-view.css' => '0bb61df1', 35 34 'rsrc/css/aphront/tokenizer.css' => '194e8160', 36 35 'rsrc/css/aphront/tooltip.css' => 'e3f2412f', ··· 521 520 'aphront-dialog-view-css' => '6f4ea703', 522 521 'aphront-list-filter-view-css' => 'feb64255', 523 522 'aphront-multi-column-view-css' => 'fbc00ba3', 524 - 'aphront-panel-view-css' => '46923d46', 525 523 'aphront-table-view-css' => '0bb61df1', 526 524 'aphront-tokenizer-control-css' => '194e8160', 527 525 'aphront-tooltip-css' => 'e3f2412f', ··· 2216 2214 'phabricator-standard-page-view', 2217 2215 'aphront-dialog-view-css', 2218 2216 'phui-form-view-css', 2219 - 'aphront-panel-view-css', 2220 2217 'aphront-table-view-css', 2221 2218 'aphront-tokenizer-control-css', 2222 2219 'aphront-typeahead-control-css',
-1
resources/celerity/packages.php
··· 103 103 'phabricator-standard-page-view', 104 104 'aphront-dialog-view-css', 105 105 'phui-form-view-css', 106 - 'aphront-panel-view-css', 107 106 'aphront-table-view-css', 108 107 'aphront-tokenizer-control-css', 109 108 'aphront-typeahead-control-css',
-19
webroot/rsrc/css/aphront/panel-view.css
··· 1 - /** 2 - * @provides aphront-panel-view-css 3 - */ 4 - 5 - .aphront-panel-preview { 6 - padding: 16px; 7 - } 8 - 9 - .device-phone .aphront-panel-preview { 10 - display: none; 11 - } 12 - 13 - .aphront-panel-preview-loading-text { 14 - color: {$greytext}; 15 - } 16 - 17 - .aphront-panel-flush { 18 - margin: 0; 19 - }