diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2022-02-26 01:00:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-26 01:00:00 +0100 |
commit | a39d850030a46578d2efdee3f01eb201b35d328b (patch) | |
tree | 66fab08eddd4fc6ee72d0bf8e9dd626351f7d38d | |
parent | 0b7449e78e96f87f59c230c2fc92919e8f24531e (diff) | |
parent | 62261558f9457a9ee3cf99ce31a60488c649d14a (diff) | |
download | nextcloud-server-a39d850030a46578d2efdee3f01eb201b35d328b.tar.gz nextcloud-server-a39d850030a46578d2efdee3f01eb201b35d328b.zip |
Merge pull request #31353 from nextcloud/bugfix/noid/fix-missing-focus-highlight
Fix missing focus highlight for guest buttons
-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'], |