aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/css/styles.css5
-rw-r--r--core/templates/update.admin.php6
2 files changed, 6 insertions, 5 deletions
diff --git a/core/css/styles.css b/core/css/styles.css
index 75bbb78fe52..640aab81d2a 100644
--- a/core/css/styles.css
+++ b/core/css/styles.css
@@ -240,8 +240,7 @@ body {
}
#body-login .update h2 {
- line-height: 130%;
- margin-bottom: 30px;
+ margin: 12px 0 20px;
}
#body-login .update a {
@@ -538,6 +537,8 @@ html.ie8 #body-login form input[type="checkbox"] {
}
.error a.button {
color: #555 !important;
+ display: inline-block;
+ text-align: center;
}
.error pre {
white-space: pre-wrap;
diff --git a/core/templates/update.admin.php b/core/templates/update.admin.php
index ae88350bdc5..75815de84bc 100644
--- a/core/templates/update.admin.php
+++ b/core/templates/update.admin.php
@@ -8,7 +8,7 @@
<?php } ?>
<?php if (!empty($_['appsToUpgrade'])) { ?>
<div class="infogroup">
- <span class="bold"><?php p($l->t('These apps will be updated:')); ?></span>
+ <span><?php p($l->t('These apps will be updated:')); ?></span>
<ul class="content appList">
<?php foreach ($_['appsToUpgrade'] as $appInfo) { ?>
<li><?php p($appInfo['name']) ?> (<?php p($appInfo['id']) ?>)</li>
@@ -18,7 +18,7 @@
<?php } ?>
<?php if (!empty($_['incompatibleAppsList'])) { ?>
<div class="infogroup">
- <span class="bold"><?php p($l->t('These incompatible apps will be disabled:')) ?></span>
+ <span><?php p($l->t('These incompatible apps will be disabled:')) ?></span>
<ul class="content appList">
<?php foreach ($_['incompatibleAppsList'] as $appInfo) { ?>
<li><?php p($appInfo['name']) ?> (<?php p($appInfo['id']) ?>)</li>
@@ -27,7 +27,7 @@
</div>
<?php } ?>
<?php if (!empty($_['oldTheme'])) { ?>
- <div class="infogroup bold">
+ <div class="infogroup">
<?php p($l->t('The theme %s has been disabled.', array($_['oldTheme']))) ?>
</div>
<?php } ?>