diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-09-01 16:16:43 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-09-01 16:36:56 +0200 |
commit | f1a45733a84010de461af9e0f86564c28380bae5 (patch) | |
tree | eb9b8de28f0c0540421356c050c692cb51aa0387 /skins/larry | |
parent | 7ccb59499b5d8256c5038dc75ec3538e00c059b0 (diff) |
Fix iframe scrollbars on webkit browsers (#1489306)
Diffstat (limited to 'skins/larry')
-rw-r--r-- | 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 09c7a60ed..d542768b7 100644 --- a/skins/larry/styles.css +++ b/skins/larry/styles.css @@ -930,7 +930,7 @@ a.iconlink.upload { } /* 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; |