@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 orphan CSS selectors in phui/phui-comment-form.css

Summary: `phui-comment-action-icon` was added in https://we.phorge.it/rPd78802f3ab6572400b799f4aa1d7b21e1885e350, seems it has never been used.

Test Plan:
* Grep the code via `grep --exclude="*.css" -R 'phui-comment-action' .` and `grep --exclude="*.css" -R 'action-icon' .`, find no use.
* Open a task and check out the HTML classes related to the Comment field, find no mention.

Reviewers: O1 Blessed Committers, mainframe98

Reviewed By: O1 Blessed Committers, mainframe98

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

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

+3 -16
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => '79a197f6', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => 'f02554d3', 12 + 'core.pkg.css' => '727e128a', 13 13 'core.pkg.js' => '63f896ec', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => '4c951b31', ··· 138 138 'rsrc/css/phui/phui-bulk-editor.css' => '374d5e30', 139 139 'rsrc/css/phui/phui-chart.css' => '14df9ae3', 140 140 'rsrc/css/phui/phui-cms.css' => '8c05c41e', 141 - 'rsrc/css/phui/phui-comment-form.css' => '3c6679a3', 141 + 'rsrc/css/phui/phui-comment-form.css' => '6b3b8dc0', 142 142 'rsrc/css/phui/phui-comment-panel.css' => 'ec4e31c0', 143 143 'rsrc/css/phui/phui-crumbs-view.css' => '30342804', 144 144 'rsrc/css/phui/phui-curtain-object-ref-view.css' => '51d93266', ··· 810 810 'phui-calendar-month-css' => 'cb758c42', 811 811 'phui-chart-css' => '14df9ae3', 812 812 'phui-cms-css' => '8c05c41e', 813 - 'phui-comment-form-css' => '3c6679a3', 813 + 'phui-comment-form-css' => '6b3b8dc0', 814 814 'phui-comment-panel-css' => 'ec4e31c0', 815 815 'phui-crumbs-view-css' => '30342804', 816 816 'phui-curtain-object-ref-view-css' => '51d93266',
-13
webroot/rsrc/css/phui/phui-comment-form.css
··· 136 136 padding: 0; 137 137 } 138 138 139 - .phui-comment-form-view .phui-comment-action-icon { 140 - float: left; 141 - font-size: 20px; 142 - color: {$lightbluetext}; 143 - height: 40px; 144 - line-height: 40px; 145 - margin: 0 4px; 146 - } 147 - 148 - .device-phone .phui-comment-form-view .phui-comment-action-icon { 149 - display: none; 150 - } 151 - 152 139 .device-phone .aphront-form-control-submit button { 153 140 width: 100%; 154 141 }