From: Marcel Werk Date: Mon, 2 Sep 2013 20:16:36 +0000 (+0200) Subject: Fixed mobile optimization issue X-Git-Tag: 2.0.0_Beta_8~32 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=594da0bc3b4c7a394d0232fb8b919f4b49f11915;p=GitHub%2FWoltLab%2FWCF.git Fixed mobile optimization issue --- diff --git a/wcfsetup/install/files/style/global.less b/wcfsetup/install/files/style/global.less index e8abe4207b..c4f80a7472 100644 --- a/wcfsetup/install/files/style/global.less +++ b/wcfsetup/install/files/style/global.less @@ -379,3 +379,10 @@ a.badge:hover { background-color: #c09; } } + +// Preserve HTML font-size when iPhone orientation changes from portrait to landscape +@media only screen and (max-width: 800px) { + html { + -webkit-text-size-adjust: 100%; + } +} \ No newline at end of file