Skip to content

Commit

Permalink
shwo keyboard focus on the password prompt dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed May 28, 2024
1 parent aad8e6c commit b3d8b5b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
3 changes: 3 additions & 0 deletions html5/css/client.css
Original file line number Diff line number Diff line change
Expand Up @@ -523,6 +523,9 @@ table#sessiondata td {
border: 1px solid transparent;
border-radius: 4px;
}
.login-button:focus, .login-button:hover {
background-color: #449d44;
}

@media screen {
.notifications .alert.visible {
Expand Down
9 changes: 3 additions & 6 deletions html5/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,16 +126,13 @@
placeholder="Password"
size="16"
maxlength="256"
tabindex="1"
/>
</div>
<br />
<div id="login-buttons">
<a class="login-button" role="button" onclick="login_cancel();"
>Cancel</a
>
<a class="login-button" role="button" onclick="login_connect();"
>Connect</a
>
<a class="login-button" role="button" tabindex="2" onclick="login_cancel();">Cancel</a>
<a class="login-button" role="button" tabindex="3" onclick="login_connect();">Connect</a>
</div>
</div>
</div>
Expand Down

0 comments on commit b3d8b5b

Please sign in to comment.