Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2015-12-23 11:35:06 +0300
committerThomas Bruederli <thomas@roundcube.net>2015-12-23 11:39:22 +0300
commit772e08fa2a7211e68aa6179811cf82ac124c9bf2 (patch)
treef61ea67d5d00c4f613dfd351db3db09fbc09dc48
parentf2ff464002e91b1599d7694ce2eaef5b30e8b67c (diff)
Fix mail view scaling on iOS (#1490551)1.1.4
-rw-r--r--CHANGELOG1
-rw-r--r--skins/larry/styles.css7
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 4f4980f34..e05a1ae84 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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)
diff --git a/skins/larry/styles.css b/skins/larry/styles.css
index c8c9a038a..a5cd2d6b8 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;
}