Merge pull request #537 from edx/fix/frances/studio-ie-menu-bug

fix for ie bug where drop down menus were still clickable when collapsed
This commit is contained in:
frances botsford
2013-07-31 10:19:56 -07:00

View File

@@ -64,12 +64,14 @@ nav {
opacity: 0.0;
pointer-events: none;
width: ($baseline*8);
overflow: hidden;
// dropped down state
&.is-shown {
opacity: 1.0;
pointer-events: auto;
overflow: visible;
}
}