@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 Guides

Summary:
* Replace hardcoded background color for the body with variable `{$page.background}`.
* Replace hardcoded background color for the content with variable `{$page.content}`.

Refs T15056

Test Plan:
* Go to http://phorge.localhost/settings/panel/display/ and set `Accessibility` to `Dark Mode (Experimental)`
* Go to http://phorge.localhost/guides/ and look at things

Reviewers: O1 Blessed Committers, mainframe98

Reviewed By: O1 Blessed Committers, mainframe98

Subscribers: mainframe98, tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T15056

Differential Revision: https://we.phorge.it/D26147

+4 -4
+2 -2
resources/celerity/map.php
··· 137 137 'rsrc/css/phui/phui-box.css' => '5ed3b8cb', 138 138 'rsrc/css/phui/phui-bulk-editor.css' => '374d5e30', 139 139 'rsrc/css/phui/phui-chart.css' => '14df9ae3', 140 - 'rsrc/css/phui/phui-cms.css' => '8c05c41e', 140 + 'rsrc/css/phui/phui-cms.css' => '9f142cca', 141 141 'rsrc/css/phui/phui-comment-form.css' => '6b3b8dc0', 142 142 'rsrc/css/phui/phui-comment-panel.css' => 'ec4e31c0', 143 143 'rsrc/css/phui/phui-crumbs-view.css' => '30342804', ··· 809 809 'phui-calendar-list-css' => 'ccd7e4e2', 810 810 'phui-calendar-month-css' => 'cb758c42', 811 811 'phui-chart-css' => '14df9ae3', 812 - 'phui-cms-css' => '8c05c41e', 812 + 'phui-cms-css' => '9f142cca', 813 813 'phui-comment-form-css' => '6b3b8dc0', 814 814 'phui-comment-panel-css' => 'ec4e31c0', 815 815 'phui-crumbs-view-css' => '30342804',
+2 -2
webroot/rsrc/css/phui/phui-cms.css
··· 4 4 5 5 6 6 .phui-cms-body { 7 - background-color: #f0f0f2; 7 + background-color: {$page.background}; 8 8 } 9 9 10 10 .phui-cms-view .phui-crumbs-view { ··· 14 14 .phui-cms-page { 15 15 max-width: 1140px; 16 16 margin: 0 auto; 17 - background-color: #fff; 17 + background-color: {$page.content}; 18 18 border-left: 1px solid {$lightblueborder}; 19 19 border-right: 1px solid {$lightblueborder}; 20 20 border-bottom: 1px solid {$lightblueborder};