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

Add responsive spacing to comment form info view

Summary: Moves spacing to responsive CSS.

Test Plan: Test mobile, desktop, and tablet breakpoints.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+11 -6
+2 -2
resources/celerity/map.php
··· 137 137 'rsrc/css/phui/phui-button.css' => '43f4912e', 138 138 'rsrc/css/phui/phui-chart.css' => '6bf6f78e', 139 139 'rsrc/css/phui/phui-cms.css' => 'be43c8a8', 140 - 'rsrc/css/phui/phui-comment-form.css' => 'c953b75e', 140 + 'rsrc/css/phui/phui-comment-form.css' => '48fbd65d', 141 141 'rsrc/css/phui/phui-comment-panel.css' => 'f50152ad', 142 142 'rsrc/css/phui/phui-crumbs-view.css' => 'f82868f2', 143 143 'rsrc/css/phui/phui-curtain-view.css' => '947bf1a4', ··· 849 849 'phui-calendar-month-css' => '8e10e92c', 850 850 'phui-chart-css' => '6bf6f78e', 851 851 'phui-cms-css' => 'be43c8a8', 852 - 'phui-comment-form-css' => 'c953b75e', 852 + 'phui-comment-form-css' => '48fbd65d', 853 853 'phui-comment-panel-css' => 'f50152ad', 854 854 'phui-crumbs-view-css' => 'f82868f2', 855 855 'phui-curtain-view-css' => '947bf1a4',
+1 -4
src/applications/transactions/view/PhabricatorApplicationTransactionCommentView.php
··· 347 347 348 348 $info_view = $this->getInfoView(); 349 349 if ($info_view) { 350 - $info_box = id(new PHUIBoxView()) 351 - ->addMargin(PHUI::MARGIN_LARGE) 352 - ->appendChild($info_view); 353 - $form->appendChild($info_box); 350 + $form->appendChild($info_view); 354 351 } 355 352 356 353 $form->appendChild($invisi_bar);
+8
webroot/rsrc/css/phui/phui-comment-form.css
··· 163 163 .phui-comment-form-view .aphront-form-error .phui-icon-view { 164 164 padding: 4px; 165 165 } 166 + 167 + .phui-comment-form-view .phui-form-view .phui-info-view { 168 + margin: 16px; 169 + } 170 + 171 + .device-phone .phui-comment-form-view .phui-form-view .phui-info-view { 172 + margin: 8px; 173 + }