From 2601817777e92e40795854bafbd6d27e3ffc5126 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Fri, 18 Aug 2023 15:19:45 +0200 Subject: [PATCH] Enforce a minimum font size of 16px for iOS See https://www.woltlab.com/community/thread/301197-editor-mobil-im-querformat-verbesserungsw%C3%BCrdig/ --- wcfsetup/install/files/style/ui/ckeditor.scss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/wcfsetup/install/files/style/ui/ckeditor.scss b/wcfsetup/install/files/style/ui/ckeditor.scss index 5ab08a2c56..f1bc343e43 100644 --- a/wcfsetup/install/files/style/ui/ckeditor.scss +++ b/wcfsetup/install/files/style/ui/ckeditor.scss @@ -574,12 +574,12 @@ html.touch .ck.ck-balloon-panel.ck-tooltip { } } -@include screen-xs { - html.iOS .ck.ck-content { - /* Font sizes below 16px cause iOS to zoom when moving the focus inside of it. */ - font-size: 16px; - } +html.iOS .ck.ck-content { + /* Font sizes below 16px cause iOS to zoom when moving the focus inside of it. */ + font-size: 16px; +} +@include screen-xs { .ck.ck-input { --ck-input-width: 100%; } -- 2.20.1