diff --git a/docs/src/docs-entry.js b/docs/src/docs-entry.js index d81934da9..48a2c13d3 100644 --- a/docs/src/docs-entry.js +++ b/docs/src/docs-entry.js @@ -1,7 +1,6 @@ // This file is auto gererated by build/build-entry.js export default { 'changelog.en-US': () => import('../markdown/changelog.en-US.md'), - 'changelog.generated': () => import('../markdown/changelog.generated.md'), 'changelog.zh-CN': () => import('../markdown/changelog.zh-CN.md'), 'contribution.zh-CN': () => import('../markdown/contribution.zh-CN.md'), 'intro.en-US': () => import('../markdown/intro.en-US.md'), diff --git a/packages/vant-css/src/toast.css b/packages/vant-css/src/toast.css index 25e9d39b2..bb3632657 100644 --- a/packages/vant-css/src/toast.css +++ b/packages/vant-css/src/toast.css @@ -17,8 +17,14 @@ transform: translate3d(-50%, -50%, 0); background-color: rgba(0, 0, 0, .7); + /** + * should not add pointer-events: none directly to body tag + * that will cause unexpected tap-highlight-color in mobile safari + */ &--unclickable { - pointer-events: none; + * { + pointer-events: none; + } } &--text {