@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 for exiled files behind curtain

Summary:
Use more suited colors (and the variables actually meant for these two elements) for the "File Not Attached" red string in a red box.
Still not perfect, but good enough. (Unfortunately red is red, both in Dark Mode and Default Mode.)

Refs T15056

Test Plan: Go to a task which has a referenced file which is not attached, look at "Referenced Files" in the sidebar.

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

+5 -5
+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' => '16411fd2', 12 + 'core.pkg.css' => '6edc10db', 13 13 'core.pkg.js' => '9250c090', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => 'abdb4fe9', ··· 140 140 'rsrc/css/phui/phui-comment-form.css' => '6b3b8dc0', 141 141 'rsrc/css/phui/phui-comment-panel.css' => 'ec4e31c0', 142 142 'rsrc/css/phui/phui-crumbs-view.css' => '30342804', 143 - 'rsrc/css/phui/phui-curtain-object-ref-view.css' => '51d93266', 143 + 'rsrc/css/phui/phui-curtain-object-ref-view.css' => '73b0e59c', 144 144 'rsrc/css/phui/phui-curtain-view.css' => '68c5efb6', 145 145 'rsrc/css/phui/phui-document-pro.css' => '46f8014d', 146 146 'rsrc/css/phui/phui-document-summary.css' => 'b068eed1', ··· 785 785 'phui-comment-form-css' => '6b3b8dc0', 786 786 'phui-comment-panel-css' => 'ec4e31c0', 787 787 'phui-crumbs-view-css' => '30342804', 788 - 'phui-curtain-object-ref-view-css' => '51d93266', 788 + 'phui-curtain-object-ref-view-css' => '73b0e59c', 789 789 'phui-curtain-view-css' => '68c5efb6', 790 790 'phui-document-summary-view-css' => 'b068eed1', 791 791 'phui-document-view-css' => 'a9154763',
+2 -2
webroot/rsrc/css/phui/phui-curtain-object-ref-view.css
··· 88 88 } 89 89 90 90 .phui-curtain-object-ref-view-exiled { 91 - background: {$lightred}; 91 + background: {$lightredbackground}; 92 92 opacity: 0.75; 93 93 } 94 94 95 95 .phui-curtain-object-ref-view-exiled-cell, 96 96 .phui-curtain-object-ref-view-exiled-cell a { 97 - color: {$red}; 97 + color: {$redtext}; 98 98 }