@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 diff highlight colors for better color blindess distinction

Summary: Tweaks the diff colors here a bit, as well as making full diffs slightly easier to read in full. Ref T12060

Test Plan:
Tested prose diffs, email prose diffs, and a regular Differential revision.

{F2304056}

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T12060

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

+20 -23
+6 -6
resources/celerity/map.php
··· 12 12 'core.pkg.css' => '9c725fa0', 13 13 'core.pkg.js' => 'f998932d', 14 14 'darkconsole.pkg.js' => 'e7393ebb', 15 - 'differential.pkg.css' => 'a4ba74b5', 15 + 'differential.pkg.css' => '13726e1c', 16 16 'differential.pkg.js' => '40b18f35', 17 17 'diffusion.pkg.css' => '91c5d3a6', 18 18 'diffusion.pkg.js' => '84c8f8fd', ··· 59 59 'rsrc/css/application/dashboard/dashboard.css' => 'bc6f2127', 60 60 'rsrc/css/application/diff/inline-comment-summary.css' => '51efda3a', 61 61 'rsrc/css/application/differential/add-comment.css' => 'c47f8c40', 62 - 'rsrc/css/application/differential/changeset-view.css' => 'b158cc46', 62 + 'rsrc/css/application/differential/changeset-view.css' => '6d0fc277', 63 63 'rsrc/css/application/differential/core.css' => '5b7b8ff4', 64 64 'rsrc/css/application/differential/phui-inline-comment.css' => '5953c28e', 65 65 'rsrc/css/application/differential/revision-comment.css' => '14b8565a', ··· 574 574 'conpherence-thread-manager' => 'c8b5ee6f', 575 575 'conpherence-transaction-css' => '85129c68', 576 576 'd3' => 'a11a5ff2', 577 - 'differential-changeset-view-css' => 'b158cc46', 577 + 'differential-changeset-view-css' => '6d0fc277', 578 578 'differential-core-view-css' => '5b7b8ff4', 579 579 'differential-inline-comment-editor' => '2e3f9738', 580 580 'differential-revision-add-comment-css' => 'c47f8c40', ··· 1455 1455 'javelin-install', 1456 1456 'javelin-util', 1457 1457 ), 1458 + '6d0fc277' => array( 1459 + 'phui-inline-comment-view-css', 1460 + ), 1458 1461 '6d3e1947' => array( 1459 1462 'javelin-behavior', 1460 1463 'javelin-diffusion-locate-file-source', ··· 1857 1860 'javelin-request', 1858 1861 'javelin-util', 1859 1862 'phabricator-shaped-request', 1860 - ), 1861 - 'b158cc46' => array( 1862 - 'phui-inline-comment-view-css', 1863 1863 ), 1864 1864 'b1f0ccee' => array( 1865 1865 'javelin-install',
+4 -4
src/applications/transactions/view/PhabricatorApplicationTransactionTextDiffDetailView.php
··· 21 21 22 22 $old_styles = array( 23 23 'padding: 0 2px;', 24 - 'color: #802b2b;', 25 - 'background: rgba(251, 175, 175, .7);', 24 + 'color: #333333;', 25 + 'background: #f8cbcb;', 26 26 ); 27 27 $old_styles = implode(' ', $old_styles); 28 28 29 29 $new_styles = array( 30 30 'padding: 0 2px;', 31 - 'color: #3e6d35;', 32 - 'background: rgba(151, 234, 151, .6);', 31 + 'color: #333333;', 32 + 'background: #a6f3a6;', 33 33 ); 34 34 $new_styles = implode(' ', $new_styles); 35 35
+10 -13
webroot/rsrc/css/application/differential/changeset-view.css
··· 108 108 padding: 0 2px; 109 109 } 110 110 111 - .prose-diff span.old { 112 - color: {$redtext}; 113 - } 114 - 111 + .prose-diff span.old, 115 112 .prose-diff span.new { 116 - color: {$greentext}; 113 + color: {$darkgreytext}; 117 114 } 118 115 119 116 .differential-diff th.selected { ··· 124 121 cursor: auto; 125 122 } 126 123 127 - .differential-diff td.old { 128 - background: rgba(251, 175, 175, .3); 124 + .differential-diff td.old, 125 + .differential-diff td.old-full { 126 + background: #ffecec; 129 127 } 130 128 131 - .differential-diff td.new { 132 - background: rgba(151, 234, 151, .3); 129 + .differential-diff td.new, 130 + .differential-diff td.new-full { 131 + background: #eaffea; 133 132 } 134 133 135 134 .differential-diff td.old-rebase { ··· 140 139 background: #eeffee; 141 140 } 142 141 143 - .differential-diff td.old-full, 144 142 .differential-diff td.old span.bright, 145 143 .prose-diff span.old { 146 - background: rgba(251, 175, 175, .7); 144 + background: #f8cbcb; 147 145 } 148 146 149 - .differential-diff td.new-full, 150 147 .differential-diff td.new span.bright, 151 148 .prose-diff span.new { 152 - background: rgba(151, 234, 151, .6); 149 + background: #a6f3a6; 153 150 } 154 151 155 152 .differential-diff td.copy {