diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-03-12 10:25:20 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-03-12 10:25:20 +0000 |
commit | f4a17421c1a09530454c07ab5a96c4febdd02822 (patch) | |
tree | cde41b5b385a945d191d95233e0de00fbd3636b0 /public | |
parent | 6fc4836f113889b131532582dc7eab772a340465 (diff) | |
download | redmine-f4a17421c1a09530454c07ab5a96c4febdd02822.tar.gz redmine-f4a17421c1a09530454c07ab5a96c4febdd02822.zip |
Prevent font scaling in landscape mode on webkit (#22104).
Patch by Felix Gliesche.
git-svn-id: http://svn.redmine.org/redmine/trunk@15216 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public')
-rw-r--r-- | public/stylesheets/responsive.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/public/stylesheets/responsive.css b/public/stylesheets/responsive.css index ad7a282be..816007943 100644 --- a/public/stylesheets/responsive.css +++ b/public/stylesheets/responsive.css @@ -52,6 +52,7 @@ html { overflow-y: auto; /* avoid 2nd scrollbar on desktop */ + -webkit-text-size-adjust: 100%; /* prevent font scaling in landscape mode on webkit */ } body { |