From ea98a98ba2f3474e46f3bb70fdbb98a6f8f90cdf Mon Sep 17 00:00:00 2001 From: scottjehl Date: Sun, 31 Oct 2010 11:18:44 -0400 Subject: [PATCH] Narrowed down first-load transition issue to ui-loading class. Removed a selector from overflow rule that seemed to be a bit overreaching. Fixes #336 --- themes/default/jquery.mobile.core.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/default/jquery.mobile.core.css b/themes/default/jquery.mobile.core.css index c82b9854..fd70f1a0 100644 --- a/themes/default/jquery.mobile.core.css +++ b/themes/default/jquery.mobile.core.css @@ -21,7 +21,7 @@ .ui-page-active { display: block; overflow: visible; } /* loading screen */ -.ui-loading, .ui-loading body { overflow: hidden !important; } +.ui-loading body { overflow: hidden !important; } .ui-loading .ui-loader { display: block; } .ui-loading .ui-page { overflow: hidden; } .ui-loader { display: none; position: absolute; opacity: .85; z-index: 10; top: 75px; left: 50%; width: 200px; margin-left: -130px; padding: 20px 30px; }