diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-01-14 19:37:54 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-01-14 19:37:54 +0100 |
commit | a673ff3a63b17ba4df194d60fe8a6e6eb2671557 (patch) | |
tree | 1306a35532c2af1fc299bb02ad0a1b4676afe26a | |
parent | 092a1fb90f57639a15adc5a8e565b53debe26a8a (diff) | |
download | nextcloud-server-a673ff3a63b17ba4df194d60fe8a6e6eb2671557.tar.gz nextcloud-server-a673ff3a63b17ba4df194d60fe8a6e6eb2671557.zip |
Fix max width on 2FA pages
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
-rw-r--r-- | core/css/guest.css | 4 | ||||
-rw-r--r-- | core/templates/twofactorselectchallenge.php | 2 | ||||
-rw-r--r-- | core/templates/twofactorshowchallenge.php | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/core/css/guest.css b/core/css/guest.css index 26c8fbc9ccd..7fbab45b929 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -471,6 +471,10 @@ form .warning input[type='checkbox']+label { color: #fff !important; } +.body-login-container.two-factor { + max-width: 290px; + margin: 15px auto 0; +} .two-factor-provider { display: flex; border-radius: 3px; /* --border-radius */ diff --git a/core/templates/twofactorselectchallenge.php b/core/templates/twofactorselectchallenge.php index 86561cddb36..830b82b0415 100644 --- a/core/templates/twofactorselectchallenge.php +++ b/core/templates/twofactorselectchallenge.php @@ -1,7 +1,7 @@ <?php $noProviders = empty($_['providers']); ?> -<div class="body-login-container update"> +<div class="body-login-container update two-factor"> <h2 class="two-factor-header"><?php p($l->t('Two-factor authentication')) ?></h2> <?php if (!$noProviders): ?> <p><?php p($l->t('Enhanced security is enabled for your account. Choose a second factor for authentication:')) ?></p> diff --git a/core/templates/twofactorshowchallenge.php b/core/templates/twofactorshowchallenge.php index e3270b80627..3e789c7490d 100644 --- a/core/templates/twofactorshowchallenge.php +++ b/core/templates/twofactorshowchallenge.php @@ -11,7 +11,7 @@ $provider = $_['provider']; $template = $_['template']; ?> -<div class="body-login-container update"> +<div class="body-login-container update two-factor"> <h2 class="two-factor-header"><?php p($provider->getDisplayName()); ?></h2> <?php if ($error): ?> <?php if($error_message): ?> |