@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 Tags with sky background color

Summary:
Replace hardcoded sky background color with a variable so it becomes possible to tweak this for Dark Mode support.

Refs T15056

Test Plan: Unclear as I fail to find a place where this color is taken into account.

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

+10 -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' => '9bba59a9', 12 + 'core.pkg.css' => 'b29cd0cd', 13 13 'core.pkg.js' => '83580d78', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => '77189aae', ··· 170 170 'rsrc/css/phui/phui-segment-bar-view.css' => '5166b370', 171 171 'rsrc/css/phui/phui-spacing.css' => 'b05cadc3', 172 172 'rsrc/css/phui/phui-status.css' => '293b5dad', 173 - 'rsrc/css/phui/phui-tag-view.css' => '8613be82', 173 + 'rsrc/css/phui/phui-tag-view.css' => 'ef373d9a', 174 174 'rsrc/css/phui/phui-timeline-view.css' => '0277217e', 175 175 'rsrc/css/phui/phui-two-column-view.css' => '54fb9794', 176 176 'rsrc/css/phui/workboards/phui-workboard-color.css' => '27fbe0ac', ··· 825 825 'phui-segment-bar-view-css' => '5166b370', 826 826 'phui-spacing-css' => 'b05cadc3', 827 827 'phui-status-list-view-css' => '293b5dad', 828 - 'phui-tag-view-css' => '8613be82', 828 + 'phui-tag-view-css' => 'ef373d9a', 829 829 'phui-theme-css' => '35883b37', 830 830 'phui-timeline-view-css' => '0277217e', 831 831 'phui-two-column-view-css' => '54fb9794',
+3
src/applications/celerity/postprocessor/CelerityDarkModePostprocessor.php
··· 148 148 'sh-bluetext' => '#464c5c', 149 149 'sh-bluebackground' => '#dee7f8', 150 150 151 + // Shade Sky (mostly re-uses Blue colors above) 152 + 'sh-skybackground' => '#e0f0fa', 153 + 151 154 // Shade Indigo 152 155 'sh-lightindigoborder' => '#d1c9ee', 153 156 'sh-indigoborder' => '#bcb4da',
+3
src/applications/celerity/postprocessor/CelerityDefaultPostprocessor.php
··· 161 161 'sh-bluetext' => '#464c5c', 162 162 'sh-bluebackground' => '#dee7f8', 163 163 164 + // Shade Sky (mostly re-uses Blue colors above) 165 + 'sh-skybackground' => '#e0f0fa', 166 + 164 167 // Shade Indigo 165 168 'sh-lightindigoborder' => '#d1c9ee', 166 169 'sh-indigoborder' => '#bcb4da',
+1 -1
webroot/rsrc/css/phui/phui-tag-view.css
··· 285 285 286 286 .phui-tag-sky .phui-tag-core, 287 287 .jx-tokenizer-token.sky { 288 - background: #E0F0FA; 288 + background: {$sh-skybackground}; 289 289 border-color: {$sh-lightblueborder}; 290 290 color: {$sh-bluetext}; 291 291 }