From 0bdf07b80f8f05aff887e703300890656025dc54 Mon Sep 17 00:00:00 2001 From: Felix Gliesche Date: Thu, 20 Aug 2015 13:18:45 +0200 Subject: [PATCH 1/1] Reorganize overflow of body and wrapper Jquery UIs autocomplete does not work on iOS if body's overflow-x is set to hidden. Moving this attribute to the #wrapper element fixes this issue. --- public/stylesheets/responsive.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/public/stylesheets/responsive.css b/public/stylesheets/responsive.css index a70afff..a251d3e 100644 --- a/public/stylesheets/responsive.css +++ b/public/stylesheets/responsive.css @@ -64,8 +64,6 @@ body { - overflow-x: hidden; /* hide horizontal overflow */ - min-width: 0; /* reset the min-width of 900px */ -webkit-overflow-scrolling: touch; @@ -92,6 +90,8 @@ { position: relative; + overflow-x: hidden; /* hide horizontal overflow */ + max-width: 100%; } @@ -603,6 +603,8 @@ { right: 250px; /* when left flyout is active, move body to the right (same amount like flyout-menu's width) */ + overflow: visible; + height: 100%; } -- 1.9.3 (Apple Git-50)