Skip to content

Commit

Permalink
Fix mail view scaling on iOS (#1490551)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomascube committed Dec 23, 2015
1 parent f2ff464 commit 772e08f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ RELEASE 1.1.4
- Make brute force attacks harder by re-generating security token on every failed login (#1490549)
- Slow down brute-force attacks by waiting for a second after failed login (#1490549)
- Fix .htaccess rewrite rules to not block .well-known URIs (#1490615)
- Fix mail view scaling on iOS (#1490551)
- Fix so database_attachments::cleanup() does not remove attachments from other sessions (#1490542)
- Fix responses list update issue after response name change (#1490555)
- Fix bug where message preview was unintentionally reset on check-recent action (#1490563)
Expand Down
7 changes: 6 additions & 1 deletion skins/larry/styles.css
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -23,6 +23,11 @@ body.noscroll {
overflow: hidden;
}

.iphone body.noscroll {
/* revert on iPhone (#1490551) */
overflow: auto;
}

a {
color: #0069a6;
}
Expand Down

0 comments on commit 772e08f

Please sign in to comment.