diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-05-14 22:19:09 -0500 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-05-15 11:45:15 -0500 |
commit | 30443ac177607e9e76738898daa79c026a454f66 (patch) | |
tree | 4b5e5c5740dda6cceae43e04f9d584942fcaffba /core | |
parent | 3f201ec7f3ed65ad672da14b55881ad4d678ce29 (diff) | |
download | nextcloud-server-30443ac177607e9e76738898daa79c026a454f66.tar.gz nextcloud-server-30443ac177607e9e76738898daa79c026a454f66.zip |
Improve layout of buttons for two factor auth
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'core')
-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; } |