From ed201b1b5bbe58eabdf3aaf4b7a962381733c163 Mon Sep 17 00:00:00 2001 From: Neil Lalonde Date: Wed, 26 Feb 2014 13:44:46 -0500 Subject: [PATCH] FIX: on mobile, don't scroll background when showing a modal. iOS goes bananas. Thanks shobhit007 --- app/assets/stylesheets/mobile/modal.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/assets/stylesheets/mobile/modal.scss b/app/assets/stylesheets/mobile/modal.scss index f37dcebf5c8..53fb4fae11d 100644 --- a/app/assets/stylesheets/mobile/modal.scss +++ b/app/assets/stylesheets/mobile/modal.scss @@ -17,6 +17,9 @@ z-index: 2070; } + // Prevent background scrolling when a modal is open + overflow: hidden; + position: fixed; } .modal-backdrop {