diff --git a/CHANGELOG b/CHANGELOG index 7a72e56fc..8f42061b9 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -8,6 +8,7 @@ CHANGELOG Roundcube Webmail - Fix path traversal vulnerability in setting a skin (#1490620) - Fix so drag-n-drop of text (e.g. recipient addresses) on compose page actually works (#1490619) - Fix .htaccess rewrite rules to not block .well-known URIs (#1490615) +- Fix mail view scaling on iOS (#1490551) RELEASE 1.2-beta ---------------- diff --git a/skins/larry/styles.css b/skins/larry/styles.css index ba1708584..132156415 100644 --- a/skins/larry/styles.css +++ b/skins/larry/styles.css @@ -1,7 +1,7 @@ /** * Roundcube webmail styles for skin "Larry" * - * Copyright (c) 2012, The Roundcube Dev Team + * Copyright (c) 2012-2015, The Roundcube Dev Team * Screendesign by FLINT / Büro für Gestaltung, bueroflint.com * * The contents are subject to the Creative Commons Attribution-ShareAlike @@ -23,6 +23,11 @@ body.noscroll { overflow: hidden; } +.iphone body.noscroll { + /* revert on iPhone (#1490551) */ + overflow: auto; +} + a { color: #0069a6; }