diff options
author | Vincent Petry <vincent@nextcloud.com> | 2022-05-10 20:10:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-10 20:10:33 +0200 |
commit | b2fa8a0b537ee52f7906556570fb3aceda23ad30 (patch) | |
tree | 24bdb6c430d42c2fd465ba212dfe0e9f4f04e63d | |
parent | f0f2a07f850af1105e27be5bc9180500b1dbac39 (diff) | |
parent | 721b2597bcbe5e65a0ddbc8d6fbffecb77ed68f9 (diff) | |
download | nextcloud-server-b2fa8a0b537ee52f7906556570fb3aceda23ad30.tar.gz nextcloud-server-b2fa8a0b537ee52f7906556570fb3aceda23ad30.zip |
Merge pull request #31664 from nextcloud/fix/232/keyboard-focus
keyboard focus on login input fields
-rw-r--r-- | core/css/guest.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/css/guest.css b/core/css/guest.css index a6d2abf9820..1ecf6e92726 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -241,6 +241,8 @@ input, textarea, select, button, div[contenteditable=true] { } input, input:not([type='range']), +input:not([type='text']), +input:not([type='password']), a.button { font-size: 20px; margin: 5px; @@ -286,6 +288,10 @@ input[type='email'] { border: none; font-weight: normal; } +input[type='text']:focus-visible, +input[type='password']:focus-visible { + outline: var(--color-primary) auto 2px; +} input[type='password'].password-with-toggle, input[type='text'].password-with-toggle { width: 219px; padding-right: 40px; |