Skip to content

Commit

Permalink
fix A标签在ios safari上点击后字体会变小再变大,包括列表页面名称字段,审批王详细页面顶部操作按钮等
Browse files Browse the repository at this point in the history
  • Loading branch information
yinlianghui committed Jul 31, 2024
1 parent b70d91c commit ec8262b
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion steedos-packages/webapp-public/public/customize.css
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,25 @@ body {
body.steedos {
/*此样式可能造成ios17系统的iphone svg显示不出来,移除就好了*/
-webkit-overflow-scrolling: unset;
}
}

/* fix A标签在ios safari上点击后字体会变小再变大,包括列表页面名称字段,审批王详细页面顶部操作按钮等 */
@media (max-width: 768px) {
a {
-webkit-tap-highlight-color: transparent;
touch-action: manipulation;
font-size: inherit;
line-height: inherit;
padding: inherit;
}

a:active,
a:hover,
a:focus {
font-size: inherit;
}

.slds-button a {
font-size: inherit;
}
}

0 comments on commit ec8262b

Please sign in to comment.