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

Fake an outline ring on buttons

Summary: Fixes T11990. Chrome/Ubuntu doesn't respect `outline: auto`, so this is the only workaround I could fine. Somewhat nicer than stock Chrome.

Test Plan: tab tab tab tab, ubuntu, chrome, windows, safari.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T11990

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

authored by

Chad Little and committed by
chad
fddd4674 f3d9a0b9

+12 -5
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => '0b64e988', 11 11 'conpherence.pkg.js' => '6249a1cf', 12 - 'core.pkg.css' => '35e6c1ed', 12 + 'core.pkg.css' => '1ef46ae8', 13 13 'core.pkg.js' => 'e4260032', 14 14 'darkconsole.pkg.js' => 'e7393ebb', 15 15 'differential.pkg.css' => 'a4ba74b5', ··· 128 128 'rsrc/css/phui/phui-basic-nav-view.css' => '7093573b', 129 129 'rsrc/css/phui/phui-big-info-view.css' => 'bd903741', 130 130 'rsrc/css/phui/phui-box.css' => '5c8387cf', 131 - 'rsrc/css/phui/phui-button.css' => '4a5fbe3d', 131 + 'rsrc/css/phui/phui-button.css' => '43f4912e', 132 132 'rsrc/css/phui/phui-chart.css' => '6bf6f78e', 133 133 'rsrc/css/phui/phui-cms.css' => 'be43c8a8', 134 134 'rsrc/css/phui/phui-comment-form.css' => 'c953b75e', ··· 837 837 'phui-basic-nav-view-css' => '7093573b', 838 838 'phui-big-info-view-css' => 'bd903741', 839 839 'phui-box-css' => '5c8387cf', 840 - 'phui-button-css' => '4a5fbe3d', 840 + 'phui-button-css' => '43f4912e', 841 841 'phui-calendar-css' => '477acfaa', 842 842 'phui-calendar-day-css' => '572b1893', 843 843 'phui-calendar-list-css' => 'fcc9fb41',
+9 -2
webroot/rsrc/css/phui/phui-button.css
··· 17 17 -webkit-font-smoothing: auto; 18 18 } 19 19 20 - button::-moz-focus-inner { 20 + button::-moz-focus-inner, 21 + input::-moz-focus-inner { 22 + border: 0; 21 23 padding: 0; 22 - border: 0; 24 + } 25 + 26 + button:focus, 27 + a.button:focus { 28 + outline: 0; 29 + box-shadow: 0 0 2pt 2pt rgba(82, 168, 236, 0.7); 23 30 } 24 31 25 32 button,