@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 colors hovering navigation bar status tabs

Summary:
* Use `{$orange}` variable for warning text instead of hardcoding text color.
* On hover, use `{$alphagrey}` variable for warning and fail text instead of hardcoding text color.
This makes text readable in both dark mode and default mode.

Refs T15056

Test Plan:
* Go to http://phorge.localhost/settings/panel/display/ and set `Accessibility` to `Dark Mode (Experimental)`
* Go to http://phorge.localhost/uiexample/view/PHUIListExample/, look at the "Status Tabs" section, hover over items
* Repeat previous step with `Default Mode` instead of Dark Mode

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T15056

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

+6 -6
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => 'beb13d57', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => '8958fe2d', 12 + 'core.pkg.css' => '1bfee9a9', 13 13 'core.pkg.js' => '83580d78', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => '77189aae', ··· 160 160 'rsrc/css/phui/phui-invisible-character-view.css' => 'c694c4a4', 161 161 'rsrc/css/phui/phui-left-right.css' => '68513c34', 162 162 'rsrc/css/phui/phui-lightbox.css' => 'e4015eff', 163 - 'rsrc/css/phui/phui-list.css' => '3cd9723f', 163 + 'rsrc/css/phui/phui-list.css' => 'd9152fdb', 164 164 'rsrc/css/phui/phui-object-box.css' => 'b8d7eea0', 165 165 'rsrc/css/phui/phui-pager.css' => 'd022c7ad', 166 166 'rsrc/css/phui/phui-pinboard-view.css' => '1f08f5d8', ··· 809 809 'phui-invisible-character-view-css' => 'c694c4a4', 810 810 'phui-left-right-css' => '68513c34', 811 811 'phui-lightbox-css' => 'e4015eff', 812 - 'phui-list-view-css' => '3cd9723f', 812 + 'phui-list-view-css' => 'd9152fdb', 813 813 'phui-object-box-css' => 'b8d7eea0', 814 814 'phui-oi-big-ui-css' => 'fa74cc35', 815 815 'phui-oi-color-css' => 'b517bfa0',
+3 -3
webroot/rsrc/css/phui/phui-list.css
··· 250 250 */ 251 251 252 252 .phui-list-item-warn .phui-list-item-href { 253 - color: #bc7837; 253 + color: {$orange}; 254 254 } 255 255 256 256 .phui-list-item-fail .phui-list-item-href { ··· 260 260 .phui-list-item-warn.phui-list-item-selected .phui-list-item-href, 261 261 .phui-list-item-warn .phui-list-item-href:hover { 262 262 background: {$lightyellow}; 263 - color: #bc7837; 263 + color: rgba({$alphagrey},.9); 264 264 } 265 265 266 266 .phui-list-item-fail.phui-list-item-selected .phui-list-item-href, 267 267 .phui-list-item-fail .phui-list-item-href:hover { 268 268 background: {$lightred}; 269 - color: {$red}; 269 + color: rgba({$alphagrey},.9); 270 270 } 271 271 272 272 .phui-list-item-warn.phui-list-item-selected .phui-list-item-href:hover {