@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 Token Selector dialog

Summary:
Replace hardcoded background color `#f7f7f7` for token buttons in the Token selector dialog with variable `{$lightgreybackground}`. It is the same color.

Refs T15056

Test Plan:
* Go to http://phorge.localhost/settings/panel/display/ and set `Accessibility` to `Dark Mode (Experimental)`
* Go to http://phorge.localhost/T1, select "Award Token" from the sidebar

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

+4 -4
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => '384ce2d9', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => 'a0c797a3', 12 + 'core.pkg.css' => 'ee0f01e1', 13 13 'core.pkg.js' => '83580d78', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => '4c951b31', ··· 101 101 'rsrc/css/application/search/application-search-view.css' => '0f7c06d8', 102 102 'rsrc/css/application/search/search-results.css' => '9ea70ace', 103 103 'rsrc/css/application/slowvote/slowvote.css' => '0f219c39', 104 - 'rsrc/css/application/tokens/tokens.css' => 'ce5a50bd', 104 + 'rsrc/css/application/tokens/tokens.css' => 'cba3965f', 105 105 'rsrc/css/application/uiexample/example.css' => '549e220b', 106 106 'rsrc/css/core/core.css' => '83d97073', 107 107 'rsrc/css/core/remarkup.css' => '6ab3c4aa', ··· 883 883 'sprite-tokens-css' => '330edc9e', 884 884 'syntax-default-css' => 'c0307dc6', 885 885 'syntax-highlighting-css' => '548567f6', 886 - 'tokens-css' => 'ce5a50bd', 886 + 'tokens-css' => 'cba3965f', 887 887 'trigger-rule' => '41b7b4f6', 888 888 'trigger-rule-control' => '5faf27b9', 889 889 'trigger-rule-editor' => 'b49fd60c',
+1 -1
webroot/rsrc/css/application/tokens/tokens.css
··· 3 3 */ 4 4 5 5 button.token-button { 6 - background: #f7f7f7; 6 + background: {$lightgreybackground}; 7 7 border: 1px solid {$lightblueborder}; 8 8 position: relative; 9 9 width: 16px;