@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 hovering top bar dropdown menu items

Summary:
* Make colors for `hoverselectedgrey` and `hoverselectedblue` in Dark Mode not to use Default Mode colors.
* Replace hardcoded text color for for strike-through links (`a.handle-status-closed`) `#676767` with close-enough variable `{$lightgreytext}`, and in case of hovering such a strike-through link `#19558D` with `{$darkbluetext}`.

Refs T15056

Test Plan:
* Go to http://phorge.localhost/settings/panel/display/ and set `Accessibility` to `Dark Mode (Experimental)`
* Create notifications, have setup issues, etc. Open top bar menu items and hover. Find a strike-through link and hover.
* Probably also check other pages for `a.handle-status-closed` but I'm too lazy for that.

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

+7 -7
+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' => '95002cb9', 12 + 'core.pkg.css' => '9fa10710', 13 13 'core.pkg.js' => '83580d78', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => '6691591b', ··· 40 40 'rsrc/css/application/base/main-menu-view.css' => 'c731af7c', 41 41 'rsrc/css/application/base/notification-menu.css' => '90e445b9', 42 42 'rsrc/css/application/base/phui-theme.css' => '35883b37', 43 - 'rsrc/css/application/base/standard-page-view.css' => '45aa515d', 43 + 'rsrc/css/application/base/standard-page-view.css' => '17fb97b1', 44 44 'rsrc/css/application/conduit/conduit-api.css' => 'ce2cfc41', 45 45 'rsrc/css/application/config/config-options.css' => '25d545a9', 46 46 'rsrc/css/application/config/config-template.css' => '20babf50', ··· 752 752 'phabricator-shaped-request' => '995f5102', 753 753 'phabricator-slowvote-css' => '0f219c39', 754 754 'phabricator-source-code-view-css' => 'e994d13f', 755 - 'phabricator-standard-page-view' => '45aa515d', 755 + 'phabricator-standard-page-view' => '17fb97b1', 756 756 'phabricator-textareautils' => 'f340a484', 757 757 'phabricator-title' => '43bc9360', 758 758 'phabricator-tooltip' => '83754533',
+2 -2
src/applications/celerity/postprocessor/CelerityDarkModePostprocessor.php
··· 55 55 'hovergrey' => '#c5cbcf', 56 56 'hoverblue' => '#2a425f', 57 57 'hoverborder' => '#dfe1e9', 58 - 'hoverselectedgrey' => '#bbc4ca', 59 - 'hoverselectedblue' => '#e6e9ee', 58 + 'hoverselectedgrey' => '#4f5b64', 59 + 'hoverselectedblue' => '#48546a', 60 60 'borderinset' => 'inset 0 0 0 1px rgba(55,55,55,.15)', 61 61 'timeline' => '#4e6078', 62 62 'timeline.icon.background' => '#416086',
+2 -2
webroot/rsrc/css/application/base/standard-page-view.css
··· 89 89 90 90 a.handle-status-closed { 91 91 text-decoration: line-through; 92 - color: #676767; 92 + color: {$lightgreytext}; 93 93 } 94 94 95 95 a.handle-status-closed:hover { 96 96 text-decoration: line-through; 97 - color: #19558D; 97 + color: {$darkbluetext}; 98 98 } 99 99 100 100 .handle-availability-none .perfect-circle {