@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 space under PHUIActionPanel

Summary: If we don't have a state in PHUIActionPanelView, don't set the extra padding to display it.

Test Plan: Review in UIExamples.

Reviewers: epriestley, btrahan

Reviewed By: btrahan

Subscribers: Korvin, epriestley

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

+7 -2
+2 -2
resources/celerity/map.php
··· 122 122 'rsrc/css/phui/calendar/phui-calendar.css' => '8675968e', 123 123 'rsrc/css/phui/phui-action-header-view.css' => '89c497e7', 124 124 'rsrc/css/phui/phui-action-list.css' => '9ee9910a', 125 - 'rsrc/css/phui/phui-action-panel.css' => '4bcb288d', 125 + 'rsrc/css/phui/phui-action-panel.css' => 'd2e088bd', 126 126 'rsrc/css/phui/phui-box.css' => '7b3a2eed', 127 127 'rsrc/css/phui/phui-button.css' => 'ffe12633', 128 128 'rsrc/css/phui/phui-crumbs-view.css' => '594d719e', ··· 771 771 'phrequent-css' => 'ffc185ad', 772 772 'phriction-document-css' => '7d7f0071', 773 773 'phui-action-header-view-css' => '89c497e7', 774 - 'phui-action-panel-css' => '4bcb288d', 774 + 'phui-action-panel-css' => 'd2e088bd', 775 775 'phui-box-css' => '7b3a2eed', 776 776 'phui-button-css' => 'ffe12633', 777 777 'phui-calendar-css' => '8675968e',
+2
src/view/phui/PHUIActionPanelView.php
··· 83 83 $classes = array(); 84 84 $classes[] = 'phui-action-panel'; 85 85 if ($this->state) { 86 + $classes[] = 'phui-action-panel-has-state'; 86 87 $classes[] = $this->state; 88 + 87 89 } 88 90 89 91 return array(
+3
webroot/rsrc/css/phui/phui-action-panel.css
··· 4 4 5 5 .phui-action-panel { 6 6 position: relative; 7 + } 8 + 9 + .phui-action-panel-has-state.phui-action-panel { 7 10 padding-bottom: 44px; 8 11 } 9 12