@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 Indigo Shades, Add Pink Tag

Summary: Colors for Tags

Test Plan: Photoshop

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

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

+31 -8
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => 'c2c68e64', 10 + 'core.pkg.css' => 'dbc1c89a', 11 11 'core.pkg.js' => 'ba6a742f', 12 12 'darkconsole.pkg.js' => 'df001cab', 13 13 'differential.pkg.css' => '4a93db37', ··· 142 142 'rsrc/css/phui/phui-remarkup-preview.css' => '19ad512b', 143 143 'rsrc/css/phui/phui-spacing.css' => '042804d6', 144 144 'rsrc/css/phui/phui-status.css' => '2f562399', 145 - 'rsrc/css/phui/phui-tag-view.css' => '1e8aeb04', 145 + 'rsrc/css/phui/phui-tag-view.css' => 'bf4fdc69', 146 146 'rsrc/css/phui/phui-text.css' => '23e9b4b7', 147 147 'rsrc/css/phui/phui-timeline-view.css' => 'bbd990d0', 148 148 'rsrc/css/phui/phui-workboard-view.css' => '2bf82d00', ··· 795 795 'phui-remarkup-preview-css' => '19ad512b', 796 796 'phui-spacing-css' => '042804d6', 797 797 'phui-status-list-view-css' => '2f562399', 798 - 'phui-tag-view-css' => '1e8aeb04', 798 + 'phui-tag-view-css' => 'bf4fdc69', 799 799 'phui-text-css' => '23e9b4b7', 800 800 'phui-timeline-view-css' => 'bbd990d0', 801 801 'phui-workboard-view-css' => '2bf82d00',
+12 -5
src/infrastructure/celerity/CelerityResourceTransformer.php
··· 275 275 'sh-bluebackground' => '#dee7f8', 276 276 277 277 // Shade Indigo 278 - 'sh-lightindigoborder' => '#f6d5ef', 279 - 'sh-indigoborder' => '#d5aecd', 280 - 'sh-indigoicon' => '#e26fcb', 281 - 'sh-indigotext' => '#da49be', 282 - 'sh-indigobackground' => '#fbeaf8', 278 + 'sh-lightindigoborder' => '#d1c9ee', 279 + 'sh-indigoborder' => '#bcb4da', 280 + 'sh-indigoicon' => '#8672d4', 281 + 'sh-indigotext' => '#6e5cb6', 282 + 'sh-indigobackground' => '#eae6f7', 283 283 284 284 // Shade Violet 285 285 'sh-lightvioletborder' => '#e0d1e7', ··· 287 287 'sh-violeticon' => '#9260ad', 288 288 'sh-violettext' => '#69427f', 289 289 'sh-violetbackground' => '#efe8f3', 290 + 291 + // Shade Pink 292 + 'sh-lightpinkborder' => '#f6d5ef', 293 + 'sh-pinkborder' => '#d5aecd', 294 + 'sh-pinkicon' => '#e26fcb', 295 + 'sh-pinktext' => '#da49be', 296 + 'sh-pinkbackground' => '#fbeaf8', 290 297 291 298 // Shade Grey 292 299 'sh-lightgreyborder' => '#d8d8d8',
+2
src/view/phui/PHUITagView.php
··· 17 17 const COLOR_BLACK = 'black'; 18 18 const COLOR_GREY = 'grey'; 19 19 const COLOR_WHITE = 'white'; 20 + const COLOR_PINK = 'pink'; 20 21 const COLOR_BLUEGREY = 'bluegrey'; 21 22 const COLOR_CHECKERED = 'checkered'; 22 23 const COLOR_DISABLED = 'disabled'; ··· 229 230 self::COLOR_VIOLET => pht('Violet'), 230 231 self::COLOR_GREEN => pht('Green'), 231 232 self::COLOR_GREY => pht('Grey'), 233 + self::COLOR_PINK => pht('Pink'), 232 234 self::COLOR_CHECKERED => pht('Checkered'), 233 235 self::COLOR_DISABLED => pht('Disabled'), 234 236 );
+14
webroot/rsrc/css/phui/phui-tag-view.css
··· 270 270 border-color: {$sh-violetborder}; 271 271 } 272 272 273 + .phui-tag-shade-pink .phui-tag-core { 274 + background-color: {$sh-pinkbackground}; 275 + border-color: {$sh-lightpinkborder}; 276 + color: {$sh-pinktext}; 277 + } 278 + 279 + .phui-tag-shade-pink .phui-icon-view { 280 + color: {$sh-pinkicon}; 281 + } 282 + 283 + a.phui-tag-view:hover.phui-tag-shade-pink .phui-tag-core { 284 + border-color: {$sh-pinkborder}; 285 + } 286 + 273 287 .phui-tag-shade-grey .phui-tag-core { 274 288 background-color: {$sh-greybackground}; 275 289 border-color: {$sh-lightgreyborder};