Merge pull request #686 from shikhar-scs/hidePassword

Hide password while Typing and after Entering: Fixes #670
This commit is contained in:
Danny Coates 2018-01-08 09:49:40 -08:00 committed by GitHub
commit 7b96c46e39
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 31 additions and 4 deletions

View file

@ -666,6 +666,18 @@ tbody {
overflow-wrap: break-word;
}
.passwordOriginal {
display: none;
}
.selectPassword :hover .passwordOriginal {
display: block;
}
.selectPassword :hover .passwordStar {
display: none;
}
.setPassword {
align-self: left;
display: flex;