@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 points in Charts

Summary:
* Change point color from `fill: #ffffff; stroke: {$blue}` to `fill: {$lightgreybackground}; stroke: {$darkgreyborder}` to allow replacing these variables in dark mode for improved readability
* Also reduce point and line stroke-width from 2px to 1px for improved readability (when lines are very close or overlap)

Refs T15056

Test Plan:
* Enable the "Facts" application at http://phorge.localhost/applications/view/PhabricatorFactApplication/
* Go to http://phorge.localhost/settings/panel/display/ and set `Accessibility` to `Dark Mode (Experimental)`
* Go to http://phorge.localhost/project/reports/1/ and look at the lines and dots in the chart

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

+6 -6
+2 -2
resources/celerity/map.php
··· 136 136 'rsrc/css/phui/phui-big-info-view.css' => '362ad37b', 137 137 'rsrc/css/phui/phui-box.css' => '539be5a8', 138 138 'rsrc/css/phui/phui-bulk-editor.css' => '374d5e30', 139 - 'rsrc/css/phui/phui-chart.css' => '14df9ae3', 139 + 'rsrc/css/phui/phui-chart.css' => '4ad6694c', 140 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', ··· 785 785 'phui-calendar-day-css' => '9597d706', 786 786 'phui-calendar-list-css' => 'ccd7e4e2', 787 787 'phui-calendar-month-css' => 'cb758c42', 788 - 'phui-chart-css' => '14df9ae3', 788 + 'phui-chart-css' => '4ad6694c', 789 789 'phui-cms-css' => '9f142cca', 790 790 'phui-comment-form-css' => '6b3b8dc0', 791 791 'phui-comment-panel-css' => 'ec4e31c0',
+4 -4
webroot/rsrc/css/phui/phui-chart.css
··· 32 32 .chart .line { 33 33 fill: none; 34 34 stroke: {$blue}; 35 - stroke-width: 2px; 35 + stroke-width: 1px; 36 36 } 37 37 38 38 .chart .point { 39 - fill: #ffffff; 40 - stroke: {$blue}; 41 - stroke-width: 2px; 39 + fill: {$lightgreybackground}; 40 + stroke: {$darkgreyborder}; 41 + stroke-width: 1px; 42 42 position: relative; 43 43 cursor: pointer; 44 44 }