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

Replacing the deprecated -moz-outline-style with outline-style

Summary:
Replacing the deprecated -moz-outline-style with outline-style: none.

According to "Can I Use", this change is supported in whatever non-ridiculously-old browser web in the universe,
like Firefox 2 and Chrome 4 and Internet Explorer 8.

https://caniuse.com/outline

Ref T15585

Test Plan: The outline in the <a> tags should look as usual, that is, none.

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T15585

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

authored by

roberto.urbani and committed by
Valerio Bozzolan
94aefaa3 f727f17b

+4 -4
+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' => '1a5169fe', 12 + 'core.pkg.css' => '3c4918b0', 13 13 'core.pkg.js' => '2eeda9e0', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => '2431def2', ··· 109 109 'rsrc/css/application/slowvote/slowvote.css' => '1694baed', 110 110 'rsrc/css/application/tokens/tokens.css' => 'ce5a50bd', 111 111 'rsrc/css/application/uiexample/example.css' => 'b4795059', 112 - 'rsrc/css/core/core.css' => 'a708bd25', 112 + 'rsrc/css/core/core.css' => 'b3a5928e', 113 113 'rsrc/css/core/remarkup.css' => '3480e1fe', 114 114 'rsrc/css/core/syntax.css' => '548567f6', 115 115 'rsrc/css/core/z-index.css' => 'ac3bfcd4', ··· 772 772 'phabricator-busy' => '5202e831', 773 773 'phabricator-chatlog-css' => 'abdc76ee', 774 774 'phabricator-content-source-view-css' => 'cdf0d579', 775 - 'phabricator-core-css' => 'a708bd25', 775 + 'phabricator-core-css' => 'b3a5928e', 776 776 'phabricator-countdown-css' => 'bff8012f', 777 777 'phabricator-darklog' => '3b869402', 778 778 'phabricator-darkmessage' => '26cd4b73',
+1 -1
webroot/rsrc/css/core/core.css
··· 84 84 } 85 85 86 86 a { 87 - -moz-outline-style: none; 87 + outline-style: none; 88 88 text-decoration: none; 89 89 color: {$anchor}; 90 90 cursor: pointer;