@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 API References in Diviner

Summary:
* Replace hardcoded white background color for table cell with variable `{$page.content}` as CelerityDefaultPostprocessor.php also defines 'page.content' => '#fff'.
* Replace hardcoded black text color with variable `{$blacktext}.

Refs T15056

Test Plan:
* Go to http://phorge.localhost/settings/panel/display/ and set `Accessibility` to `Dark Mode (Experimental)`
* Build Diviner docs via `./bin/diviner generate`
* Go to http://phorge.localhost/book/dev/class/AphrontHTTPParameterType/ and scroll down to the "Methods" section

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

+2 -2
+2 -2
webroot/rsrc/css/diviner/diviner-shared.css
··· 54 54 .diviner-parameter-table-docs { 55 55 padding: 6px 12px 6px 8px; 56 56 width: 80%; 57 - background-color: #fff; 57 + background-color: {$page.content}; 58 58 } 59 59 60 60 .diviner-document-section { ··· 111 111 112 112 .diviner-atom-signature { 113 113 font-weight: normal; 114 - color: #000; 114 + color: {$blacktext}; 115 115 } 116 116 117 117 .phui-header-view .phui-header-header a.diviner-atom-signature-name {