Merge pull request #12761 from owncloud/error-details2

improve update error page: remove box, make link visible, insert missing space, remove line break
This commit is contained in:
Lukas Reschke 2014-12-10 19:52:22 +01:00
commit 39b4888109
2 changed files with 8 additions and 3 deletions

View File

@ -362,9 +362,15 @@ input[type="submit"].enabled {
#body-login .update h2 {
font-size: 20px;
line-height: 130%;
margin-bottom: 30px;
}
#body-login .update a {
color: #fff;
border-bottom: 1px solid #aaa;
}
#body-login .infogroup {
margin-bottom: 15px;
}

View File

@ -47,9 +47,8 @@
updateEventSource.listen('failure', function(message) {
$('<span>').addClass('error').append(message).append('<br />').appendTo($el);
$('<span>')
.addClass('error bold')
.append('<br />')
.append(t('core', 'The update was unsuccessful.' +
.addClass('bold')
.append(t('core', 'The update was unsuccessful. ' +
'Please report this issue to the ' +
'<a href="https://github.com/owncloud/core/issues" target="_blank">ownCloud community</a>.'))
.appendTo($el);