Merge pull request #20730 from owncloud/fix-errorpage-button
fix details on redirect and update page
This commit is contained in:
commit
608518100c
|
@ -240,8 +240,7 @@ body {
|
|||
}
|
||||
|
||||
#body-login .update h2 {
|
||||
line-height: 130%;
|
||||
margin-bottom: 30px;
|
||||
margin: 12px 0 20px;
|
||||
}
|
||||
|
||||
#body-login .update a {
|
||||
|
@ -538,6 +537,8 @@ html.ie8 #body-login form input[type="checkbox"] {
|
|||
}
|
||||
.error a.button {
|
||||
color: #555 !important;
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
}
|
||||
.error pre {
|
||||
white-space: pre-wrap;
|
||||
|
|
|
@ -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 } ?>
|
||||
|
|
Loading…
Reference in New Issue