diff options
author | Bradley Farias <bradley.meck@gmail.com> | 2021-09-17 09:08:23 -0500 |
---|---|---|
committer | Richard Lau <rlau@redhat.com> | 2021-11-25 12:16:07 -0500 |
commit | 8ca082ec713f4c076ec2cd29f3f601ec6a083af8 (patch) | |
tree | 8df74e17fa86984615b3ef08f854833164fc1283 | |
parent | 92490d1c89b618adb0c244dea758aae857a21469 (diff) | |
download | node-new-8ca082ec713f4c076ec2cd29f3f601ec6a083af8.tar.gz |
doc: fix CJS-ESM selector in Safari
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 <luigipinca@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Michaƫl Zasso <targos@protonmail.com>
-rw-r--r-- | doc/api_assets/style.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/api_assets/style.css b/doc/api_assets/style.css index 97215226d5..6faeb59efc 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); |