@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 square icons

Summary:
Do not hardcode white color; use a variable instead so there is sufficient contrast in Dark Mode.

Refs T15056

Test Plan: Create a Dashboard; go to http://phorge.localhost/dashboard/query/all/ and look at the list

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

+2 -2
+2 -2
webroot/rsrc/css/phui/phui-icon.css
··· 172 172 .phui-icon-view.phui-icon-square { 173 173 height: 40px; 174 174 width: 40px; 175 - color: #fff; 175 + color: {$page.content}; 176 176 font-size: 26px; 177 177 text-align: center; 178 178 line-height: 38px; ··· 181 181 182 182 a.phui-icon-view.phui-icon-square:hover { 183 183 text-decoration: none; 184 - color: #fff; 184 + color: {$page.content}; 185 185 } 186 186 187 187