@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 extra workboard margin on mobile

Summary: We have too much space on workboards when displayed on mobile devices.

Test Plan: Shrink browser display, note that all workboards align to common gutters.

Reviewers: epriestley, btrahan

Reviewed By: btrahan

Subscribers: epriestley, Korvin

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

+8 -2
+2 -2
resources/celerity/map.php
··· 148 148 'rsrc/css/phui/phui-tag-view.css' => '295d81c4', 149 149 'rsrc/css/phui/phui-text.css' => '23e9b4b7', 150 150 'rsrc/css/phui/phui-timeline-view.css' => '23fe340a', 151 - 'rsrc/css/phui/phui-workboard-view.css' => 'bf70dd2e', 151 + 'rsrc/css/phui/phui-workboard-view.css' => '84f2c272', 152 152 'rsrc/css/phui/phui-workpanel-view.css' => '97b69459', 153 153 'rsrc/css/sprite-actions.css' => '969ad0e5', 154 154 'rsrc/css/sprite-apps-large.css' => '5abf49e9', ··· 763 763 'phui-tag-view-css' => '295d81c4', 764 764 'phui-text-css' => '23e9b4b7', 765 765 'phui-timeline-view-css' => '23fe340a', 766 - 'phui-workboard-view-css' => 'bf70dd2e', 766 + 'phui-workboard-view-css' => '84f2c272', 767 767 'phui-workpanel-view-css' => '97b69459', 768 768 'policy-css' => '957ea14c', 769 769 'policy-edit-css' => '05cca26a',
+1
src/applications/project/controller/PhabricatorProjectBoardViewController.php
··· 193 193 194 194 $board_box = id(new PHUIBoxView()) 195 195 ->appendChild($board) 196 + ->addClass('project-board-wrapper') 196 197 ->addMargin(PHUI::MARGIN_LARGE); 197 198 198 199 return $this->buildApplicationPage(
+5
webroot/rsrc/css/phui/phui-workboard-view.css
··· 67 67 width: 35px; 68 68 margin: 0 3px; 69 69 } 70 + 71 + .device-phone .project-board-wrapper { 72 + margin-left: 0; 73 + margin-right: 0; 74 + }