update page: fix heading whitespace and unbold less important sections

This commit is contained in:
Jan-Christoph Borchardt 2015-11-25 13:16:00 +01:00
parent 50780e451b
commit cd88854369
2 changed files with 4 additions and 5 deletions

View File

@ -240,8 +240,7 @@ body {
}
#body-login .update h2 {
line-height: 130%;
margin-bottom: 30px;
margin: 12px 0 20px;
}
#body-login .update a {

View File

@ -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 } ?>