diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-11-25 13:16:00 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-11-25 13:16:00 +0100 |
commit | cd88854369cd11038042e6ba38b1aaa17c7c2b01 (patch) | |
tree | 46e46e4afc208573c5fb3ad56b23da09c69337e8 /core | |
parent | 50780e451bd993f6b0e33df198f98832f3f27e2d (diff) | |
download | nextcloud-server-cd88854369cd11038042e6ba38b1aaa17c7c2b01.tar.gz nextcloud-server-cd88854369cd11038042e6ba38b1aaa17c7c2b01.zip |
update page: fix heading whitespace and unbold less important sections
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 3 | ||||
-rw-r--r-- | core/templates/update.admin.php | 6 |
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 } ?> |