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

Improve Dark Mode for closed object links in tables

Summary:
Replace link text color `rgba({$alphablack}, 0.5)` with close-enough `{$greytext}`.

Refs T15056

Test Plan:
* Go to http://phorge.localhost/settings/panel/display/ and set `Accessibility` to `Dark Mode (Experimental)`
* Go to a task with closed subtasks and/or parent tasks and look at the list in the "Related Objects" box

Reviewers: O1 Blessed Committers, mainframe98

Reviewed By: O1 Blessed Committers, mainframe98

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T15056

Differential Revision: https://we.phorge.it/D26388

+5 -5
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => 'beb13d57', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => '754f20fe', 12 + 'core.pkg.css' => '983c8f9b', 13 13 'core.pkg.js' => '83580d78', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => '77189aae', ··· 30 30 'rsrc/css/aphront/list-filter-view.css' => 'feb64255', 31 31 'rsrc/css/aphront/multi-column.css' => 'fbc00ba3', 32 32 'rsrc/css/aphront/notification.css' => '30240bd2', 33 - 'rsrc/css/aphront/table-view.css' => '29486d14', 33 + 'rsrc/css/aphront/table-view.css' => '76efc17f', 34 34 'rsrc/css/aphront/tokenizer.css' => '7ef6de30', 35 35 'rsrc/css/aphront/tooltip.css' => 'b6d94bea', 36 36 'rsrc/css/aphront/typeahead-browse.css' => 'b7ed02d2', ··· 492 492 'aphront-dialog-view-css' => '6f4ea703', 493 493 'aphront-list-filter-view-css' => 'feb64255', 494 494 'aphront-multi-column-view-css' => 'fbc00ba3', 495 - 'aphront-table-view-css' => '29486d14', 495 + 'aphront-table-view-css' => '76efc17f', 496 496 'aphront-tokenizer-control-css' => '7ef6de30', 497 497 'aphront-tooltip-css' => 'b6d94bea', 498 498 'aphront-typeahead-control-css' => '5da109c8',
+2 -2
webroot/rsrc/css/aphront/table-view.css
··· 248 248 .aphront-table-view tr.closed td.object-link .object-name, 249 249 .aphront-table-view tr.alt-closed td.object-link .object-name { 250 250 text-decoration: line-through; 251 - color: rgba({$alphablack}, 0.5); 251 + color: {$greytext}; 252 252 } 253 253 254 254 .aphront-table-view tr.closed td.object-link a, 255 255 .aphront-table-view tr.alt-closed td.object-link a { 256 - color: rgba({$alphablack}, 0.5); 256 + color: {$greytext}; 257 257 } 258 258 259 259 .aphront-table-view tr.closed td.graph-status,