From 8fb93005f858d4f3ddd53aa534879d8f43cf7386 Mon Sep 17 00:00:00 2001 From: Sam Hemelryk Date: Fri, 5 Nov 2010 06:37:06 +0000 Subject: [PATCH] themes MDL-24895 Fixed phantom scroll bar bug that was occurring on OSX Firefox, Chrome, and Safari --- theme/base/style/core.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/theme/base/style/core.css b/theme/base/style/core.css index 1cbd8546d62..ba092c08caf 100644 --- a/theme/base/style/core.css +++ b/theme/base/style/core.css @@ -98,7 +98,8 @@ form.popupform, form.popupform div {display: inline;} .arrow_button input {overflow:hidden;} -.no-overflow {overflow:auto;} +/** The 1-pixel padding is there to avoid phantom scroll bars on OS X (FF, Safari and Chrome)**/ +.no-overflow {overflow:auto;padding-bottom:1px;} .pagelayout-report .no-overflow {overflow:visible;} .no-overflow > .generaltable {margin-bottom:0;} .ie6 .no-overflow {width:100%;}