mirror of https://github.com/zulip/zulip.git
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:
parent
de1dc50204
commit
b2f105ac7e
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue