From dedd3cf03cdc7291817da9ba370e806d2e069267 Mon Sep 17 00:00:00 2001 From: Allen Rabinovich Date: Wed, 15 Jan 2014 12:13:41 -0700 Subject: [PATCH] Overflow scroll on app instead of body (imported from commit 2be63b16afe212e95e983745eaa0bc5dc8e1397e) --- static/styles/zulip.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/static/styles/zulip.css b/static/styles/zulip.css index 11b828807e..6e42157f38 100644 --- a/static/styles/zulip.css +++ b/static/styles/zulip.css @@ -1,7 +1,9 @@ body, html { width: 100%; + height: 100%; overflow-x: hidden; + overflow-y: hidden; } #css-loading { @@ -10,7 +12,6 @@ html { body { font-family: 'Humbug', 'Helvetica Neue', Helvetica, Arial, sans-serif; - overflow-y: auto; } /* Common background color */ @@ -85,6 +86,8 @@ a { .app { width: 100%; + height: 100%; + overflow-y: auto; z-index: 99; }