diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-08-15 00:09:44 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-08-15 00:11:41 +0200 |
commit | ed478cf064c79a4f76dc5433510ba15260f2e1ec (patch) | |
tree | 393da297f757bf9cc2d2e32080dc7538ef314f21 /skins/larry/styles.css | |
parent | cf89e87effbdef6d2a2d43b5fd7325f21b4627b6 (diff) |
Fix scrolling in iframes on touch devices
Diffstat (limited to 'skins/larry/styles.css')
-rw-r--r-- | skins/larry/styles.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/skins/larry/styles.css b/skins/larry/styles.css index f4b41fcb5..983b47c78 100644 --- a/skins/larry/styles.css +++ b/skins/larry/styles.css @@ -877,6 +877,15 @@ a.iconlink.upload { background-repeat: no-repeat; } +/* fix scrolling within iframes in webkit browsers on touch devices */ +@media screen and (-webkit-min-device-pixel-ratio:0) { + .iframebox { + overflow: auto; + -webkit-overflow-scrolling: touch; + } +} + + /*** lists ***/ .listbox { |