summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/css/styles.css3
-rw-r--r--core/templates/update.admin.php6
2 files changed, 4 insertions, 5 deletions
diff --git a/core/css/styles.css b/core/css/styles.css
index 28fe9e5414e..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 {
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 } ?>