diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2019-01-25 12:00:16 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-02-22 12:54:28 +0100 |
commit | d1ba0d52abc434d7a444068319ffa9b115d03eb8 (patch) | |
tree | 30de5024f06aeb99e00d4672b1c40e29fcb09866 /core/templates | |
parent | 7c68e0eae7d378d73aa05361efbba835890c45c2 (diff) | |
download | nextcloud-server-d1ba0d52abc434d7a444068319ffa9b115d03eb8.tar.gz nextcloud-server-d1ba0d52abc434d7a444068319ffa9b115d03eb8.zip |
Keyboard focus and mouse hover feedback for 'Show password' toggle
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/installation.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php index 3fdde8da1c2..3a6fd283e0b 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -50,7 +50,7 @@ script('core', [ value="<?php p($_['adminpass']); ?>" autocomplete="off" autocapitalize="none" autocorrect="off" required> <label for="adminpass" class="infield"><?php p($l->t( 'Password' )); ?></label> - <input type="checkbox" id="show" name="show"> + <input type="checkbox" id="show" class="hidden-visually" name="show"> <label for="show"></label> </p> </fieldset> @@ -113,7 +113,7 @@ script('core', [ value="<?php p($_['dbpass']); ?>" autocomplete="off" autocapitalize="none" autocorrect="off"> <label for="dbpass" class="infield"><?php p($l->t( 'Database password' )); ?></label> - <input type="checkbox" id="dbpassword-toggle" name="dbpassword-toggle"> + <input type="checkbox" id="dbpassword-toggle" class="hidden-visually" name="dbpassword-toggle"> <label for="dbpassword-toggle"></label> </p> <p class="groupmiddle"> |