added support for server passwords

This commit is contained in:
2017-04-30 18:34:10 +00:00
parent 511886743b
commit b07057d509
3 changed files with 23 additions and 6 deletions

View file

@ -233,7 +233,7 @@ form {
.connect-dialog {
position: absolute;
width: 300px;
height: 197px;
height: 227px;
top: calc(50% - 100px);
left: calc(50% - 150px);
background-color: #eee;
@ -250,3 +250,12 @@ form {
padding: 2px;
width: calc(100% - 8px);
}
.connect-dialog input[type=password] {
font-size: 15px;
border: 1px gray solid;
border-radius: 3px;
background-color: white;
color: black;
padding: 2px;
width: calc(100% - 8px);
}