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

Remove text-shadow from Aphront table headers

Summary:
In dark mode, the current `text-shadow` of table headers offers a nice fuzzy feeling and is a great alternative to the consumption of beverages.

We could either remove it completely or replace `white` with a new `{whitetext}` variable similar to the already existing `{blacktext}` variable. I prefer to keep it simple, so this patch removes the text-shadow.

Refs T15056

Test Plan:
* Go to http://phorge.localhost/settings/panel/display/ and set `Accessibility` to `Dark Mode (Experimental)`
* Go to http://phorge.localhost/settings/panel/editor/, scroll down to the section "External Editor URI Variables", look at the header text of the three columns.

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

+3 -4
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => '384ce2d9', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => 'd0fac3be', 12 + 'core.pkg.css' => 'a0c797a3', 13 13 'core.pkg.js' => '83580d78', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => '4c951b31', ··· 30 30 'rsrc/css/aphront/list-filter-view.css' => 'feb64255', 31 31 'rsrc/css/aphront/multi-column.css' => 'fbc00ba3', 32 32 'rsrc/css/aphront/notification.css' => '30240bd2', 33 - 'rsrc/css/aphront/table-view.css' => '0bb61df1', 33 + 'rsrc/css/aphront/table-view.css' => '7a1c897a', 34 34 'rsrc/css/aphront/tokenizer.css' => '194e8160', 35 35 'rsrc/css/aphront/tooltip.css' => 'b6d94bea', 36 36 'rsrc/css/aphront/typeahead-browse.css' => 'b7ed02d2', ··· 519 519 'aphront-dialog-view-css' => '6f4ea703', 520 520 'aphront-list-filter-view-css' => 'feb64255', 521 521 'aphront-multi-column-view-css' => 'fbc00ba3', 522 - 'aphront-table-view-css' => '0bb61df1', 522 + 'aphront-table-view-css' => '7a1c897a', 523 523 'aphront-tokenizer-control-css' => '194e8160', 524 524 'aphront-tooltip-css' => 'b6d94bea', 525 525 'aphront-typeahead-control-css' => '5da109c8',
-1
webroot/rsrc/css/aphront/table-view.css
··· 51 51 white-space: nowrap; 52 52 color: {$bluetext}; 53 53 font-weight: bold; 54 - text-shadow: 0 1px 0 white; 55 54 background-color: {$lightbluebackground}; 56 55 } 57 56