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

Improve Dark Mode in global Notifications dropdown

Summary:
Replace hardcoded black color for values in the notifications dropdown with a variable in `.phabricator-notification .phui-timeline-value`.

Refs T15056

Test Plan: Open top bar Notification menu in Dark Mode (text now readable) and in Default Mode (see slightly lighter text but still in italic for differentiation).

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

+4 -4
+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' => 'b6b76664', 12 + 'core.pkg.css' => '754f20fe', 13 13 'core.pkg.js' => '83580d78', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => '77189aae', ··· 38 38 'rsrc/css/application/almanac/almanac.css' => '2e050f4f', 39 39 'rsrc/css/application/auth/auth.css' => 'c2f23d74', 40 40 'rsrc/css/application/base/main-menu-view.css' => 'c731af7c', 41 - 'rsrc/css/application/base/notification-menu.css' => '4df1ee30', 41 + 'rsrc/css/application/base/notification-menu.css' => '90e445b9', 42 42 'rsrc/css/application/base/phui-theme.css' => '35883b37', 43 43 'rsrc/css/application/base/standard-page-view.css' => '45aa515d', 44 44 'rsrc/css/application/conduit/conduit-api.css' => 'ce2cfc41', ··· 742 742 'phabricator-main-menu-view' => 'c731af7c', 743 743 'phabricator-notification' => 'a9b91e3f', 744 744 'phabricator-notification-css' => '30240bd2', 745 - 'phabricator-notification-menu-css' => '4df1ee30', 745 + 'phabricator-notification-menu-css' => '90e445b9', 746 746 'phabricator-object-selector-css' => 'ee77366f', 747 747 'phabricator-phtize' => '2f1db1ed', 748 748 'phabricator-prefab' => '5793d835',
+1 -1
webroot/rsrc/css/application/base/notification-menu.css
··· 166 166 167 167 .phabricator-notification .phui-timeline-value { 168 168 font-style: italic; 169 - color: #000; 169 + color: {$darkgreytext}; 170 170 }