From fa8aa6a835eaa4608984e5a37b4c2a5b8fa19498 Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Wed, 14 May 2014 15:01:58 -0500 Subject: [PATCH] fix(sideMenu): fix disabled menu links MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The fix for another issue had too general of a CSS selector, which ultimately prevented clicks in the left menu when it had a scrollable area. This fix narrows in the selector so it only prevents pointer-events in the menu-content’s content area (still allowing the menu to close by tapping the content, but not allowing the content to be interacted with, like swiping a list item). Closes #1388 --- scss/_menu.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scss/_menu.scss b/scss/_menu.scss index 8173d6e1da..c6ad1645b8 100644 --- a/scss/_menu.scss +++ b/scss/_menu.scss @@ -24,7 +24,8 @@ box-shadow: $menu-side-shadow; } -.menu-open .scroll-content { +.menu-open .menu-content .pane, +.menu-open .menu-content .scroll-content { pointer-events: none; }