From f1a45733a84010de461af9e0f86564c28380bae5 Mon Sep 17 00:00:00 2001 From: Thomas Bruederli <thomas@roundcube.net> Date: Sun, 01 Sep 2013 10:36:56 -0400 Subject: [PATCH] Fix iframe scrollbars on webkit browsers (#1489306) --- skins/larry/styles.css | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/skins/larry/styles.css b/skins/larry/styles.css index 09c7a60..d542768 100644 --- a/skins/larry/styles.css +++ b/skins/larry/styles.css @@ -930,7 +930,7 @@ } /* fix scrolling within iframes in webkit browsers on touch devices */ -@media screen and (-webkit-min-device-pixel-ratio:0) { +@media screen and (-webkit-min-device-pixel-ratio:0) and (max-device-width:1024px) { .iframebox { overflow: auto; -webkit-overflow-scrolling: touch; -- Gitblit v1.9.1