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

Fix dark mode for Tokenizer input text

Summary:
Replace hardcoded text color `#333` for tokenizer input text with variable `{$greytext}` which feels close enough.

Refs T15056

Test Plan:
* Go to http://phorge.localhost/settings/panel/display/ and set `Accessibility` to `Dark Mode (Experimental)`
* Go to http://phorge.localhost/maniphest/task/edit/1/, type text in the "Tags" or "Subscribers" field, check if you can read the text you entered

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/D26213

+8 -8
+7 -7
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => 'beb13d57', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => '81ad312e', 12 + 'core.pkg.css' => 'f4e58c01', 13 13 'core.pkg.js' => '83580d78', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => '77189aae', ··· 31 31 'rsrc/css/aphront/multi-column.css' => 'fbc00ba3', 32 32 'rsrc/css/aphront/notification.css' => '30240bd2', 33 33 'rsrc/css/aphront/table-view.css' => '29486d14', 34 - 'rsrc/css/aphront/tokenizer.css' => '194e8160', 34 + 'rsrc/css/aphront/tokenizer.css' => 'ca49b4fa', 35 35 'rsrc/css/aphront/tooltip.css' => 'b6d94bea', 36 36 'rsrc/css/aphront/typeahead-browse.css' => 'b7ed02d2', 37 37 'rsrc/css/aphront/typeahead.css' => '5da109c8', ··· 507 507 'aphront-list-filter-view-css' => 'feb64255', 508 508 'aphront-multi-column-view-css' => 'fbc00ba3', 509 509 'aphront-table-view-css' => '29486d14', 510 - 'aphront-tokenizer-control-css' => '194e8160', 510 + 'aphront-tokenizer-control-css' => 'ca49b4fa', 511 511 'aphront-tooltip-css' => 'b6d94bea', 512 512 'aphront-typeahead-control-css' => '5da109c8', 513 513 'application-search-view-css' => '0f7c06d8', ··· 1005 1005 'phuix-icon-view', 1006 1006 'phabricator-busy', 1007 1007 ), 1008 - '194e8160' => array( 1009 - 'aphront-typeahead-control-css', 1010 - 'phui-tag-view-css', 1011 - ), 1012 1008 '1a844c06' => array( 1013 1009 'javelin-install', 1014 1010 'javelin-util', ··· 1984 1980 ), 1985 1981 'c731af7c' => array( 1986 1982 'phui-theme-css', 1983 + ), 1984 + 'ca49b4fa' => array( 1985 + 'aphront-typeahead-control-css', 1986 + 'phui-tag-view-css', 1987 1987 ), 1988 1988 'cc1553f3' => array( 1989 1989 'javelin-stratcom',
+1 -1
webroot/rsrc/css/aphront/tokenizer.css
··· 34 34 width: 100%; 35 35 box-shadow: none; 36 36 font-size: {$normalfontsize}; 37 - color: #333; 37 + color: {$greytext}, 38 38 height: 26px; 39 39 background: transparent; 40 40 }