From 94aefaa31d4c781d2553345e2994155067d9f238 Mon Sep 17 00:00:00 2001 From: "roberto.urbani" Date: Fri, 13 Oct 2023 10:46:21 +0200 Subject: [PATCH] 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 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 --- resources/celerity/map.php | 6 +++--- webroot/rsrc/css/core/core.css | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/celerity/map.php b/resources/celerity/map.php index 8f791cbeda..e40b474c14 100644 --- a/resources/celerity/map.php +++ b/resources/celerity/map.php @@ -9,7 +9,7 @@ return array( 'names' => array( 'conpherence.pkg.css' => '76ed87e3', 'conpherence.pkg.js' => '020aebcf', - 'core.pkg.css' => '1a5169fe', + 'core.pkg.css' => '3c4918b0', 'core.pkg.js' => '2eeda9e0', 'dark-console.pkg.js' => '187792c2', 'differential.pkg.css' => '2431def2', @@ -109,7 +109,7 @@ return array( 'rsrc/css/application/slowvote/slowvote.css' => '1694baed', 'rsrc/css/application/tokens/tokens.css' => 'ce5a50bd', 'rsrc/css/application/uiexample/example.css' => 'b4795059', - 'rsrc/css/core/core.css' => 'a708bd25', + 'rsrc/css/core/core.css' => 'b3a5928e', 'rsrc/css/core/remarkup.css' => '3480e1fe', 'rsrc/css/core/syntax.css' => '548567f6', 'rsrc/css/core/z-index.css' => 'ac3bfcd4', @@ -772,7 +772,7 @@ return array( 'phabricator-busy' => '5202e831', 'phabricator-chatlog-css' => 'abdc76ee', 'phabricator-content-source-view-css' => 'cdf0d579', - 'phabricator-core-css' => 'a708bd25', + 'phabricator-core-css' => 'b3a5928e', 'phabricator-countdown-css' => 'bff8012f', 'phabricator-darklog' => '3b869402', 'phabricator-darkmessage' => '26cd4b73', diff --git a/webroot/rsrc/css/core/core.css b/webroot/rsrc/css/core/core.css index ccb3d1697f..4a9d3b394b 100644 --- a/webroot/rsrc/css/core/core.css +++ b/webroot/rsrc/css/core/core.css @@ -84,7 +84,7 @@ h2 { } a { - -moz-outline-style: none; + outline-style: none; text-decoration: none; color: {$anchor}; cursor: pointer;