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

Clean up "points" display on workboards

Summary: Couple of edge cases here I never cleaned up. This inlines points and projects better, with spacing and use of grey to better differentate from project tag colors.

Test Plan:
Review edge cases on workboard with multiple short and long project names.

{F1653998}

{F1653999}

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+18 -4
+2 -2
resources/celerity/map.php
··· 159 159 'rsrc/css/phui/phui-two-column-view.css' => 'b9538af1', 160 160 'rsrc/css/phui/workboards/phui-workboard-color.css' => 'ac6fe6a7', 161 161 'rsrc/css/phui/workboards/phui-workboard.css' => 'e6d89647', 162 - 'rsrc/css/phui/workboards/phui-workcard.css' => '3646fb96', 162 + 'rsrc/css/phui/workboards/phui-workcard.css' => '0c62d7c5', 163 163 'rsrc/css/phui/workboards/phui-workpanel.css' => '92197373', 164 164 'rsrc/css/sprite-login.css' => '60e8560e', 165 165 'rsrc/css/sprite-menu.css' => '9dd65b92', ··· 858 858 'phui-two-column-view-css' => 'b9538af1', 859 859 'phui-workboard-color-css' => 'ac6fe6a7', 860 860 'phui-workboard-view-css' => 'e6d89647', 861 - 'phui-workcard-view-css' => '3646fb96', 861 + 'phui-workcard-view-css' => '0c62d7c5', 862 862 'phui-workpanel-view-css' => '92197373', 863 863 'phuix-action-list-view' => 'b5c256b8', 864 864 'phuix-action-view' => '8cf6d262',
+3 -2
src/applications/project/view/ProjectBoardTaskCard.php
··· 100 100 if ($points !== null) { 101 101 $points_tag = id(new PHUITagView()) 102 102 ->setType(PHUITagView::TYPE_SHADE) 103 - ->setShade(PHUITagView::COLOR_BLUE) 103 + ->setShade(PHUITagView::COLOR_GREY) 104 104 ->setSlimShady(true) 105 - ->setName($points); 105 + ->setName($points) 106 + ->addClass('phui-workcard-points'); 106 107 $card->addAttribute($points_tag); 107 108 } 108 109 }
+13
webroot/rsrc/css/phui/workboards/phui-workcard.css
··· 114 114 margin-bottom: 0; 115 115 } 116 116 117 + .phui-workcard .phui-object-item-attribute-spacer { 118 + display: none; 119 + } 120 + 121 + .phui-workcard .phui-workcard-points { 122 + margin: 0 4px 2px 0; 123 + display: inline-block; 124 + } 125 + 126 + .phui-workcard .phui-object-item-attribute { 127 + display: inline; 128 + } 129 + 117 130 118 131 /* - Draggable Colors --------------------------------------------------------*/ 119 132