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

[Redesign] Workboard headers / icons

Summary: Ref T8099, cleans up spacing, colors. Switched back to dropdown icon.

Test Plan: test headers in workpanels, conpherence

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T8099

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

+24 -16
+5 -5
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => '72f566bb', 10 + 'core.pkg.css' => 'dac18977', 11 11 'core.pkg.js' => 'fbf1d615', 12 12 'darkconsole.pkg.js' => 'e7393ebb', 13 13 'differential.pkg.css' => '7d01bee8', ··· 134 134 'rsrc/css/phui/phui-fontkit.css' => 'b664ac96', 135 135 'rsrc/css/phui/phui-form-view.css' => 'a0e8f168', 136 136 'rsrc/css/phui/phui-form.css' => 'f535f938', 137 - 'rsrc/css/phui/phui-header-view.css' => 'd7612da3', 137 + 'rsrc/css/phui/phui-header-view.css' => '7ad91dd2', 138 138 'rsrc/css/phui/phui-icon.css' => '88ba9081', 139 139 'rsrc/css/phui/phui-image-mask.css' => '5a8b09c8', 140 140 'rsrc/css/phui/phui-info-panel.css' => '27ea50a1', ··· 151 151 'rsrc/css/phui/phui-text.css' => 'cf019f54', 152 152 'rsrc/css/phui/phui-timeline-view.css' => '8eaab66c', 153 153 'rsrc/css/phui/phui-workboard-view.css' => '720efdde', 154 - 'rsrc/css/phui/phui-workpanel-view.css' => '015a0cab', 154 + 'rsrc/css/phui/phui-workpanel-view.css' => '01b6e9c6', 155 155 'rsrc/css/sprite-login.css' => 'a3526809', 156 156 'rsrc/css/sprite-menu.css' => 'ab8f6356', 157 157 'rsrc/css/sprite-projects.css' => 'b0d9e24f', ··· 769 769 'phui-fontkit-css' => 'b664ac96', 770 770 'phui-form-css' => 'f535f938', 771 771 'phui-form-view-css' => 'a0e8f168', 772 - 'phui-header-view-css' => 'd7612da3', 772 + 'phui-header-view-css' => '7ad91dd2', 773 773 'phui-icon-view-css' => '88ba9081', 774 774 'phui-image-mask-css' => '5a8b09c8', 775 775 'phui-info-panel-css' => '27ea50a1', ··· 787 787 'phui-text-css' => 'cf019f54', 788 788 'phui-timeline-view-css' => '8eaab66c', 789 789 'phui-workboard-view-css' => '720efdde', 790 - 'phui-workpanel-view-css' => '015a0cab', 790 + 'phui-workpanel-view-css' => '01b6e9c6', 791 791 'phuix-action-list-view' => 'b5c256b8', 792 792 'phuix-action-view' => '8cf6d262', 793 793 'phuix-dropdown-menu' => 'bd4c8dca',
+1 -1
src/applications/project/controller/PhabricatorProjectBoardViewController.php
··· 678 678 } 679 679 680 680 $column_button = id(new PHUIIconView()) 681 - ->setIconFont('fa-gear') 681 + ->setIconFont('fa-caret-down') 682 682 ->setHref('#') 683 683 ->addSigil('boards-dropdown-menu') 684 684 ->setMetadata(
+3 -3
src/view/phui/PHUIHeaderView.php
··· 204 204 $action_list[] = phutil_tag( 205 205 'li', 206 206 array( 207 - 'class' => 'phui-header-list-icon', 207 + 'class' => 'phui-header-action-icon', 208 208 ), 209 209 $icon); 210 210 } ··· 213 213 $action_list[] = phutil_tag( 214 214 'li', 215 215 array( 216 - 'class' => 'phui-header-list-icon phui-header-tags', 216 + 'class' => 'phui-header-action-tag', 217 217 ), 218 218 array_interleave(' ', $this->tags)); 219 219 } 220 220 $right[] = phutil_tag( 221 221 'ul', 222 222 array( 223 - 'class' => 'phui-header-icon-list', 223 + 'class' => 'phui-header-action-list', 224 224 ), 225 225 $action_list); 226 226 }
+12 -5
webroot/rsrc/css/phui/phui-header-view.css
··· 180 180 display: inline-block; 181 181 } 182 182 183 - .phui-header-icon-list { 183 + .phui-header-action-list { 184 184 float: right; 185 185 } 186 186 187 - .phui-header-icon-list .phui-header-list-icon { 188 - margin: 0 4px; 187 + .phui-header-action-list li { 188 + margin: 0 0 0 8px; 189 189 float: right; 190 190 } 191 191 192 - .phui-header-icon-list .phui-header-list-icon .phui-icon-view { 193 - font-size: 15px; 192 + .phui-header-action-list li.phui-header-action-icon { 193 + height: 18px; 194 + width: 16px; 195 + } 196 + 197 + .phui-header-action-list .phui-header-action-icon .phui-icon-view { 198 + font-size: 16px; 199 + line-height: 20px; 200 + display: block; 194 201 }
+3 -2
webroot/rsrc/css/phui/phui-workpanel-view.css
··· 7 7 border-top-left-radius: 3px; 8 8 border-top-right-radius: 3px; 9 9 background-color: #fff; 10 + padding: 8px; 10 11 } 11 12 12 - .phui-workpanel-view .phui-header-shell { 13 - padding: 8px; 13 + .phui-workpanel-view .phui-header-shell .phui-header-view { 14 14 font-size: 14px; 15 + color: {$darkbluetext}; 15 16 } 16 17 17 18 .phui-workpanel-view .phui-header-shell .phui-header-subheader {