Fix mail view scaling on iOS (#1490551)

pull/314/head
Thomas Bruederli 9 years ago
parent 1c2aad89ab
commit 12d389b396

@ -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
----------------

@ -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;
}

Loading…
Cancel
Save