From 8ca082ec713f4c076ec2cd29f3f601ec6a083af8 Mon Sep 17 00:00:00 2001 From: Bradley Farias Date: Fri, 17 Sep 2021 09:08:23 -0500 Subject: [PATCH] doc: fix CJS-ESM selector in Safari MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Safari needs a vendor prefix on the appearance of the checkbox. PR-URL: https://github.com/nodejs/node/pull/40135 Backport-PR-URL: https://github.com/nodejs/node/pull/40561 Reviewed-By: Luigi Pinca Reviewed-By: Antoine du Hamel Reviewed-By: Michaƫl Zasso --- doc/api_assets/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/api_assets/style.css b/doc/api_assets/style.css index 97215226d5582b..6faeb59efc04dd 100644 --- a/doc/api_assets/style.css +++ b/doc/api_assets/style.css @@ -780,6 +780,7 @@ kbd { } .js-flavor-selector { + -webkit-appearance: none; appearance: none; float: right; background-image: url(./js-flavor-cjs.svg);