landing: Prevent selecting the of X icon in mobile navigation.

This prevents accidental selection of the close button (X) of the left
sidebar on mobile landing page.

Fixes #5259.
This commit is contained in:
Srimukh 2017-07-09 20:53:24 +05:30 committed by Tim Abbott
parent de1dc50204
commit b2f105ac7e
1 changed files with 4 additions and 0 deletions

View File

@ -167,6 +167,10 @@ nav ul {
nav ul .exit {
display: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
nav ul li {