Make the login overlay always 'visible' in the DOM so that password managers can auto-submit their credentials

This commit is contained in:
Paul de Vries 2016-12-31 13:13:01 +01:00
parent ce1344eb0c
commit 6cc84a1473
2 changed files with 20 additions and 1 deletions

File diff suppressed because one or more lines are too long

View file

@ -1139,3 +1139,22 @@ input[type=number] {
width: 100%;
}
}
// Navbar loginForm
// Make the overlay always visible so that extensions are able to auto-submit (i.e. password-managers)
#navbar_login:not(.open) #login_dropdown_loggedout {
display: block;
z-index: -1;
height: 0px;
padding: 0 !important;
overflow: hidden;
border: 0;
box-shadow: none;
}
#loginForm {
margin: 0;
button {
margin-top: 20px;
}
}