Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

Commit

Permalink
Fixed menu button invisible menu
Browse files Browse the repository at this point in the history
If the menu has been activated (i.e. the user has clicked on the triple
dot button), when the menu is closed, the div still exists (invisible)
and the user cannot click on anything where the menu popup was.
  • Loading branch information
Wassup789 committed Apr 30, 2016
1 parent cf4a12f commit 5e3ae99
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@ a, .link{
top: 12px;
right: 16px;
}
#button-menu-container .mdl-menu__container {margin-top: -30px;}
#button-menu-container .mdl-menu__container {
margin-top: -30px;
pointer-events: none;
}
#button-menu-container .mdl-menu__container.is-visible {pointer-events: auto;}
#menu_changeAlignment[data-toggle="false"]:after {content: "__MSG_settings_vertSettings_channelAlignment__";}
#menu_changeAlignment[data-toggle="true"]:after {content: "__MSG_settings_vertSettings_channelAlignment2__";}
.mdl-layout.is-upgraded .mdl-layout__tab.is-active::after {background: #FFEB3B;}
Expand Down

0 comments on commit 5e3ae99

Please sign in to comment.