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
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2020-01-11 10:23:09 +0300
committerGitHub <noreply@github.com>2020-01-11 10:23:09 +0300
commit106ea9fdaa9ff06c1d49cb0716a454946e0804e6 (patch)
tree4d49ef90c9f81da883b70080166527098fe0ea8b /core
parent9eb16da35ee927ceb7e4d62a8ae332ef0696f273 (diff)
parent7e5956a90632fc2904471ce5c25dd3950bf8d8ab (diff)
Merge pull request #18819 from nextcloud/bugfix/guest-container-size
Limit the size of the container on guest pages
Diffstat (limited to 'core')
-rw-r--r--core/css/guest.css3
-rw-r--r--core/templates/update.use-cli.php2
2 files changed, 3 insertions, 2 deletions
diff --git a/core/css/guest.css b/core/css/guest.css
index 15bb83f576c..26c8fbc9ccd 100644
--- a/core/css/guest.css
+++ b/core/css/guest.css
@@ -99,7 +99,8 @@ body {
}
.wrapper {
- max-width: 100%;
+ width: 100%;
+ max-width: 700px;
margin-top: 10vh;
}
diff --git a/core/templates/update.use-cli.php b/core/templates/update.use-cli.php
index 06d7e284907..30f4169a1db 100644
--- a/core/templates/update.use-cli.php
+++ b/core/templates/update.use-cli.php
@@ -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 } ?>