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

Update bar colors to match icon colors

Summary: Fixes T8901 by adding in additional colors used by icons. Plus fire. Fire is cool.

Test Plan: Try out new colors in maniphest priorities.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T8901

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

+30 -9
+5 -5
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => 'aced76a5', 10 + 'core.pkg.css' => '928faf7e', 11 11 'core.pkg.js' => 'a590b451', 12 12 'darkconsole.pkg.js' => 'e7393ebb', 13 13 'differential.pkg.css' => '2de124c9', ··· 111 111 'rsrc/css/font/font-awesome.css' => 'd2fc4e8d', 112 112 'rsrc/css/font/font-lato.css' => '5ab1a46a', 113 113 'rsrc/css/font/font-roboto-slab.css' => 'f24a53cb', 114 - 'rsrc/css/font/phui-font-icon-base.css' => '3dad2ae3', 114 + 'rsrc/css/font/phui-font-icon-base.css' => 'ecbbb4c2', 115 115 'rsrc/css/layout/phabricator-filetree-view.css' => 'fccf9f82', 116 116 'rsrc/css/layout/phabricator-hovercard-view.css' => '1239cd52', 117 117 'rsrc/css/layout/phabricator-side-menu-view.css' => 'bec2458e', ··· 138 138 'rsrc/css/phui/phui-info-view.css' => '5b16bac6', 139 139 'rsrc/css/phui/phui-list.css' => '125599df', 140 140 'rsrc/css/phui/phui-object-box.css' => '407eaf5a', 141 - 'rsrc/css/phui/phui-object-item-list-view.css' => '36ce366c', 141 + 'rsrc/css/phui/phui-object-item-list-view.css' => 'ab1bf393', 142 142 'rsrc/css/phui/phui-pager.css' => 'bea33d23', 143 143 'rsrc/css/phui/phui-pinboard-view.css' => '2495140e', 144 144 'rsrc/css/phui/phui-property-list-view.css' => '15bbe0b0', ··· 779 779 'phui-crumbs-view-css' => 'd842f867', 780 780 'phui-document-view-css' => '0267054b', 781 781 'phui-feed-story-css' => 'b7b26d23', 782 - 'phui-font-icon-base-css' => '3dad2ae3', 782 + 'phui-font-icon-base-css' => 'ecbbb4c2', 783 783 'phui-fontkit-css' => 'cb8ae7ad', 784 784 'phui-form-css' => 'afdb2c6e', 785 785 'phui-form-view-css' => '621b21c5', ··· 791 791 'phui-inline-comment-view-css' => '0fdb3667', 792 792 'phui-list-view-css' => '125599df', 793 793 'phui-object-box-css' => '407eaf5a', 794 - 'phui-object-item-list-view-css' => '36ce366c', 794 + 'phui-object-item-list-view-css' => 'ab1bf393', 795 795 'phui-pager-css' => 'bea33d23', 796 796 'phui-pinboard-view-css' => '2495140e', 797 797 'phui-property-list-view-css' => '15bbe0b0',
+3
webroot/rsrc/css/font/phui-font-icon-base.css
··· 137 137 .phui-icon-view.pink { 138 138 color: {$pink}; 139 139 } 140 + .phui-icon-view.fire { 141 + color: {$fire}; 142 + } 140 143 .phui-icon-view.violet { 141 144 color: {$violet}; 142 145 }
+22 -4
webroot/rsrc/css/phui/phui-object-item-list-view.css
··· 416 416 border-left-color: {$violet}; 417 417 } 418 418 419 - .phui-object-item-bar-color-grey { 420 - border-left-color: #bdc3c7; 419 + .phui-object-item-bar-color-pink { 420 + border-left-color: {$pink}; 421 + } 422 + 423 + .phui-object-item-bar-color-fire { 424 + border-left-color: {$fire}; 421 425 } 422 426 423 - .phui-object-item-bar-color-black { 424 - border-left-color: #333333; 427 + .phui-object-item-bar-color-bluegrey { 428 + border-left-color: {$bluetext}; 429 + } 430 + 431 + .phui-object-item-bar-color-lightbluetext { 432 + border-left-color: {$lightbluetext}; 433 + } 434 + 435 + .phui-object-item-bar-color-grey, 436 + .phui-object-item-bar-color-lightgreytext { 437 + border-left-color: {$lightgreytext}; 438 + } 439 + 440 + .phui-object-item-bar-color-black, 441 + .phui-object-item-bar-color-dark { 442 + border-left-color: {$darkgreytext}; 425 443 } 426 444 427 445