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

In HTML mail, make the text for mail stamps in mail bodies smaller and lighter

Summary: Depends on D19014. Ref T13053.

Test Plan: Used `./bin/mail show-outbound --id <id> --dump-html > out.html && open out.html` to look at HTML mail, saw smaller, lighter stamp text with better spacing.

Reviewers: amckinley

Maniphest Tasks: T13053

Differential Revision: https://secure.phabricator.com/D19015

+7 -1
+7 -1
src/applications/metamta/replyhandler/PhabricatorMailTarget.php
··· 77 77 $html = array(); 78 78 $html[] = phutil_tag('strong', array(), pht('STAMPS')); 79 79 $html[] = phutil_tag('br'); 80 - $html[] = phutil_implode_html(' ', $stamps); 80 + $html[] = phutil_tag( 81 + 'span', 82 + array( 83 + 'style' => 'font-size: smaller; color: #92969D', 84 + ), 85 + phutil_implode_html(' ', $stamps)); 86 + $html[] = phutil_tag('br'); 81 87 $html[] = phutil_tag('br'); 82 88 $html = phutil_tag('div', array(), $html); 83 89 $html_body .= hsprintf('%s', $html);