style: optimize touch action for interactive elements without blocking pinch zoom

This commit is contained in:
DXC
2026-03-12 12:50:27 +08:00
parent 970e231bbc
commit c482aa3ba7

View File

@ -75,4 +75,22 @@ html, body {
/* 注意:原文件中关于 button, .card 的样式已被删除,
因为你的项目中引入了 Element Plus
保留原生 button 样式会和 Element Plus 组件产生冲突。
*/
*/
/* -------------------------------------------------
移动端/平板端触控优化
移除300ms延迟防止双击放大但保留双指缩放
-------------------------------------------------
*/
a,
button,
input,
textarea,
select,
.el-button,
.el-checkbox,
.el-switch,
.el-table__row,
.el-pagination {
touch-action: manipulation;
}