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

Give workboard column header actions a more clickable appearance

Summary: Ref T13269. Make it visually more clear that the "Trigger" and "New Task / Edit / Bulk" dropdown menu items are buttons, not status icons or indicators of some kind.

Test Plan: {F6313872}

Reviewers: amckinley

Reviewed By: amckinley

Maniphest Tasks: T13269

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

+20 -5
+5 -5
resources/celerity/map.php
··· 179 179 'rsrc/css/phui/workboards/phui-workboard-color.css' => 'e86de308', 180 180 'rsrc/css/phui/workboards/phui-workboard.css' => '74fc9d98', 181 181 'rsrc/css/phui/workboards/phui-workcard.css' => '9e9eb0df', 182 - 'rsrc/css/phui/workboards/phui-workpanel.css' => 'f43b8c7f', 182 + 'rsrc/css/phui/workboards/phui-workpanel.css' => '3ae89b20', 183 183 'rsrc/css/sprite-login.css' => '18b368a6', 184 184 'rsrc/css/sprite-tokens.css' => 'f1896dc5', 185 185 'rsrc/css/syntax/syntax-default.css' => '055fc231', ··· 869 869 'phui-workboard-color-css' => 'e86de308', 870 870 'phui-workboard-view-css' => '74fc9d98', 871 871 'phui-workcard-view-css' => '9e9eb0df', 872 - 'phui-workpanel-view-css' => 'f43b8c7f', 872 + 'phui-workpanel-view-css' => '3ae89b20', 873 873 'phuix-action-list-view' => 'c68f183f', 874 874 'phuix-action-view' => 'aaa08f3b', 875 875 'phuix-autocomplete' => '8f139ef0', ··· 1223 1223 'trigger-rule', 1224 1224 'trigger-rule-type', 1225 1225 ), 1226 + '3ae89b20' => array( 1227 + 'phui-workcard-view-css', 1228 + ), 1226 1229 '3b4899b0' => array( 1227 1230 'javelin-behavior', 1228 1231 'phabricator-prefab', ··· 2140 2143 'phabricator-keyboard-shortcut', 2141 2144 'phabricator-darklog', 2142 2145 'phabricator-darkmessage', 2143 - ), 2144 - 'f43b8c7f' => array( 2145 - 'phui-workcard-view-css', 2146 2146 ), 2147 2147 'f51e9c17' => array( 2148 2148 'javelin-behavior',
+15
webroot/rsrc/css/phui/workboards/phui-workpanel.css
··· 237 237 opacity: 0.25; 238 238 } 239 239 } 240 + 241 + .phui-workpanel-view .phui-header-action-item a.phui-icon-view { 242 + width: 24px; 243 + height: 24px; 244 + line-height: 24px; 245 + text-align: center; 246 + border-radius: 3px; 247 + box-shadow: inset -1px -1px 2px rgba(0, 0, 0, 0.05); 248 + border: 1px solid {$lightgreyborder}; 249 + background: {$lightgreybackground}; 250 + } 251 + 252 + .phui-workpanel-view .phui-header-action-item .phui-tag-view { 253 + line-height: 24px; 254 + }