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

Restrict font-smoothing to actual buttons

Summary: We use font-smoothing to make better looking buttons, but it makes text buttons look bad.

Test Plan: Test a button in an actionlist, font looks same as other action list items.

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

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

+7 -3
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => '86353aff', 10 + 'core.pkg.css' => 'f8f4b8dc', 11 11 'core.pkg.js' => '65e04767', 12 12 'darkconsole.pkg.js' => '8ab24e01', 13 13 'differential.pkg.css' => '380f07e5', ··· 124 124 'rsrc/css/phui/phui-action-list.css' => '9ee9910a', 125 125 'rsrc/css/phui/phui-action-panel.css' => '4bcb288d', 126 126 'rsrc/css/phui/phui-box.css' => '7b3a2eed', 127 - 'rsrc/css/phui/phui-button.css' => '008ba5e2', 127 + 'rsrc/css/phui/phui-button.css' => 'ffe12633', 128 128 'rsrc/css/phui/phui-crumbs-view.css' => '594d719e', 129 129 'rsrc/css/phui/phui-document.css' => 'a494bdf8', 130 130 'rsrc/css/phui/phui-error-view.css' => 'ad042fdd', ··· 773 773 'phui-action-header-view-css' => '89c497e7', 774 774 'phui-action-panel-css' => '4bcb288d', 775 775 'phui-box-css' => '7b3a2eed', 776 - 'phui-button-css' => '008ba5e2', 776 + 'phui-button-css' => 'ffe12633', 777 777 'phui-calendar-css' => '8675968e', 778 778 'phui-calendar-day-css' => 'de035c8a', 779 779 'phui-calendar-list-css' => 'c1d0ca59',
+4
webroot/rsrc/css/phui/phui-button.css
··· 13 13 user-select: none; 14 14 } 15 15 16 + button.phabricator-action-view-item { 17 + -webkit-font-smoothing: auto; 18 + } 19 + 16 20 button::-moz-focus-inner { 17 21 padding: 0; 18 22 border: 0;