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 { #body-login .update h2 {
line-height: 130%; margin: 12px 0 20px;
margin-bottom: 30px;
} }
#body-login .update a { #body-login .update a {

View File

@ -8,7 +8,7 @@
<?php } ?> <?php } ?>
<?php if (!empty($_['appsToUpgrade'])) { ?> <?php if (!empty($_['appsToUpgrade'])) { ?>
<div class="infogroup"> <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"> <ul class="content appList">
<?php foreach ($_['appsToUpgrade'] as $appInfo) { ?> <?php foreach ($_['appsToUpgrade'] as $appInfo) { ?>
<li><?php p($appInfo['name']) ?> (<?php p($appInfo['id']) ?>)</li> <li><?php p($appInfo['name']) ?> (<?php p($appInfo['id']) ?>)</li>
@ -18,7 +18,7 @@
<?php } ?> <?php } ?>
<?php if (!empty($_['incompatibleAppsList'])) { ?> <?php if (!empty($_['incompatibleAppsList'])) { ?>
<div class="infogroup"> <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"> <ul class="content appList">
<?php foreach ($_['incompatibleAppsList'] as $appInfo) { ?> <?php foreach ($_['incompatibleAppsList'] as $appInfo) { ?>
<li><?php p($appInfo['name']) ?> (<?php p($appInfo['id']) ?>)</li> <li><?php p($appInfo['name']) ?> (<?php p($appInfo['id']) ?>)</li>
@ -27,7 +27,7 @@
</div> </div>
<?php } ?> <?php } ?>
<?php if (!empty($_['oldTheme'])) { ?> <?php if (!empty($_['oldTheme'])) { ?>
<div class="infogroup bold"> <div class="infogroup">
<?php p($l->t('The theme %s has been disabled.', array($_['oldTheme']))) ?> <?php p($l->t('The theme %s has been disabled.', array($_['oldTheme']))) ?>
</div> </div>
<?php } ?> <?php } ?>