summaryrefslogtreecommitdiff
path: root/modules/overlay
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-11-05 01:23:08 +0000
committerDries Buytaert <dries@buytaert.net>2010-11-05 01:23:08 +0000
commit92c34e33f475f0c014828f1fd1db8237bca38e88 (patch)
tree0bc7ba8dbfe5674aa324044737f5d0c80e48e0b1 /modules/overlay
parent16159e25c8c669f986070d5c505d564d2c15de13 (diff)
downloadbrdo-92c34e33f475f0c014828f1fd1db8237bca38e88.tar.gz
brdo-92c34e33f475f0c014828f1fd1db8237bca38e88.tar.bz2
- Patch #878020 by Mark Trapp: position:fixed prevents iOS devices from scrolling the Overlay.
Diffstat (limited to 'modules/overlay')
-rw-r--r--modules/overlay/overlay-parent.css13
1 files changed, 1 insertions, 12 deletions
diff --git a/modules/overlay/overlay-parent.css b/modules/overlay/overlay-parent.css
index e71cd6648..50e8e364e 100644
--- a/modules/overlay/overlay-parent.css
+++ b/modules/overlay/overlay-parent.css
@@ -11,7 +11,7 @@ html.overlay-open body {
.overlay-element {
height: 100%;
left: 0;
- position: fixed;
+ position: absolute;
top: 0;
width: 100%;
z-index: 500;
@@ -35,14 +35,3 @@ html.overlay-open .displace-top,
html.overlay-open .displace-bottom {
z-index: 600;
}
-
-/**
- * IE6 shows elements with position:fixed as position:static so replace
- * it with position:absolute;
- */
-* html #overlay-container,
-* html .overlay-modal-background,
-* html .overlay-element
-{
- position: absolute;
-}