@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 Outline Tags

Summary:
Replace hardcoded background color `#fff` with variable `{$page.content}` on `.phui-tag-view.phui-tag-type-outline`.

Refs T15056

Test Plan:
* Go http://phorge.localhost/settings/panel/display/ and set `Accessibility` to `Dark Mode (Experimental)`
* Enable Prototype applications via `./bin/config set phabricator.show-prototypes true`
* Install UIExamples via http://phorge.localhost/applications/view/PhabricatorUIExamplesApplication/
* Go to http://phorge.localhost/uiexample/view/PHUITagExample/ and scroll down to the "Outlines" section
* Alternatively, configure some task subtypes at http://phorge.localhost/config/edit/maniphest.subtypes/ and look at the top of a Maniphest task

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

+1 -1
+1 -1
webroot/rsrc/css/phui/phui-tag-view.css
··· 458 458 } 459 459 460 460 .phui-tag-view.phui-tag-type-outline .phui-tag-core { 461 - background: #fff; 461 + background: {$page.content}; 462 462 padding: 0 6px 1px 6px; 463 463 } 464 464