@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 Differential Paths Panel divider

Summary:
Replace hardcoded background color `#f5f5f5` for the Differential vertical divider (`.phui-formation-resizer`) between the Paths Panel and the actual revision in Differential with variable `{$lightgreybackground}` which is `#f7f7f7` in default mode. That is the same color that the adjacent sidebar (`.phui-flank-view-fixed`) already uses, and I consider the small difference in grey neglectable.

Refs T15056

Test Plan:
* Go to http://phorge.localhost/settings/panel/display/ and set `Accessibility` to `Dark Mode (Experimental)`
* Create a Differential revision
* Go to http://phorge.localhost/D1
* In the left upper corner, click that arrow thingie to Show Paths Panel
* Look at the vertical divider

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

+4 -4
+3 -3
resources/celerity/map.php
··· 12 12 'core.pkg.css' => '96aaba46', 13 13 'core.pkg.js' => '83580d78', 14 14 'dark-console.pkg.js' => '187792c2', 15 - 'differential.pkg.css' => '4c951b31', 15 + 'differential.pkg.css' => 'a2f3f4cd', 16 16 'differential.pkg.js' => '46fcb3af', 17 17 'diffusion.pkg.css' => '91e57dc1', 18 18 'diffusion.pkg.js' => '78c9885d', ··· 150 150 'rsrc/css/phui/phui-fontkit.css' => '1ec937e5', 151 151 'rsrc/css/phui/phui-form-view.css' => '0c6c5f44', 152 152 'rsrc/css/phui/phui-form.css' => '2884219c', 153 - 'rsrc/css/phui/phui-formation-view.css' => 'd3956117', 153 + 'rsrc/css/phui/phui-formation-view.css' => '7e9e5b96', 154 154 'rsrc/css/phui/phui-head-thing.css' => 'd7f293df', 155 155 'rsrc/css/phui/phui-header-view.css' => '7bc4efa0', 156 156 'rsrc/css/phui/phui-hovercard.css' => '7ffb4e0c', ··· 823 823 'phui-fontkit-css' => '1ec937e5', 824 824 'phui-form-css' => '2884219c', 825 825 'phui-form-view-css' => '0c6c5f44', 826 - 'phui-formation-view-css' => 'd3956117', 826 + 'phui-formation-view-css' => '7e9e5b96', 827 827 'phui-head-thing-view-css' => 'd7f293df', 828 828 'phui-header-view-css' => '7bc4efa0', 829 829 'phui-hovercard' => '6199f752',
+1 -1
webroot/rsrc/css/phui/phui-formation-view.css
··· 114 114 bottom: 0; 115 115 116 116 cursor: col-resize; 117 - background: #f5f5f5; 117 + background: {$lightgreybackground}; 118 118 border-style: solid; 119 119 border-width: 0 1px 0 1px; 120 120 border-color: #fff #999c9e #fff #999c9e;