diff options
author | Joas Schilling <coding@schilljs.com> | 2022-02-25 11:44:17 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2022-02-25 11:44:17 +0100 |
commit | 62261558f9457a9ee3cf99ce31a60488c649d14a (patch) | |
tree | ff1e33557132bba45259ea2e695ebd0704d51134 | |
parent | 22a9c54f89ac863abc6320f5db21436f41c56a19 (diff) | |
download | nextcloud-server-62261558f9457a9ee3cf99ce31a60488c649d14a.tar.gz nextcloud-server-62261558f9457a9ee3cf99ce31a60488c649d14a.zip |
Fix missing focus highlight for guest buttons
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r-- | core/css/guest.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/css/guest.css b/core/css/guest.css index ee2bf57c0c9..a648f75f64f 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -270,6 +270,10 @@ select { border-radius: 100px; /* --border-radius-pill */ cursor: pointer; } +input[type='submit']:focus { + border: 2px solid black !important; + padding: 8px; +} input[type='text'], input[type='tel'], input[type='password'], |