From ec8262bcbd48b7726085ad619b7bc22abc88dc30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=AE=B7=E4=BA=AE=E8=BE=89?= Date: Wed, 31 Jul 2024 18:56:38 +0800 Subject: [PATCH] =?UTF-8?q?fix=20A=E6=A0=87=E7=AD=BE=E5=9C=A8ios=20safari?= =?UTF-8?q?=E4=B8=8A=E7=82=B9=E5=87=BB=E5=90=8E=E5=AD=97=E4=BD=93=E4=BC=9A?= =?UTF-8?q?=E5=8F=98=E5=B0=8F=E5=86=8D=E5=8F=98=E5=A4=A7=EF=BC=8C=E5=8C=85?= =?UTF-8?q?=E6=8B=AC=E5=88=97=E8=A1=A8=E9=A1=B5=E9=9D=A2=E5=90=8D=E7=A7=B0?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=EF=BC=8C=E5=AE=A1=E6=89=B9=E7=8E=8B=E8=AF=A6?= =?UTF-8?q?=E7=BB=86=E9=A1=B5=E9=9D=A2=E9=A1=B6=E9=83=A8=E6=93=8D=E4=BD=9C?= =?UTF-8?q?=E6=8C=89=E9=92=AE=E7=AD=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../webapp-public/public/customize.css | 23 ++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/steedos-packages/webapp-public/public/customize.css b/steedos-packages/webapp-public/public/customize.css index 98fd2668e1..a717dfd0fd 100644 --- a/steedos-packages/webapp-public/public/customize.css +++ b/steedos-packages/webapp-public/public/customize.css @@ -79,4 +79,25 @@ body { body.steedos { /*此样式可能造成ios17系统的iphone svg显示不出来,移除就好了*/ -webkit-overflow-scrolling: unset; -} \ No newline at end of file +} + +/* 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; + } +}