]> source.dussan.org Git - nextcloud-server.git/commitdiff
update page: fix heading whitespace and unbold less important sections
authorJan-Christoph Borchardt <hey@jancborchardt.net>
Wed, 25 Nov 2015 12:16:00 +0000 (13:16 +0100)
committerJan-Christoph Borchardt <hey@jancborchardt.net>
Wed, 25 Nov 2015 12:16:00 +0000 (13:16 +0100)
core/css/styles.css
core/templates/update.admin.php

index 28fe9e5414e8a88ba685bae02b585c01a40f56a6..640aab81d2a850657ab0ac0cfc7ebe67a54631e4 100644 (file)
@@ -240,8 +240,7 @@ body {
 }
 
 #body-login .update h2 {
-       line-height: 130%;
-       margin-bottom: 30px;
+       margin: 12px 0 20px;
 }
 
 #body-login .update a {
index ae88350bdc5e56035883febbff2380c1854bdb7c..75815de84bcfaff4238d7901889db5da4747ea28 100644 (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 } ?>