summaryrefslogtreecommitdiffstats
path: root/core/templates/update.admin.php
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2014-05-27 16:36:21 +0200
committerVincent Petry <pvince81@owncloud.com>2014-05-27 16:36:21 +0200
commitca45937d84266f63e9ccf4a37820ad1e254ba5d3 (patch)
tree01cba48eb5ebb6f4a5ab2597d70316eb60b1318a /core/templates/update.admin.php
parent02f682b156998a3f3f94fd506867c28eba878da9 (diff)
downloadnextcloud-server-ca45937d84266f63e9ccf4a37820ad1e254ba5d3.tar.gz
nextcloud-server-ca45937d84266f63e9ccf4a37820ad1e254ba5d3.zip
Fixed styles in update overview page
Diffstat (limited to 'core/templates/update.admin.php')
-rw-r--r--core/templates/update.admin.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/core/templates/update.admin.php b/core/templates/update.admin.php
index b9b0fdb7748..acc9c26c662 100644
--- a/core/templates/update.admin.php
+++ b/core/templates/update.admin.php
@@ -1,12 +1,12 @@
<div class="update">
<form name="updateForm" class="updateForm">
- <h2 class="title bold">
+ <p class="title bold">
<?php p($l->t('%s will be updated to version %s.',
array($_['productName'], $_['version']))); ?>
- </h2>
+ </p>
<?php if (!empty($_['appList'])) { ?>
- <div class="section">
- <div class="title bold"><?php p($l->t('The following apps will be disabled during the upgrade:')) ?></div>
+ <div class="infogroup">
+ <p class="bold"><?php p($l->t('The following apps will be disabled during the upgrade:')) ?></p>
<ul class="content appList">
<?php foreach ($_['appList'] as $appInfo) { ?>
<li><?php p($appInfo['name']) ?> (<?php p($appInfo['id']) ?>)</li>
@@ -15,14 +15,14 @@
</div>
<?php } ?>
<?php if (!empty($_['oldTheme'])) { ?>
- <div class="section">
- <div class="title bold"><?php p($l->t('The theme %s has been disabled.', array($_['oldTheme']))) ?></div>
+ <div class="infogroup">
+ <p class="bold"><?php p($l->t('The theme %s has been disabled.', array($_['oldTheme']))) ?></p>
</div>
<?php } ?>
- <div class="section">
- <div class="title bold"><?php p($l->t('Please make sure that the database and the data folder have been backed up before proceeding.')) ?></div>
+ <div class="infogroup">
+ <p class="bold"><?php p($l->t('Please make sure that the database and the data folder have been backed up before proceeding.')) ?></p>
</div>
- <div class="section">
+ <div>
<input type="submit" value="<?php p($l->t('Start upgrade')) ?>"></input>
</div>
</form>