@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 Badge large view

Summary:
Replace hardcoded white background color for a Badge with variable `{$page.content}` as `CelerityDefaultPostprocessor.php` also defines `'page.content' => '#fff'`.

Note that fixing the surrounding background color is a separate topic as that uses a common variable.

Refs T15056

Test Plan:
* Go http://phorge.localhost/settings/panel/display/ and set `Accessibility` to `Dark Mode (Experimental)`
* Create a badge; go to http://phorge.localhost/badges/view/1/
* Assign badge to a user, go to http://phorge.localhost/people/badges/1/

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

+1 -1
+1 -1
webroot/rsrc/css/phui/phui-badge.css
··· 84 84 } 85 85 86 86 .phui-badge-illustration { 87 - background-color: #fff; 87 + background-color: {$page.content}; 88 88 box-shadow: inset 0 -1px 1px 0 rgba({$alphablack},.1); 89 89 text-align: center; 90 90 height: 100px;