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

Blur profile image when user account disabled

Summary:
Add blur and sepia filter to disabled user profile image.

Before this change, the image was just greyed out but still fully recognizable.

Closes T15515

Test Plan:
* Create an account with a custom profile picture
* Disable the account
* Go to user profile of the account
* Go to a task with activity of that account and hover over the account to open card view

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: speck, tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T15515

Differential Revision: https://we.phorge.it/D25322

+5 -5
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => '76ed87e3', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => 'a4ed0b29', 12 + 'core.pkg.css' => '0ef1e5d9', 13 13 'core.pkg.js' => '2eeda9e0', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => '525f9a1d', ··· 161 161 'rsrc/css/phui/phui-header-view.css' => '36c86a58', 162 162 'rsrc/css/phui/phui-hovercard.css' => '6ca90fa0', 163 163 'rsrc/css/phui/phui-icon-set-selector.css' => '7aa5f3ec', 164 - 'rsrc/css/phui/phui-icon.css' => '4cbc684a', 164 + 'rsrc/css/phui/phui-icon.css' => '084ac612', 165 165 'rsrc/css/phui/phui-image-mask.css' => '62c7f4d2', 166 166 'rsrc/css/phui/phui-info-view.css' => 'a10a909b', 167 167 'rsrc/css/phui/phui-invisible-character-view.css' => 'c694c4a4', ··· 857 857 'phui-hovercard-list' => 'de4b4919', 858 858 'phui-hovercard-view-css' => '6ca90fa0', 859 859 'phui-icon-set-selector-css' => '7aa5f3ec', 860 - 'phui-icon-view-css' => '4cbc684a', 860 + 'phui-icon-view-css' => '084ac612', 861 861 'phui-image-mask-css' => '62c7f4d2', 862 862 'phui-info-view-css' => 'a10a909b', 863 863 'phui-inline-comment-view-css' => 'a864426f',
+2 -2
webroot/rsrc/css/phui/phui-icon.css
··· 41 41 42 42 img.phui-image-disabled { 43 43 opacity: .8; 44 - -webkit-filter: grayscale(100%); 45 - filter: grayscale(100%); 44 + -webkit-filter: blur(4px) grayscale(100%) sepia(25%); 45 + filter: blur(4px) grayscale(100%) sepia(25%); 46 46 } 47 47 48 48 .phui-icon-view.bluetext {