diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-05-16 13:11:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-16 13:11:55 +0200 |
commit | fd74428cdb29a3f544e09fdb2c80395beedd50a9 (patch) | |
tree | 6ec11cb28208aa0f19c39ba476ddc9cd69fab52c /core/css | |
parent | e22b957d7f8705ba87096b05fbb375aca392b076 (diff) | |
parent | 30443ac177607e9e76738898daa79c026a454f66 (diff) | |
download | nextcloud-server-fd74428cdb29a3f544e09fdb2c80395beedd50a9.tar.gz nextcloud-server-fd74428cdb29a3f544e09fdb2c80395beedd50a9.zip |
Merge pull request #4865 from nextcloud/improve-two-factor-buttons
Improve layout of buttons for two factor auth
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/guest.css | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/core/css/guest.css b/core/css/guest.css index 657a4adbdef..d55d8785b43 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -347,8 +347,18 @@ form .warning input[type='checkbox']+label { } .two-factor-link { display: inline-block; - padding: 12px; color: rgba(255, 255, 255, 0.75); + width: 100%; +} +.two-factor-link .button { + padding: 10px; + border-radius: 3px; + color: #555 !important; + display: inline-block; + margin: 5px 0; + text-align: center; + width: 100%; + box-sizing: border-box } /* Additional login options */ @@ -453,6 +463,9 @@ form #selectDbType label.ui-state-active { border-radius: 3px; cursor: default; } +.warning { + margin-top: 15px; +} .warning.updateAnyways { text-align: center; } |