Skip to content

Commit

Permalink
Pointer events and position fixing
Browse files Browse the repository at this point in the history
Pointer events: none to allow you to click through the dividers
Fallback for IE6, with an important flag.
  • Loading branch information
shalecraig committed Dec 27, 2011
1 parent 1ccc952 commit 2ebc9cb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion releases/latest/960.gridder.src.css
Expand Up @@ -5,7 +5,7 @@
/* SETUP */ /* SETUP */


#g-setup { #g-setup {
position: absolute; position: fixed;
top: 150px; top: 150px;
left: -310px; left: -310px;
padding: 6px; padding: 6px;
Expand All @@ -15,6 +15,11 @@
background-color: #d1cfe6; background-color: #d1cfe6;
border: 2px solid #a19bd1; border: 2px solid #a19bd1;
z-index: 2100; z-index: 2100;
pointer-events: none;
}

* html #g-setup {
position: absolute!important;
} }


#g-setup * { #g-setup * {
Expand Down

0 comments on commit 2ebc9cb

Please sign in to comment.