@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 workboard card edit button background

Summary:
Replace hardcoded white background color for the Edit button of a project workboard card (shown when hovering over the card) with variable `{$page.content}` as `CelerityDefaultPostprocessor.php` also defines `'page.content' => '#fff'`.

Refs T15056

Test Plan:
* Go http://phorge.localhost/settings/panel/display/ and set `Accessibility` to `Dark Mode (Experimental)`
* Go to a workboard of a project and hover over a card in a column
* Look at the Edit button in the upper right corner of the card

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

+1 -1
+1 -1
webroot/rsrc/css/phui/workboards/phui-workcard.css
··· 71 71 72 72 .device-desktop .phui-workcard.phui-oi:hover 73 73 .phui-list-item-href { 74 - background: #fff; 74 + background: {$page.content}; 75 75 opacity: .7; 76 76 } 77 77