www/adium.im 549:c3000d8d9e95: Prevent iOS devices from scaling ...

commits at adium.im commits at adium.im
Sun Feb 12 19:34:48 UTC 2012


details:	http://hg.adium.im/www/adium.im/rev/c3000d8d9e95
revision:	549:c3000d8d9e95
branch:		rewrite
author:		Paul Wilde <me at paulwilde.co.uk>
date:		Sun Feb 12 19:34:41 2012 +0000

Prevent iOS devices from scaling the font-size on landscape mode. Fixes #15841

diffs (15 lines):

diff -r 4eb3302a804c -r c3000d8d9e95 assets/styles/global.css
--- a/assets/styles/global.css	Sun Feb 12 17:59:13 2012 +0000
+++ b/assets/styles/global.css	Sun Feb 12 19:34:41 2012 +0000
@@ -550,6 +550,11 @@
 
 /********** Media Queries **********/
 
+/* Notice: Prevent iOS devices from scaling the font-size on landscape mode */
+ at media (orientation: landscape) {
+	html { -webkit-text-size-adjust: none; }
+}
+
 @media (max-width: 980px) {
 	/* Content */
 	




More information about the commits mailing list