]> source.dussan.org Git - nextcloud-server.git/commitdiff
Limit the size of the container on guest pages 18819/head
authorJulius Härtl <jus@bitgrid.net>
Fri, 10 Jan 2020 16:09:40 +0000 (17:09 +0100)
committerJulius Härtl <jus@bitgrid.net>
Fri, 10 Jan 2020 16:09:40 +0000 (17:09 +0100)
Signed-off-by: Julius Härtl <jus@bitgrid.net>
core/css/guest.css
core/templates/update.use-cli.php

index 15bb83f576c22162c5de558e47fc3c7a176963d8..26c8fbc9ccde8b8f517d5c2f80e63c4dd9970c5a 100644 (file)
@@ -99,7 +99,8 @@ body {
 }
 
 .wrapper {
-       max-width: 100%;
+       width: 100%;
+       max-width: 700px;
        margin-top: 10vh;
 }
 
index 06d7e284907deca8bb34d695cfed0b9fead81d51..30f4169a1db0217c5955ab3bf39d98d52f9fe5ff 100644 (file)
@@ -14,7 +14,7 @@
 
        <?php if ($_['tooBig']) { ?>
                <div class="warning updateAnyways">
-                       <?php p($l->t('I know that if I continue doing the update via web UI has the risk, that the request runs into a timeout and could cause data loss, but I have a backup and know how to restore my instance in case of a failure.' )); ?>
+                       <p><?php p($l->t('I know that if I continue doing the update via web UI has the risk, that the request runs into a timeout and could cause data loss, but I have a backup and know how to restore my instance in case of a failure.' )); ?></p>
                        <a href="?IKnowThatThisIsABigInstanceAndTheUpdateRequestCouldRunIntoATimeoutAndHowToRestoreABackup=IAmSuperSureToDoThis" class="button updateAnywaysButton"><?php p($l->t('Upgrade via web on my own risk' )); ?></a>
                </div>
        <?php } ?>