Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core/css
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-02-25 13:44:17 +0300
committerJoas Schilling <coding@schilljs.com>2022-02-25 13:44:17 +0300
commit62261558f9457a9ee3cf99ce31a60488c649d14a (patch)
treeff1e33557132bba45259ea2e695ebd0704d51134 /core/css
parent22a9c54f89ac863abc6320f5db21436f41c56a19 (diff)
Fix missing focus highlight for guest buttons
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/css')
-rw-r--r--core/css/guest.css4
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'],